Jump to content
Larrow

Eden Composition Spawning

Recommended Posts

try enclosing each getmarkerpos in parentheses () or brackets []

_town = [(getMarkerPos "town_1"),(getMarkerPos "town_2"),(getMarkerPos "town_3"),etc.

I don't know what i was thinking earlier it should have been like that to begin with.

 

If that doesn't work then you may have to use a random/if statements combination

_num = floor(random x);

if (_num==0) then {	_town = getmarkerpos town_y	};
if (_num==1) then {	_town = getmarkerpos town_y	};
if (_num==2) then {	_town = getmarkerpos town_y	};

where x = number of markers and y = marker number

see getmarkerpos and Random for reference.

 

I know the second method will work as i have used it for similar purposes but with the number of markers you have it's going to mean a good bit of copy paste and change numbers.

Share this post


Link to post
Share on other sites
2 hours ago, Squirtman said:

try enclosing each getmarkerpos in parentheses () or brackets []


_town = [(getMarkerPos "town_1"),(getMarkerPos "town_2"),(getMarkerPos "town_3"),etc.

I don't know what i was thinking earlier it should have been like that to begin with.

 

If that doesn't work then you may have to use a random/if statements combination


_num = floor(random x);

if (_num==0) then {	_town = getmarkerpos town_y	};
if (_num==1) then {	_town = getmarkerpos town_y	};
if (_num==2) then {	_town = getmarkerpos town_y	};

where x = number of markers and y = marker number

see getmarkerpos and Random for reference.

 

I know the second method will work as i have used it for similar purposes but with the number of markers you have it's going to mean a good bit of copy paste and change numbers.

 

Please, cease to send so wrong solutions. Your consideration about brackets or parentheses for each getmarkerpos are useless (and false), and let think you don't know what you're doing.  Your half a code with a stack of <if then> codes is weird (to say the least).

 

Just refer to Larrow comment for his code:

POS_ATL( optional, default compositions saved position ) - Position to spawn composition

If not given or empty array passed then original saved composition position is used

Also accepts OBJECT, MARKER, LOCATION

So, the array of markers with selectRandom should work. What else?

_town = selectRandom ["town_1","town_2".....];

 

 

Share this post


Link to post
Share on other sites

well excuse me for trying to help. As i said in my post before that one i never tested my first solution so i didn't know if it would work. And no I don't know every little intricacy about armas scripting language. As far as my "weird" half a code it was merely meant to be an example of a way i did know for sure would work sorry it wasn't the most efficient method and up to your standards of excellence.

Share this post


Link to post
Share on other sites
On 23/05/2017 at 0:39 PM, baton1990 said:

I have five LAR's compositions sqe files. Does anybody know how I can spawn random one of them (one from list of compositions) in the mission start via initserver.sqf

_compositions = [ "comp1", "comp2", "comp3" /* etc */ ];

_randomComp = selectRandom _compositions;

_compReference = [ _randomComp, POS_ATL, OFFSET, DIR, ALIGN_TERRAIN, ALIGN_WATER ] call LARs_fnc_spawnComp;

 

 

14 hours ago, miogushi said:

i m trying to use your script to spawn compostion with random location but it doesn't work . can you explain me where is my mystake ?

 


_Blu_Base = ["Task",_basePosATL,0,0,true,true] call LARs_fnc_spawnComp;

 

Offset (param 2) is an ARRAY [ x, y, z].

Quote

Then when you want to spawn a composition..


_compReference = [ COMP_NAME, POS_ATL, OFFSET, DIR, ALIGN_TERRAIN, ALIGN_WATER ] call LARs_fnc_spawnComp;

Where..

  • COMP_NAME - Classname given to composition in CfgCompositions
  • POS_ATL( optional, default compositions saved position ) - Position to spawn composition
    • If not given or empty array passed then original saved composition position is used
    • Also accepts OBJECT, MARKER, LOCATION
  • OFFSET( optional, default none ) - ARRAY [ x, y, z ] ammount to offset composition, as a compositions base pos can vary from what you want when its saved
  • DIR( optional, deafault 0 ) - Direction to face composition in, If POS_ATL is of type OBJECT, MARKER, LOCATION passing TRUE for direction will use objects direction
  • ALIGN_TERRAIN( optional, default True ) - BOOL, Whether composition objects should align themselves to their positions surface normal
  • ALIGN_WATER( optional, default True ) - BOOL, If a composition objects position is over water should they align themselves to sea level
_Blu_Base = ["Task",_basePosATL,[0,0,0],0,true,true] call LARs_fnc_spawnComp;

 

Share this post


Link to post
Share on other sites

thanks for help, this is my solution 

 

private ["_telep"];
_basePosATL = ["town_1","town_2","town_3","town_4","town_5","town_6","town_7","town_8","town_9","town_10","town_11","town_12","town_13","town_14","town_15","town_16","town_17","town_18","town_19","town_20","town_21","town_22","town_23","town_24","town_25","town_26","town_27","town_28","town_29","town_30","town_31"];
_randompos = selectRandom _basePosATL;
_Blu_Base = ["Task",getMarkerPos _randompos,[0,0,0],0,true,true] call LARs_fnc_spawnComp;

my problem was i forgot "getmarkerpos "   and the array  -_-"

Share this post


Link to post
Share on other sites
1 hour ago, miogushi said:

my problem was i forgot "getmarkerpos "   and the array  -_-"

Should not need getMarkerPos the function already accepts a marker name as the position to use.

Share this post


Link to post
Share on other sites

thanks @Larrow but i think we have a " little" problem,

 

your original mission doesn't work on dedicated serv :(  but when i m in solo on editor all it work 

Share this post


Link to post
Share on other sites
2 hours ago, miogushi said:

your original mission doesn't work on dedicated serv

As a test mission is was not designed to work on a dedicated server.

If you which to use the test mission on a dedicated you either need to ..

  • Open initPlayerLocal.sqf and change all the actions from call LARs_fnc_spawnComp to remoteExec's to the server OR
  • Open LARs\functions\fn_spawnComp.sqf and change the code in the !isServer condition at the top to...
if !( isServer ) exitWith {
	_this remoteExec [ "LARs_fnc_spawnComp", 2 ];
};

 

Share this post


Link to post
Share on other sites

I am creating a public coop mission, and I was wondering how to spawn a custom composition in the exact same location ?

 

for example, if i create a composition with 2 men in a building on altis at pyrgos,  and a car near this building. Is it possible to spawn this with a trigger and an execvm "spawn.sqf" without  place units on the map ?

 

Thanks!

Share this post


Link to post
Share on other sites
1 hour ago, miogushi said:

I was wondering how to spawn a custom composition in the exact same location ?

Please read the documentation in the OP all the information you need is there.

Quote

Then when you want to spawn a composition..


_compReference = [ COMP_NAME, POS_ATL, OFFSET, DIR, ALIGN_TERRAIN, ALIGN_WATER ] call LARs_fnc_spawnComp;

Where..

  • COMP_NAME - Classname given to composition in CfgCompositions
  • POS_ATL( optional, default compositions saved position ) - Position to spawn composition
    • If not given or empty array passed then original saved composition position is used
    • Also accepts OBJECT, MARKER, LOCATION
  • OFFSET( optional, default none ) - ARRAY [ x, y, z ] ammount to offset composition, as a compositions base pos can vary from what you want when its saved
  • DIR( optional, deafault 0 ) - Direction to face composition in, If POS_ATL is of type OBJECT, MARKER, LOCATION passing TRUE for direction will use objects direction
  • ALIGN_TERRAIN( optional, default True ) - BOOL, Whether composition objects should align themselves to their positions surface normal
  • ALIGN_WATER( optional, default True ) - BOOL, If a composition objects position is over water should they align themselves to sea level

All options other than the composition name are optional. If a position is not given then the position saved in the composition is used.

 

1 hour ago, miogushi said:

if i create a composition with 2 men in a building on altis at pyrgos,  and a car near this building. Is it possible to spawn this with a trigger

Yes, just remember that the script is designed to be used on the server, so make your trigger either server only or make sure it can only be remoteExec'ed once.

Share this post


Link to post
Share on other sites

Hi Larrow,

 

Great work on this!

 

I have an issue whereby some of my compositions spawn floating in the air. The location and direction i have set is both correct and some parts of the composition have fallen to the ground where they should be but most objects just stay floating about 20m up. Is this an issue with the original compositions, i have tried offsetting but that doesn't work completely. any suggestions?

Share this post


Link to post
Share on other sites
8 minutes ago, Perry21692 said:

I have an issue whereby some of my compositions spawn floating in the air.

but most objects just stay floating about 20m up.

You would have to provide an example .sqe and the arguments you are using to spawn it OR an example test mission so I can see what is happening.

If you have read the rest of this thread you will realise that there are some positioning problems but these are generally small rotational problems.

20m seems a large amount to be wrong.

Share this post


Link to post
Share on other sites
Quote

    _obj = "Land_Pallets_F" createVehicle _foundBunkerPos;
    _reldir = _Pos getDir _pos2;
    _obj setDir _reldir;
    _compReference = [ "BEACH_Village_02", _man, [ 0, 0, 0 ], true, true, false ] call LARs_fnc_spawnComp;

 

So this is how i have spawned my composition, i had some issues with rotation and found it worked better using an object to choose the direct. i expected as the alignATL was true the objects would sit on the terrain. 20m is not accurate, i find it hard to tell with altitude but i used -10 on the offset and some objects dropped through the ground, others moved slightly downward and others were then correct.

 

this is the sqe in question, WARNING, its over 10,000 lines

 

Quote

 

 

Edited by Perry21692
too large

Share this post


Link to post
Share on other sites

Please place that .sqe in a spoiler or provide a download link. Pasting it like that makes the thread hard for people to navigate.

  • Like 1

Share this post


Link to post
Share on other sites

 

apologies, thought quote would do the trick

 

Spoiler

version=53;
center[]={27088.492,7.4675837,20852.768};
class items
{
    items=63;
    class Item0
    {
        dataType="Layer";
        name="Bungalow [OPF]";
        class Entities
        {
            items=29;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-6.1035156,4.0984812,-73.910156};
                    angles[]={6.2405448,0.028318303,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12363;
                type="Land_HBarrier_Big_F";
                atlOffset=0.0096979141;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-9.4941406,3.8795853,-65.316406};
                    angles[]={6.2511969,0.028318303,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12364;
                type="Land_PaperBox_open_empty_F";
                atlOffset=0.0022830963;
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-2.6445313,3.7486439,-70.376953};
                    angles[]={6.253861,4.7407074,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1095499776;
                };
                id=12365;
                type="Land_HBarrier_5_F";
                atlOffset=0.0056753159;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={1.3769531,3.5121794,-65.244141};
                    angles[]={6.2591896,1.5991148,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1185094389;
                };
                id=12366;
                type="Land_BagFence_Short_F";
                atlOffset=0.0028133392;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-11.046875,3.5215874,-70.771484};
                    angles[]={6.2405448,4.7407074,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1082131189;
                };
                id=12367;
                type="MetalBarrel_burning_F";
                atlOffset=0.006690979;
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-4.1210938,3.4401531,-69.458984};
                    angles[]={6.2511969,4.7407074,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1123298584;
                };
                id=12368;
                type="Land_Sacks_heap_F";
                atlOffset=0.0060367584;
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-10.365234,3.5881596,-68.791016};
                    angles[]={6.2445378,2.384635,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-2147483647;
                };
                id=12369;
                type="Land_MetalBarrel_F";
                atlOffset=0.005616188;
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-10.132813,3.560154,-69.419922};
                    angles[]={6.2445378,0.028002398,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1105572532;
                };
                id=12370;
                type="Land_MetalBarrel_F";
                atlOffset=0.0056867599;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-8.7402344,5.0327606,-80.28125};
                    angles[]={6.2418756,1.8609141,6.2711902};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=756177504;
                };
                id=12371;
                type="O_Truck_02_transport_F";
                atlOffset=0.007358551;
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={1.0917969,3.4930925,-66.478516};
                    angles[]={6.2591896,1.5991148,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1066523720;
                };
                id=12372;
                type="Land_BagFence_Corner_F";
                atlOffset=0.0019922256;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-15.830078,5.2132645,-77.525391};
                    angles[]={6.2060041,5.5261388,6.2778254};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1086957830;
                };
                id=12373;
                type="Land_ToiletBox_F";
                atlOffset=1.102726;
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-17.746094,5.2563372,-77.486328};
                    angles[]={6.239212,0.028276341,6.2445006};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1065866804;
                };
                id=12374;
                type="Land_ToiletBox_F";
                atlOffset=1.0826569;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-23.867188,7.3328543,-73.396484};
                    angles[]={0,4.7407074,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1188194306;
                };
                id=12375;
                type="Flag_CSAT_F";
                atlOffset=0.002325058;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-17.560547,3.7188568,-67.074219};
                    angles[]={0,4.7407074,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=578;
                };
                id=12376;
                type="Land_i_House_Small_03_V1_F";
                atlOffset=0.0013284683;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-17.669922,5.6575918,-74.742188};
                    angles[]={6.2060056,0.028318303,6.2778254};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12377;
                type="Land_Cargo20_grey_F";
                atlOffset=1.2538271;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-23.955078,4.1204624,-71.789063};
                    angles[]={6.2365522,4.7407341,6.2458687};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12378;
                type="Land_WaterTank_F";
                atlOffset=0.0023260117;
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-28.869141,4.2758265,-64.513672};
                    angles[]={6.2551923,3.6935272,6.2418742};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12379;
                type="Land_Pallets_stack_F";
                atlOffset=-0.0033435822;
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-5.4804688,4.6851225,-56.302734};
                    angles[]={6.2511969,0.028318303,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12380;
                type="Land_HBarrier_Big_F";
                atlOffset=0.0040159225;
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-13.859375,4.8736668,-56.181641};
                    angles[]={6.2511969,0.028318303,6.2618566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12381;
                type="Land_HBarrier_Big_F";
                atlOffset=0.0026769638;
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-9.6757813,3.9482489,-62.054688};
                    angles[]={6.2511969,4.7406373,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12382;
                type="Land_WaterBarrel_F";
                atlOffset=0.0023260117;
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-4.2695313,3.9257507,-61.714844};
                    angles[]={6.2511969,3.6935096,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12383;
                type="Land_PaperBox_closed_F";
                atlOffset=0.003985405;
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-3.9648438,3.9806824,-59.845703};
                    angles[]={6.2511969,4.7407074,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12384;
                type="Land_PaperBox_closed_F";
                atlOffset=0.0040149689;
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-2.2128906,4.048233,-59.900391};
                    angles[]={6.2511969,4.7407074,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12385;
                type="Land_HBarrier_5_F";
                atlOffset=0.0040435791;
            };
            class Item23
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-6.3222656,4.3560333,-64.294922};
                    angles[]={6.2511969,4.7407074,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12386;
                type="CamoNet_OPFOR_open_F";
                atlOffset=0.0023822784;
            };
            class Item24
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={1.0371094,3.5539122,-63.982422};
                    angles[]={6.2591896,0.028318303,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=523264;
                };
                id=12387;
                type="Land_BagFence_Corner_F";
                atlOffset=0.0020370483;
            };
            class Item25
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-22.234375,5.0677853,-56.064453};
                    angles[]={6.2605205,0.028318303,6.2551923};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1088596650;
                };
                id=12388;
                type="Land_HBarrier_Big_F";
                atlOffset=-0.0013380051;
            };
            class Item26
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-27.320313,5.1370001,-59.294922};
                    angles[]={6.2605205,4.7407074,6.2551923};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=4;
                };
                id=12389;
                type="Land_HBarrier_Big_F";
                atlOffset=-0.001285553;
            };
            class Item27
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-17.798828,4.4223356,-58.193359};
                    angles[]={6.2511969,0.028318303,6.2618566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=444;
                };
                id=12390;
                type="Land_CratesWooden_F";
                atlOffset=0.0026578903;
            };
            class Item28
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-15.4375,4.0606327,-58.261719};
                    angles[]={6.2511969,4.7407079,6.2618566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=274;
                };
                id=12391;
                type="Land_Pallets_stack_F";
                atlOffset=0.002617836;
            };
        };
        id=10046;
        atlOffset=0.013988495;
    };
    class Item1
    {
        dataType="Layer";
        name="House Fortified [OPF] #1";
        class Entities
        {
            items=42;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-2.15625,3.5448551,-100.89453};
                    angles[]={6.2073317,1.5518621,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12416;
                type="CamoNet_OPFOR_big_F";
                atlOffset=0.020329475;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-6.2441406,2.5330486,-96.652344};
                    angles[]={6.2179451,6.2642512,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12417;
                type="Land_HBarrierWall6_F";
                atlOffset=0.01895237;
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={0.62695313,2.5044823,-96.275391};
                    angles[]={6.2272439,6.2642512,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12418;
                type="Land_HBarrierWall_corner_F";
                atlOffset=0.011473656;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={1.6933594,2.3044443,-99.636719};
                    angles[]={6.2272439,1.4645957,6.2658563};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12419;
                type="Land_HBarrierWall4_F";
                atlOffset=0.0099821091;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-6.6660156,1.57728,-100.32227};
                    angles[]={6.2259154,3.1226587,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12420;
                type="Land_Garbage_square5_F";
                atlOffset=0.00069618225;
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={6.9570313,2.4166117,-90.785156};
                    angles[]={6.223258,4.6934547,6.2738566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12421;
                type="Land_BagFence_Round_F";
                atlOffset=0.016777992;
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={4.7167969,2.6382761,-87.589844};
                    angles[]={6.213963,3.3844581,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12422;
                type="Land_BagFence_Round_F";
                atlOffset=0.017524719;
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={0.35742188,2.2429714,-101.09766};
                    angles[]={6.2073317,4.6934757,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12423;
                type="Box_East_AmmoVeh_F";
                atlOffset=0.018397331;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-3.6289063,1.8245544,-102.24609};
                    angles[]={6.2073317,2.5990596,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12424;
                type="Land_Pallet_MilBoxes_F";
                atlOffset=0.018626213;
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-5.5058594,1.9964647,-101.70508};
                    angles[]={6.2259154,3.1226592,6.2618566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12425;
                type="Land_WaterBarrel_F";
                atlOffset=0.0089273453;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-4.953125,2.1109457,-97.935547};
                    angles[]={6.2179451,4.6933885,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12426;
                type="Land_WoodenTable_small_F";
                atlOffset=0.015722275;
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={6.0605469,2.3089933,-92.566406};
                    angles[]={6.223258,2.3372602,6.2738566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12427;
                type="Land_BagFence_Short_F";
                atlOffset=0.012710571;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={6.2402344,2.548502,-88.810547};
                    angles[]={6.213963,4.1698561,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12428;
                type="Land_BagFence_Short_F";
                atlOffset=0.017329216;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={3.2148438,2.6353045,-87.494141};
                    angles[]={6.223258,3.1226587,6.2738566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12429;
                type="Land_BagFence_End_F";
                atlOffset=0.012654305;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={0.70703125,2.0442581,-99.955078};
                    angles[]={6.2179451,3.1225533,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12430;
                type="FlexibleTank_01_sand_F";
                atlOffset=0.015294075;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-5.0117188,3.0186615,-98.683594};
                    angles[]={6.2179451,3.3844547,6.2805109};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                };
                id=12431;
                type="Land_CampingChair_V2_F";
                atlOffset=0.8976984;
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={5.4511719,2.2632389,-93.326172};
                    angles[]={6.2192731,2.0754609,6.2738566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12432;
                type="Land_BagFence_End_F";
                atlOffset=0.013597488;
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-9.3574219,1.8953247,-103.5};
                    angles[]={0,3.1226587,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12433;
                type="Land_i_Stone_Shed_V1_F";
                atlOffset=0.067224503;
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={2.2929688,1.9241972,-104.74609};
                    angles[]={6.2073317,1.5518621,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12434;
                type="Land_HBarrierWall_corner_F";
                atlOffset=0.016117096;
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-2.1953125,1.9134121,-105.45508};
                    angles[]={6.2259154,3.1226587,6.2618566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12435;
                type="Land_HBarrierWall4_F";
                atlOffset=0.0094079971;
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-9.0136719,2.0844975,-108.96289};
                    angles[]={6.2525272,3.1226587,6.1993828};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12436;
                type="Land_HBarrier_3_F";
                atlOffset=-0.013279915;
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-5.765625,1.8343449,-108.90039};
                    angles[]={6.2525291,3.1226587,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12437;
                type="Land_HBarrier_3_F";
                atlOffset=-0.0022506714;
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={5.7363281,0.88551617,-114.7832};
                    angles[]={6.2325621,5.7406526,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12438;
                type="Land_BagFence_Round_F";
                atlOffset=0.0063567162;
            };
            class Item23
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={7.3769531,1.0578146,-111.24609};
                    angles[]={6.2206011,4.4316554,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12439;
                type="Land_BagFence_Round_F";
                atlOffset=0.012261391;
            };
            class Item24
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={5.8964844,1.1540089,-109.94727};
                    angles[]={6.2206011,3.3844581,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12440;
                type="Land_BagFence_Short_F";
                atlOffset=0.012401581;
            };
            class Item25
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={7.0820313,0.93554497,-113.17969};
                    angles[]={6.2206011,5.2170539,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12441;
                type="Land_BagFence_Short_F";
                atlOffset=0.012260914;
            };
            class Item26
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={4.3652344,0.9068985,-114.85547};
                    angles[]={6.2325621,4.1698561,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12442;
                type="Land_BagFence_End_F";
                atlOffset=0.0062632561;
            };
            class Item27
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={4.7695313,1.1707125,-109.8457};
                    angles[]={6.2206011,3.1226587,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12443;
                type="Land_BagFence_End_F";
                atlOffset=0.012261391;
            };
            class Item28
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-12.480469,2.6319275,-97.40625};
                    angles[]={6.2511969,4.6934547,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12444;
                type="Land_HBarrierWall_corridor_F";
                atlOffset=-0.0021266937;
            };
            class Item29
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-16.279297,2.7762871,-101.59766};
                    angles[]={6.2685208,4.6934547,6.2033553};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12445;
                type="Land_HBarrierWall_corner_F";
                atlOffset=-0.015843391;
            };
            class Item30
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-17.375,2.5659132,-96.136719};
                    angles[]={6.2511969,2.3372602,6.2325621};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12446;
                type="Land_BagFence_Round_F";
                atlOffset=-0.004740715;
            };
            class Item31
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-15.513672,2.487792,-95.476563};
                    angles[]={6.2511969,6.2642512,6.2325621};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12447;
                type="Land_BagFence_Short_F";
                atlOffset=-0.004576683;
            };
            class Item32
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-18.089844,2.5911007,-98.027344};
                    angles[]={6.2805109,1.5518621,6.2033553};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12448;
                type="Land_BagFence_Short_F";
                atlOffset=-0.019251823;
            };
            class Item33
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-15.568359,2.6540575,-106.08203};
                    angles[]={-0,3.1226587,6.1888003};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12449;
                type="Land_HBarrierWall_corner_F";
                atlOffset=-0.021161079;
            };
            class Item34
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-12.257813,2.3618002,-109.01758};
                    angles[]={0.018663859,3.1226587,6.1506343};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12450;
                type="Land_HBarrier_3_F";
                atlOffset=-0.0074739456;
            };
            class Item35
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-20.90625,2.7929831,-109.45703};
                    angles[]={6.2618566,1.2900625,6.2285728};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12451;
                type="Land_BagFence_Round_F";
                atlOffset=-0.0079250336;
            };
            class Item36
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-17.929688,2.5767899,-111.96289};
                    angles[]={6.2618566,6.2642512,6.2285728};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12452;
                type="Land_BagFence_Round_F";
                atlOffset=-0.007982254;
            };
            class Item37
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-19.705078,2.6856384,-111.17773};
                    angles[]={6.2618566,0.76646388,6.2285728};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12453;
                type="Land_BagFence_Short_F";
                atlOffset=-0.0078582764;
            };
            class Item38
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-20.503906,2.7670498,-107.50391};
                    angles[]={-0,5.2170539,6.1888003};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12454;
                type="Land_BagFence_Short_F";
                atlOffset=-0.023368835;
            };
            class Item39
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-20.109375,2.7252102,-106.60938};
                    angles[]={-0,4.9552541,6.1888003};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12455;
                type="Land_BagFence_End_F";
                atlOffset=-0.023145676;
            };
            class Item40
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-14.835938,2.2901011,-111.45898};
                    angles[]={0.018663859,0.50466454,6.1887999};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12456;
                type="Land_BagFence_End_F";
                atlOffset=-0.027907372;
            };
            class Item41
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-15.832031,2.3893642,-111.47852};
                    angles[]={0.018663859,6.0024519,6.1887999};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12457;
                type="Land_BagFence_Short_F";
                atlOffset=-0.027939796;
            };
        };
        id=10205;
        atlOffset=-0.026255608;
    };
    class Item2
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={53.693359,5.078619,-33.708984};
            angles[]={6.213963,5.5110793,6.2671871};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11675;
        type="Land_Razorwire_F";
        atlOffset=0.0013799667;
    };
    class Item3
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={59.705078,5.343564,-28.068359};
            angles[]={6.2166171,5.5110793,6.2445378};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11676;
        type="Land_Razorwire_F";
        atlOffset=0.0030584335;
    };
    class Item4
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={63.371094,5.4539156,-24.363281};
            angles[]={6.2152901,5.5110793,6.2445378};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11677;
        type="Land_Razorwire_F";
        atlOffset=0.0069980621;
    };
    class Item5
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={69.34375,5.4546318,-19.371094};
            angles[]={6.2299027,5.5110793,6.2020307};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11678;
        type="Land_Razorwire_F";
    };
    class Item6
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={74.316406,5.5090408,-14.148438};
            angles[]={6.1954112,5.5110793,6.2498641};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11679;
        type="Land_Razorwire_F";
    };
    class Item7
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={80.326172,5.8182621,-8.5058594};
            angles[]={6.1967349,5.5110793,6.253861};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11680;
        type="Land_Razorwire_F";
    };
    class Item8
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={83.992188,6.1339378,-4.796875};
            angles[]={6.1782393,5.5110793,6.272521};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11681;
        type="Land_Razorwire_F";
        atlOffset=-9.5367432e-007;
    };
    class Item9
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={89.962891,6.6332951,0.19140625};
            angles[]={6.1874795,5.5110793,0.012000273};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11682;
        type="Land_Razorwire_F";
        atlOffset=9.6321106e-005;
    };
    class Item10
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={100.69141,7.1986704,9.3867188};
            angles[]={6.2365522,5.5110793,6.253859};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11683;
        type="Land_Razorwire_F";
        atlOffset=0.0033893585;
    };
    class Item11
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={104.35742,7.3058643,13.097656};
            angles[]={6.2259154,5.5110793,6.2605233};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11684;
        type="Land_Razorwire_F";
    };
    class Item12
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={110.32813,7.4471703,18.087891};
            angles[]={6.223258,5.5110793,6.2511969};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11685;
        type="Land_Razorwire_F";
        atlOffset=0.00062942505;
    };
    class Item13
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={115.29883,7.5839806,23.310547};
            angles[]={6.2299027,5.5110793,6.256525};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11686;
        type="Land_Razorwire_F";
        atlOffset=5.1498413e-005;
    };
    class Item14
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={121.31055,7.5193501,28.953125};
            angles[]={6.2458687,5.5110793,6.2073317};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11687;
        type="Land_Razorwire_F";
        atlOffset=0.0027198792;
    };
    class Item15
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={124.97852,7.6776266,32.658203};
            angles[]={6.2578578,5.5110793,0.0026744273};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11688;
        type="Land_Razorwire_F";
        atlOffset=0.0033950806;
    };
    class Item16
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={94.679688,6.9726439,3.75};
            angles[]={5.8816519,5.5110793,6.0301733};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11690;
        type="Land_Razorwire_F";
        atlOffset=0.0008392334;
    };
    class Item17
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-104.70703,8.1053219,45.339844};
            angles[]={6.2738566,0.80531228,0.0093286335};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11692;
        type="Land_Razorwire_F";
        atlOffset=0.00015068054;
    };
    class Item18
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-101.02148,8.0971918,41.646484};
            angles[]={6.2685208,0.80531228,0.0066592805};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11693;
        type="Land_Razorwire_F";
        atlOffset=0.0017957687;
    };
    class Item19
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-96.070313,8.0411043,35.640625};
            angles[]={6.2685208,0.80531228,0.0066592805};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11694;
        type="Land_Razorwire_F";
        atlOffset=0.00078678131;
    };
    class Item20
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-90.880859,7.9422436,30.634766};
            angles[]={6.2605233,0.80531228,0.0013372133};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11695;
        type="Land_Razorwire_F";
        atlOffset=0.00078773499;
    };
    class Item21
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-85.28125,7.7869844,24.591797};
            angles[]={6.2591896,0.80531228,6.2778478};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11696;
        type="Land_Razorwire_F";
        atlOffset=-9.5367432e-007;
    };
    class Item22
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-81.597656,7.6787415,20.900391};
            angles[]={6.2591896,0.80531228,6.2778478};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11697;
        type="Land_Razorwire_F";
        atlOffset=-9.5367432e-007;
    };
    class Item23
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-76.644531,7.4004831,14.892578};
            angles[]={6.2378845,0.80531228,6.276526};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11698;
        type="Land_Razorwire_F";
        atlOffset=0.0013809204;
    };
    class Item24
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-67.517578,6.743145,4.1074219};
            angles[]={6.259192,0.80531228,0};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11699;
        type="Land_Razorwire_F";
        atlOffset=0.00064659119;
    };
    class Item25
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-63.833984,6.6499023,0.4140625};
            angles[]={6.259192,0.80531228,6.2805333};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11700;
        type="Land_Razorwire_F";
        atlOffset=0.0017986298;
    };
    class Item26
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-58.884766,6.5119333,-5.5898438};
            angles[]={6.2658563,0.80531228,6.2805333};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11701;
        type="Land_Razorwire_F";
        atlOffset=0.0023136139;
    };
    class Item27
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-53.695313,6.3540077,-10.597656};
            angles[]={6.2698536,0.80531228,6.2685208};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11702;
        type="Land_Razorwire_F";
        atlOffset=0.0013074875;
    };
    class Item28
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-48.09375,6.2247639,-16.642578};
            angles[]={6.2698536,0.80531228,6.2805333};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11703;
        type="Land_Razorwire_F";
    };
    class Item29
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-44.410156,6.1691236,-20.335938};
            angles[]={6.2711854,0.80531228,6.2805333};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11704;
        type="Land_Razorwire_F";
    };
    class Item30
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-39.462891,6.0788803,-26.339844};
            angles[]={6.2658563,0.80531228,6.2805333};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11705;
        type="Land_Razorwire_F";
        atlOffset=0.00071144104;
    };
    class Item31
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-73.121094,7.1197615,10.154297};
            angles[]={6.2166181,0.80531228,0};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=11706;
        type="Land_Razorwire_F";
        atlOffset=0.00070571899;
    };
    class Item32
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={16.035156,9.440074,-74.666016};
            angles[]={0,1.5490965,0};
        };
        side="Empty";
        flags=5;
        class Attributes
        {
            aiRadarUsage=-1054867456;
        };
        id=12270;
        type="Land_Church_01_V1_F";
        atlOffset=0.0063800812;
    };
    class Item33
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={15.800781,9.9605284,-52.861328};
            angles[]={0,6.2640748,0};
        };
        side="Empty";
        flags=5;
        class Attributes
        {
        };
        id=12271;
        type="Land_BellTower_02_V1_F";
        atlOffset=0.019258499;
    };
    class Item34
    {
        dataType="Layer";
        name="House & Garage [OPF]_2";
        class Entities
        {
            items=66;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={0.171875,4.2769976,-46.294922};
                    angles[]={6.2113094,0.0070434976,0.017332481};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1601074535;
                };
                id=12273;
                type="Land_BagFence_Long_F";
                atlOffset=0.022278786;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-12.294922,5.2205458,-36.916016};
                    angles[]={6.2126365,6.2604556,6.2751918};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1601074535;
                };
                id=12274;
                type="Land_Razorwire_F";
                atlOffset=0.01573658;
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-8.4902344,5.1531639,-33.982422};
                    angles[]={6.1914439,1.3160404,0.013332055};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12275;
                type="Land_BagFence_Round_F";
                atlOffset=0.026399612;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-1.2832031,6.3876076,-26.972656};
                    angles[]={6.1585026,2.8868365,0.047963165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12276;
                type="Land_BagFence_Round_F";
                atlOffset=0.043395042;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={4.2851563,6.2731647,-29.951172};
                    angles[]={6.1585026,5.7666297,0.05461248};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12277;
                type="Land_Sacks_heap_F";
                atlOffset=0.0448246;
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-2.7050781,6.1821899,-28.027344};
                    angles[]={6.1585026,5.243031,0.047963165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12278;
                type="Land_BagFence_Short_F";
                atlOffset=0.04348278;
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-7.8027344,5.3208275,-32.154297};
                    angles[]={6.1967349,5.5048304,0.013336525};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12279;
                type="Land_BagFence_Short_F";
                atlOffset=0.024929047;
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-3.0839844,6.0292826,-29.021484};
                    angles[]={6.1427817,1.5778397,0.063913256};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12280;
                type="Land_BagFence_End_F";
                atlOffset=0.051509857;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-7.1191406,5.4406481,-31.333984};
                    angles[]={6.1427822,5.243031,0.067895547};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12281;
                type="Land_BagFence_End_F";
                atlOffset=0.052253723;
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={0.83398438,4.6619406,-41.171875};
                    angles[]={6.2113094,3.4102783,0.017332481};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12282;
                type="Land_MetalBarrel_F";
                atlOffset=0.022278786;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-4.2910156,5.0898943,-41.136719};
                    angles[]={0,1.5778397,0};
                };
                side="Empty";
                flags=1;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12283;
                type="Land_i_Garage_V2_F";
                atlOffset=0.70553112;
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={13.037109,5.6124601,-47.119141};
                    angles[]={6.2621379,3.1486363,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12284;
                type="Land_Razorwire_F";
                atlOffset=0.23664856;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={14.285156,5.8042345,-45.806641};
                    angles[]={6.1821971,0.0070434976,0.012000273};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12285;
                type="Land_Shoot_House_Wall_F";
                atlOffset=0.024065018;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={5.1640625,4.6218739,-47.082031};
                    angles[]={6.2113094,3.1486363,0.012000273};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1;
                };
                id=12286;
                type="Land_Razorwire_F";
                atlOffset=0.021050453;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={8.7890625,7.6100168,-41.103516};
                    angles[]={0,1.5778397,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12287;
                type="Land_u_House_Big_01_V1_F";
                atlOffset=0.034841537;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={6.390625,6.8982439,-31.722656};
                    angles[]={6.1585026,0.0070434976,0.05461248};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12288;
                type="CamoNet_OPFOR_open_F";
                atlOffset=0.045154572;
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={6.9394531,6.4850597,-26.339844};
                    angles[]={0,0.0070434976,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1;
                };
                id=12289;
                type="Land_Mound01_8m_F";
                atlOffset=0.026424408;
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={17.320313,5.1945229,-41.796875};
                    angles[]={6.1993828,1.5778397,6.2685208};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12290;
                type="Land_Razorwire_F";
                atlOffset=0.017420769;
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={10.025391,5.8605003,-33.75};
                    angles[]={0,0.0070434976,0};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                };
                id=12291;
                type="Land_Garbage_square5_F";
                atlOffset=0.23490715;
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={13.119141,6.0537615,-35.013672};
                    angles[]={6.1742845,4.7194324,6.2352223};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1;
                };
                id=12292;
                type="Land_CratesWooden_F";
                atlOffset=0.01518631;
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={13.994141,6.4168901,-26.636719};
                    angles[]={6.2086568,3.1486363,6.2219291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12293;
                type="Land_BagFence_Round_F";
                atlOffset=0.0032091141;
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={15.748047,6.1022854,-29.412109};
                    angles[]={6.2086568,4.9812317,6.2219291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12294;
                type="Land_BagFence_Round_F";
                atlOffset=0.0034570694;
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={6.0332031,6.4142618,-29.962891};
                    angles[]={6.1585026,3.4104357,0.05461248};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12295;
                type="Land_Pallet_MilBoxes_F";
                atlOffset=0.032712936;
            };
            class Item23
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={10.554688,7.0941534,-27.742188};
                    angles[]={6.1954112,0.52784097,6.2352223};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12296;
                type="MapBoard_altis_F";
                atlOffset=0.010035515;
            };
            class Item24
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={15.548828,6.2407732,-27.652344};
                    angles[]={6.2086568,1.0542411,6.2219291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12297;
                type="Land_BagFence_Short_F";
                atlOffset=0.0033464432;
            };
            class Item25
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={5.0449219,6.4820471,-28.705078};
                    angles[]={6.1954112,3.9341915,0.017332481};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12298;
                type="Land_MetalBarrel_F";
                atlOffset=0.026231766;
            };
            class Item26
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={14.744141,5.8379583,-35.398438};
                    angles[]={6.1742845,1.8396391,6.2352223};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12299;
                type="Land_PaperBox_closed_F";
                atlOffset=0.015274048;
            };
            class Item27
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={10.371094,5.8706284,-34.994141};
                    angles[]={6.13234,3.1485486,6.2778478};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12300;
                type="Land_WoodenTable_large_F";
                atlOffset=0.036515236;
            };
            class Item28
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={9.5839844,5.8610601,-35.580078};
                    angles[]={6.13234,4.195816,6.2778478};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12301;
                type="Land_CampingChair_V2_F";
                atlOffset=0.036792755;
            };
            class Item29
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={11.089844,5.9686508,-34.589844};
                    angles[]={6.1742845,1.8396219,6.2352223};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12302;
                type="Land_CampingChair_V2_F";
                atlOffset=0.015386581;
            };
            class Item30
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={28.767578,4.4641428,-42.705078};
                    angles[]={6.2325611,1.519761,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1601074535;
                };
                id=12303;
                type="Land_BagFence_Long_F";
                atlOffset=0.013025284;
            };
            class Item31
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={32.824219,5.3733406,-33.863281};
                    angles[]={6.2099838,6.2321496,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1601074535;
                };
                id=12304;
                type="Land_Razorwire_F";
                atlOffset=0.021975517;
            };
            class Item32
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.558594,4.9751244,-33.341797};
                    angles[]={6.2060065,2.8287582,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12305;
                type="Land_BagFence_Round_F";
                atlOffset=0.018421173;
            };
            class Item33
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={47.972656,4.3603277,-40.130859};
                    angles[]={6.2060056,4.3995538,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12306;
                type="Land_BagFence_Round_F";
                atlOffset=0.019712448;
            };
            class Item34
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={45.324219,4.0803967,-45.861328};
                    angles[]={6.2365522,0.99616182,6.2658529};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12307;
                type="Land_Sacks_heap_F";
                atlOffset=0.0076522827;
            };
            class Item35
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={46.837891,4.4680891,-38.773438};
                    angles[]={6.2060056,0.47256294,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12308;
                type="Land_BagFence_Short_F";
                atlOffset=0.018351555;
            };
            class Item36
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={42.421875,4.9003525,-33.921875};
                    angles[]={6.2060065,0.73436224,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12309;
                type="Land_BagFence_Short_F";
                atlOffset=0.018393517;
            };
            class Item37
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={45.824219,4.4987345,-38.451172};
                    angles[]={6.2060065,3.0905576,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12310;
                type="Land_BagFence_End_F";
                atlOffset=0.01693821;
            };
            class Item38
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={43.279297,4.8350201,-34.558594};
                    angles[]={6.2060065,0.47256294,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12311;
                type="Land_BagFence_End_F";
                atlOffset=0.018409729;
            };
            class Item39
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={33.914063,4.3775644,-43.066406};
                    angles[]={6.2325621,4.9229956,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12312;
                type="Land_MetalBarrel_F";
                atlOffset=0.012150764;
            };
            class Item40
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={33.658203,5.8499823,-37.949219};
                    angles[]={0,3.0905576,0};
                };
                side="Empty";
                flags=1;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12313;
                type="Land_i_Garage_V2_F";
                atlOffset=1.3164091;
            };
            class Item41
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={28.691406,5.6879406,-55.595703};
                    angles[]={6.2738566,4.6613536,0.0080009829};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                };
                id=12314;
                type="Land_Razorwire_F";
                atlOffset=1.2082653;
            };
            class Item42
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={30.074219,5.1268167,-56.765625};
                    angles[]={6.2738566,1.519761,0.0080009829};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12315;
                type="Land_Shoot_House_Wall_F";
                atlOffset=0.0043344498;
            };
            class Item43
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={28.271484,4.545188,-47.732422};
                    angles[]={6.2312331,4.6613536,6.272521};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1;
                };
                id=12316;
                type="Land_Razorwire_F";
                atlOffset=0.011288643;
            };
            class Item44
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={34.451172,6.7138948,-51.003906};
                    angles[]={0,3.0905576,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12317;
                type="Land_u_House_Big_01_V1_F";
                atlOffset=0.0058774948;
            };
            class Item45
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={43.677734,4.7127609,-48.066406};
                    angles[]={6.2765174,1.519761,6.2765174};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12318;
                type="CamoNet_OPFOR_open_F";
                atlOffset=0.00080108643;
            };
            class Item46
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={49.082031,3.7602282,-48.302734};
                    angles[]={0,1.519761,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1;
                };
                id=12319;
                type="Land_Mound01_8m_F";
                atlOffset=0.0023393631;
            };
            class Item47
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={34.255859,4.2417374,-59.5625};
                    angles[]={6.2738504,3.0905576,0.017332481};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12320;
                type="Land_Razorwire_F";
                atlOffset=0.0066585541;
            };
            class Item48
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={41.865234,3.8367786,-51.8125};
                    angles[]={0,1.519761,0};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                };
                id=12321;
                type="Land_Garbage_square5_F";
                atlOffset=0.23041248;
            };
            class Item49
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.783203,4.2620964,-54.974609};
                    angles[]={6.2685208,6.2321496,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1;
                };
                id=12322;
                type="Land_CratesWooden_F";
                atlOffset=0.003988266;
            };
            class Item50
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={49.195313,3.9427786,-55.361328};
                    angles[]={6.2778587,4.6613536,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12323;
                type="Land_BagFence_Round_F";
                atlOffset=0.0015487671;
            };
            class Item51
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={46.525391,3.9442577,-57.275391};
                    angles[]={0.0026520467,0.21076359,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12324;
                type="Land_BagFence_Round_F";
                atlOffset=-0.0026750565;
            };
            class Item52
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={45.414063,4.0523653,-47.609375};
                    angles[]={6.2259145,4.9231529,6.2765174};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12325;
                type="Land_Pallet_MilBoxes_F";
                atlOffset=0.013418198;
            };
            class Item53
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={47.896484,4.8990021,-52.009766};
                    angles[]={5.8507462,2.0405583,0.68105364};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                };
                id=12326;
                type="MapBoard_altis_F";
                atlOffset=0.31799603;
            };
            class Item54
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={48.271484,3.9289465,-56.972656};
                    angles[]={6.2778587,2.5669589,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12327;
                type="Land_BagFence_Short_F";
                atlOffset=0.0013380051;
            };
            class Item55
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={46.613281,4.0645723,-46.556641};
                    angles[]={6.2365522,5.446909,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12328;
                type="Land_MetalBarrel_F";
                atlOffset=0.012291908;
            };
            class Item56
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.494141,4.1608601,-56.617188};
                    angles[]={0.0026520467,3.3523569,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12329;
                type="Land_PaperBox_closed_F";
                atlOffset=-0.00033092499;
            };
            class Item57
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.646484,3.9953108,-52.244141};
                    angles[]={6.2685208,4.6612659,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12330;
                type="Land_WoodenTable_large_F";
                atlOffset=0.0040121078;
            };
            class Item58
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.011719,4.0797529,-51.488281};
                    angles[]={6.2685208,5.7085338,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12331;
                type="Land_CampingChair_V2_F";
                atlOffset=0.0040016174;
            };
            class Item59
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={41.087891,4.9287262,-52.931641};
                    angles[]={6.2685208,3.3523397,0.0013372133};
                };
                side="Empty";
                class Attributes
                {
                    skill=0.2;
                };
                id=12332;
                type="Land_CampingChair_V2_F";
                atlOffset=0.87270069;
            };
            class Item60
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-8.1484375,4.6100512,-40.261719};
                    angles[]={6.2126365,6.2185268,6.2751918};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12333;
                type="Land_BagFence_Short_F";
                atlOffset=0.015591621;
            };
            class Item61
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-11.589844,4.6333199,-40.322266};
                    angles[]={6.2365522,6.2185268,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12334;
                type="Land_BagFence_Short_F";
                atlOffset=0.014331818;
            };
            class Item62
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-9.9082031,4.6285496,-40.298828};
                    angles[]={6.2365522,6.2185268,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12335;
                type="Land_BagFence_Short_F";
                atlOffset=0.021899223;
            };
            class Item63
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-15.023438,4.6813116,-40.328125};
                    angles[]={6.2432079,6.2185268,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12336;
                type="Land_BagFence_Short_F";
                atlOffset=0.00822258;
            };
            class Item64
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-13.339844,4.6566906,-40.302734};
                    angles[]={6.2365522,6.2185268,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12337;
                type="Land_BagFence_Short_F";
                atlOffset=0.022844315;
            };
            class Item65
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-16.054688,4.7027407,-40.402344};
                    angles[]={6.2432079,6.2185268,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12338;
                type="Land_BagFence_Short_F";
                atlOffset=0.0064916611;
            };
        };
        id=12272;
        atlOffset=0.044787407;
    };
    class Item35
    {
        dataType="Layer";
        name="Destroyed House [OPF]_1";
        class Entities
        {
            items=23;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-36.896484,5.2572203,-35.066406};
                    angles[]={6.2591896,1.5426639,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12340;
                type="Land_Pallet_F";
                atlOffset=0.0016851425;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-24.328125,5.7820148,-28.476563};
                    angles[]={6.2299027,1.5426639,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12341;
                type="Land_PaperBox_closed_F";
                atlOffset=0.013049126;
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-29.839844,5.3553619,-36.763672};
                    angles[]={6.2312322,2.0662632,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12342;
                type="Land_Pallet_MilBoxes_F";
                atlOffset=0.0090618134;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-28.871094,6.0043964,-26.849609};
                    angles[]={6.253861,3.1134605,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12343;
                type="Land_HBarrier_5_F";
                atlOffset=0.0063095093;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-23.375,5.972785,-26.699219};
                    angles[]={6.2299027,3.1134605,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12344;
                type="Land_HBarrier_5_F";
                atlOffset=0.012948036;
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-32.183594,5.9523878,-29.074219};
                    angles[]={6.253861,4.684257,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12345;
                type="Land_HBarrier_5_F";
                atlOffset=0.006310463;
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-22.621094,6.1018877,-31.425781};
                    angles[]={6.253861,3.1134605,6.2578602};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12346;
                type="CamoNet_OPFOR_open_F";
                atlOffset=0.0061903;
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-33.730469,5.9189663,-31.994141};
                    angles[]={6.2658563,1.5426639,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12347;
                type="Land_CratesWooden_F";
                atlOffset=0.00033569336;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-35.402344,5.5566492,-30.171875};
                    angles[]={6.2658563,1.019065,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12348;
                type="Land_Pallets_F";
                atlOffset=0.00036525726;
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-24.330078,5.8589096,-36.865234};
                    angles[]={0,1.5426639,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12349;
                type="Land_d_House_Small_01_V1_F";
                atlOffset=0.0096292496;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-26.447266,5.7990379,-28.533203};
                    angles[]={6.253861,3.1134605,6.2578602};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1051372705;
                };
                id=12350;
                type="Land_PaperBox_closed_F";
                atlOffset=0.0010519028;
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-30.574219,5.6508303,-28.541016};
                    angles[]={6.253861,1.5426716,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1061421056;
                };
                id=12351;
                type="Land_Pallets_stack_F";
                atlOffset=0.0063648224;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-33.710938,5.646596,-29.845703};
                    angles[]={6.2658563,1.5427583,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1064784497;
                };
                id=12352;
                type="Land_Pallets_stack_F";
                atlOffset=0.00030422211;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-19.851563,5.5364504,-31.855469};
                    angles[]={6.2299027,5.469655,6.2645216};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1066206295;
                };
                id=12353;
                type="Land_PaperBox_open_full_F";
                atlOffset=0.0086336136;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-18.251953,5.5908976,-30.935547};
                    angles[]={6.2299027,1.019065,6.2645216};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12354;
                type="Land_PaperBox_closed_F";
                atlOffset=0.0086965561;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-17.880859,5.9933977,-26.544922};
                    angles[]={6.1967349,3.1134605,0.0146689};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12355;
                type="Land_HBarrier_5_F";
                atlOffset=0.025421143;
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-18.078125,5.2486191,-32.558594};
                    angles[]={6.2299027,5.7314544,6.2645216};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=5;
                };
                id=12356;
                type="Land_Sacks_heap_F";
                atlOffset=0.0085992813;
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-14.28125,6.2211237,-29.943359};
                    angles[]={6.1967349,1.5426639,0.0146689};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12357;
                type="Land_HBarrier_Big_F";
                atlOffset=0.02539444;
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-29.113281,5.9329586,-40.390625};
                    angles[]={6.233892,0.75728333,6.2392135};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12358;
                type="Land_FieldToilet_F";
                atlOffset=-0.0033578873;
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-18.167969,4.7407627,-46.947266};
                    angles[]={6.2365522,6.2550883,6.2645216};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=5;
                };
                id=12359;
                type="Land_WaterTank_F";
                atlOffset=0.0069732666;
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-15.535156,4.5968084,-42.873047};
                    angles[]={6.2432079,0.49550167,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12360;
                type="Land_MetalBarrel_F";
                atlOffset=0.0037279129;
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-16.015625,4.5835466,-43.507813};
                    angles[]={6.2432079,5.4697771,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=5;
                };
                id=12361;
                type="Land_MetalBarrel_F";
                atlOffset=0.0036087036;
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-16.285156,4.614975,-42.892578};
                    angles[]={6.2432079,3.113143,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12362;
                type="Land_MetalBarrel_F";
                atlOffset=0.0036087036;
            };
        };
        id=12339;
        atlOffset=0.014558792;
    };
    class Item36
    {
        dataType="Layer";
        name="Damaged House [OPF]_2";
        class Entities
        {
            items=23;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={48.964844,4.252161,-80.992188};
                    angles[]={0,2.1528964,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12393;
                type="Land_u_House_Small_02_V1_dam_F";
                atlOffset=0.0086345673;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={43.810547,3.5820913,-89.212891};
                    angles[]={6.2099833,0.58210003,0.012000273};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=284;
                };
                id=12394;
                type="Land_HBarrier_Big_F";
                atlOffset=0.021251678;
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={34.587891,3.7862272,-74.642578};
                    angles[]={6.2219291,3.7236929,0.062584557};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=544;
                };
                id=12395;
                type="Land_PaperBox_open_full_F";
                atlOffset=0.030991554;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={45.402344,4.2533331,-68.902344};
                    angles[]={6.2685208,3.7236929,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=588470303;
                };
                id=12396;
                type="Land_HBarrier_3_F";
                atlOffset=0.0040140152;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={44.552734,4.0725956,-70.423828};
                    angles[]={6.2458706,5.2944889,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=2147450881;
                };
                id=12397;
                type="Land_PaperBox_closed_F";
                atlOffset=0.0080032349;
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={43.191406,4.0832605,-69.529297};
                    angles[]={6.2671871,3.7236931,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12398;
                type="Land_PaperBox_closed_F";
                atlOffset=0.0046491623;
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.244141,4.3194065,-78.328125};
                    angles[]={6.2192731,5.2944889,6.2725158};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1088596650;
                };
                id=12399;
                type="CamoNet_OPFOR_open_F";
                atlOffset=0.013379097;
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={50.308594,3.5854549,-73.1875};
                    angles[]={6.2299027,2.1412201,6.253861};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1185101655;
                };
                id=12400;
                type="Land_BagFence_Short_F";
                atlOffset=0.0059766769;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={47.894531,3.8295193,-68.755859};
                    angles[]={6.2685208,3.0280218,6.253861};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1082137712;
                };
                id=12401;
                type="Land_BagFence_Round_F";
                atlOffset=-0.0036783218;
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={50.962891,3.6835155,-71.083984};
                    angles[]={6.2299027,4.5532131,6.253861};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12402;
                type="Land_BagFence_Round_F";
                atlOffset=0.0059766769;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={48.849609,3.5697842,-74.921875};
                    angles[]={6.2458687,2.1528964,6.2378831};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1057738071;
                };
                id=12403;
                type="Land_BagFence_Long_F";
                atlOffset=-0.0019922256;
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={36.470703,4.4789209,-74.535156};
                    angles[]={6.2591896,3.7124701,0.025327841};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-2057136531;
                };
                id=12404;
                type="Land_ToiletBox_F";
                atlOffset=0.012332916;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={49.736328,3.7614889,-69.367188};
                    angles[]={6.2685208,3.7265377,6.253861};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1095304675;
                };
                id=12405;
                type="Land_BagFence_Short_F";
                atlOffset=-0.0036783218;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={39.373047,3.7478771,-77.425781};
                    angles[]={6.259192,2.9384518,6.272521};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1185158231;
                };
                id=12406;
                type="Land_CampingChair_V1_F";
                atlOffset=0.0033016205;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.5,3.7391167,-77.291016};
                    angles[]={6.259192,2.4143119,6.272521};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12407;
                type="Land_CampingChair_V1_F";
                atlOffset=0.003364563;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={39.630859,3.6592531,-76.789063};
                    angles[]={6.259192,2.6764951,6.272521};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1064572880;
                };
                id=12408;
                type="Land_CampingTable_F";
                atlOffset=0.0033655167;
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={36.699219,3.727025,-84.828125};
                    angles[]={6.1993818,0.58210003,0.059927464};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1051993989;
                };
                id=12409;
                type="Land_HBarrier_Big_F";
                atlOffset=0.035968781;
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={33.855469,4.017334,-79.378906};
                    angles[]={6.1967349,5.2944889,0.062584557};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1064438095;
                };
                id=12410;
                type="Land_HBarrier_Big_F";
                atlOffset=0.037187576;
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={29.570313,2.8494034,-83.166016};
                    angles[]={6.1993818,2.4146957,0.051953323};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1188190046;
                };
                id=12411;
                type="Land_PaperBox_open_empty_F";
                atlOffset=0.034022331;
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={38.552734,3.3625526,-83.384766};
                    angles[]={6.1967349,2.1528964,0.062584557};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=992920645;
                };
                id=12412;
                type="Land_PaperBox_open_full_F";
                atlOffset=0.037301064;
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={30.324219,3.0972128,-81.113281};
                    angles[]={6.1993818,3.7236929,0.051953323};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12413;
                type="Land_PaperBox_closed_F";
                atlOffset=0.034116745;
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={30.392578,6.2896099,-82.835938};
                    angles[]={0,3.7236929,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12414;
                type="Flag_CSAT_F";
                atlOffset=0.033867836;
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.849609,3.3437223,-84.445313};
                    angles[]={6.1967354,0.058501139,0.012005239};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12415;
                type="Land_PaperBox_closed_F";
                atlOffset=0.024571419;
            };
        };
        id=12392;
        atlOffset=-0.011137009;
    };
    class Item37
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={38.074219,2.5454397,-94.355469};
            angles[]={0,5.3079834,0};
        };
        side="Empty";
        flags=5;
        class Attributes
        {
            aiRadarUsage=-1054867456;
        };
        id=12458;
        type="Land_i_House_Small_01_V3_F";
        atlOffset=0.036444664;
    };
    class Item38
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={29.650391,1.8322954,-108.67188};
            angles[]={0,3.1726632,0};
        };
        side="Empty";
        flags=5;
        class Attributes
        {
            aiRadarUsage=-1054867456;
        };
        id=12459;
        type="Land_d_Stone_HouseSmall_V1_F";
        atlOffset=-0.0060563087;
    };
    class Item39
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={14.138672,7.1867743,-28.701172};
            angles[]={6.2086568,0.0337037,6.2219291};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=681499904;
        };
        id=12460;
        type="CUP_O_KORD_high_RU";
        atlOffset=0.0032091141;
    };
    class Item40
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={40.982422,5.7815228,-34.845703};
            angles[]={6.2099833,0.0337037,6.2658529};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=681499904;
        };
        id=12461;
        type="CUP_O_KORD_high_RU";
        atlOffset=0.015946388;
    };
    class Item41
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-1.4042969,7.1366224,-28.474609};
            angles[]={6.1585026,0.0337037,0.047963165};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=681499904;
        };
        id=12462;
        type="CUP_O_KORD_high_RU";
        atlOffset=0.047524452;
    };
    class Item42
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={47.515625,4.3021879,-71.720703};
            angles[]={6.2458687,0.81891525,6.2378831};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=681499904;
        };
        id=12463;
        type="CUP_O_D30_AT_RU";
        atlOffset=-0.0011320114;
    };
    class Item43
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-12.013672,5.0501833,-43.445313};
            angles[]={6.2432079,0.049527779,6.2685208};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=681499904;
        };
        id=12464;
        type="CUP_O_D30_AT_RU";
        atlOffset=0.0063838959;
    };
    class Item44
    {
        dataType="Layer";
        name="Vehicle Bunker (Large)";
        class Entities
        {
            items=26;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-52.083984,5.1741695,-55.380859};
                    angles[]={6.2285743,4.4699221,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1601074535;
                };
                id=12465;
                type="Land_BagFence_Long_F";
                atlOffset=9.5367432e-007;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-42.273438,5.0838232,-56.945313};
                    angles[]={6.2352223,1.3283294,6.2525291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1601074535;
                };
                id=12466;
                type="Land_BagFence_Long_F";
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-40.460938,4.7767353,-62.185547};
                    angles[]={6.2352223,4.4699221,6.2525291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12467;
                type="Land_BagFence_Long_F";
                atlOffset=4.5776367e-005;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-35.9375,4.6408644,-61.710938};
                    angles[]={6.253861,1.3283294,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12468;
                type="Land_BagFence_Long_F";
                atlOffset=0.00043773651;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-49.470703,4.6033487,-66.453125};
                    angles[]={6.2325611,1.3283294,0.012000273};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12469;
                type="Land_BagFence_Long_F";
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-36.599609,4.7513294,-59.046875};
                    angles[]={6.253861,1.3283294,6.233892};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12470;
                type="Land_BagFence_Long_F";
                atlOffset=0.00050735474;
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-34.466797,4.9460144,-58.287109};
                    angles[]={6.253861,6.0407434,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12471;
                type="Land_WaterTank_F";
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-39.273438,4.6595917,-64.320313};
                    angles[]={6.2485328,0.54293132,6.2525291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12472;
                type="Land_BagFence_Round_F";
                atlOffset=0.0010595322;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-36.091797,4.5837803,-63.679688};
                    angles[]={6.2485328,5.2553201,6.2525291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12473;
                type="Land_BagFence_Round_F";
                atlOffset=0.0006313324;
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-41.048828,5.3176651,-59.732422};
                    angles[]={6.2352223,1.3283294,6.2525291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12474;
                type="Land_HBarrier_3_F";
                atlOffset=0.026147842;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-34.162109,5.1207085,-55.363281};
                    angles[]={6.2605233,1.3283294,6.2352223};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12475;
                type="Land_HBarrier_3_F";
                atlOffset=-9.5367432e-007;
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-36.123047,5.1748638,-56.732422};
                    angles[]={6.253861,6.040719,6.233892};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12476;
                type="Land_HBarrier_3_F";
                atlOffset=0.00060749054;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-39.617188,5.1819944,-60.320313};
                    angles[]={6.2352223,6.0407186,6.2525291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12477;
                type="Land_CratesShabby_F";
                atlOffset=0.0011034012;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-37.527344,4.587615,-64.679688};
                    angles[]={6.2485328,6.0407186,6.2525291};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12478;
                type="Land_BagFence_Short_F";
                atlOffset=0.00012874603;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-50.701172,5.6646471,-60.949219};
                    angles[]={6.2285743,1.3283294,0.0093286335};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12479;
                type="Land_HBarrier_Big_F";
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-32.591797,4.2543201,-63.837891};
                    angles[]={6.2551923,0.28113198,6.2418742};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12480;
                type="Land_CratesPlastic_F";
                atlOffset=-9.5367432e-007;
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-32.058594,4.4760914,-58.175781};
                    angles[]={6.2605233,0.019332409,6.2352223};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12481;
                type="Land_Pallets_F";
                atlOffset=0.00013446808;
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-34.21875,4.5046244,-64.486328};
                    angles[]={6.2551923,6.0407186,6.2418742};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12482;
                type="Land_GarbageBags_F";
                atlOffset=-9.5367432e-007;
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-33.205078,4.2030888,-61.921875};
                    angles[]={6.253861,2.2958004,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12483;
                type="Land_Pallet_F";
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-34.378906,5.3789558,-47.894531};
                    angles[]={6.2471995,4.4699221,6.2312312};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12484;
                type="Land_Razorwire_F";
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-40.886719,5.7063694,-45};
                    angles[]={6.2605233,2.8991258,6.247201};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12486;
                type="Land_Razorwire_F";
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-46.433594,5.730835,-48.464844};
                    angles[]={6.256525,6.0407186,0.010664274};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12487;
                type="Land_HBarrier_3_F";
                atlOffset=-9.5367432e-007;
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-52.523438,5.6496181,-49.962891};
                    angles[]={6.2645216,6.0407186,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12488;
                type="Land_HBarrier_3_F";
            };
            class Item23
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-39.361328,5.625514,-50.974609};
                    angles[]={6.2432065,2.8991258,6.247201};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12490;
                type="Land_BagBunker_Large_F";
            };
            class Item24
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-52.833984,5.6028357,-52.357422};
                    angles[]={6.2645216,1.3283294,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12491;
                type="Land_HBarrier_3_F";
            };
            class Item25
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-49.558594,5.3015423,-49.099609};
                    angles[]={6.256525,5.9774623,0.010664274};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1601074535;
                };
                id=12494;
                type="Land_BagFence_Long_F";
            };
        };
        id=12492;
        atlOffset=-0.023983002;
    };
    class Item45
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={-48.119141,5.7895737,-52.554688};
            angles[]={6.2645216,5.904911,0.0026744273};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=681499904;
        };
        id=12493;
        type="CUP_O_D30_AT_RU";
    };
    class Item46
    {
        dataType="Layer";
        name="Bunker System [IND]";
        class Entities
        {
            items=93;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={156.57617,10.044692,65.802734};
                    angles[]={6.2192721,3.0131545,6.25914};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1402060832;
                };
                id=12496;
                type="CamoNet_INDP_open_F";
                atlOffset=0.0027370453;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={156.57617,9.7408991,64.541016};
                    angles[]={6.2192721,3.0131545,6.2591896};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12497;
                type="Land_BagBunker_Large_F";
                atlOffset=0.0022335052;
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={158.09961,9.4305716,55.658203};
                    angles[]={6.2259145,3.0131545,6.2645216};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12498;
                type="Land_HBarrierBig_F";
                atlOffset=0.0014133453;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={155.8457,10.151172,71.09375};
                    angles[]={6.1940885,3.0131545,6.2658529};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12501;
                type="Land_Razorwire_F";
                atlOffset=0.0004863739;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={148.5293,9.1186266,55.541016};
                    angles[]={6.2206011,3.0131545,6.2658563};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12502;
                type="Land_HBarrier_5_F";
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={151.02148,9.4817057,60.65625};
                    angles[]={6.2139621,3.0131545,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12506;
                type="Land_HBarrier_3_F";
                atlOffset=0.0012531281;
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={152.51367,9.5093641,55.957031};
                    angles[]={6.2206011,6.154747,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12507;
                type="Land_CncShelter_F";
                atlOffset=0.0020828247;
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={148.06641,9.135066,60.119141};
                    angles[]={6.2060065,3.0131545,6.2658563};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1051372705;
                };
                id=12512;
                type="Land_BagFence_Long_F";
                atlOffset=0.00039672852;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={145.74414,9.5651522,65.451172};
                    angles[]={6.2179451,1.1805587,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12514;
                type="Land_BagFence_Long_F";
                atlOffset=0.00043106079;
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={146.08398,9.144475,59.863281};
                    angles[]={6.2060065,6.154747,6.2658563};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12516;
                type="Land_BagFence_Short_F";
                atlOffset=0.00031661987;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={150.75977,9.8044233,65.671875};
                    angles[]={6.200706,1.442358,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=539977727;
                };
                id=12517;
                type="Land_Razorwire_F";
                atlOffset=0.013160706;
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={127.34961,10.765571,75.544922};
                    angles[]={6.2445378,3.0131545,0.013332055};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=53811;
                };
                id=12518;
                type="Land_BagBunker_Small_F";
                atlOffset=0.0014686584;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={125.62891,10.134336,73.720703};
                    angles[]={6.2525291,1.7041574,0.0053377044};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12519;
                type="Land_BagFence_Short_F";
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={130.01563,10.182033,73.910156};
                    angles[]={6.2445378,0.65695977,0.0053377044};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1185107592;
                };
                id=12520;
                type="Land_BagFence_Round_F";
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={127.46484,11.486646,76.222656};
                    angles[]={6.2445378,6.1547823,0.013332055};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1202987776;
                };
                id=12521;
                type="B_HMG_01_high_F";
                atlOffset=1.9073486e-006;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={127.69336,10.779513,71.667969};
                    angles[]={6.2325635,1.1805587,0.0053265258};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1343278848;
                };
                id=12522;
                type="CamoNet_INDP_open_F";
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={130.4668,10.227647,62.046875};
                    angles[]={6.2166171,3.0131545,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1342126464;
                };
                id=12523;
                type="CamoNet_INDP_open_F";
                atlOffset=0.0046310425;
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={126.86914,9.2469893,51.347656};
                    angles[]={6.1571894,3.0131545,6.2458706};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1341344256;
                };
                id=12524;
                type="Land_HBarrierBig_F";
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={136.00977,9.4621286,57.808594};
                    angles[]={6.2152901,0.1333611,6.2618537};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=933194112;
                };
                id=12525;
                type="Land_HBarrierWall4_F";
                atlOffset=-1.9073486e-006;
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={124.37305,9.5364561,56.164063};
                    angles[]={6.1427817,6.154747,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1386179840;
                };
                id=12526;
                type="Land_HBarrierWall4_F";
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={118.52148,9.6233339,54.636719};
                    angles[]={0,3.0131545,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12527;
                type="Land_CncBarrierMedium4_F";
                atlOffset=1.9073486e-006;
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={130.12109,10.165353,65.333984};
                    angles[]={0,1.442358,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12528;
                type="Land_CncBarrierMedium4_F";
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={113.70703,9.9998102,56.675781};
                    angles[]={6.2192731,2.7513547,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=53797;
                };
                id=12529;
                type="Land_HBarrier_5_F";
                atlOffset=-1.9073486e-006;
            };
            class Item23
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={140.94727,8.8633642,60.560547};
                    angles[]={6.2060056,2.227756,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1185111671;
                };
                id=12530;
                type="Land_Garbage_square5_F";
            };
            class Item24
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={118.31836,9.1827402,58.140625};
                    angles[]={6.2511969,2.227756,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12531;
                type="Land_Garbage_square5_F";
            };
            class Item25
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={130.30078,8.5768557,55.150391};
                    angles[]={6.1427822,3.0131545,0.0146689};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12532;
                type="Land_Garbage_square5_F";
            };
            class Item26
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={127.2832,10.016223,62.996094};
                    angles[]={6.2166171,1.7041574,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12533;
                type="Land_HBarrier_3_F";
                atlOffset=0.00051116943;
            };
            class Item27
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={143.77148,9.5939226,60.224609};
                    angles[]={6.2060056,3.2749538,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1065353216;
                };
                id=12534;
                type="Land_HBarrier_3_F";
                atlOffset=0.0013332367;
            };
            class Item28
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={116.69336,10.282134,64.666016};
                    angles[]={6.2272439,6.154747,6.2658563};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12535;
                type="Land_HBarrier_3_F";
                atlOffset=0.0016269684;
            };
            class Item29
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={130.59961,9.7442408,59.767578};
                    angles[]={6.2166171,1.7041574,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12536;
                type="Land_HBarrier_3_F";
                atlOffset=0.00052261353;
            };
            class Item30
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={141.40039,10.186429,67.847656};
                    angles[]={6.2179451,0.1333611,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12537;
                type="Land_HBarrier_3_F";
                atlOffset=0.0073223114;
            };
            class Item31
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={128.20898,9.918664,56.666016};
                    angles[]={6.1427817,3.0131545,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1518338048;
                };
                id=12538;
                type="Land_CncShelter_F";
                atlOffset=1.9073486e-006;
            };
            class Item32
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={132.30469,9.9141169,57.347656};
                    angles[]={6.2166171,3.0131545,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12539;
                type="Land_CncShelter_F";
                atlOffset=0.00047874451;
            };
            class Item33
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={130.25,10.4759,56.53125};
                    angles[]={0,3.0131545,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=5;
                };
                id=12540;
                type="Land_CncWall1_F";
            };
            class Item34
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={139.31836,9.407218,56.566406};
                    angles[]={0,0.1333611,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12541;
                type="Land_CncBarrierMedium_F";
                atlOffset=1.9073486e-006;
            };
            class Item35
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={114.1543,9.8726454,53.316406};
                    angles[]={0,2.4895554,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1088596650;
                };
                id=12542;
                type="Land_CncBarrierMedium_F";
            };
            class Item36
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={118.85352,10.077531,60.855469};
                    angles[]={0,0.1333611,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1185070935;
                };
                id=12543;
                type="Land_CncBarrierMedium_F";
            };
            class Item37
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={116.96094,10.133195,60.863281};
                    angles[]={0,3.0131545,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1082130691;
                };
                id=12544;
                type="Land_CncBarrierMedium_F";
                atlOffset=0.00048065186;
            };
            class Item38
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={141.21094,9.3869333,56.558594};
                    angles[]={0,3.0131545,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12545;
                type="Land_CncBarrierMedium_F";
                atlOffset=0.00045967102;
            };
            class Item39
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={140.08203,9.8870153,63.345703};
                    angles[]={0,3.0131545,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1057738071;
                };
                id=12546;
                type="Land_CncBarrierMedium_F";
                atlOffset=0.00035858154;
            };
            class Item40
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={143.03906,9.4050627,57.046875};
                    angles[]={0,2.7513547,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-2057136531;
                };
                id=12547;
                type="Land_CncBarrierMedium_F";
                atlOffset=0.00043487549;
            };
            class Item41
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={141.97461,9.8838587,63.337891};
                    angles[]={0,3.2749538,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1067060238;
                };
                id=12548;
                type="Land_CncBarrierMedium_F";
                atlOffset=0.00028991699;
            };
            class Item42
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={138.25586,9.8527803,62.857422};
                    angles[]={0,2.7513547,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12549;
                type="Land_CncBarrierMedium_F";
                atlOffset=0.00018882751;
            };
            class Item43
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={144.22656,9.7334013,67.439453};
                    angles[]={6.2179451,3.5367532,6.2578578};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1023135460;
                };
                id=12550;
                type="Land_BagFence_Round_F";
                atlOffset=0.00030708313;
            };
            class Item44
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={119.54688,9.8632078,64.988281};
                    angles[]={6.253861,3.2749538,6.2658529};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-2147483647;
                };
                id=12551;
                type="Land_BagFence_Round_F";
            };
            class Item45
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={114.20313,9.9066114,63.558594};
                    angles[]={6.2511969,6.154747,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1062880893;
                };
                id=12552;
                type="Land_BagFence_Round_F";
                atlOffset=0.0004825592;
            };
            class Item46
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={131.97461,10.139028,72.527344};
                    angles[]={6.2445378,4.0603523,0.0053377044};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1088596650;
                };
                id=12553;
                type="Land_BagFence_Round_F";
            };
            class Item47
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={126.16992,9.7997732,65.728516};
                    angles[]={6.2498641,1.1805587,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1067781498;
                };
                id=12554;
                type="Land_BagFence_Round_F";
                atlOffset=0.00074386597;
            };
            class Item48
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={126.60938,9.895339,68.195313};
                    angles[]={6.2325635,4.8457503,0.0053265258};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1097331983;
                };
                id=12555;
                type="Land_BagFence_Round_F";
                atlOffset=0.00086593628;
            };
            class Item49
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={135.00391,9.535449,63.724609};
                    angles[]={6.2152901,4.583951,6.2618537};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12556;
                type="Land_BagFence_Round_F";
                atlOffset=0.00013160706;
            };
            class Item50
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={126.02734,10.022574,70.767578};
                    angles[]={6.2325635,4.3221512,0.0053265258};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=5;
                };
                id=12557;
                type="Land_BagFence_Long_F";
                atlOffset=0.00086021423;
            };
            class Item51
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={134.14453,9.4090853,61.595703};
                    angles[]={6.2152901,5.369349,6.2618537};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1067781498;
                };
                id=12558;
                type="Land_BagFence_Long_F";
                atlOffset=0.00012969971;
            };
            class Item52
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={132.29297,9.9603262,70.046875};
                    angles[]={6.2060056,1.7041574,0.0053377044};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1064742603;
                };
                id=12559;
                type="Land_BagFence_Long_F";
                atlOffset=-1.9073486e-006;
            };
            class Item53
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={133.83008,9.6916475,65.966797};
                    angles[]={6.2325621,0.91875935,6.2618566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1065866804;
                };
                id=12560;
                type="Land_BagFence_Long_F";
                atlOffset=0.00018692017;
            };
            class Item54
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={126.90625,9.4433317,60.027344};
                    angles[]={6.2166171,1.7041574,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1188206031;
                };
                id=12561;
                type="Land_BagFence_Long_F";
            };
            class Item55
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={138.36523,9.8175669,67.939453};
                    angles[]={6.2060056,3.0131545,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1027190648;
                };
                id=12562;
                type="Land_BagFence_Long_F";
                atlOffset=0.00023078918;
            };
            class Item56
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={121.52734,9.7500086,63.458984};
                    angles[]={6.2272439,0.91875935,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12563;
                type="Land_BagFence_Long_F";
            };
            class Item57
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={120.39844,9.4612265,57.660156};
                    angles[]={6.2511969,3.2749538,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12564;
                type="Land_BagFence_Long_F";
            };
            class Item58
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={130.11328,9.5190763,57.675781};
                    angles[]={6.2166171,1.9659567,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12565;
                type="Land_HBarrier_1_F";
            };
            class Item59
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={132.52734,10.071557,67.326172};
                    angles[]={6.2325621,2.4895554,6.2618566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12566;
                type="Land_HBarrier_1_F";
                atlOffset=0.00069046021;
            };
            class Item60
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={116.71875,9.6133623,57.816406};
                    angles[]={6.2511969,5.8929477,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12567;
                type="Land_BagFence_Short_F";
            };
            class Item61
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={139.71875,9.1713934,59.417969};
                    angles[]={6.215291,6.154747,6.272521};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12568;
                type="Land_BagFence_Short_F";
                atlOffset=0.00028419495;
            };
            class Item62
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={126.7832,9.319026,57.980469};
                    angles[]={6.2272439,1.442358,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12569;
                type="Land_BagFence_Short_F";
            };
            class Item63
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={121.41211,9.3277349,56.65625};
                    angles[]={6.1571894,1.442358,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12570;
                type="Land_BagFence_Short_F";
                atlOffset=1.9073486e-006;
            };
            class Item64
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={133.20313,9.3166494,60.076172};
                    angles[]={6.2166171,1.7041574,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12571;
                type="Land_BagFence_End_F";
            };
            class Item65
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={141.80078,9.1748552,59.8125};
                    angles[]={6.2060056,3.0131545,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12572;
                type="Land_BagFence_End_F";
                atlOffset=0.00017738342;
            };
            class Item66
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={135.1582,9.411582,52.689453};
                    angles[]={6.1795578,3.0131545,6.2605233};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12573;
                type="Land_HBarrierBig_F";
                atlOffset=0.00088500977;
            };
            class Item67
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={91.021484,10.077722,43.976563};
                    angles[]={6.2325621,2.227756,0.015998369};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12574;
                type="CamoNet_INDP_open_F";
                atlOffset=0.0019817352;
            };
            class Item68
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={101.76172,10.548804,58.861328};
                    angles[]={6.2591896,3.0131545,6.2778478};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12575;
                type="CamoNet_INDP_open_F";
                atlOffset=0.0093002319;
            };
            class Item69
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={101.78516,10.314094,57.597656};
                    angles[]={6.2591896,3.0131545,6.2778478};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12576;
                type="Land_BagBunker_Large_F";
                atlOffset=0.0075893402;
            };
            class Item70
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={90.519531,10.010381,45.917969};
                    angles[]={6.2325621,2.227756,0.015998369};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12577;
                type="Land_BagBunker_Small_F";
                atlOffset=0.0013713837;
            };
            class Item71
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={101.14063,10.367625,64.044922};
                    angles[]={6.2618566,3.0131545,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12578;
                type="Land_Razorwire_F";
                atlOffset=0.071868896;
            };
            class Item72
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={96.001953,10.20276,58.603516};
                    angles[]={6.247201,1.442358,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12579;
                type="Land_Razorwire_F";
                atlOffset=0.005903244;
            };
            class Item73
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={97.689453,10.048217,49.046875};
                    angles[]={0,3.0131545,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12580;
                type="Land_CncBarrierMedium4_F";
                atlOffset=0.0025863647;
            };
            class Item74
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={104.10742,9.9334898,50.048828};
                    angles[]={6.2631893,3.0131545,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12581;
                type="Land_HBarrier_5_F";
                atlOffset=0.025844574;
            };
            class Item75
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={95.605469,9.5801325,42.642578};
                    angles[]={6.2325621,2.7513547,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12582;
                type="Land_HBarrier_5_F";
                atlOffset=0.011922836;
            };
            class Item76
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={93.589844,9.0450411,45.517578};
                    angles[]={6.2325621,1.7041574,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12583;
                type="Land_Garbage_square5_F";
            };
            class Item77
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={90.107422,10.718846,46.316406};
                    angles[]={6.2325621,5.3693666,0.015998369};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1246745472;
                };
                id=12584;
                type="B_HMG_01_high_F";
                atlOffset=1.9073486e-006;
            };
            class Item78
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={95.873047,10.132003,54.078125};
                    angles[]={6.2631893,3.0131545,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12585;
                type="Land_HBarrier_3_F";
                atlOffset=0.0043067932;
            };
            class Item79
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={91.037109,9.6998796,50.880859};
                    angles[]={6.2645216,1.7041574,6.2765174};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12586;
                type="Land_BagFence_Round_F";
                atlOffset=0.0035629272;
            };
            class Item80
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={111.94922,9.9430037,64.619141};
                    angles[]={6.2511969,3.5367532,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12587;
                type="Land_BagFence_Round_F";
                atlOffset=0.00033378601;
            };
            class Item81
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={91.248047,9.1413622,40.515625};
                    angles[]={6.1993818,0.65695977,0.025327841};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12588;
                type="Land_BagFence_Round_F";
                atlOffset=0.00029373169;
            };
            class Item82
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={92.414063,9.7289438,52.703125};
                    angles[]={6.2645216,2.4895554,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12589;
                type="Land_BagFence_Long_F";
                atlOffset=0.002954483;
            };
            class Item83
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={109.4707,9.9290895,64.373047};
                    angles[]={6.2511969,2.7513547,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12590;
                type="Land_BagFence_Long_F";
                atlOffset=0.00094032288;
            };
            class Item84
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={108.88672,9.6046743,54.917969};
                    angles[]={6.2192731,6.154747,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12591;
                type="Land_BagFence_Long_F";
                atlOffset=-1.9073486e-006;
            };
            class Item85
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={91.587891,9.6068392,48.408203};
                    angles[]={6.2325621,4.3221512,6.2671871};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12592;
                type="Land_BagFence_Long_F";
                atlOffset=0.0035057068;
            };
            class Item86
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={90.296875,9.2969885,42.826172};
                    angles[]={6.2232571,4.583951,0.025327841};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12593;
                type="Land_BagFence_Long_F";
                atlOffset=0.00021743774;
            };
            class Item87
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={107.51172,9.9371347,54.75};
                    angles[]={6.2525291,1.442358,6.2418756};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12594;
                type="Land_HBarrier_1_F";
                atlOffset=0.00024795532;
            };
            class Item88
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={97.658203,9.6573992,45.302734};
                    angles[]={6.2179451,3.0131545,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12595;
                type="Land_HBarrier_1_F";
                atlOffset=0.00046348572;
            };
            class Item89
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={98.59375,9.5651999,43.910156};
                    angles[]={6.2179451,5.8929477,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12596;
                type="Land_HBarrier_1_F";
                atlOffset=0.00042915344;
            };
            class Item90
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={110.8418,9.6161127,55.419922};
                    angles[]={6.2192731,5.8929477,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12597;
                type="Land_BagFence_Short_F";
                atlOffset=-1.9073486e-006;
            };
            class Item91
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={93.712891,9.7397661,53.917969};
                    angles[]={6.2645216,5.1075497,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12598;
                type="Land_BagFence_End_F";
                atlOffset=0.002494812;
            };
            class Item92
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={107.10742,10.181184,60.792969};
                    angles[]={6.2618566,1.442358,6.2751846};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12599;
                type="Land_Razorwire_F";
                atlOffset=0.0025272369;
            };
        };
        id=12600;
        atlOffset=-0.034172058;
    };
    class Item47
    {
        dataType="Layer";
        name="Bunker System [OPF]";
        class Entities
        {
            items=117;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-57.59375,9.4594069,65.914063};
                    angles[]={6.256525,1.6426203,0.025337253};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12601;
                type="CamoNet_OPFOR_open_F";
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-57.695313,9.264266,66.287109};
                    angles[]={6.256525,3.2134168,0.025327841};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12602;
                type="Land_BagBunker_Large_F";
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-63.523438,9.6908998,58.660156};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12603;
                type="Land_CncWall4_F";
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-66.677734,9.5638113,56.630859};
                    angles[]={0,4.7842131,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12604;
                type="Land_CncWall4_F";
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-69.917969,9.4894438,58.619141};
                    angles[]={0,2.951617,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12605;
                type="Land_CncWall4_F";
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-68.916016,8.514884,60.314453};
                    angles[]={6.256525,3.2134168,0.047963165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12606;
                type="Land_HBarrier_5_F";
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-56.796875,8.9316549,59.707031};
                    angles[]={6.2458706,3.2134168,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12607;
                type="Land_HBarrier_3_F";
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-64.0625,8.8391638,63.232422};
                    angles[]={6.2458706,3.2134168,0.033319358};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12608;
                type="Land_HBarrier_3_F";
                atlOffset=9.5367432e-007;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-73.259766,8.4747334,64.386719};
                    angles[]={6.2738566,3.2134168,0.030656165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12609;
                type="Land_HBarrier_3_F";
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-54.355469,9.0178099,60.533203};
                    angles[]={6.2458706,1.6426203,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12610;
                type="Land_HBarrier_3_F";
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-68.744141,8.6441069,62.681641};
                    angles[]={6.256525,1.6426203,0.047963165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12611;
                type="Land_HBarrier_3_F";
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-59.931641,8.8441744,59.677734};
                    angles[]={6.2458706,2.951617,0.033319358};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12612;
                type="Land_HBarrier_3_F";
                atlOffset=9.5367432e-007;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-66.755859,9.6079664,59.019531};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12613;
                type="Land_CncWall1_F";
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-73.320313,9.38272,58.363281};
                    angles[]={0,3.4752162,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12614;
                type="Land_CncWall1_F";
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-59.017578,9.8000231,58.587891};
                    angles[]={0,2.951617,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12615;
                type="Land_CncWall1_F";
                atlOffset=9.5367432e-007;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-60.40625,9.7555819,58.435547};
                    angles[]={0,2.951617,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12616;
                type="Land_CncWall1_F";
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-67.035156,9.488225,53.398438};
                    angles[]={0,5.0460124,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12617;
                type="Land_CncWall1_F";
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-66.939453,8.468071,66.810547};
                    angles[]={6.2498641,0.071824074,0.050623242};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12618;
                type="Land_BagFence_Short_F";
                atlOffset=-9.5367432e-007;
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-65.873047,8.4360113,64.228516};
                    angles[]={6.256525,1.6426203,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12619;
                type="Land_BagFence_Short_F";
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-68.5625,8.390604,66.923828};
                    angles[]={6.2525291,3.2134168,0.047963165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12620;
                type="Land_BagFence_Short_F";
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-71.486328,8.180294,64.628906};
                    angles[]={6.256525,1.6426203,0.047963165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12621;
                type="Land_BagFence_Short_F";
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-70.183594,8.3164148,67.041016};
                    angles[]={6.2525291,3.2134168,0.047963165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12622;
                type="Land_BagFence_Short_F";
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-65.871094,8.4925375,65.984375};
                    angles[]={6.2498641,4.5224137,0.033321146};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12623;
                type="Land_BagFence_Short_F";
            };
            class Item23
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-71.123047,8.2465076,66.230469};
                    angles[]={6.2525291,1.9044197,0.047963165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56162;
                };
                id=12624;
                type="Land_BagFence_Short_F";
            };
            class Item24
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-68.667969,11.651038,63.792969};
                    angles[]={0,0.071824074,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12625;
                type="Land_LampShabby_F";
            };
            class Item25
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-91.3125,11.312497,53.892578};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12626;
                type="Land_Cargo_HQ_V3_F";
                atlOffset=-9.5367432e-007;
            };
            class Item26
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-77.857422,8.7637587,68.351563};
                    angles[]={6.2645216,4.5224137,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12627;
                type="CamoNet_OPFOR_open_F";
            };
            class Item27
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-97.019531,8.65446,68.59375};
                    angles[]={6.2685208,1.6426203,6.2805333};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12628;
                type="CamoNet_OPFOR_open_F";
                atlOffset=-9.5367432e-007;
            };
            class Item28
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-75.751953,12.472436,57.660156};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12629;
                type="Land_Cargo_Patrol_V3_F";
            };
            class Item29
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-97.136719,8.4542103,68.728516};
                    angles[]={6.2685208,3.2134168,6.2805333};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12630;
                type="Land_BagBunker_Large_F";
                atlOffset=-9.5367432e-007;
            };
            class Item30
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-75.792969,8.7913408,60.558594};
                    angles[]={6.2738504,3.2134168,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12631;
                type="Land_HBarrier_Big_F";
                atlOffset=9.5367432e-007;
            };
            class Item31
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-77.154297,8.7627764,72.935547};
                    angles[]={6.2525291,3.2134168,0.034652505};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12632;
                type="Land_BagBunker_Small_F";
            };
            class Item32
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-94.310547,9.2263918,61.001953};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12633;
                type="Land_CncWall4_F";
            };
            class Item33
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-99.546875,9.2376223,61.376953};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12634;
                type="Land_CncWall4_F";
                atlOffset=9.5367432e-007;
            };
            class Item34
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-89.074219,9.2275972,60.625};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12635;
                type="Land_CncWall4_F";
                atlOffset=-9.5367432e-007;
            };
            class Item35
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-104.01758,9.2431784,61.949219};
                    angles[]={0,2.951617,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12636;
                type="Land_CncWall4_F";
                atlOffset=9.5367432e-007;
            };
            class Item36
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-79.083984,9.2703714,56.646484};
                    angles[]={0,1.6426203,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12637;
                type="Land_CncWall4_F";
                atlOffset=9.5367432e-007;
            };
            class Item37
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-76.544922,9.3223219,58.845703};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12638;
                type="Land_CncWall4_F";
            };
            class Item38
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-102.75391,11.444211,60.355469};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12639;
                type="Flag_CSAT_F";
            };
            class Item39
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-86.861328,8.2072811,61.724609};
                    angles[]={-0,3.2134168,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12640;
                type="Land_HBarrier_5_F";
            };
            class Item40
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-76.869141,9.4896574,73.638672};
                    angles[]={6.2525291,0.071824074,0.034652505};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1246721920;
                };
                id=12641;
                type="O_HMG_01_high_F";
            };
            class Item41
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-91.251953,8.2709341,65.173828};
                    angles[]={6.2685208,3.2134168,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12642;
                type="Land_HBarrier_3_F";
            };
            class Item42
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-86.693359,8.2686596,64.09375};
                    angles[]={6.2805333,1.6426203,0.0053265258};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12643;
                type="Land_HBarrier_3_F";
                atlOffset=9.5367432e-007;
            };
            class Item43
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-82.140625,8.2944164,64.644531};
                    angles[]={6.2805333,3.2134168,0.0053265258};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12644;
                type="Land_HBarrier_3_F";
                atlOffset=9.5367432e-007;
            };
            class Item44
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-79.699219,8.3439445,65.472656};
                    angles[]={6.2645216,1.6426203,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12645;
                type="Land_HBarrier_3_F";
            };
            class Item45
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-103.46875,8.3181849,66.046875};
                    angles[]={6.2698536,3.2134168,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12646;
                type="Land_HBarrier_3_F";
            };
            class Item46
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-74.714844,8.5977736,70.253906};
                    angles[]={6.2525291,1.380821,0.034652505};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12647;
                type="Land_HBarrier_3_F";
            };
            class Item47
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-86.107422,9.2331858,60.035156};
                    angles[]={0,3.9988151,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12648;
                type="Land_CncWall1_F";
            };
            class Item48
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-79.058594,9.2450533,53.511719};
                    angles[]={0,1.1190217,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12649;
                type="Land_CncWall1_F";
            };
            class Item49
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-79.958984,8.3811712,72.257813};
                    angles[]={6.2525291,4.2606144,0.034652505};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12650;
                type="Land_HBarrier_1_F";
            };
            class Item50
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-77.585938,8.1367188,56.546875};
                    angles[]={6.2711854,3.2134168,0.015998369};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1343229440;
                };
                id=12651;
                type="Land_PaperBox_open_full_F";
                atlOffset=9.5367432e-007;
            };
            class Item51
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-105.56055,7.8860092,59.673828};
                    angles[]={6.2751846,3.7370262,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12652;
                type="Land_Pallets_stack_F";
            };
            class Item52
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-83.314453,7.9790945,69.234375};
                    angles[]={6.2645216,5.5696115,0.0093350215};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=56231;
                };
                id=12653;
                type="Land_BagFence_Short_F";
            };
            class Item53
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-74.388672,8.0973253,66.089844};
                    angles[]={6.2525291,1.6426203,0.034652505};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12654;
                type="Land_BagFence_Short_F";
            };
            class Item54
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-105.27734,7.9405241,67.052734};
                    angles[]={6.2698536,1.6426203,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12655;
                type="Land_BagFence_Short_F";
            };
            class Item55
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-89.400391,7.9044142,66.539063};
                    angles[]={6.2685208,1.6426203,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12656;
                type="Land_BagFence_Short_F";
                atlOffset=-9.5367432e-007;
            };
            class Item56
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-74.398438,8.1470394,67.720703};
                    angles[]={6.2525291,4.5224137,0.034652505};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12657;
                type="Land_BagFence_Short_F";
            };
            class Item57
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-81.164063,8.0361061,71.212891};
                    angles[]={6.2645216,2.4280183,0.0093350215};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12658;
                type="Land_BagFence_Short_F";
            };
            class Item58
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-86.478516,7.9476624,68.835938};
                    angles[]={6.2685208,3.2134168,0.0053265258};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12659;
                type="Land_BagFence_Short_F";
            };
            class Item59
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-105.27539,7.9639435,68.808594};
                    angles[]={6.2698536,4.5224137,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12660;
                type="Land_BagFence_Short_F";
            };
            class Item60
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-83.787109,7.9224501,66.138672};
                    angles[]={6.2685208,1.6426203,0.0053265258};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12661;
                type="Land_BagFence_Short_F";
            };
            class Item61
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-89.033203,7.9274778,68.144531};
                    angles[]={6.2685208,1.9044197,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12662;
                type="Land_BagFence_Short_F";
                atlOffset=-9.5367432e-007;
            };
            class Item62
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-84.855469,7.955101,68.71875};
                    angles[]={6.2645216,0.071824074,0.0093350215};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12663;
                type="Land_BagFence_Short_F";
            };
            class Item63
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-83.787109,7.9496155,67.892578};
                    angles[]={6.2645216,4.5224137,0.0093350215};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12664;
                type="Land_BagFence_Short_F";
            };
            class Item64
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-88.097656,7.940712,68.951172};
                    angles[]={6.2685208,3.2134168,0.0053265258};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12665;
                type="Land_BagFence_Short_F";
            };
            class Item65
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-102.16211,7.8567295,54.667969};
                    angles[]={6.2778587,3.2132947,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12666;
                type="Land_MetalBarrel_F";
            };
            class Item66
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-78.617188,7.9639339,64.880859};
                    angles[]={6.2645216,3.2133644,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12667;
                type="Land_BarrelTrash_grey_F";
            };
            class Item67
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-102.25,7.5950089,69.091797};
                    angles[]={6.2698536,3.2134168,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12668;
                type="Land_Garbage_square5_F";
            };
            class Item68
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-117.23828,8.6908674,71.185547};
                    angles[]={6.2711854,4.5224137,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12669;
                type="CamoNet_OPFOR_open_F";
            };
            class Item69
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-136.25781,8.6384039,71.580078};
                    angles[]={6.2551947,1.6426203,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12670;
                type="CamoNet_OPFOR_open_F";
            };
            class Item70
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-115.15039,12.33759,60.496094};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12671;
                type="Land_Cargo_Patrol_V3_F";
            };
            class Item71
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-136.50586,8.4378462,71.708984};
                    angles[]={6.2551947,3.2134168,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12672;
                type="Land_BagBunker_Large_F";
            };
            class Item72
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-115.16602,8.6743422,63.390625};
                    angles[]={6.2738566,3.2134168,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12673;
                type="Land_HBarrier_Big_F";
            };
            class Item73
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-116.53516,8.6115046,75.771484};
                    angles[]={6.2645216,3.2134168,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12674;
                type="Land_BagBunker_Small_F";
            };
            class Item74
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-130.61914,9.1015253,63.238281};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12675;
                type="Land_CncWall4_F";
            };
            class Item75
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-123.29102,9.1329756,60.580078};
                    angles[]={0,4.7842131,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12676;
                type="Land_CncWall4_F";
            };
            class Item76
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-118.48242,9.1651621,59.482422};
                    angles[]={0,1.6426203,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12677;
                type="Land_CncWall4_F";
                atlOffset=0.0052595139;
            };
            class Item77
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-115.94141,9.2090712,61.679688};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12678;
                type="Land_CncWall4_F";
            };
            class Item78
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-125.37305,9.1610003,62.984375};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12679;
                type="Land_CncWall4_F";
            };
            class Item79
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-126.26953,8.1554031,64.199219};
                    angles[]={6.2565274,3.2134168,0.011995304};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12680;
                type="Land_HBarrier_5_F";
            };
            class Item80
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-108.31445,8.2173309,63.138672};
                    angles[]={6.2751846,3.2134168,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12681;
                type="Land_HBarrier_5_F";
                atlOffset=9.5367432e-007;
            };
            class Item81
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-116.29297,9.3186808,76.470703};
                    angles[]={6.2645216,0.071824074,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1202986656;
                };
                id=12682;
                type="O_HMG_01_high_F";
            };
            class Item82
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-119.07617,8.3231802,68.304688};
                    angles[]={6.2685208,1.6426203,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12683;
                type="Land_HBarrier_3_F";
            };
            class Item83
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-108.14258,8.297677,65.507813};
                    angles[]={6.2711854,1.6426203,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12684;
                type="Land_HBarrier_3_F";
            };
            class Item84
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-136.20703,8.0703573,63.662109};
                    angles[]={6.2511969,3.2134168,0.013332055};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12685;
                type="Land_HBarrier_3_F";
                atlOffset=-9.5367432e-007;
            };
            class Item85
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-114.0957,8.3932142,73.212891};
                    angles[]={6.2645216,1.380821,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12686;
                type="Land_HBarrier_3_F";
            };
            class Item86
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-130.62109,8.267621,68.03125};
                    angles[]={6.2551947,3.2134168,0.012000273};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12687;
                type="Land_HBarrier_3_F";
            };
            class Item87
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-112.77539,8.3129721,67.21875};
                    angles[]={6.2711854,3.2134168,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12688;
                type="Land_HBarrier_3_F";
            };
            class Item88
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-126.09961,8.2670641,66.568359};
                    angles[]={6.2631893,1.6426203,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12689;
                type="Land_HBarrier_3_F";
            };
            class Item89
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-121.5,8.309947,67.492188};
                    angles[]={6.2631893,3.2134168,0.0053377044};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12690;
                type="Land_HBarrier_3_F";
            };
            class Item90
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-112.71875,9.2115412,61.197266};
                    angles[]={0,3.4752162,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12691;
                type="Land_CncWall1_F";
            };
            class Item91
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-134.05469,9.0641966,63.632813};
                    angles[]={0,3.4752162,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12692;
                type="Land_CncWall1_F";
                atlOffset=-9.5367432e-007;
            };
            class Item92
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-107.4375,9.2299986,61.443359};
                    angles[]={0,3.2134168,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12693;
                type="Land_CncWall1_F";
                atlOffset=9.5367432e-007;
            };
            class Item93
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-118.31445,9.1265917,56.587891};
                    angles[]={0,0.85722208,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12694;
                type="Land_CncWall1_F";
                atlOffset=0.008515358;
            };
            class Item94
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-123.4082,9.041194,57.205078};
                    angles[]={0,4.5224137,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12695;
                type="Land_CncWall1_F";
            };
            class Item95
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-116.38867,8.1612968,60.357422};
                    angles[]={6.2685208,0.071824074,0.0066592805};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12696;
                type="Land_CratesWooden_F";
            };
            class Item96
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-111.93164,7.9907808,72.048828};
                    angles[]={6.2711854,3.4752162,6.2818484};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12697;
                type="Land_BagFence_Round_F";
            };
            class Item97
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-118.6543,8.32337,74.289063};
                    angles[]={6.2645216,3.2134168,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12698;
                type="Land_HBarrier_1_F";
            };
            class Item98
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-118.09961,7.9132223,68.105469};
                    angles[]={6.2685208,4.7842131,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12699;
                type="Land_Sacks_heap_F";
            };
            class Item99
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-106.34375,7.970726,69.638672};
                    angles[]={6.2698536,0.071824074,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12700;
                type="Land_BagFence_Short_F";
            };
            class Item100
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-110.51758,7.949935,69.0625};
                    angles[]={6.2711854,1.9044197,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12701;
                type="Land_BagFence_Short_F";
            };
            class Item101
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-128.78711,7.928504,69.380859};
                    angles[]={6.2631893,1.6426203,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12702;
                type="Land_BagFence_Short_F";
            };
            class Item102
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-125.86719,7.9862785,71.675781};
                    angles[]={6.2631893,3.2134168,0.0053377044};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12703;
                type="Land_BagFence_Short_F";
            };
            class Item103
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-124.24414,7.9868708,71.560547};
                    angles[]={6.2685208,0.071824074,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12704;
                type="Land_BagFence_Short_F";
            };
            class Item104
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-110.53516,7.9679918,70.570313};
                    angles[]={6.2711854,1.1190217,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12705;
                type="Land_BagFence_Short_F";
            };
            class Item105
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-128.42188,7.9620857,70.986328};
                    angles[]={6.2631893,1.9044197,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12706;
                type="Land_BagFence_Short_F";
            };
            class Item106
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-107.9668,7.9657993,69.755859};
                    angles[]={6.2698536,3.2134168,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12707;
                type="Land_BagFence_Short_F";
            };
            class Item107
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-123.16797,7.9466562,68.976563};
                    angles[]={6.2631893,1.6426203,0.0053377044};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12708;
                type="Land_BagFence_Short_F";
            };
            class Item108
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-119.07813,7.9666491,70.181641};
                    angles[]={6.2685208,4.7842131,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12709;
                type="Land_BagFence_Short_F";
            };
            class Item109
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-109.58203,7.9621639,69.873047};
                    angles[]={6.2711854,3.2134168,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12710;
                type="Land_BagFence_Short_F";
            };
            class Item110
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-127.48828,7.9819708,71.792969};
                    angles[]={6.2631893,3.2134168,0.0039967569};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12711;
                type="Land_BagFence_Short_F";
            };
            class Item111
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-118.74609,8.012516,73.042969};
                    angles[]={6.2645216,1.6426203,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12712;
                type="Land_BagFence_Short_F";
            };
            class Item112
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-110.88086,7.9297199,67.457031};
                    angles[]={6.2711854,1.6426203,0.0026520467};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12713;
                type="Land_BagFence_Short_F";
            };
            class Item113
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-123.17188,7.9747057,70.732422};
                    angles[]={6.2685208,4.5224137,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12714;
                type="Land_BagFence_Short_F";
            };
            class Item114
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-108.06641,11.284995,66.626953};
                    angles[]={0,0.071824074,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12715;
                type="Land_LampShabby_F";
            };
            class Item115
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-139.54688,8.1141911,66.292969};
                    angles[]={6.2485328,4.7842131,0.013332055};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12716;
                type="Land_HBarrier_3_F";
            };
            class Item116
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-138.70117,8.0428467,63.841797};
                    angles[]={6.2511969,3.2134168,0.013332055};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12717;
                type="Land_HBarrier_3_F";
                atlOffset=-9.5367432e-007;
            };
        };
        id=12718;
        atlOffset=-0.042274475;
    };
    class Item48
    {
        dataType="Layer";
        name="Tower [OPF] #3";
        class Entities
        {
            items=28;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={34.347656,9.7692232,46.416016};
                    angles[]={6.2285728,4.7883573,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12719;
                type="CamoNet_OPFOR_F";
                atlOffset=0.00034713745;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={41.826172,10.605388,44.433594};
                    angles[]={0,3.217561,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1051372705;
                };
                id=12720;
                type="Land_BagBunker_Tower_F";
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={31.1875,9.4544458,49.416016};
                    angles[]={6.2285728,4.7883573,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1051372705;
                };
                id=12721;
                type="Land_HBarrier_5_F";
                atlOffset=0.00085449219;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={30.775391,9.1505499,43.923828};
                    angles[]={6.2285728,4.7883573,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1051372705;
                };
                id=12722;
                type="Land_HBarrier_5_F";
                atlOffset=-9.5367432e-007;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={36.001953,8.6831255,48.089844};
                    angles[]={6.2073312,3.217561,0.0080009829};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1051372705;
                };
                id=12723;
                type="Land_Garbage_square5_F";
                atlOffset=-1.9073486e-006;
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={35.207031,8.3810787,43.486328};
                    angles[]={6.2285728,3.217561,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1051372705;
                };
                id=12724;
                type="Land_Garbage_square5_F";
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={32.316406,9.6535826,52.835938};
                    angles[]={6.2458706,3.217561,0.0079935296};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12725;
                type="Land_HBarrier_3_F";
                atlOffset=0.0004119873;
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={40.738281,9.3817072,53.177734};
                    angles[]={6.2325621,4.0029593,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12726;
                type="Land_BagFence_Round_F";
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={41.171875,9.2519655,50.638672};
                    angles[]={6.2325621,4.7883573,6.2805109};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12727;
                type="Land_BagFence_Long_F";
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={38.417969,9.414607,53.982422};
                    angles[]={6.2325621,3.217561,0.021328852};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12728;
                type="Land_BagFence_Long_F";
                atlOffset=-1.9073486e-006;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={32.9375,8.8720121,44.720703};
                    angles[]={6.2285728,4.7837114,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12729;
                type="Land_WoodenTable_large_F";
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={33.177734,9.4369268,51.007813};
                    angles[]={6.2458706,3.217561,0.0079935296};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12730;
                type="Land_PaperBox_closed_F";
                atlOffset=0.00029182434;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={36.990234,9.3464556,53.337891};
                    angles[]={6.2325621,1.6467645,0.021328852};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12731;
                type="Land_BagFence_Short_F";
                atlOffset=-1.9073486e-006;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={37.029297,9.2853193,52.207031};
                    angles[]={6.2325621,1.1231658,0.021328852};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12732;
                type="Land_BagFence_End_F";
                atlOffset=-1.9073486e-006;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={32.494141,8.9949732,45.503906};
                    angles[]={6.2285728,6.0974588,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12733;
                type="Land_CampingChair_V2_F";
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={32.628906,8.9104109,43.990234};
                    angles[]={6.2285728,2.9558661,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12734;
                type="Land_CampingChair_V2_F";
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={33.509766,8.9909315,45.677734};
                    angles[]={6.2285728,5.0502615,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12735;
                type="Land_CampingChair_V2_F";
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={38.271484,8.8937178,45.570313};
                    angles[]={6.2073312,5.8355551,0.0080009829};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12736;
                type="Land_MetalBarrel_empty_F";
                atlOffset=-9.5367432e-007;
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={38.517578,9.1418524,48.806641};
                    angles[]={6.2073312,3.2170718,0.0080009829};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12737;
                type="Land_MetalBarrel_F";
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={32.767578,9.110076,48.994141};
                    angles[]={6.2073312,3.2169673,0.0080009829};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=58137;
                };
                id=12738;
                type="Land_MetalBarrel_F";
                atlOffset=-1.9073486e-006;
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={37.955078,8.9500494,46.345703};
                    angles[]={6.2073312,3.7409189,0.0080009829};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12739;
                type="Land_MetalBarrel_F";
                atlOffset=-9.5367432e-007;
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={33.78125,7.9206467,35.896484};
                    angles[]={6.2179451,3.217561,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1095499776;
                };
                id=12740;
                type="Land_Garbage_square5_F";
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={34.113281,8.3942146,36.892578};
                    angles[]={6.2179451,3.217561,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1185056693;
                };
                id=12741;
                type="Land_GarbageWashingMachine_F";
                atlOffset=0.00028800964;
            };
            class Item23
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={30.443359,8.5934076,39.675781};
                    angles[]={6.2179451,4.7883573,6.2658529};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1082140514;
                };
                id=12742;
                type="Land_BagFence_Long_F";
                atlOffset=0.0002412796;
            };
            class Item24
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={38.533203,8.4375401,38.9375};
                    angles[]={6.2192731,1.6467645,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12743;
                type="Land_BagFence_Long_F";
                atlOffset=0.00033378601;
            };
            class Item25
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={36.933594,8.3783417,37.679688};
                    angles[]={6.2192731,3.217561,6.2698536};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1055760031;
                };
                id=12744;
                type="Land_BagFence_Long_F";
                atlOffset=0.00030517578;
            };
            class Item26
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={31.085938,8.48417,38.248047};
                    angles[]={6.2179451,3.217561,6.2658529};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-2023696156;
                };
                id=12745;
                type="Land_BagFence_Short_F";
                atlOffset=0.00036334991;
            };
            class Item27
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={34.052734,8.8991842,38.154297};
                    angles[]={6.2179451,3.217561,6.2711854};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1066977534;
                };
                id=12746;
                type="Land_HBarrier_3_F";
                atlOffset=0.075403214;
            };
        };
        id=12747;
        atlOffset=0.038079262;
    };
    class Item49
    {
        dataType="Layer";
        name="Tower [OPF] #2";
        class Entities
        {
            items=23;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-19.447266,9.5029383,53.455078};
                    angles[]={6.2791886,0.073716879,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12830;
                type="CamoNet_OPFOR_F";
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-7.3007813,10.502769,48.521484};
                    angles[]={0,3.2153096,0};
                };
                side="Empty";
                flags=5;
                class Attributes
                {
                    skill=0.2;
                };
                id=12831;
                type="Land_BagBunker_Tower_F";
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-18.330078,8.8692274,43.476563};
                    angles[]={6.2631865,4.7861061,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12832;
                type="Land_HBarrierWall_corridor_F";
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-11.435547,9.1511145,55.119141};
                    angles[]={6.2605257,0.073716879,0.014660771};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12833;
                type="Land_HBarrierWall_corner_F";
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-13.302734,8.9163599,45.357422};
                    angles[]={6.2631893,3.2153096,0.0080009829};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12834;
                type="Land_HBarrierWall4_F";
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-31.09375,9.3372355,45.605469};
                    angles[]={6.2618537,1.9063125,0.019999012};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12835;
                type="Land_Cargo20_grey_F";
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-16.955078,9.067872,56.769531};
                    angles[]={6.2605233,0.073716879,0.018663859};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12836;
                type="Land_HBarrier_5_F";
                atlOffset=9.5367432e-007;
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-22.447266,8.9925146,57.050781};
                    angles[]={6.2791886,0.073716879,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12837;
                type="Land_HBarrier_5_F";
                atlOffset=9.5367432e-007;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-26.583984,8.8222151,45.341797};
                    angles[]={6.2618566,4.7861061,0.012000273};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12838;
                type="Land_HBarrier_5_F";
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-23.244141,8.8121538,42.974609};
                    angles[]={6.2618566,3.2153099,0.012000273};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12839;
                type="Land_HBarrier_5_F";
                atlOffset=0.00036811829;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-21.027344,8.554265,44.160156};
                    angles[]={6.2631893,3.2153096,0.010664274};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12840;
                type="Land_GarbageBags_F";
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-21.15625,8.2737923,50.488281};
                    angles[]={6.2791886,3.2153096,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12841;
                type="Land_Garbage_square5_F";
                atlOffset=9.5367432e-007;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-13.935547,8.2776861,50.351563};
                    angles[]={6.2605233,3.2153096,0.018663859};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12842;
                type="Land_Garbage_square5_F";
                atlOffset=9.5367432e-007;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-29.494141,8.6169481,55.550781};
                    angles[]={6.2751846,2.4299111,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12843;
                type="Land_BagFence_Round_F";
                atlOffset=9.5367432e-007;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-24.185547,8.6850023,55.669922};
                    angles[]={6.2791886,3.2153096,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12844;
                type="Land_Pallet_MilBoxes_F";
                atlOffset=9.5367432e-007;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-30.392578,8.5963106,53.121094};
                    angles[]={6.2751846,1.6445131,0.0013372133};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12845;
                type="Land_BagFence_Long_F";
                atlOffset=9.5367432e-007;
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-15.234375,8.9571199,54.761719};
                    angles[]={6.2605233,3.2153096,0.018663859};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12846;
                type="Land_PaperBox_closed_F";
                atlOffset=9.5367432e-007;
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-24.564453,8.7865515,47.181641};
                    angles[]={6.2631893,3.477109,0.010664274};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12847;
                type="Land_PaperBox_closed_F";
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-21.230469,8.6821432,55.181641};
                    angles[]={6.2791886,1.6445308,0.0066682254};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12848;
                type="Land_Pallets_stack_F";
                atlOffset=9.5367432e-007;
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-20.238281,8.9890509,55.095703};
                    angles[]={6.2791886,1.6433086,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12849;
                type="Land_Pallet_vertical_F";
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-30.671875,8.5657148,51.501953};
                    angles[]={6.256525,2.1681118,0.019996032};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12850;
                type="Land_BagFence_End_F";
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-28.054688,8.6165419,55.953125};
                    angles[]={6.2751846,0.59731555,0.010664274};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12851;
                type="Land_BagFence_End_F";
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-14.615234,8.565856,46.166016};
                    angles[]={6.2631865,3.2152042,0};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12852;
                type="Land_BarrelSand_F";
            };
        };
        id=12853;
        atlOffset=-0.052643776;
    };
    class Item50
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={1.4707031,9.4954576,50.990234};
            angles[]={0,0.086886987,0};
        };
        side="Empty";
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12856;
        type="Land_Razorwire_F";
        atlOffset=0.35579491;
    };
    class Item51
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={9.1523438,9.239934,49.728516};
            angles[]={6.2591896,0.086886987,0.017332481};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12857;
        type="Land_Razorwire_F";
        atlOffset=-9.5367432e-007;
    };
    class Item52
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={16.355469,9.3572855,49.375};
            angles[]={6.2591896,0.086886987,0.017332481};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12858;
        type="Land_Razorwire_F";
        atlOffset=0.0009727478;
    };
    class Item53
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={24.552734,9.3942556,48.509766};
            angles[]={6.2525291,0.086886987,6.2658563};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12859;
        type="Land_Razorwire_F";
        atlOffset=0.0036830902;
    };
    class Item54
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={1.2578125,9.4097681,47.320313};
            angles[]={0,0.086886987,0};
        };
        side="Empty";
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12860;
        type="Land_Razorwire_F";
        atlOffset=0.35408306;
    };
    class Item55
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={8.9394531,9.1725531,46.058594};
            angles[]={6.2658563,0.086886987,0.018663859};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12861;
        type="Land_Razorwire_F";
        atlOffset=9.5367432e-007;
    };
    class Item56
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={16.142578,9.2645311,45.705078};
            angles[]={6.2591896,0.086886987,0.017332481};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12862;
        type="Land_Razorwire_F";
        atlOffset=-9.5367432e-007;
    };
    class Item57
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={24.339844,9.2840242,44.839844};
            angles[]={6.2525291,0.086886987,6.2658563};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12863;
        type="Land_Razorwire_F";
        atlOffset=0.0023002625;
    };
    class Item58
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={1.4472656,9.6119986,54.423828};
            angles[]={0,0.086886987,0};
        };
        side="Empty";
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12864;
        type="Land_Razorwire_F";
        atlOffset=0.35776901;
    };
    class Item59
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={9.1289063,9.308238,53.162109};
            angles[]={6.2631865,0.086886987,0.017332481};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12865;
        type="Land_Razorwire_F";
    };
    class Item60
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={16.332031,9.4343939,52.808594};
            angles[]={6.2605233,0.086886987,0.019996032};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12866;
        type="Land_Razorwire_F";
        atlOffset=0.00061988831;
    };
    class Item61
    {
        dataType="Object";
        class PositionInfo
        {
            position[]={24.529297,9.5029745,51.943359};
            angles[]={6.2551923,0.086886987,0.0066682254};
        };
        side="Empty";
        flags=4;
        class Attributes
        {
            aiRadarUsage=1601074535;
        };
        id=12867;
        type="Land_Razorwire_F";
        atlOffset=6.6757202e-005;
    };
    class Item62
    {
        dataType="Layer";
        name="Mortar Bunker [OPF]";
        class Entities
        {
            items=30;
            class Item0
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-51.21875,5.1086903,-91.564453};
                    angles[]={-0,1.5707964,0.030656165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1206048896;
                };
                id=12868;
                type="CamoNet_OPFOR_open_F";
                atlOffset=0.00050735474;
            };
            class Item1
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-55.708984,5.0948706,-94.568359};
                    angles[]={6.2791886,4.712389,0.021328852};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1065952402;
                };
                id=12869;
                type="Land_HBarrier_Big_F";
                atlOffset=0.00023937225;
            };
            class Item2
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-53.451172,4.7168102,-98.191406};
                    angles[]={6.2791886,3.1415927,0.021328852};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12870;
                type="Land_HBarrier_3_F";
                atlOffset=0.0037221909;
            };
            class Item3
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-53.449219,4.66749,-95.693359};
                    angles[]={6.2791886,4.712389,0.021328852};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1054569893;
                };
                id=12871;
                type="Land_CratesWooden_F";
                atlOffset=0.00015258789;
            };
            class Item4
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-53.697266,4.5774155,-92.941406};
                    angles[]={6.2791886,6.1086521,0.021328852};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-193930929;
                };
                id=12872;
                type="Land_PaperBox_closed_F";
                atlOffset=0.00018596649;
            };
            class Item5
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-48.576172,4.8340816,-95.691406};
                    angles[]={6.2791886,4.712389,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1065544070;
                };
                id=12873;
                type="Land_HBarrier_3_F";
                atlOffset=0.00022792816;
            };
            class Item6
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-50.193359,4.4275303,-95.941406};
                    angles[]={6.2791886,4.6251402,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12874;
                type="Land_Pallets_stack_F";
            };
            class Item7
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-55.833984,4.6427069,-86.314453};
                    angles[]={-0,5.497787,0.030656165};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12875;
                type="Land_HBarrier_3_F";
                atlOffset=0.00035953522;
            };
            class Item8
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-49.427734,4.7132149,-87.689453};
                    angles[]={-0,4.7123194,6.2738566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12876;
                type="Land_Pallet_vertical_F";
            };
            class Item9
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-49.804688,4.7412453,-86.443359};
                    angles[]={6.2778587,0,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1021548066;
                };
                id=12877;
                type="Land_CratesShabby_F";
                atlOffset=1.2397766e-005;
            };
            class Item10
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-49.423828,4.7131805,-89.314453};
                    angles[]={-0,1.5707283,6.2738566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1054867456;
                };
                id=12878;
                type="Land_Pallet_vertical_F";
            };
            class Item11
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-47.710938,5.2564411,-97.945313};
                    angles[]={6.2791886,3.1415927,0.022662206};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12879;
                type="Land_HBarrier_Big_F";
                atlOffset=0.00031375885;
            };
            class Item12
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-36.617188,4.5067358,-91.373047};
                    angles[]={6.2352223,1.5707964,6.2285728};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1065986318;
                };
                id=12880;
                type="Land_HBarrier_Big_F";
                atlOffset=0.0032138824;
            };
            class Item13
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-46.300781,4.6891747,-91.814453};
                    angles[]={-0,2.2351735e-007,6.2738566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1098764115;
                };
                id=12881;
                type="Land_HBarrier_5_F";
                atlOffset=4.5776367e-005;
            };
            class Item14
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-34.496094,3.8180742,-96.185547};
                    angles[]={0.0080009829,2.2351735e-007,6.1861577};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1341710464;
                };
                id=12882;
                type="Land_HBarrier_5_F";
                atlOffset=-0.018371582;
            };
            class Item15
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-30.25,3.5700636,-96.191406};
                    angles[]={6.2805109,3.1415927,6.2113094};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=1065486368;
                };
                id=12883;
                type="Land_HBarrier_3_F";
                atlOffset=0.0020008087;
            };
            class Item16
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-43.552734,4.6841221,-94.169922};
                    angles[]={0.027990974,3.5779073,6.2738566};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1135891712;
                };
                id=12884;
                type="O_Mortar_01_F";
            };
            class Item17
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-41.238281,4.435771,-91.318359};
                    angles[]={6.2778587,1.8325783,6.1861582};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1217754688;
                };
                id=12885;
                type="O_Mortar_01_F";
            };
            class Item18
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-40.259766,4.0712767,-96.552734};
                    angles[]={0.027993103,4.712389,6.1663861};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=63101;
                };
                id=12886;
                type="Land_BagFence_Long_F";
                atlOffset=0.0029888153;
            };
            class Item19
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-39.005859,3.9257507,-95.125};
                    angles[]={0.0080009829,3.1415927,6.1861577};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12887;
                type="Land_BagFence_Long_F";
                atlOffset=0.001994133;
            };
            class Item20
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-41.708984,4.277976,-97.861328};
                    angles[]={0.027993103,3.1415927,6.1663861};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=63101;
                };
                id=12888;
                type="Land_BagFence_Long_F";
                atlOffset=0.0031394958;
            };
            class Item21
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-29.390625,3.4504461,-92.730469};
                    angles[]={6.2219291,1.5707964,6.2245855};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12889;
                type="Land_HBarrier_5_F";
                atlOffset=-0.0089292526;
            };
            class Item22
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-47.304688,5.1814241,-84.677734};
                    angles[]={0.010664274,3.1415927,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=63101;
                };
                id=12890;
                type="Land_HBarrier_Big_F";
                atlOffset=7.4386597e-005;
            };
            class Item23
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-29.386719,3.7763786,-88.361328};
                    angles[]={6.2219291,1.570798,6.2245855};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12891;
                type="Land_HBarrier_3_F";
                atlOffset=0.0028820038;
            };
            class Item24
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-43.931641,4.6708708,-88.068359};
                    angles[]={6.2778587,5.1487036,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=-1152786304;
                };
                id=12892;
                type="O_Mortar_01_F";
            };
            class Item25
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-41.716797,4.2844496,-85.123047};
                    angles[]={0.0053265258,3.1415927,6.2285743};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=63101;
                };
                id=12893;
                type="Land_BagFence_Long_F";
                atlOffset=0.00059700012;
            };
            class Item26
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-40.40625,4.1490211,-86.623047};
                    angles[]={6.2352223,1.5707964,6.2285728};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12894;
                type="Land_BagFence_Long_F";
                atlOffset=0.0010957718;
            };
            class Item27
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-38.96875,4.00982,-87.884766};
                    angles[]={6.2352223,3.1415927,6.2285728};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=63101;
                };
                id=12895;
                type="Land_BagFence_Long_F";
                atlOffset=0.0010290146;
            };
            class Item28
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-43.367188,4.3719692,-85.197266};
                    angles[]={6.2778587,2.8797932,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                };
                id=12896;
                type="Land_BagFence_End_F";
                atlOffset=0.0071773529;
            };
            class Item29
            {
                dataType="Object";
                class PositionInfo
                {
                    position[]={-48.306641,4.7046127,-88.568359};
                    angles[]={6.2778587,1.5707964,6.2791886};
                };
                side="Empty";
                flags=4;
                class Attributes
                {
                    skill=0.2;
                    aiRadarUsage=63101;
                };
                id=12897;
                type="Land_HBarrier_5_F";
                atlOffset=-0.0032463074;
            };
        };
        id=12899;
        atlOffset=-0.053637505;
    };
};
 

 

