mission = 
{
    trig = 
    {
        actions = 
        {
            [1] = "a_set_flag(\"1\"); mission.trig.func[1]='';",
            [2] = "if not mission.trig.flag[2] then a_out_text_delay(\"Успех миссии!\", \"15\"); mission.trig.flag[2]=true; end; else mission.trig.flag[2]=false;",
        }, -- 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",
        }, -- end of func
        flag = 
        {
            [1] = true,
            [2] = true,
        }, -- end of flag
        conditions = 
        {
            [1] = "return(c_time_after(\"1\") )",
            [2] = "return(c_mission_score_higher(\"offline\", \"99\") )",
        }, -- 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] = 
                {
                    flag = 1,
                    predicate = "c_flag_is_true",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            score = 50,
            side = "OFFLINE",
            predicate = "score",
            comment = "",
        }, -- end of [1]
        [2] = 
        {
            rules = 
            {
                [1] = 
                {
                    group = 44,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
                [2] = 
                {
                    group = 45,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [2]
                [3] = 
                {
                    group = 46,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [3]
            }, -- end of rules
            score = 25,
            side = "OFFLINE",
            predicate = "score",
            comment = "",
        }, -- end of [2]
        [3] = 
        {
            rules = 
            {
                [1] = 
                {
                    group = 47,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            score = 25,
            side = "OFFLINE",
            predicate = "score",
            comment = "",
        }, -- end of [3]
    }, -- end of goals
    trigfunc = 
    {
        [1] = "if c_time_after(\"1\") then a_set_flag(\"1\"); mission.trigfunc[1]='';end;",
        [2] = "if c_mission_score_higher(\"offline\", \"99\") then if not mission.trigflag[2] then a_out_text_delay(\"Успех миссии!\", \"15\"); mission.trigflag[2]=true; end; else mission.trigflag[2]=false;end;",
    }, -- end of trigfunc
    weather = 
    {
        qnh = 760,
        wind = 
        {
            at8000 = 
            {
                speed = 21,
                dir = 109,
            }, -- end of at8000
            at2000 = 
            {
                speed = 15,
                dir = 103,
            }, -- end of at2000
            atGround = 
            {
                speed = 6,
                dir = 58,
            }, -- end of atGround
        }, -- end of wind
        name = "Winter, clean sky",
        fog = 
        {
            thickness = 100,
            visibility = 1000,
            density = 1,
        }, -- end of fog
        turbulence = 
        {
            at8000 = 0,
            at2000 = 0,
            atGround = 0,
        }, -- end of turbulence
        season = 
        {
            temperature = 22,
            iseason = 1,
        }, -- end of season
        visibility = 
        {
            distance = 80000,
        }, -- end of visibility
        clouds = 
        {
            density = 3,
            thickness = 1010,
            base = 1300,
            iprecptns = 0,
        }, -- end of clouds
    }, -- end of weather
    result = 
    {
        [1] = "if c_flag_is_true(\"1\")  then a_set_mission_result(50) end",
        [2] = "if c_group_dead(\"Самолетная группа #004\") and c_group_dead(\"Самолетная группа #005\") and c_group_dead(\"Самолетная группа #006\")  then a_set_mission_result(25) end",
        [3] = "if c_group_dead(\"Самолетная группа #007\")  then a_set_mission_result(25) end",
        offline = 
        {
            conditions = 
            {
                [1] = "return(c_flag_is_true(\"1\") )",
                [2] = "return(c_group_dead(\"Самолетная группа #004\") and c_group_dead(\"Самолетная группа #005\") and c_group_dead(\"Самолетная группа #006\") )",
                [3] = "return(c_group_dead(\"Самолетная группа #007\") )",
            }, -- end of conditions
            actions = 
            {
                [1] = "a_set_mission_result(50)",
                [2] = "a_set_mission_result(25)",
                [3] = "a_set_mission_result(25)",
            }, -- 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",
                [3] = "if mission.result.offline.conditions[3]() then mission.result.offline.actions[3]() 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 = 
    {
    }, -- end of triggers
    map = 
    {
        centerY = 0.70447741689719,
        zoom = 1000000,
        centerX = 0.75661950711965,
    }, -- 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] = 5,
        }, -- end of blue
        red = 
        {
            [1] = 0,
            [2] = 1,
        }, -- end of red
    }, -- end of coalitions
    descriptionText = "Вы были атакованы истребителями с \"Винсона\", после налёта на Краснодар эти машины не вернулись из Сухуми на авианосец, так как требовали восстановительных работ.\
\
Завершается эвакуация сил НАТО из Сухуми. Из сухумского порта выходит последний военный корабль - турецкий фрегат, с авиабазы должны вылететь последние \"Геркулесы\". Над базой постоянно висят два турецких \"Фантома\".Получен приказ уничтожить противника. ",
    trigflag = 
    {
        [1] = true,
        [2] = true,
    }, -- end of trigflag
    descriptionRedTask = "Вы летите без ведомого. Пара Су-33 из Новороссийска, огибая рельеф горной местности, с севера выйдет к Сочи, ровно в 8:55. Вы должны присоединиться к паре истребителей и взять курс на Сухуми. Ваша задача - совместно с Су-33 уничтожить самолёты противника. Сперва следует уничтожить F-4, затем все три турецких C-130 - это должен быть достойный ответ на вчерашнюю расправу над нашими штурмовиками.\
Информацию о целях будете получать от ДРЛО.\
\
Турецкий фрегат, вывозящий из Сухуми, кроме личного состава, многочисленные награбленные материальные ценности, будет потоплен к 9:05. После этого времени Вы можете свободно приближаться к Сухуми и сухумской авиабазе на безопасных высотах, т.к. средств ПВО, кроме ПЗРК и зенитной артиллерии, здесь больше не будет.\
\
Ваше вооружение: 2 Р-27ЭР, 2 Р-27Р, Р-27ЭТ, Р-27Т, 2 Р-73. Доступны средства РЭБ.\
\
Посадку осуществляете в Сочи-Адлере. Запасной аэродром - Майкоп. Посадка в Гудауте запрещена.\
\
В случае необходимости покидания самолёта вам запрещается катапультироваться над территорией, занятой противником.\
\
Удачной охоты!",
    pictureFileNameB = 
    {
    }, -- end of pictureFileNameB
    pictureFileNameR = 
    {
        [1] = "su26{7B266F56-0A93-4597-BA24-78486A2E6F78}.jpg",
    }, -- end of pictureFileNameR
    trigrules = 
    {
        [1] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    seconds = 1,
                    predicate = "c_time_after",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    flag = 1,
                    text = "",
                    predicate = "a_set_flag",
                    seconds = 10,
                }, -- end of [1]
            }, -- end of actions
            comment = "",
        }, -- end of [1]
        [2] = 
        {
            predicate = "triggerFront",
            rules = 
            {
                [1] = 
                {
                    score = 99,
                    coalitionlist = "offline",
                    predicate = "c_mission_score_higher",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    text = "Успех миссии!",
                    predicate = "a_out_text_delay",
                    seconds = 15,
                }, -- end of [1]
            }, -- end of actions
            comment = "",
        }, -- end of [2]
    }, -- end of trigrules
    coalition = 
    {
        blue = 
        {
            country = 
            {
                [1] = 
                {
                    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 [1]
                [2] = 
                {
                    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 [2]
                [3] = 
                {
                    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 [3]
                [4] = 
                {
                    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 [4]
                [5] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Georgia",
                    ship = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 16,
                    vehicle = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 15,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.7479662200533,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71806310030752,
                                            x = -220981.61392145,
                                            speed = 5.5555555555556,
                                            y = 565634.13213885,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 16,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "ZSU-23-4 Shilka",
                                        CLSID = "{28704245-E952-427A-9C57-B2A6E0AB1E66}",
                                        unitId = 52,
                                        lat = 0.7479662200533,
                                        skill = "Random",
                                        long = 0.71806310030752,
                                        x = -220981.61392145,
                                        name = "Юнит #14",
                                        heading = 3.402439020075,
                                        y = 565634.13213885,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #010",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [1]
                            [2] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 13,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75049159478661,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71557452978791,
                                            x = -206028.62288441,
                                            speed = 5.5555555555556,
                                            y = 552435.69703215,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 28,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "UAZ-469",
                                        CLSID = "{1D6C2705-575C-4F35-A670-328ECBA007A3}",
                                        unitId = 66,
                                        lat = 0.75049159478661,
                                        skill = "Random",
                                        long = 0.71557452978791,
                                        x = -206028.62288441,
                                        name = "Юнит #19",
                                        heading = 3.6312378654622,
                                        y = 552435.69703215,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #016",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [2]
                        }, -- 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 = "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 [6]
                [7] = 
                {
                    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 [7]
                [8] = 
                {
                    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 [8]
                [9] = 
                {
                    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 [9]
                [10] = 
                {
                    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 [10]
                [11] = 
                {
                    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 [11]
                [12] = 
                {
                    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 [12]
                [13] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Turkey",
                    ship = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 15,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74817682796928,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71570666253643,
                                            x = -220712.52735799,
                                            speed = 5.5555555555556,
                                            y = 554464.46895769,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73098508779244,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71949158859145,
                                            x = -328507.79682767,
                                            speed = 13.888888888889,
                                            y = 582866.11472541,
                                        }, -- end of [2]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 40,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "PERRY",
                                        CLSID = "{AA4986BF-CBC4-48B6-AEEA-07E564FADB8B}",
                                        unitId = 85,
                                        lat = 0.74817682796928,
                                        skill = "Average",
                                        long = 0.71570666253643,
                                        x = -220712.52735799,
                                        name = "Юнит #16",
                                        heading = 2.9790836560825,
                                        y = 554464.46895769,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Кораб. группа #002",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [1]
                        }, -- end of group
                    }, -- end of ship
                    id = 3,
                    vehicle = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 24,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75089435733194,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71454444387526,
                                            x = -203917.58432101,
                                            speed = 5.5555555555556,
                                            y = 547373.77621567,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 13,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Vulcan",
                                        CLSID = "{AC83CA0F-E7D9-4A25-9B1F-0CC163FA1684}",
                                        unitId = 49,
                                        lat = 0.75089435733194,
                                        skill = "Random",
                                        long = 0.71454444387526,
                                        x = -203917.58432101,
                                        name = "Юнит #11",
                                        heading = 4.0514345790715,
                                        y = 547373.77621567,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #007",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [1]
                            [2] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 15,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.74817333105392,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71757264674284,
                                            x = -219885.54978041,
                                            speed = 5.5555555555556,
                                            y = 563204.59945815,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 14,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Vulcan",
                                        CLSID = "{AC83CA0F-E7D9-4A25-9B1F-0CC163FA1684}",
                                        unitId = 50,
                                        lat = 0.74817333105392,
                                        skill = "Random",
                                        long = 0.71757264674284,
                                        x = -219885.54978041,
                                        name = "Юнит #12",
                                        heading = 0,
                                        y = 563204.59945815,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #008",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [2]
                            [3] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 15,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.74808046364084,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71780951839581,
                                            x = -220369.3033783,
                                            speed = 5.5555555555556,
                                            y = 564373.47451785,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 15,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Stinger manpad",
                                        CLSID = "{B84C5FC5-9893-45e4-A712-E3D4D201A003}",
                                        unitId = 51,
                                        lat = 0.74808046364084,
                                        skill = "Random",
                                        long = 0.71780951839581,
                                        x = -220369.3033783,
                                        name = "Юнит #13",
                                        heading = 3.5046457381822,
                                        y = 564373.47451785,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #009",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [3]
                            [4] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 17,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75103312986231,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71427483700476,
                                            x = -203152.59868756,
                                            speed = 5.5555555555556,
                                            y = 546028.51112528,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 26,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "M 818",
                                        CLSID = "{0EDE3912-F55C-402a-95AF-36BB3106BEA2}",
                                        unitId = 64,
                                        lat = 0.75103312986231,
                                        skill = "Random",
                                        long = 0.71427483700476,
                                        x = -203152.59868756,
                                        name = "Юнит #17",
                                        heading = 4.4166360288596,
                                        y = 546028.51112528,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #014",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [4]
                            [5] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 17,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.7504741541277,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71558248726274,
                                            x = -206136.20134319,
                                            speed = 5.5555555555556,
                                            y = 552483.49738582,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 27,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Stinger manpad",
                                        CLSID = "{B84C5FC5-9893-45e4-A712-E3D4D201A003}",
                                        unitId = 65,
                                        lat = 0.7504741541277,
                                        skill = "Random",
                                        long = 0.71558248726274,
                                        x = -206136.20134319,
                                        name = "Юнит #18",
                                        heading = 4.1545161875942,
                                        y = 552483.49738582,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #015",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [5]
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #002",
                                groupId = 43,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74861557760398,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72442338017323,
                                            x = -213885.58265881,
                                            speed = 138.88888888889,
                                            y = 595022.60121573,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.75170996480038,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72238195130314,
                                            x = -195134.49570558,
                                            speed = 138.88888888889,
                                            y = 583469.71185797,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.75287475142324,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71768838898139,
                                            x = -189887.07527568,
                                            speed = 138.88888888889,
                                            y = 560833.93443725,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.75190009066044,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71281458314179,
                                            x = -198274.72224529,
                                            speed = 138.88888888889,
                                            y = 538678.42961381,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74931417185852,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71038446176186,
                                            x = -215804.82060202,
                                            speed = 138.88888888889,
                                            y = 528856.53262523,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74566262642348,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71026447335214,
                                            x = -239113.74612014,
                                            speed = 138.88888888889,
                                            y = 530433.65468644,
                                        }, -- end of [6]
                                        [7] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74267555061401,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71387908062005,
                                            x = -256560.92563079,
                                            speed = 138.88888888889,
                                            y = 549195.19868563,
                                        }, -- end of [7]
                                        [8] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74216964558417,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.7192002587234,
                                            x = -257388.19932261,
                                            speed = 138.88888888889,
                                            y = 574576.10381845,
                                        }, -- end of [8]
                                        [9] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74429385693002,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72385760695548,
                                            x = -241682.76699224,
                                            speed = 138.88888888889,
                                            y = 595154.17726202,
                                        }, -- end of [9]
                                        [10] = 
                                        {
                                            alt = 3500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74814503085417,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72448256696597,
                                            x = -216854.34471585,
                                            speed = 138.88888888889,
                                            y = 595604.37741988,
                                        }, -- end of [10]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "CAP",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "F-4E",
                                        CLSID = "{4B75FEBA-9997-4D34-A0D6-0DB061350951}",
                                        unitId = 88,
                                        lat = 0.74861557760398,
                                        skill = "Random",
                                        long = 0.72442338017323,
                                        x = -213885.58265881,
                                        name = "Пилот #4",
                                        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]
                                                [5] = 
                                                {
                                                    CLSID = "{8B9E3FD0-F034-4A07-B6CE-C269884CC71B}",
                                                }, -- end of [5]
                                                [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,
                                        y = 595022.60121573,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Enfield11",
                                        }, -- end of callsign
                                        onboard_num = 11,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "F-4E",
                                        CLSID = "{4B75FEBA-9997-4D34-A0D6-0DB061350951}",
                                        unitId = 90,
                                        lat = 0.74860857760398,
                                        skill = "Random",
                                        long = 0.72443038017323,
                                        x = -213926.78692449,
                                        name = "Пилот #5",
                                        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]
                                                [5] = 
                                                {
                                                    CLSID = "{8B9E3FD0-F034-4A07-B6CE-C269884CC71B}",
                                                }, -- end of [5]
                                                [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,
                                        y = 595059.86793505,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 2,
                                            name = "Enfield12",
                                        }, -- end of callsign
                                        onboard_num = 13,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [1]
                            [2] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #004",
                                groupId = 44,
                                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 = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73096035010599,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72287039141295,
                                            x = -327090.61621194,
                                            speed = 138.88888888889,
                                            y = 598965.12882284,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.71417303807099,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.70075576063034,
                                            x = -443626.83260829,
                                            speed = 138.88888888889,
                                            y = 502551.53821238,
                                        }, -- end of [3]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 540,
                                task = "Transport",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "C-130",
                                        CLSID = "{0213FA86-978D-4586-BAC3-BD642AD52B96}",
                                        unitId = 91,
                                        lat = 0.748055,
                                        skill = "Random",
                                        y = 564387.05872916,
                                        long = 0.717809,
                                        x = -220531.73642658,
                                        name = "Пилот #6",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                            }, -- end of pylons
                                            fuel = "20830",
                                            flare = 60,
                                            chaff = 120,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 11,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 2,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Springfield11",
                                        }, -- end of callsign
                                        onboard_num = 14,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [2]
                            [3] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #005",
                                groupId = 45,
                                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 = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73100478226525,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72320679923352,
                                            x = -326650.11915318,
                                            speed = 138.88888888889,
                                            y = 600539.81614187,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.71426454272091,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.70140747246296,
                                            x = -442786.21930298,
                                            speed = 138.88888888889,
                                            y = 505656.05883008,
                                        }, -- end of [3]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 540,
                                task = "Transport",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "C-130",
                                        CLSID = "{0213FA86-978D-4586-BAC3-BD642AD52B96}",
                                        unitId = 92,
                                        lat = 0.748055,
                                        skill = "Random",
                                        y = 564387.05872916,
                                        long = 0.717809,
                                        x = -220531.73642658,
                                        name = "Пилот #8",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                            }, -- end of pylons
                                            fuel = "20830",
                                            flare = 60,
                                            chaff = 120,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 11,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 3,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Uzi11",
                                        }, -- end of callsign
                                        onboard_num = 15,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [3]
                            [4] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #006",
                                groupId = 46,
                                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 = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73100478226525,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.7230323490019,
                                            x = -326731.74371568,
                                            speed = 138.88888888889,
                                            y = 599708.57658804,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.71414543033469,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.7011296304647,
                                            x = -443654.85022964,
                                            speed = 138.88888888889,
                                            y = 504375.03627766,
                                        }, -- end of [3]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 540,
                                task = "Transport",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "C-130",
                                        CLSID = "{0213FA86-978D-4586-BAC3-BD642AD52B96}",
                                        unitId = 93,
                                        lat = 0.748055,
                                        skill = "Random",
                                        y = 564387.05872916,
                                        long = 0.717809,
                                        x = -220531.73642658,
                                        name = "Пилот #9",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                            }, -- end of pylons
                                            fuel = "20830",
                                            flare = 60,
                                            chaff = 120,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 11,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 4,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Colt11",
                                        }, -- end of callsign
                                        onboard_num = 16,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [4]
                            [5] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #007",
                                groupId = 47,
                                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 = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.73100750429291,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.72261299337031,
                                            x = -326910.6155183,
                                            speed = 152.77777777778,
                                            y = 597708.65336884,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.71413501844571,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.70110574932989,
                                            x = -443730.61884211,
                                            speed = 152.77777777778,
                                            y = 504265.0218654,
                                        }, -- end of [3]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 600,
                                task = "Escort",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "F-5E",
                                        CLSID = "{569949FE-CE95-4D94-BF76-7B809B8DACD0}",
                                        unitId = 94,
                                        lat = 0.748055,
                                        skill = "Random",
                                        y = 564387.05872916,
                                        long = 0.717809,
                                        x = -220531.73642658,
                                        name = "Пилот #10",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{0395076D-2F77-4420-9D33-087A4398130B}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{0395076D-2F77-4420-9D33-087A4398130B}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{0395076D-2F77-4420-9D33-087A4398130B}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [7]
                                            }, -- end of pylons
                                            fuel = "2000",
                                            flare = 15,
                                            chaff = 30,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 5,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Dodge11",
                                        }, -- end of callsign
                                        onboard_num = 17,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "F-5E",
                                        CLSID = "{569949FE-CE95-4D94-BF76-7B809B8DACD0}",
                                        unitId = 95,
                                        lat = 0.748048,
                                        skill = "Random",
                                        y = 564424.27758166,
                                        long = 0.717816,
                                        x = -220573.13934267,
                                        name = "Пилот #11",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{0395076D-2F77-4420-9D33-087A4398130B}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{0395076D-2F77-4420-9D33-087A4398130B}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{0395076D-2F77-4420-9D33-087A4398130B}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [7]
                                            }, -- end of pylons
                                            fuel = "2000",
                                            flare = 15,
                                            chaff = 30,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 5,
                                            [2] = 1,
                                            [3] = 2,
                                            name = "Dodge12",
                                        }, -- end of callsign
                                        onboard_num = 18,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [5]
                        }, -- 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 = "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 [14]
            }, -- end of country
        }, -- end of blue
        red = 
        {
            country = 
            {
                [1] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "Russia",
                    ship = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77922268432857,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6606428306905,
                                            x = -42814.006006638,
                                            speed = 5.5555555555556,
                                            y = 284925.08846149,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 3,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "MOSCOW",
                                        CLSID = "{5723F0F5-08EB-41DE-9CBB-7DCA54521D79}",
                                        unitId = 3,
                                        lat = 0.77922268432857,
                                        skill = "Random",
                                        long = 0.6606428306905,
                                        x = -42814.006006638,
                                        name = "Юнит #1",
                                        heading = 1.7359450042095,
                                        y = 284925.08846149,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Кораб. группа",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [1]
                            [2] = 
                            {
                                visible = false,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.75806752358977,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69569789262717,
                                            x = -166040.04632251,
                                            speed = 13.888888888889,
                                            y = 455533.2658247,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.7569953471191,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6961131024456,
                                            x = -172708.16120086,
                                            speed = 13.888888888889,
                                            y = 458030.4761239,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.7562785163525,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6998178646057,
                                            x = -175824.29210429,
                                            speed = 13.888888888889,
                                            y = 475637.80419475,
                                        }, -- end of [3]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 8,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "NEUSTRASH",
                                        CLSID = "{06B97F7F-8CBA-429C-9CCF-376B80A8DD31}",
                                        unitId = 44,
                                        lat = 0.75806752358977,
                                        skill = "Random",
                                        long = 0.69569789262717,
                                        x = -166040.04632251,
                                        name = "Юнит #6",
                                        heading = 2.8671834838468,
                                        y = 455533.2658247,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Кораб. группа #001",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [2]
                        }, -- end of group
                    }, -- end of ship
                    id = 0,
                    vehicle = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                        [6] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.6634033628108,
                                                lat = 0.77787835423782,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.6634033628108,
                                                lat = 0.77787835423782,
                                            }, -- end of [2]
                                        }, -- end of [6]
                                        [2] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.66353127285841,
                                                lat = 0.77796336337714,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.66344484282682,
                                                lat = 0.77789910384339,
                                            }, -- end of [2]
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.66344484282682,
                                                lat = 0.77789910384339,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.66342230566829,
                                                lat = 0.77789692846162,
                                            }, -- end of [2]
                                        }, -- end of [3]
                                        [1] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.66351832489048,
                                                lat = 0.77797131243033,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.66353127285841,
                                                lat = 0.77796336337714,
                                            }, -- end of [2]
                                        }, -- end of [1]
                                        [4] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.66342230566829,
                                                lat = 0.77789692846162,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.6634035888245,
                                                lat = 0.77788554961752,
                                            }, -- end of [2]
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            [1] = 
                                            {
                                                long = 0.6634035888245,
                                                lat = 0.77788554961752,
                                            }, -- end of [1]
                                            [2] = 
                                            {
                                                long = 0.6634033628108,
                                                lat = 0.77787835423782,
                                            }, -- end of [2]
                                        }, -- end of [5]
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 25,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.77797131243033,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66351832489048,
                                            x = -49994.420546429,
                                            speed = 11.111111111111,
                                            y = 298487.62689886,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 25,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.77796336337714,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66353127285841,
                                            x = -50041.325585346,
                                            speed = 11.111111111111,
                                            y = 298549.57073259,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 25,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.77789910384339,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66344484282682,
                                            x = -50475.251909441,
                                            speed = 11.111111111111,
                                            y = 298181.96160132,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 25,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.77789692846162,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66342230566829,
                                            x = -50495.560194154,
                                            speed = 11.111111111111,
                                            y = 298080.40364301,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 25,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.77788554961752,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6634035888245,
                                            x = -50573.375849579,
                                            speed = 11.111111111111,
                                            y = 297999.80407919,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 25,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.77787835423782,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6634033628108,
                                            x = -50619.256268188,
                                            speed = 11.111111111111,
                                            y = 298001.5907574,
                                        }, -- end of [6]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 4,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Ural ATsP-6",
                                        CLSID = "{E8DC1D50-7463-4dfa-86D7-2F81C1214D06}",
                                        unitId = 4,
                                        lat = 0.77797131243033,
                                        skill = "Random",
                                        long = 0.66351832489048,
                                        x = -49994.420546429,
                                        name = "Юнит #2",
                                        heading = 2.282118216867,
                                        y = 298487.62689886,
                                    }, -- 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 = 30,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75815666763914,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69718392512831,
                                            x = -164900.69058921,
                                            speed = 5.5555555555556,
                                            y = 462384.16029482,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 9,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "2S6 Tunguska",
                                        CLSID = "{08353DA0-2367-42CB-8F46-20A9E4787441}",
                                        unitId = 45,
                                        lat = 0.75815666763914,
                                        skill = "Random",
                                        long = 0.69718392512831,
                                        x = -164900.69058921,
                                        name = "Юнит #7",
                                        heading = 3.6432854753164,
                                        y = 462384.16029482,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #003",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [2]
                            [3] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 30,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75720921978713,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69874113691858,
                                            x = -170326.63471205,
                                            speed = 5.5555555555556,
                                            y = 470124.37554327,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 10,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Strela-1 9P31",
                                        CLSID = "{5C486AED-5DCE-4A0A-AF88-7343D3B2B43E}",
                                        unitId = 46,
                                        lat = 0.75720921978713,
                                        skill = "Random",
                                        long = 0.69874113691858,
                                        x = -170326.63471205,
                                        name = "Юнит #8",
                                        heading = 2.6011731533192,
                                        y = 470124.37554327,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #004",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [3]
                            [4] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 5,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75307088510103,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.70415832424842,
                                            x = -194498.05606987,
                                            speed = 5.5555555555556,
                                            y = 497617.8042133,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 11,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Strela-1 9P31",
                                        CLSID = "{5C486AED-5DCE-4A0A-AF88-7343D3B2B43E}",
                                        unitId = 47,
                                        lat = 0.75307088510103,
                                        skill = "Random",
                                        long = 0.70415832424842,
                                        x = -194498.05606987,
                                        name = "Юнит #9",
                                        heading = 2.9229237077159,
                                        y = 497617.8042133,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #005",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [4]
                            [5] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 21,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75223293310109,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.70824028185032,
                                            x = -198130.29203382,
                                            speed = 5.5555555555556,
                                            y = 517133.47350857,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 20,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Strela-1 9P31",
                                        CLSID = "{5C486AED-5DCE-4A0A-AF88-7343D3B2B43E}",
                                        unitId = 58,
                                        lat = 0.75223293310109,
                                        skill = "Random",
                                        long = 0.70824028185032,
                                        x = -198130.29203382,
                                        name = "Юнит #3",
                                        heading = 3.0309354324159,
                                        y = 517133.47350857,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #001",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [5]
                            [6] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 21,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75218134308152,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.70901467414195,
                                            x = -198128.21298956,
                                            speed = 5.5555555555556,
                                            y = 520773.18000629,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 21,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "ZSU-23-4 Shilka",
                                        CLSID = "{28704245-E952-427A-9C57-B2A6E0AB1E66}",
                                        unitId = 59,
                                        lat = 0.75218134308152,
                                        skill = "Random",
                                        long = 0.70901467414195,
                                        x = -198128.21298956,
                                        name = "Юнит #4",
                                        heading = 2.9996955989856,
                                        y = 520773.18000629,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #002",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [6]
                            [7] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 18,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75201418240356,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71074964040066,
                                            x = -198452.28213908,
                                            speed = 5.5555555555556,
                                            y = 528977.93252385,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 37,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "SAU Akatsia",
                                        CLSID = "{83485D57-2B11-4A83-9A7E-5FD47E9ADCEC}",
                                        unitId = 82,
                                        lat = 0.75201418240356,
                                        skill = "Random",
                                        long = 0.71074964040066,
                                        x = -198452.28213908,
                                        name = "Юнит #5",
                                        heading = 1.5707963267949,
                                        y = 528977.93252385,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #006",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [7]
                            [8] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 18,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75201867124037,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71089681680868,
                                            x = -198360.87289355,
                                            speed = 5.5555555555556,
                                            y = 529663.29804694,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 38,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "SAU Akatsia",
                                        CLSID = "{83485D57-2B11-4A83-9A7E-5FD47E9ADCEC}",
                                        unitId = 83,
                                        lat = 0.75201867124037,
                                        skill = "Random",
                                        long = 0.71089681680868,
                                        x = -198360.87289355,
                                        name = "Юнит #10",
                                        heading = 1.9513027039073,
                                        y = 529663.29804694,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #011",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [8]
                            [9] = 
                            {
                                visible = false,
                                route = 
                                {
                                    spans = 
                                    {
                                    }, -- end of spans
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 16,
                                            type = "Turning Point",
                                            action = "Off Road",
                                            lat = 0.75203662677609,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71103483595756,
                                            x = -198187.6015645,
                                            speed = 5.5555555555556,
                                            y = 530297.88145384,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 39,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "SAU Msta",
                                        CLSID = "{80530579-B527-4A29-B1B6-1B0BDD4C8D86}",
                                        unitId = 84,
                                        lat = 0.75203662677609,
                                        skill = "Random",
                                        long = 0.71103483595756,
                                        x = -198187.6015645,
                                        name = "Юнит #15",
                                        heading = 2.1112158270655,
                                        y = 530297.88145384,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Наземная группа #012",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [9]
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #001",
                                groupId = 1,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 30,
                                            type = "TakeOffParking",
                                            action = "From Parking Area",
                                            lat = 0.758225,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69716,
                                            x = -164474.73482633,
                                            speed = 138.88888888889,
                                            airdromeId = 18,
                                            y = 462236.21834688,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 8500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.75507226935178,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.70117822787608,
                                            x = -182963.6814982,
                                            speed = 138.88888888889,
                                            y = 482614.99011978,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 8500,
                                            type = "Turning Point",
                                            action = "Fly Over Point",
                                            lat = 0.74633812094877,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.7132971721784,
                                            x = -233488.02621794,
                                            speed = 194.44444444444,
                                            y = 544265.15560616,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 8500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74438704807811,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71067924798695,
                                            x = -247061.48394385,
                                            speed = 194.44444444444,
                                            y = 533127.86703501,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 30,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.758225,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69716,
                                            x = -164474.73482633,
                                            speed = 138.88888888889,
                                            airdromeId = 18,
                                            y = 462236.21834688,
                                        }, -- end of [5]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Intercept",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Su-27",
                                        CLSID = "{6FFE10D7-723E-46B0-AB8F-71B8B3D7572B}",
                                        unitId = 1,
                                        lat = 0.758225,
                                        skill = "Player",
                                        y = 462236.21834688,
                                        long = 0.69716,
                                        x = -164474.73482633,
                                        name = "Пилот #1",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [9]
                                                [10] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [10]
                                            }, -- end of pylons
                                            fuel = "9400",
                                            flare = 96,
                                            chaff = 96,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 3,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 3,
                                            name = "113",
                                        }, -- end of callsign
                                        onboard_num = 13,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [1]
                            [2] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #003",
                                groupId = 31,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 9000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.78085742312066,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.70766447263879,
                                            x = -16088.952559602,
                                            speed = 138.88888888889,
                                            y = 497696.92959064,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 9000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77579843244705,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.67092844227319,
                                            x = -61660.19958387,
                                            speed = 138.88888888889,
                                            y = 333129.72349801,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 9000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.78472191796697,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66374896074431,
                                            x = -6944.3838514723,
                                            speed = 138.88888888889,
                                            y = 296873.5722216,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.78601696922543,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.68343231879501,
                                            x = 7464.4613753017,
                                            speed = 138.88888888889,
                                            y = 385224.50068408,
                                        }, -- end of [4]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "AWACS",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-50",
                                        CLSID = "{CA17F0F8-6AEB-43FA-BC90-76732137F61D}",
                                        unitId = 73,
                                        lat = 0.78085742312066,
                                        skill = "Excellent",
                                        long = 0.70766447263879,
                                        x = -16088.952559602,
                                        name = "Пилот #7",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                            }, -- end of pylons
                                            fuel = "70000",
                                            flare = 192,
                                            chaff = 192,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 497696.92959064,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 6,
                                            name = 106,
                                        }, -- end of callsign
                                        onboard_num = 15,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [2]
                            [3] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #008",
                                groupId = 48,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76436250616723,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6976292248345,
                                            x = -125209.79604051,
                                            speed = 138.88888888889,
                                            y = 461119.8717363,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76351439201587,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69921422382646,
                                            x = -129985.26139234,
                                            speed = 236.11111111111,
                                            y = 468891.4390434,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.7598811905172,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69693832082334,
                                            x = -154013.14187376,
                                            speed = 250,
                                            y = 460329.97438338,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 9500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74777378154499,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71469274115455,
                                            x = -223728.46807951,
                                            speed = 222.22222222222,
                                            y = 549958.57160727,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 9500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74485831263885,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71122045626014,
                                            x = -243829.02752365,
                                            speed = 222.22222222222,
                                            y = 535400.53385562,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 5000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.75623230171492,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69522932834003,
                                            x = -177907.35883735,
                                            speed = 222.22222222222,
                                            y = 454330.6422306,
                                        }, -- end of [6]
                                        [7] = 
                                        {
                                            alt = 30,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.758225,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.69716,
                                            x = -164474.73482633,
                                            speed = 138.88888888889,
                                            airdromeId = 18,
                                            y = 462236.21834688,
                                        }, -- end of [7]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Fighter Sweep",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Su-33",
                                        CLSID = "{35ED40B9-C66A-4A80-AC29-04B041552520}",
                                        unitId = 97,
                                        lat = 0.76436250616723,
                                        skill = "High",
                                        long = 0.6976292248345,
                                        x = -125209.79604051,
                                        name = "Пилот #12",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [9]
                                                [10] = 
                                                {
                                                    CLSID = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}",
                                                }, -- end of [10]
                                                [11] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [11]
                                                [12] = 
                                                {
                                                    CLSID = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}",
                                                }, -- end of [12]
                                            }, -- end of pylons
                                            fuel = "9400",
                                            flare = 48,
                                            chaff = 48,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 461119.8717363,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 2,
                                            name = 102,
                                        }, -- end of callsign
                                        onboard_num = 20,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "Su-33",
                                        CLSID = "{35ED40B9-C66A-4A80-AC29-04B041552520}",
                                        unitId = 98,
                                        lat = 0.76435550616723,
                                        skill = "High",
                                        long = 0.6976362248345,
                                        x = -125251.67865018,
                                        name = "Пилот #13",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{E8069896-8435-4B90-95C0-01A03AE6E400}",
                                                }, -- end of [9]
                                                [10] = 
                                                {
                                                    CLSID = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}",
                                                }, -- end of [10]
                                                [11] = 
                                                {
                                                    CLSID = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [11]
                                                [12] = 
                                                {
                                                    CLSID = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}",
                                                }, -- end of [12]
                                            }, -- end of pylons
                                            fuel = "9400",
                                            flare = 48,
                                            chaff = 48,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 461156.01557107,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 3,
                                            name = 103,
                                        }, -- end of callsign
                                        onboard_num = 21,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [3]
                            [4] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #009",
                                groupId = 49,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 10000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77136631533395,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.71083768916005,
                                            x = -75169.404377241,
                                            speed = 250,
                                            y = 517848.79056548,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 10000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76414568656,
                                            targets = 
                                            {
                                                [1] = 
                                                {
                                                    long = 0.71576946954077,
                                                    radius = 10000,
                                                    y = 554956.26602768,
                                                    x = -222754.55398574,
                                                    lat = 0.74785174467614,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    long = 0.71578643862507,
                                                    radius = 10000,
                                                    y = 555084.7592996,
                                                    x = -223260.5026891,
                                                    lat = 0.74777109886813,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    long = 0.71579860197328,
                                                    radius = 10000,
                                                    y = 555208.372582,
                                                    x = -223939.99210088,
                                                    lat = 0.74766355341096,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [3]
                                            }, -- end of targets
                                            long = 0.71270608988152,
                                            x = -120332.48916458,
                                            speed = 250,
                                            y = 530798.37079643,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 10000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76206334070823,
                                            targets = 
                                            {
                                                [1] = 
                                                {
                                                    long = 0.71581927448273,
                                                    radius = 10000,
                                                    y = 555186.04004741,
                                                    x = -222699.77576735,
                                                    lat = 0.74785678523944,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    long = 0.7158316046481,
                                                    radius = 10000,
                                                    y = 555301.07184139,
                                                    x = -223293.79271121,
                                                    lat = 0.74776264441502,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    long = 0.71583166460849,
                                                    radius = 10000,
                                                    y = 555363.0144561,
                                                    x = -223921.32250182,
                                                    lat = 0.74766412240632,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [3]
                                            }, -- end of targets
                                            long = 0.70494608847405,
                                            x = -136904.0831106,
                                            speed = 250,
                                            y = 496188.76167742,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 10000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77482474927414,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.67556568404673,
                                            x = -66415.654053777,
                                            speed = 138.88888888889,
                                            y = 354719.96883859,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 34,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.786052,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.683393,
                                            x = 7674.038444859,
                                            speed = 138.88888888889,
                                            airdromeId = 19,
                                            y = 385029.5736699,
                                        }, -- end of [5]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Antiship Strike",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Tu-22M3",
                                        CLSID = "{C17483D6-2911-408C-B57B-1839E4CD0528}",
                                        unitId = 99,
                                        lat = 0.77136631533395,
                                        skill = "Excellent",
                                        long = 0.71083768916005,
                                        x = -75169.404377241,
                                        name = "Пилот #2",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{12429ECF-03F0-4DF6-BCBD-5D38B6343DE1}",
                                                }, -- end of [1]
                                                [4] = 
                                                {
                                                    CLSID = "{12429ECF-03F0-4DF6-BCBD-5D38B6343DE1}",
                                                }, -- end of [4]
                                                [7] = 
                                                {
                                                    CLSID = "{12429ECF-03F0-4DF6-BCBD-5D38B6343DE1}",
                                                }, -- end of [7]
                                            }, -- end of pylons
                                            fuel = "50000",
                                            flare = 48,
                                            chaff = 48,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 517848.79056548,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 1,
                                            name = 101,
                                        }, -- end of callsign
                                        onboard_num = 48,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [4]
                            [5] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #010",
                                groupId = 50,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 10000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77142235010429,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.7114253570003,
                                            x = -74558.406012219,
                                            speed = 250,
                                            y = 520505.94873182,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 10000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76423402726626,
                                            targets = 
                                            {
                                                [1] = 
                                                {
                                                    long = 0.71572235672015,
                                                    radius = 10000,
                                                    y = 554583.84422841,
                                                    x = -221186.06231973,
                                                    lat = 0.74810136217683,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    long = 0.71574063379194,
                                                    radius = 10000,
                                                    y = 554718.41438539,
                                                    x = -221691.01664762,
                                                    lat = 0.74802077900318,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    long = 0.71575279415913,
                                                    radius = 10000,
                                                    y = 554818.98191851,
                                                    x = -222142.26815011,
                                                    lat = 0.74794906423298,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [3]
                                            }, -- end of targets
                                            long = 0.7130872192698,
                                            x = -119601.57658333,
                                            speed = 250,
                                            y = 532502.4468073,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 10000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76215488406498,
                                            targets = 
                                            {
                                                [1] = 
                                                {
                                                    long = 0.71578577719954,
                                                    radius = 10000,
                                                    y = 554894.42347166,
                                                    x = -221304.2895781,
                                                    lat = 0.74807826809833,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    long = 0.71581018646075,
                                                    radius = 10000,
                                                    y = 555054.93553626,
                                                    x = -221777.95653554,
                                                    lat = 0.74800215872324,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    long = 0.71581017858485,
                                                    radius = 10000,
                                                    y = 555093.16187061,
                                                    x = -222177.77313069,
                                                    lat = 0.74793938879598,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [3]
                                            }, -- end of targets
                                            long = 0.7053168546038,
                                            x = -136167.92044705,
                                            speed = 250,
                                            y = 497851.05517104,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 10000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.7749613110186,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.67562680364223,
                                            x = -65526.875296317,
                                            speed = 138.88888888889,
                                            y = 354938.01903057,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 34,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.786052,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.683393,
                                            x = 7674.038444859,
                                            speed = 138.88888888889,
                                            airdromeId = 19,
                                            y = 385029.5736699,
                                        }, -- end of [5]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Antiship Strike",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Tu-22M3",
                                        CLSID = "{C17483D6-2911-408C-B57B-1839E4CD0528}",
                                        unitId = 100,
                                        lat = 0.77142235010429,
                                        skill = "Excellent",
                                        long = 0.7114253570003,
                                        x = -74558.406012219,
                                        name = "Пилот #14",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{12429ECF-03F0-4DF6-BCBD-5D38B6343DE1}",
                                                }, -- end of [1]
                                                [4] = 
                                                {
                                                    CLSID = "{12429ECF-03F0-4DF6-BCBD-5D38B6343DE1}",
                                                }, -- end of [4]
                                                [7] = 
                                                {
                                                    CLSID = "{12429ECF-03F0-4DF6-BCBD-5D38B6343DE1}",
                                                }, -- end of [7]
                                            }, -- end of pylons
                                            fuel = "50000",
                                            flare = 48,
                                            chaff = 48,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 520505.94873182,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 4,
                                            name = 104,
                                        }, -- end of callsign
                                        onboard_num = 49,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [5]
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                heading = 2.2165681500328,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "",
                                            action = "",
                                            lat = 0.77955206895448,
                                            long = 0.65932233117873,
                                            x = -41076.471580877,
                                            name = "",
                                            speed = 0,
                                            y = 278802.44244753,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 2,
                                lat = 0.77955206895448,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "Su-24MR",
                                        CLSID = "{0282A9C1-0B38-11d6-9193-00A0249B6F00}",
                                        unitId = 2,
                                        lat = 0.77955206895448,
                                        long = 0.65932233117873,
                                        x = -41076.471580877,
                                        name = "Стат. объект",
                                        category = "Planes",
                                        heliport_frequency = 127.5,
                                        heliport_callsign_id = 0,
                                        y = 278802.44244753,
                                        heading = 2.2165681500328,
                                    }, -- end of [1]
                                }, -- end of units
                                long = 0.65932233117873,
                                name = "Стат. объект",
                                dead = false,
                            }, -- end of [1]
                        }, -- end of group
                    }, -- end of static
                }, -- end of [1]
                [2] = 
                {
                    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 [2]
            }, -- end of country
        }, -- end of red
    }, -- end of coalition
    sortie = "Последние воздушные бои",
    version = 2,
    trigfuncStartup = 
    {
    }, -- end of trigfuncStartup
    currentKey = 8798,
    start_time = 31980,
    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
        helmet = 
        {
            hh = 0,
            prob = 100,
            label = "ШЛЕМ",
            enable = false,
            mmint = 1,
            id = "helmet",
            mm = 0,
        }, -- end of helmet
        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
        radar = 
        {
            hh = 0,
            prob = 100,
            label = "РЛС",
            enable = false,
            mmint = 1,
            id = "radar",
            mm = 0,
        }, -- end of radar
    }, -- end of failures
} -- end of mission
