mission = 
{
    trig = 
    {
        actions = 
        {
            [1] = "a_activate_group(\"F-4 Groop\");a_activate_group(\"Mig-29 Patrol\");a_out_text_delay_s(\"red\", \"101,  у вас минута, начинаите работу по основной\", \"10\"); mission.trig.func[1]='';",
            [2] = "a_out_text_delay_s(\"red\", \" высота ниже 10 метров\", \"3\");",
            [3] = "a_out_text_delay_s(\"red\", \"101, нпз уничтожен\", \"10\"); mission.trig.func[3]='';",
        }, -- end of actions
        custom = 
        {
        }, -- end of custom
        func = 
        {
            [1] = "if mission.trig.conditions[1]() then mission.trig.actions[1]() end",
            [2] = "if mission.trig.conditions[2]() then mission.trig.actions[2]() end",
            [3] = "if mission.trig.conditions[3]() then mission.trig.actions[3]() end",
        }, -- end of func
        flag = 
        {
            [1] = true,
            [2] = true,
            [3] = true,
        }, -- end of flag
        conditions = 
        {
            [1] = "return(c_unit_in_zone(\"20\", \"активация ф-4\") )",
            [2] = "return(c_unit_altitude_higher(\"20\", \"11\") )",
            [3] = "return(c_unit_damaged(\"2\") and c_unit_damaged(\"3\") )",
        }, -- end of conditions
        customStartup = 
        {
            [6] = "for i,t in ipairs(mission.result.offline.actions) do mission.result.offline.actions[i]=loadstring(t) end",
            [2] = "for i,t in ipairs(mission.result.blue.conditions) do mission.result.blue.conditions[i]=loadstring(t) end",
            [8] = "for i,t in ipairs(mission.trig.actions) do mission.trig.actions[i]=loadstring(t) end",
            [3] = "for i,t in ipairs(mission.result.offline.conditions) do mission.result.offline.conditions[i]=loadstring(t) end",
            [1] = "for i,t in ipairs(mission.result.red.conditions) do mission.result.red.conditions[i]=loadstring(t) end",
            [4] = "for i,t in ipairs(mission.result.red.actions) do mission.result.red.actions[i]=loadstring(t) end",
            [5] = "for i,t in ipairs(mission.result.blue.actions) do mission.result.blue.actions[i]=loadstring(t) end",
            [7] = "for i,t in ipairs(mission.trig.conditions) do mission.trig.conditions[i]=loadstring(t) end",
        }, -- end of customStartup
        funcStartup = 
        {
        }, -- end of funcStartup
    }, -- end of trig
    resultRed = 
    {
    }, -- end of resultRed
    resultBlue = 
    {
    }, -- end of resultBlue
    descriptionBlueTask = "",
    goals = 
    {
        [1] = 
        {
            rules = 
            {
                [1] = 
                {
                    predicate = "c_unit_damaged",
                    unit = 2,
                }, -- end of [1]
                [2] = 
                {
                    predicate = "c_unit_damaged",
                    unit = 3,
                }, -- end of [2]
            }, -- end of rules
            score = 20,
            side = "OFFLINE",
            predicate = "score",
            comment = "1",
        }, -- end of [1]
        [2] = 
        {
            rules = 
            {
                [1] = 
                {
                    flag = 1,
                    predicate = "c_flag_is_true",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            score = 4,
            side = "OFFLINE",
            predicate = "score",
            comment = "3",
        }, -- end of [2]
    }, -- end of goals
    trigfunc = 
    {
        [1] = "if c_unit_in_zone(\"20\", \"активация ф-4\") then a_activate_group(\"F-4 Groop\");a_activate_group(\"Mig-29 Patrol\");a_out_text_delay_s(\"red\", \"101,  у вас минута, начинаите работу по основной\", \"10\"); mission.trigfunc[1]='';end;",
        [2] = "if c_unit_altitude_higher(\"20\", \"11\") then a_out_text_delay_s(\"red\", \" высота ниже 10 метров\", \"3\");end;",
        [3] = "if c_unit_damaged(\"2\") and c_unit_damaged(\"3\") then a_out_text_delay_s(\"red\", \"101, нпз уничтожен\", \"10\"); mission.trigfunc[3]='';end;",
    }, -- end of trigfunc
    weather = 
    {
        qnh = 760,
        wind = 
        {
            at8000 = 
            {
                speed = 0,
                dir = 0,
            }, -- end of at8000
            at2000 = 
            {
                speed = 0,
                dir = 0,
            }, -- end of at2000
            atGround = 
            {
                speed = 0,
                dir = 0,
            }, -- end of atGround
        }, -- end of wind
        name = "Winter, clean sky",
        fog = 
        {
            density = 0,
            thickness = 0,
        }, -- end of fog
        turbulence = 
        {
            at8000 = 0,
            at2000 = 0,
            atGround = 0,
        }, -- end of turbulence
        season = 
        {
            temperature = 20,
            iseason = 1,
        }, -- end of season
        visibility = 
        {
            distance = 80000,
        }, -- end of visibility
        clouds = 
        {
            density = 9,
            thickness = 90,
            base = 3300,
            iprecptns = 0,
        }, -- end of clouds
    }, -- end of weather
    result = 
    {
        [1] = "if c_unit_damaged(\"2\") and c_unit_damaged(\"3\")  then a_set_mission_result(20) end",
        [2] = "if c_flag_is_true(\"1\")  then a_set_mission_result(4) end",
        offline = 
        {
            conditions = 
            {
                [1] = "return(c_unit_damaged(\"2\") and c_unit_damaged(\"3\") )",
                [2] = "return(c_flag_is_true(\"1\") )",
            }, -- end of conditions
            actions = 
            {
                [1] = "a_set_mission_result(20)",
                [2] = "a_set_mission_result(4)",
            }, -- end of actions
            func = 
            {
                [1] = "if mission.result.offline.conditions[1]() then mission.result.offline.actions[1]() end",
                [2] = "if mission.result.offline.conditions[2]() then mission.result.offline.actions[2]() end",
            }, -- end of func
        }, -- end of offline
        blue = 
        {
            conditions = 
            {
            }, -- end of conditions
            actions = 
            {
            }, -- end of actions
            func = 
            {
            }, -- end of func
        }, -- end of blue
        red = 
        {
            conditions = 
            {
            }, -- end of conditions
            actions = 
            {
            }, -- end of actions
            func = 
            {
            }, -- end of func
        }, -- end of red
    }, -- end of result
    triggers = 
    {
        zones = 
        {
            [1] = 
            {
                radius = 19900,
                zoneId = 2,
                color = 
                {
                    [1] = 0,
                    [2] = 1,
                    [3] = 0.50196078431373,
                    [4] = 0.14901960784314,
                }, -- end of color
                lat = 0.73092600646071,
                hidden = true,
                long = 0.72993362479616,
                x = -323906.10363063,
                name = "активация ф-4",
                y = 632614.45392249,
            }, -- end of [1]
        }, -- end of zones
    }, -- end of triggers
    map = 
    {
        centerY = 0.72893393363597,
        zoom = 500000,
        centerX = 0.74129831339631,
    }, -- end of map
    coalitions = 
    {
        blue = 
        {
            [1] = 11,
            [2] = 4,
            [3] = 6,
            [4] = 10,
            [5] = 16,
            [6] = 13,
            [7] = 15,
            [8] = 9,
            [9] = 8,
            [10] = 17,
            [11] = 12,
            [12] = 2,
            [13] = 3,
            [14] = 1,
            [15] = 5,
        }, -- end of blue
        red = 
        {
            [1] = 0,
        }, -- end of red
    }, -- end of coalitions
    descriptionText = "Грузинская сторона при помощи западных партнеров смогла посторить свой нефтеперерабатывающий завод. этот коплекс позволяет не только обрабатывать нефтепродукты для нужд внутри страны, но импортировать за рубеж. Это очень сильно изменяет рынок не в пользу России, главное, на эти нефтедоллары Грузия активно вооружает вновь свою армию, в частности приобрела бронетехнику и самолеты F-4 у США.",
    trigflag = 
    {
        [1] = true,
        [2] = true,
        [3] = true,
    }, -- end of trigflag
    descriptionRedTask = "Летите без ведомого, должны будете уничтожить коплекс с одного захода, для этого подвешены 2 ракеты х-29т у которого принцип \"пустил-забыл\", иначе будет риск сбитым Грузинскими истребителями с авиабазы Кутаиси, для прикрытия вашего отхода взлетит пара мигов как произведете атаку. После атаки вам будет необходимо набрав высоту, и не руководствоваться напоминанием бортового компьютера о понижении высоты и  лететь на максимальной скорости в сторону нашей авиабазы. Запрещается начинать атаку без команды с земли! Высота должна составлять не более 10м, дабы не обнаружить самолет радарами противника до захода на цель.",
    pictureFileNameB = 
    {
    }, -- end of pictureFileNameB
    pictureFileNameR = 
    {
    }, -- end of pictureFileNameR
    trigrules = 
    {
        [1] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    zone = 2,
                    predicate = "c_unit_in_zone",
                    unit = 20,
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    group = 23,
                    text = "",
                    predicate = "a_activate_group",
                    seconds = 10,
                }, -- end of [1]
                [2] = 
                {
                    group = 24,
                    text = "",
                    predicate = "a_activate_group",
                    seconds = 10,
                }, -- end of [2]
                [3] = 
                {
                    seconds = 10,
                    coalitionlist = "red",
                    predicate = "a_out_text_delay_s",
                    text = "101,  у вас минута, начинаите работу по основной",
                }, -- end of [3]
            }, -- end of actions
            comment = "",
        }, -- end of [1]
        [2] = 
        {
            predicate = "triggerContinious",
            rules = 
            {
                [1] = 
                {
                    altitude = "11",
                    predicate = "c_unit_altitude_higher",
                    unit = 20,
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    seconds = 3,
                    coalitionlist = "red",
                    predicate = "a_out_text_delay_s",
                    text = " высота ниже 10 метров",
                }, -- end of [1]
            }, -- end of actions
            comment = "",
        }, -- end of [2]
        [3] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    predicate = "c_unit_damaged",
                    unit = 2,
                }, -- end of [1]
                [2] = 
                {
                    predicate = "c_unit_damaged",
                    unit = 3,
                }, -- end of [2]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    seconds = 10,
                    coalitionlist = "red",
                    predicate = "a_out_text_delay_s",
                    text = "101, нпз уничтожен",
                }, -- end of [1]
            }, -- end of actions
            comment = "",
        }, -- end of [3]
    }, -- end of trigrules
    coalition = 
    {
        blue = 
        {
            country = 
            {
                [1] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "UK",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 4,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [1]
                [2] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Insurgents",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 17,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [2]
                [3] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Belgium",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 11,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [3]
                [4] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Canada",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 8,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [4]
                [5] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "France",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 5,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [5]
                [6] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Israel",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 15,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [6]
                [7] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Ukraine",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 1,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [7]
                [8] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Norway",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 12,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [8]
                [9] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                hidden = true,
                                name = "Вертол. группа",
                                groupId = 18,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 200,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73450905731434,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.73613486537084,
                                            x = -297951.06968252,
                                            speed = 55.555555555556,
                                            y = 659681.05305463,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 1,
                                            type = "Land",
                                            action = "Landing",
                                            linkUnit = 1,
                                            lat = 0.73137159535204,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72917520316639,
                                            x = -321443.54247777,
                                            speed = 41.666666666667,
                                            helipadId = 1,
                                            y = 628717.04674217,
                                        }, -- end of [2]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Transport",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "UH-1H",
                                        CLSID = "{111132D6-F3AA-4C00-A53A-A6C5FB298572}",
                                        unitId = 18,
                                        lat = 0.73450905731434,
                                        skill = "High",
                                        long = 0.73613486537084,
                                        x = -297951.06968252,
                                        name = "1-1",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                            }, -- end of pylons
                                            fuel = "680",
                                            flare = 0,
                                            chaff = 0,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 659681.05305463,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Enfield11",
                                        }, -- end of callsign
                                        onboard_num = 1,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [1]
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Georgia",
                    ship = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 163,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73135878168369,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72899406839175,
                                            x = -321615.14341039,
                                            speed = 5.5555555555556,
                                            y = 627864.53928848,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 19,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "MOLNIYA",
                                        CLSID = "{C8459CF8-BD2E-4595-9C92-6625C0B8794E}",
                                        unitId = 19,
                                        lat = 0.73135878168369,
                                        skill = "Average",
                                        long = 0.72899406839175,
                                        x = -321615.14341039,
                                        name = "Юнит #6",
                                        heading = 0,
                                        y = 627864.53928848,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Кораб. группа",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [1]
                        }, -- end of group
                    }, -- end of ship
                    id = 16,
                    vehicle = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 2,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73139802400838,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72923127081695,
                                            x = -321247.30079794,
                                            speed = 5.5555555555556,
                                            y = 628966.21089792,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 13,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "ZU-23 Emplacement Closed",
                                        CLSID = "{773F294C-4057-4789-892C-643BE8619778}",
                                        unitId = 13,
                                        lat = 0.73139802400838,
                                        skill = "Random",
                                        long = 0.72923127081695,
                                        x = -321247.30079794,
                                        name = "Юнит #1",
                                        heading = 0,
                                        y = 628966.21089792,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [1]
                            [2] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 1,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73135998295884,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72919380193213,
                                            x = -321508.2974731,
                                            speed = 5.5555555555556,
                                            y = 628813.05188905,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 14,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "ZU-23 Emplacement Closed",
                                        CLSID = "{773F294C-4057-4789-892C-643BE8619778}",
                                        unitId = 14,
                                        lat = 0.73135998295884,
                                        skill = "Random",
                                        long = 0.72919380193213,
                                        x = -321508.2974731,
                                        name = "Юнит #2",
                                        heading = 5.2020341922571,
                                        y = 628813.05188905,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #001",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [2]
                            [3] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 2,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73139794392059,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72922965780003,
                                            x = -321248.61215562,
                                            speed = 5.5555555555556,
                                            y = 628958.59697486,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 16,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "SA-18 Igla manpad",
                                        CLSID = "{8C7CD125-65C9-44ec-BD3A-CC431263FF89}",
                                        unitId = 16,
                                        lat = 0.73139794392059,
                                        skill = "Random",
                                        long = 0.72922965780003,
                                        x = -321248.61215562,
                                        name = "Юнит #4",
                                        heading = 0,
                                        y = 628958.59697486,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #003",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [3]
                            [4] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 2,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.7313600630439,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72919551524629,
                                            x = -321506.93632318,
                                            speed = 5.5555555555556,
                                            y = 628821.14250968,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 17,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "SA-18 Igla manpad",
                                        CLSID = "{8C7CD125-65C9-44ec-BD3A-CC431263FF89}",
                                        unitId = 17,
                                        lat = 0.7313600630439,
                                        skill = "Random",
                                        long = 0.72919551524629,
                                        x = -321506.93632318,
                                        name = "Юнит #5",
                                        heading = 4.3144293107524,
                                        y = 628821.14250968,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #004",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [4]
                            [5] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 1,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73136038338418,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72920379543007,
                                            x = -321500.7830826,
                                            speed = 5.5555555555556,
                                            y = 628860.28693504,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 21,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "BTR-80",
                                        CLSID = "{10C3BD0E-4494-4bc4-BC37-2C544E33ADC7}",
                                        unitId = 22,
                                        lat = 0.73136038338418,
                                        skill = "Random",
                                        long = 0.72920379543007,
                                        x = -321500.7830826,
                                        name = "Юнит #3",
                                        heading = 0,
                                        y = 628860.28693504,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #002",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [5]
                            [6] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 2,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.73139794392059,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72923306299501,
                                            x = -321246.92106743,
                                            speed = 5.5555555555556,
                                            y = 628974.78128952,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 22,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "BTR-80",
                                        CLSID = "{10C3BD0E-4494-4bc4-BC37-2C544E33ADC7}",
                                        unitId = 23,
                                        lat = 0.73139794392059,
                                        skill = "Random",
                                        long = 0.72923306299501,
                                        x = -321246.92106743,
                                        name = "Юнит #7",
                                        heading = 0,
                                        y = 628974.78128952,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #005",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [6]
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73137159535204,
                                            long = 0.72917520316639,
                                            x = -321443.54247777,
                                            name = "",
                                            speed = 0,
                                            y = 628717.04674217,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 1,
                                lat = 0.73137159535204,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "FARP",
                                        CLSID = "{24FC9197-F225-4f2a-8A31-BD51DC7BDAB6}",
                                        unitId = 1,
                                        lat = 0.73137159535204,
                                        long = 0.72917520316639,
                                        x = -321443.54247777,
                                        name = "Стат. объект",
                                        category = "Heliports",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 1,
                                        y = 628717.04674217,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72917520316639,
                                name = "Стат. объект",
                                dead = false,
                            }, -- end of [1]
                            [2] = 
                            {
                                heading = 0,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73136999363544,
                                            long = 0.72920353178194,
                                            x = -321439.67969063,
                                            name = "",
                                            speed = 0,
                                            y = 628852.7372854,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 2,
                                lat = 0.73136999363544,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "tec_a",
                                        type = "Workshop A",
                                        CLSID = "{bddc2805-fd70-47dd-90b0-0041ebd1eee3}",
                                        unitId = 2,
                                        lat = 0.73136999363544,
                                        rate = 100,
                                        long = 0.72920353178194,
                                        x = -321439.67969063,
                                        name = "Стат. объект #001",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 1,
                                        y = 628852.7372854,
                                        heading = 0,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72920353178194,
                                name = "Стат. объект #001",
                                dead = false,
                            }, -- end of [2]
                            [3] = 
                            {
                                heading = 0,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73138569055742,
                                            long = 0.72920509419231,
                                            x = -321338.88656644,
                                            name = "",
                                            speed = 0,
                                            y = 628849.87863487,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 3,
                                lat = 0.73138569055742,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "kombinat",
                                        type = "Tech combine",
                                        CLSID = "{0a4804d2-db83-4a18-bf2a-a253a9b17e33}",
                                        unitId = 3,
                                        lat = 0.73138569055742,
                                        rate = 100,
                                        long = 0.72920509419231,
                                        x = -321338.88656644,
                                        name = "Стат. объект #002",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 628849.87863487,
                                        heading = 0,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72920509419231,
                                name = "Стат. объект #002",
                                dead = false,
                            }, -- end of [3]
                            [4] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73138561047052,
                                            long = 0.72922455440915,
                                            x = -321329.73252744,
                                            name = "",
                                            speed = 0,
                                            y = 628942.42221998,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 4,
                                lat = 0.73138561047052,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "him_bak_a",
                                        type = "Chemical tank A",
                                        CLSID = "{264c3fb6-7871-471a-8915-a68afe98fbb5}",
                                        unitId = 4,
                                        lat = 0.73138561047052,
                                        rate = 100,
                                        long = 0.72922455440915,
                                        x = -321329.73252744,
                                        name = "Стат. объект #003",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 1,
                                        y = 628942.42221998,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72922455440915,
                                name = "Стат. объект #003",
                                dead = false,
                            }, -- end of [4]
                            [5] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73138577064432,
                                            long = 0.72923532257189,
                                            x = -321323.36425077,
                                            name = "",
                                            speed = 0,
                                            y = 628993.49652774,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 5,
                                lat = 0.73138577064432,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "him_bak_a",
                                        type = "Chemical tank A",
                                        CLSID = "{264c3fb6-7871-471a-8915-a68afe98fbb5}",
                                        unitId = 5,
                                        lat = 0.73138577064432,
                                        long = 0.72923532257189,
                                        x = -321323.36425077,
                                        name = "Стат. объект #004",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 628993.49652774,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72923532257189,
                                name = "Стат. объект #004",
                                dead = false,
                            }, -- end of [5]
                            [6] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73137848275967,
                                            long = 0.72922420216045,
                                            x = -321375.32360595,
                                            name = "",
                                            speed = 0,
                                            y = 628945.41807187,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 6,
                                lat = 0.73137848275967,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "him_bak_a",
                                        type = "Chemical tank A",
                                        CLSID = "{264c3fb6-7871-471a-8915-a68afe98fbb5}",
                                        unitId = 6,
                                        lat = 0.73137848275967,
                                        long = 0.72922420216045,
                                        x = -321375.32360595,
                                        name = "Стат. объект #005",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 628945.41807187,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72922420216045,
                                name = "Стат. объект #005",
                                dead = false,
                            }, -- end of [6]
                            [7] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73137856284605,
                                            long = 0.72923560173501,
                                            x = -321369.15205622,
                                            name = "",
                                            speed = 0,
                                            y = 628999.54584577,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 7,
                                lat = 0.73137856284605,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "him_bak_a",
                                        type = "Chemical tank A",
                                        CLSID = "{264c3fb6-7871-471a-8915-a68afe98fbb5}",
                                        unitId = 7,
                                        lat = 0.73137856284605,
                                        long = 0.72923560173501,
                                        x = -321369.15205622,
                                        name = "Стат. объект #006",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 628999.54584577,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72923560173501,
                                name = "Стат. объект #006",
                                dead = false,
                            }, -- end of [7]
                            [8] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73137087457929,
                                            long = 0.72922399479039,
                                            x = -321423.90417687,
                                            name = "",
                                            speed = 0,
                                            y = 628949.41730793,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 8,
                                lat = 0.73137087457929,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "him_bak_a",
                                        type = "Chemical tank A",
                                        CLSID = "{264c3fb6-7871-471a-8915-a68afe98fbb5}",
                                        unitId = 8,
                                        lat = 0.73137087457929,
                                        long = 0.72922399479039,
                                        x = -321423.90417687,
                                        name = "Стат. объект #007",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 628949.41730793,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72922399479039,
                                name = "Стат. объект #007",
                                dead = false,
                            }, -- end of [8]
                            [9] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73137111483682,
                                            long = 0.72923532820995,
                                            x = -321416.74490707,
                                            name = "",
                                            speed = 0,
                                            y = 629003.12571522,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 9,
                                lat = 0.73137111483682,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "him_bak_a",
                                        type = "Chemical tank A",
                                        CLSID = "{264c3fb6-7871-471a-8915-a68afe98fbb5}",
                                        unitId = 9,
                                        lat = 0.73137111483682,
                                        long = 0.72923532820995,
                                        x = -321416.74490707,
                                        name = "Стат. объект #008",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 629003.12571522,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72923532820995,
                                name = "Стат. объект #008",
                                dead = false,
                            }, -- end of [9]
                            [10] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73139385945123,
                                            long = 0.72922481957211,
                                            x = -321277.04022214,
                                            name = "",
                                            speed = 0,
                                            y = 628938.27781553,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 10,
                                lat = 0.73139385945123,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "him_bak_a",
                                        type = "Chemical tank A",
                                        CLSID = "{264c3fb6-7871-471a-8915-a68afe98fbb5}",
                                        unitId = 10,
                                        lat = 0.73139385945123,
                                        long = 0.72922481957211,
                                        x = -321277.04022214,
                                        name = "Стат. объект #009",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 628938.27781553,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72922481957211,
                                name = "Стат. объект #009",
                                dead = false,
                            }, -- end of [10]
                            [11] = 
                            {
                                heading = 3.1415926535898,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73139393953872,
                                            long = 0.72923542136994,
                                            x = -321271.26485729,
                                            name = "",
                                            speed = 0,
                                            y = 628988.61389111,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 11,
                                lat = 0.73139393953872,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "him_bak_a",
                                        type = "Chemical tank A",
                                        CLSID = "{264c3fb6-7871-471a-8915-a68afe98fbb5}",
                                        unitId = 11,
                                        lat = 0.73139393953872,
                                        long = 0.72923542136994,
                                        x = -321271.26485729,
                                        name = "Стат. объект #010",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 628988.61389111,
                                        heading = 3.1415926535898,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72923542136994,
                                name = "Стат. объект #010",
                                dead = false,
                            }, -- end of [11]
                            [12] = 
                            {
                                heading = 0,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.73137872301884,
                                            long = 0.72920453940535,
                                            x = -321383.55764841,
                                            name = "",
                                            speed = 0,
                                            y = 628851.80691289,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 12,
                                lat = 0.73137872301884,
                                units = 
                                {
                                    [1] = 
                                    {
                                        shape_name = "tele_bash_m",
                                        type = "Comms tower M",
                                        CLSID = "{fe75a842-e794-4650-9197-22797513dc72}",
                                        unitId = 12,
                                        lat = 0.73137872301884,
                                        rate = 100,
                                        long = 0.72920453940535,
                                        x = -321383.55764841,
                                        name = "Стат. объект #011",
                                        category = "Fortifications",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 1,
                                        y = 628851.80691289,
                                        heading = 0,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.72920453940535,
                                name = "Стат. объект #011",
                                dead = false,
                            }, -- end of [12]
                        }, -- end of group
                    }, -- end of static
                }, -- end of [9]
                [10] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Spain",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 9,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [10]
                [11] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "USA",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 2,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [11]
                [12] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Denmark",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 13,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [12]
                [13] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Germany",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 6,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [13]
                [14] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Turkey",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 3,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                hidden = true,
                                name = "F-4 Groop",
                                groupId = 23,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 45,
                                            type = "TakeOff",
                                            action = "From Runway",
                                            lat = 0.736122,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.741468,
                                            x = -284889.06283057,
                                            speed = 138.88888888889,
                                            airdromeId = 25,
                                            y = 683853.75717885,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73463443207566,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72764955852409,
                                            x = -301396.95441366,
                                            speed = 388.88888888889,
                                            y = 619325.09437394,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73861905386299,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72477137460117,
                                            x = -277399.76477247,
                                            speed = 250,
                                            y = 603116.85842989,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 45,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.736122,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.741468,
                                            x = -284889.06283057,
                                            speed = 138.88888888889,
                                            airdromeId = 25,
                                            y = 683853.75717885,
                                        }, -- end of [4]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 1080,
                                task = "Fighter Sweep",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "F-4E",
                                        CLSID = "{4B75FEBA-9997-4D34-A0D6-0DB061350951}",
                                        unitId = 24,
                                        lat = 0.736122,
                                        skill = "Random",
                                        y = 683853.75717885,
                                        long = 0.741468,
                                        x = -284889.06283057,
                                        name = "2-1",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{7B4B122D-C12C-4DB4-834E-4D8BB4D863A8}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{9DDF5297-94B9-42FC-A45E-6E316121CD85}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [4]
                                                [6] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{9DDF5297-94B9-42FC-A45E-6E316121CD85}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{7B4B122D-C12C-4DB4-834E-4D8BB4D863A8}",
                                                }, -- end of [9]
                                            }, -- end of pylons
                                            fuel = "4864",
                                            flare = 30,
                                            chaff = 60,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Enfield11",
                                        }, -- end of callsign
                                        onboard_num = 12,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "F-4E",
                                        CLSID = "{4B75FEBA-9997-4D34-A0D6-0DB061350951}",
                                        unitId = 25,
                                        lat = 0.736115,
                                        skill = "Random",
                                        y = 683891.96105378,
                                        long = 0.741475,
                                        x = -284929.99166026,
                                        name = "2-2",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{7B4B122D-C12C-4DB4-834E-4D8BB4D863A8}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{9DDF5297-94B9-42FC-A45E-6E316121CD85}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [4]
                                                [6] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{9DDF5297-94B9-42FC-A45E-6E316121CD85}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{7B4B122D-C12C-4DB4-834E-4D8BB4D863A8}",
                                                }, -- end of [9]
                                            }, -- end of pylons
                                            fuel = "4864",
                                            flare = 30,
                                            chaff = 60,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 2,
                                            name = "Enfield12",
                                        }, -- end of callsign
                                        onboard_num = 13,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [1]
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [14]
                [15] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "The Netherlands",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 10,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [15]
            }, -- end of country
        }, -- end of blue
        red = 
        {
            country = 
            {
                [1] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Russia",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 0,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                hidden = false,
                                name = "Самолетная группа",
                                groupId = 20,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 45,
                                            type = "TakeOff",
                                            action = "From Runway",
                                            lat = 0.748055,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.717809,
                                            x = -220531.73642658,
                                            speed = 138.88888888889,
                                            airdromeId = 20,
                                            y = 564387.05872916,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 15,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73427063545072,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72681249510402,
                                            x = -304118.67747516,
                                            speed = 166.66666666667,
                                            y = 615586.04619165,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 15,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.748055,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.717809,
                                            x = -220531.73642658,
                                            speed = 138.88888888889,
                                            airdromeId = 20,
                                            y = 564387.05872916,
                                        }, -- end of [3]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Pinpoint Strike",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Su-25T",
                                        CLSID = "{31E68806-0891-4e12-9573-D1CFEA8C96F8}",
                                        unitId = 20,
                                        lat = 0.748055,
                                        skill = "Player",
                                        y = 564387.05872916,
                                        long = 0.717809,
                                        x = -220531.73642658,
                                        name = "101",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{682A481F-0CB5-4693-A382-D00DD4A156D7}",
                                                }, -- end of [1]
                                                [11] = 
                                                {
                                                    CLSID = "{682A481F-0CB5-4693-A382-D00DD4A156D7}",
                                                }, -- end of [11]
                                                [7] = 
                                                {
                                                    CLSID = "{601C99F7-9AF3-4ed7-A565-F8B8EC0D7AAC}",
                                                }, -- end of [7]
                                                [5] = 
                                                {
                                                    CLSID = "{601C99F7-9AF3-4ed7-A565-F8B8EC0D7AAC}",
                                                }, -- end of [5]
                                            }, -- end of pylons
                                            fuel = "3790",
                                            flare = 128,
                                            chaff = 128,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 0,
                                            name = 100,
                                        }, -- end of callsign
                                        onboard_num = 11,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [1]
                            [2] = 
                            {
                                hidden = true,
                                name = "Mig-29 Patrol",
                                groupId = 24,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 15,
                                            type = "TakeOff",
                                            action = "From Runway",
                                            lat = 0.748055,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.717809,
                                            x = -220531.73642658,
                                            speed = 138.88888888889,
                                            airdromeId = 20,
                                            y = 564387.05872916,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 3000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73998749430094,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72334106974853,
                                            x = -269358.6683223,
                                            speed = 394.44444444444,
                                            y = 595477.64451228,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 3000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74249885354195,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72716374902383,
                                            x = -251526.76824425,
                                            speed = 255.55555555556,
                                            y = 611882.20185437,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 15,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.748055,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.717809,
                                            x = -220531.73642658,
                                            speed = 138.88888888889,
                                            airdromeId = 20,
                                            y = 564387.05872916,
                                        }, -- end of [4]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 1020,
                                task = "Fighter Sweep",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "MiG-29S",
                                        CLSID = "{3B301281-F94A-11d5-9190-00A0249B6F00}",
                                        unitId = 26,
                                        lat = 0.748055,
                                        skill = "Random",
                                        y = 564387.05872916,
                                        long = 0.717809,
                                        x = -220531.73642658,
                                        name = "033",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [7]
                                            }, -- end of pylons
                                            fuel = "3500",
                                            flare = 30,
                                            chaff = 30,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 3,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 1,
                                            name = 101,
                                        }, -- end of callsign
                                        onboard_num = 14,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "MiG-29S",
                                        CLSID = "{3B301281-F94A-11d5-9190-00A0249B6F00}",
                                        unitId = 27,
                                        lat = 0.748048,
                                        skill = "Random",
                                        y = 564424.27758166,
                                        long = 0.717816,
                                        x = -220573.13934267,
                                        name = "034",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [7]
                                            }, -- end of pylons
                                            fuel = "3500",
                                            flare = 30,
                                            chaff = 30,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 3,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 2,
                                            name = 102,
                                        }, -- end of callsign
                                        onboard_num = 15,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [2]
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [1]
            }, -- end of country
        }, -- end of red
    }, -- end of coalition
    version = 2,
    trigfuncStartup = 
    {
    }, -- end of trigfuncStartup
    currentKey = 1908,
    start_time = 25200,
    forcedOptions = 
    {
    }, -- end of forcedOptions
    failures = 
    {
        hydro = 
        {
            hh = 0,
            prob = 100,
            label = "ГИДРО ОСН.",
            enable = false,
            mmint = 1,
            id = "hydro",
            mm = 0,
        }, -- end of hydro
        eos = 
        {
            hh = 0,
            prob = 100,
            label = "ОЛС",
            enable = false,
            mmint = 1,
            id = "eos",
            mm = 0,
        }, -- end of eos
        ecm = 
        {
            hh = 0,
            prob = 100,
            label = "РЭБ",
            enable = false,
            mmint = 1,
            id = "ecm",
            mm = 0,
        }, -- end of ecm
        l_engine = 
        {
            hh = 0,
            prob = 100,
            label = "ЛЕВ. ДВИГ.",
            enable = false,
            mmint = 1,
            id = "l_engine",
            mm = 0,
        }, -- end of l_engine
        autopilot = 
        {
            hh = 0,
            prob = 100,
            label = "АВТОПИЛОТ",
            enable = false,
            mmint = 1,
            id = "autopilot",
            mm = 0,
        }, -- end of autopilot
        hud = 
        {
            hh = 0,
            prob = 100,
            label = "ИЛС",
            enable = false,
            mmint = 1,
            id = "hud",
            mm = 0,
        }, -- end of hud
        asc = 
        {
            hh = 0,
            prob = 100,
            label = "САУ",
            enable = false,
            mmint = 1,
            id = "asc",
            mm = 0,
        }, -- end of asc
        rws = 
        {
            hh = 0,
            prob = 100,
            label = "СПО",
            enable = false,
            mmint = 1,
            id = "rws",
            mm = 0,
        }, -- end of rws
        r_engine = 
        {
            hh = 0,
            prob = 100,
            label = "ПРАВ. ДВИГ.",
            enable = false,
            mmint = 1,
            id = "r_engine",
            mm = 0,
        }, -- end of r_engine
        mfd = 
        {
            hh = 0,
            prob = 100,
            label = "МФД",
            enable = false,
            mmint = 1,
            id = "mfd",
            mm = 0,
        }, -- end of mfd
    }, -- end of failures
} -- end of mission