Share this post


Link to post
Share on other sites

Okay ive solved it, for anyone else with the same issue:

	_compReference = [ "BEACH_Village_01", _pos, [ 0, 0, 0 ], dir, true, false ] call LARs_fnc_spawnComp;
	
	_compArray = [ _compReference ] call LARs_fnc_getCompObjects;
	
	{ 
	
		_x setVectorUp surfaceNormal getPos _x; // only needed if you want the object to allign with terrain
		_x setPosATL [getPosATL _x select 0, getPosATL _x select 1, 0];
		
	} foreach _compArray;

 

Share this post


Link to post
Share on other sites
1 hour ago, Perry21692 said:

Okay ive solved it, for anyone else with the same issue:

That will only solve your issue if everything within the composition is in fact needed to sit on the ground. From a quick look around your comp this seems ok.

For others if you are creating a composition that can be spawned anywhere it is always better to make you comp on flat ground, like in the VR.

 

However I presume you are trying to spawn you comp in the same place it was made ( Altis [ 27088.492,20852.768,7.4675837 ]  ) on the flat-ish farm land by the coast? yet your comp seems rotationally offset some how and a couple of the bunkers have weird height offsets when placed through Eden and I am not quite sure what the setup is meant to align to? There are rows of barbed wire and two holes near the camouflaged towers that look like they should align to the roads but however you rotate it in Eden I can not get a good fit to the terrain. What is this composition meant to look like at that location?

 

If you use my script to spawn the comp just by name ( so positioned as the composition was saved ) everything sits level ok but it does not seem to align to any of the surrounding terrain (like the roads). Which I presume is why you are supplying a rotation. Why this rotation offset exists within your composition I have no idea.

 

By the act of supplying a rotation offset to the script the composition is flagged to be spawn NOT as placed so tries to place it on the ground + any offset supplied via the composition ( so objects that maybe sitting on another like files on a desk for example are placed correctly) and as it was not made on a flat surface you get the weird height differences.

If my presumption is correct ( that the composition is to be spawned at the same position as made ) then I would suggest trying to re-save your composition to get rid of the rotational and height offsets in the composition and then just use the script to spawn by name only, without supplying any offsets to the script.

Share this post


Link to post
Share on other sites
Quote

That will only solve your issue if everything within the composition is in fact needed to sit on the ground. From a quick look around your comp this seems ok.

 

yes i have discovered this issue, but it hadnt cost me too much.

 

The comp is for a beach bunker system, far from finiished, that can spawn randomly near the shore, the gaps will eventually be filled with other obstacles but isnt suppoed to spawn where it was made, i had picked that as it looked flat. If my make the comp in the vr editor will it then fall evenly? should have known their would be a simple solution ill check it out!

 

Thanks.

Share this post


Link to post
Share on other sites

hi @Larrow

 

i m trying to spawn composition with an addaction and players around an object but it doesnt work, can you help me ? 

 

 

Spoiler

 

this is my addaction : 

 


[[obj_1, ["mission","scripts\spawn_mission.sqf"]],"addAction",true,true] call BIS_fnc_MP; 

this is my spawn_mission.sqf


if !( isServer ) exitWith {
_radius = 7;
_numPlayersByEntity = {_x distance obj_1 < _radius} count allPlayers;
obj_1 remoteExec [ "RemoveallActions", 0, true ];

    if (_numPlayersByEntity <= 2) exitWith {
    
    
    "assasinate_1" remoteExec [ "LARs_fnc_spawnComp"];
    
    
    
    };
    if (_numPlayersByEntity > 2 && _numPlayersByEntity <= 4 ) exitWith {
    
    
    "def_1" remoteExec [ "LARs_fnc_spawnComp"]
    
    
    };
};

 

 

 

 

Share this post


Link to post
Share on other sites

Hi Guys,

 

first: great work with this. The lack of being able to spawn compositions was horrible.

 

Spawning compositions works fine for me but i got some problems with LARS_fnc_deleteComp.

 

Was trying to create a kind of MobileHQ.

 

In Vehicle Init: (works fine and deletes the vehicle and spawns the compositon in place)

MobileHQ_1_Truck addAction [ "MobileHQ errichten", { deleteVehicle MobileHQ_1_Truck, [ "MobileHQ_1", player getPos [ 10, getDir player ], [0,0,0], 0, true ] call LARs_fnc_spawnComp } ];

then on the Vehicle inside the "MobileHQ Base" i got this in the init field:

this addAction [ "MobileHQ zusammenpacken", { ["MobileHQ_1", player getPos [ 10, getDir player ], [0,0,0], 0, true ] call LARs_fnc_deleteComp, sleep 5, [ "MobileHQ_1_Truck", player getPos [ 10, getDir player ], [0,0,0], 0, true ] call LARs_fnc_spawnComp  } ]; 

When doing the addaction i got this error Message:

 

'...) then {
deleteGroup _x;
};
};
}forEach |#|_deferedGroups;

{
if ( !isNil "_x" && {...'
Error not defined variable in expressioin: _deferedGroups
File LARs\functions\Utilities\fn_deleteComp.sqf [LARs_fnc_deleteComp], line 50

Despawning the composition doesn`t work, the rest of the addaction works fine... waiting 5 seconds, then spawns the MobileHQ Truck again.

But when despawning the composition doesn`t work, theres always a big explosion ^^

 

What i`m doing wrong? Any Ideas or help would be great!

 

Thanks

 

Share this post


Link to post
Share on other sites

Please read the documentation in the first post, this is exactly the reason I put it there.

Quote

Then when you want to spawn a composition..

_compReference = [ COMP_NAME, POS_ATL, OFFSET, DIR, ALIGN_TERRAIN, ALIGN_WATER ] call LARs_fnc_spawnComp;

 

[ _compReference ] call LARs_fnc_deleteComp;

Will delete the composition.

The compReference is not the same as the composition name and is a unique ID passed back from LARs_fnc_spawnComp.

You also have several other mistakes in your addActions, you have , where there should be ;.

 

Please re-download the script from the original post as I have fixed an error in LARs_fnc_deleteComp. Thank you for the report.

I have also added support for SimpleObjects, DynamicSimulation and group GarbageCollection. Hopefully have not broken to much :D as I have pushed over changes from a current re-factor I'm doing into the old code for now.

 

initServer.sqf

TAG_fnc_swapMobileHQ = {
	if !( isServer ) exitWith { _this remoteExec[ "TAG_fnc_swapMobileHQ", 2 ] };
	
	params[ "_compToSpawn", "_caller" ];
	
	if !( isNil "MobileHQ_1_compRef" ) then {
		[ MobileHQ_1_compRef ] call LARs_fnc_deleteComp;
	};
	
	switch ( _compToSpawn ) do {
		case ( "MobileHQ_1" ) : {
			if !( isNull MobileHQ_1_Truck ) then {
				deleteVehicle MobileHQ_1_Truck;
			};
			MobileHQ_1_compRef = [ "MobileHQ_1", _caller getPos [ 10, getDir _caller ], [0,0,0], 0, true ] call LARs_fnc_spawnComp;
		};
		case ( "MobileHQ_1_Truck" ) : {
			sleep 5;
			MobileHQ_1_compRef = [ "MobileHQ_1_Truck", _caller getPos [ 10, getDir _caller ], [0,0,0], 0, true ] call LARs_fnc_spawnComp
		};
	};
};

nul = [ "MobileHQ_1_Truck", MobileHQ_1_Truck ] remoteExec[ "TAG_fnc_addMobileHQAction", [ 0, -2 ] select isDedicated, "MobileHQ_1_Truck" ];

initPlayerLocal.sqf

TAG_fnc_addMobileHQAction = {
	params[ "_composition", "_vehicle" ];
	
	if ( isNull _vehicle || { !alive _vehicle } ) exitWith {};
	
	switch ( _composition ) do {
		case ( "MobileHQ_1_Truck" ) : {
			_vehicle addAction [ "MobileHQ errichten", {
				params[ "_target", "_caller", "_ID", "_args" ];
				[ "MobileHQ_1", _caller ] remoteExec[ "TAG_fnc_swapMobileHQ", 2 ];
			}];
		};
		case ( "MobileHQ_1" ) : {
			_vehicle addAction [ "MobileHQ zusammenpacken", {
				params[ "_target", "_caller", "_ID", "_args" ];
				[ "MobileHQ_1_Truck", _caller ] remoteExec[ "TAG_fnc_swapMobileHQ", 2 ];
			}];
		};
	};
};

init in composition "MobileHQ_1_Truck"

nul = [ "MobileHQ_1_Truck", this ] remoteExec[ "TAG_fnc_addMobileHQAction", [ 0, -2 ] select isDedicated, "MobileHQ_1_Truck" ];

init in composition "MobileHQ_1"

nul = [ "MobileHQ_1", this ] remoteExec[ "TAG_fnc_addMobileHQAction", [ 0, -2 ] select isDedicated, "MobileHQ_1" ];

 

Untested but should be good for MP and JIP. No need for your original addAction on MobileHQ_1_Truck as it is automatically applied by the server script above.

Share this post


Link to post
Share on other sites
Spoiler

 

 

Thanks for the quick reply and the help. Need to deep dive into scripting i think. Most of the scripting is understandable but not all^^ 

Will try your code and see if i can extend this for MobileHQ2 and 3 maybe... 

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×