mission = 
{
    trig = 
    {
        actions = 
        {
            [1] = "a_set_flag(\"1\"); mission.trig.func[1]='';",
            [2] = "a_set_flag(\"2\"); mission.trig.func[2]='';",
            [3] = "if not mission.trig.flag[3] then a_out_text_delay(\"Успех миссии!\", \"20\"); mission.trig.flag[3]=true; end; else mission.trig.flag[3]=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",
            [3] = "if mission.trig.conditions[3]() then mission.trig.actions[3]() end",
        }, -- end of func
        flag = 
        {
            [1] = true,
            [2] = true,
            [3] = true,
        }, -- end of flag
        conditions = 
        {
            [1] = "return(c_time_after(\"2\") )",
            [2] = "return(c_group_dead(\"Самолетная группа #002\") and c_group_dead(\"Самолетная группа #003\") )",
            [3] = "return(c_mission_score_higher(\"\", \"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
            side = "OFFLINE",
            score = 50,
            predicate = "score",
            comment = "",
        }, -- end of [1]
        [2] = 
        {
            rules = 
            {
                [1] = 
                {
                    flag = 2,
                    predicate = "c_flag_is_true",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            side = "OFFLINE",
            score = 50,
            predicate = "score",
            comment = "",
        }, -- end of [2]
        [3] = 
        {
            rules = 
            {
                [1] = 
                {
                    group = 2,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            score = -50,
            side = "OFFLINE",
            predicate = "score",
            comment = "",
        }, -- end of [3]
    }, -- end of goals
    trigfunc = 
    {
        [1] = "if c_time_after(\"2\") then a_set_flag(\"1\"); mission.trigfunc[1]='';end;",
        [2] = "if c_group_dead(\"Самолетная группа #002\") and c_group_dead(\"Самолетная группа #003\") then a_set_flag(\"2\"); mission.trigfunc[2]='';end;",
        [3] = "if c_mission_score_higher(\"\", \"99\") then if not mission.trigflag[3] then a_out_text_delay(\"Успех миссии!\", \"20\"); mission.trigflag[3]=true; end; else mission.trigflag[3]=false;end;",
    }, -- end of trigfunc
    weather = 
    {
        qnh = 760,
        wind = 
        {
            at8000 = 
            {
                speed = 0,
                dir = 0,
            }, -- end of at8000
            at2000 = 
            {
                speed = 0,
                dir = 0,
            }, -- end of at2000
            atGround = 
            {
                speed = 0,
                dir = 0,
            }, -- end of atGround
        }, -- end of wind
        name = "Winter, clean sky",
        fog = 
        {
            density = 3,
            visibility = 300,
            thickness = 180,
        }, -- end of fog
        turbulence = 
        {
            at8000 = 0,
            at2000 = 0,
            atGround = 0,
        }, -- end of turbulence
        season = 
        {
            temperature = -9,
            iseason = 2,
        }, -- end of season
        visibility = 
        {
            distance = 80000,
        }, -- end of visibility
        clouds = 
        {
            density = 6,
            thickness = 1250,
            base = 3300,
            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_flag_is_true(\"2\")  then a_set_mission_result(50) end",
        [3] = "if c_group_dead(\"Кораб. группа\")  then a_set_mission_result(-50) end",
        offline = 
        {
            conditions = 
            {
                [1] = "return(c_flag_is_true(\"1\") )",
                [2] = "return(c_flag_is_true(\"2\") )",
                [3] = "return(c_group_dead(\"Кораб. группа\") )",
            }, -- end of conditions
            actions = 
            {
                [1] = "a_set_mission_result(50)",
                [2] = "a_set_mission_result(50)",
                [3] = "a_set_mission_result(-50)",
            }, -- 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.65930205820303,
        zoom = 1000000,
        centerX = 0.77200044633491,
    }, -- 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,
        [3] = true,
    }, -- end of trigflag
    descriptionRedTask = "",
    pictureFileNameB = 
    {
    }, -- end of pictureFileNameB
    pictureFileNameR = 
    {
        [1] = "01{ACDFE6AC-AD70-4151-B23A-E88FB00FCC8A}.jpg",
    }, -- end of pictureFileNameR
    trigrules = 
    {
        [1] = 
        {
            predicate = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    seconds = 2,
                    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 = "triggerOnce",
            rules = 
            {
                [1] = 
                {
                    group = 4,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [1]
                [2] = 
                {
                    group = 5,
                    predicate = "c_group_dead",
                    unit = "",
                }, -- end of [2]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    flag = 2,
                    text = "",
                    predicate = "a_set_flag",
                    seconds = 10,
                }, -- end of [1]
            }, -- end of actions
            comment = "",
        }, -- end of [2]
        [3] = 
        {
            predicate = "triggerFront",
            rules = 
            {
                [1] = 
                {
                    predicate = "c_mission_score_higher",
                    coalitionlist = "",
                    score = 99,
                    unit = "",
                }, -- end of [1]
            }, -- end of rules
            actions = 
            {
                [1] = 
                {
                    text = "Успех миссии!",
                    predicate = "a_out_text_delay",
                    seconds = 20,
                }, -- end of [1]
            }, -- end of actions
            comment = "",
        }, -- end of [3]
    }, -- end of trigrules
    coalition = 
    {
        blue = 
        {
            country = 
            {
                [1] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "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 = 
                        {
                        }, -- 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 = 
                        {
                            [1] = 
                            {
                                hidden = true,
                                taskSelected = true,
                                name = "Самолетная группа #002",
                                groupId = 4,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.75682332907046,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.63112561619324,
                                            x = -192029.19611298,
                                            speed = 138.88888888889,
                                            y = 156224.21017411,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.767177411676,
                                            targets = 
                                            {
                                                [1] = 
                                                {
                                                    long = 0.65162028498268,
                                                    radius = 20000,
                                                    y = 247388.42285612,
                                                    x = -110901.01431787,
                                                    lat = 0.76889301643454,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [1]
                                            }, -- end of targets
                                            long = 0.64852049629996,
                                            x = -122558.81227603,
                                            speed = 166.66666666667,
                                            y = 233709.3389742,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 250,
                                            type = "Turning Point",
                                            action = "Fly Over Point",
                                            lat = 0.76760631570822,
                                            targets = 
                                            {
                                                [1] = 
                                                {
                                                    long = 0.65326635943441,
                                                    radius = 20000,
                                                    y = 254569.41710393,
                                                    x = -103478.29189039,
                                                    lat = 0.76999566081042,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [1]
                                            }, -- end of targets
                                            long = 0.64955041536343,
                                            x = -119590.89145982,
                                            speed = 166.66666666667,
                                            y = 238310.37190563,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 500,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76574068680301,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65284459885326,
                                            x = -130672.90809376,
                                            speed = 166.66666666667,
                                            y = 254090.6769213,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.71976970366108,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.635522000627,
                                            x = -427090.75014853,
                                            speed = 166.66666666667,
                                            y = 186106.31354827,
                                        }, -- end of [5]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Antiship Strike",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "F/A-18C",
                                        CLSID = "{C075771D-EDE1-42C7-8E81-130B60500584}",
                                        unitId = 8,
                                        lat = 0.75682332907046,
                                        skill = "High",
                                        long = 0.63112561619324,
                                        x = -192029.19611298,
                                        name = "Пилот #4",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{EFEC8201-B922-11d7-9897-000476191836}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{6C0D552F-570B-42ff-9F6D-F10D9C1D4E1C}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{EFEC8201-B922-11d7-9897-000476191836}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{EFEC8201-B922-11d7-9897-000476191836}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [9]
                                            }, -- end of pylons
                                            fuel = "6531",
                                            flare = 15,
                                            chaff = 30,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 156224.21017411,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Enfield11",
                                        }, -- end of callsign
                                        onboard_num = 14,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "F/A-18C",
                                        CLSID = "{C075771D-EDE1-42C7-8E81-130B60500584}",
                                        unitId = 13,
                                        lat = 0.75681632907046,
                                        skill = "High",
                                        long = 0.63113261619324,
                                        x = -192072.54142772,
                                        name = "Пилот #5",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [1]
                                                [2] = 
                                                {
                                                    CLSID = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
                                                }, -- end of [2]
                                                [3] = 
                                                {
                                                    CLSID = "{EFEC8201-B922-11d7-9897-000476191836}",
                                                }, -- end of [3]
                                                [4] = 
                                                {
                                                    CLSID = "{6C0D552F-570B-42ff-9F6D-F10D9C1D4E1C}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{EFEC8201-B922-11d7-9897-000476191836}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{EFEC8201-B922-11d7-9897-000476191836}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
                                                }, -- end of [9]
                                            }, -- end of pylons
                                            fuel = "6531",
                                            flare = 15,
                                            chaff = 30,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 156258.47916221,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 2,
                                            name = "Enfield12",
                                        }, -- end of callsign
                                        onboard_num = 11,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [1]
                            [2] = 
                            {
                                hidden = true,
                                taskSelected = true,
                                name = "Самолетная группа #003",
                                groupId = 5,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 100,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.74824693131842,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6429096189903,
                                            x = -244331.81755082,
                                            speed = 166.66666666667,
                                            y = 213457.82690539,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 100,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76637366323675,
                                            targets = 
                                            {
                                                [1] = 
                                                {
                                                    long = 0.65160054442236,
                                                    radius = 15000,
                                                    y = 247275.59405981,
                                                    x = -110489.18384983,
                                                    lat = 0.76895845515359,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [1]
                                            }, -- end of targets
                                            long = 0.65078491110148,
                                            x = -127145.80137301,
                                            speed = 166.66666666667,
                                            y = 244395.21061829,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 100,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76731470128474,
                                            targets = 
                                            {
                                                [1] = 
                                                {
                                                    long = 0.65249784834886,
                                                    radius = 15000,
                                                    y = 251193.18994166,
                                                    x = -106502.01438229,
                                                    lat = 0.7695502458749,
                                                    categories = 
                                                    {
                                                        [1] = "Ships",
                                                    }, -- end of categories
                                                }, -- end of [1]
                                            }, -- end of targets
                                            long = 0.65121911105362,
                                            x = -121048.20066127,
                                            speed = 166.66666666667,
                                            y = 246081.97235601,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76595610199894,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65255870699806,
                                            x = -129371.17200932,
                                            speed = 166.66666666667,
                                            y = 252698.14380928,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.72020741506936,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.63402791691487,
                                            x = -424583.90451467,
                                            speed = 166.66666666667,
                                            y = 178822.97128237,
                                        }, -- end of [5]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "Antiship Strike",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "S-3B",
                                        CLSID = "{C4D0D89A-F111-4610-ADB5-84CD0F29E703}",
                                        unitId = 14,
                                        lat = 0.74824693131842,
                                        skill = "High",
                                        long = 0.6429096189903,
                                        x = -244331.81755082,
                                        name = "Пилот #6",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                                [1] = 
                                                {
                                                    CLSID = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
                                                }, -- end of [1]
                                                [6] = 
                                                {
                                                    CLSID = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
                                                }, -- end of [6]
                                            }, -- end of pylons
                                            fuel = "5500",
                                            flare = 30,
                                            chaff = 30,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 213457.82690539,
                                        callsign = 
                                        {
                                            [1] = 2,
                                            [2] = 1,
                                            [3] = 1,
                                            name = "Springfield11",
                                        }, -- end of callsign
                                        onboard_num = 11,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [2]
                        }, -- 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 = 
                        {
                        }, -- end of group
                    }, -- end of ship
                    id = 3,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [13]
                [14] = 
                {
                    helicopter = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of helicopter
                    name = "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 = 30,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76792237230545,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65011048981788,
                                            x = -117449.63997565,
                                            speed = 8.3333333333333,
                                            y = 240786.97644236,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77513018231586,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66074162607226,
                                            x = -68845.400783816,
                                            speed = 8.3333333333333,
                                            y = 286916.86554478,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77871369377791,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6609058117939,
                                            x = -45983.274213746,
                                            speed = 8.3333333333333,
                                            y = 286309.10345859,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.78021510157137,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66005811039197,
                                            x = -36654.204685415,
                                            speed = 8.3333333333333,
                                            y = 281886.3546431,
                                        }, -- end of [4]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 2,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "ELNYA",
                                        CLSID = "{63CAFD18-C960-476B-BE9D-865C53A88146}",
                                        unitId = 2,
                                        lat = 0.76792237230545,
                                        skill = "Average",
                                        long = 0.65011048981788,
                                        x = -117449.63997565,
                                        name = "Юнит #1",
                                        heading = 0.80954808609653,
                                        y = 240786.97644236,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "ELNYA",
                                        CLSID = "{63CAFD18-C960-476B-BE9D-865C53A88146}",
                                        unitId = 3,
                                        lat = 0.76778237230545,
                                        skill = "Average",
                                        long = 0.65025048981788,
                                        x = -118307.16252963,
                                        name = "Юнит #2",
                                        heading = 0.80954808609649,
                                        y = 241476.68281457,
                                    }, -- end of [2]
                                    [3] = 
                                    {
                                        type = "Dry-cargo ship-2",
                                        CLSID = "{21B074E6-780D-4ba5-963E-94D5C8436A4E}",
                                        unitId = 4,
                                        lat = 0.76764237230545,
                                        skill = "Average",
                                        long = 0.65039048981788,
                                        x = -119164.33841316,
                                        name = "Юнит #3",
                                        heading = 0.80954808609649,
                                        y = 242166.07197466,
                                    }, -- end of [3]
                                    [4] = 
                                    {
                                        type = "ELNYA",
                                        CLSID = "{63CAFD18-C960-476B-BE9D-865C53A88146}",
                                        unitId = 5,
                                        lat = 0.76750237230545,
                                        skill = "Average",
                                        long = 0.65053048981788,
                                        x = -120021.51429669,
                                        name = "Юнит #4",
                                        heading = 0.80954808609649,
                                        y = 242855.46113474,
                                    }, -- end of [4]
                                }, -- end of units
                                name = "Кораб. группа",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [1]
                            [2] = 
                            {
                                visible = false,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 14,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77854966853572,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65761007070341,
                                            x = -47908.011950622,
                                            speed = 22.222222222222,
                                            y = 271377.89941193,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77815005705596,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65908926032795,
                                            x = -50067.06265723,
                                            speed = 22.222222222222,
                                            y = 278264.07301859,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77824504887156,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66088179767615,
                                            x = -48973.839798814,
                                            speed = 22.222222222222,
                                            y = 286374.03568892,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77938732134603,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66131610359178,
                                            x = -41582.272205541,
                                            speed = 9.7222222222222,
                                            y = 287923.27747245,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77992037604296,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66074920437152,
                                            x = -38342.55650541,
                                            speed = 8.3333333333333,
                                            y = 285142.25727723,
                                        }, -- end of [5]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 6,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "MOLNIYA",
                                        CLSID = "{C8459CF8-BD2E-4595-9C92-6625C0B8794E}",
                                        unitId = 16,
                                        lat = 0.77854966853572,
                                        skill = "Excellent",
                                        long = 0.65761007070341,
                                        x = -47908.011950622,
                                        name = "Юнит #5",
                                        heading = 2.0581956450692,
                                        y = 271377.89941193,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "ALBATROS",
                                        CLSID = "{5CB43DA6-B4C1-498F-BB60-0EF0BA6D6BE7}",
                                        unitId = 17,
                                        lat = 0.77840966853572,
                                        skill = "Average",
                                        long = 0.65775007070341,
                                        x = -48763.264648753,
                                        name = "Юнит #6",
                                        heading = 1.9328936561421,
                                        y = 272067.88083698,
                                    }, -- end of [2]
                                }, -- end of units
                                name = "Кораб. группа #001",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [2]
                            [3] = 
                            {
                                visible = false,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77971525083666,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66002871751217,
                                            x = -39844.971283693,
                                            speed = 5.5555555555556,
                                            y = 281948.8333009,
                                        }, -- end of [1]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 7,
                                hidden = true,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "NEUSTRASH",
                                        CLSID = "{06B97F7F-8CBA-429C-9CCF-376B80A8DD31}",
                                        unitId = 18,
                                        lat = 0.77971525083666,
                                        skill = "Excellent",
                                        long = 0.66002871751217,
                                        x = -39844.971283693,
                                        name = "Юнит #7",
                                        heading = 4.2312880788639,
                                        y = 281948.8333009,
                                    }, -- end of [1]
                                }, -- end of units
                                name = "Кораб. группа #002",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [3]
                            [4] = 
                            {
                                visible = false,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77934659946906,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65107777828786,
                                            x = -44473.753775692,
                                            speed = 13.888888888889,
                                            y = 241406.72794161,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77820813910073,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65576830967097,
                                            x = -50558.569565576,
                                            speed = 13.888888888889,
                                            y = 263125.30043825,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 0,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77902825442371,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66096245395743,
                                            x = -43964.926467071,
                                            speed = 13.888888888889,
                                            y = 286449.65811637,
                                        }, -- end of [3]
                                    }, -- end of points
                                }, -- end of route
                                groupId = 8,
                                hidden = false,
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "REZKY",
                                        CLSID = "{7705E299-53DF-405F-95E5-C39B33DA5AAE}",
                                        unitId = 19,
                                        lat = 0.77934659946906,
                                        skill = "Average",
                                        long = 0.65107777828786,
                                        x = -44473.753775692,
                                        name = "Юнит #8",
                                        heading = 1.8977830715881,
                                        y = 241406.72794161,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "KUZNECOW",
                                        CLSID = "{25554ABC-3877-46D5-A1D2-E82878FBBBFB}",
                                        unitId = 20,
                                        lat = 0.77920659946906,
                                        skill = "Average",
                                        long = 0.65121777828786,
                                        x = -45330.959280914,
                                        name = "Юнит #9",
                                        heading = 4.1647184647166,
                                        y = 242089.37980502,
                                    }, -- end of [2]
                                    [3] = 
                                    {
                                        type = "ALBATROS",
                                        CLSID = "{5CB43DA6-B4C1-498F-BB60-0EF0BA6D6BE7}",
                                        unitId = 21,
                                        lat = 0.77906659946906,
                                        skill = "Average",
                                        long = 0.65135777828786,
                                        x = -46188.164786135,
                                        name = "Юнит #10",
                                        heading = 4.1647184647166,
                                        y = 242772.03166843,
                                    }, -- end of [3]
                                }, -- end of units
                                name = "Кораб. группа #003",
                                start_time = 0,
                                task = "Nothing",
                            }, -- end of [4]
                        }, -- end of group
                    }, -- end of ship
                    id = 0,
                    vehicle = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of vehicle
                    plane = 
                    {
                        group = 
                        {
                            [1] = 
                            {
                                hidden = true,
                                taskSelected = true,
                                name = "Самолетная группа",
                                groupId = 1,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.78693980253228,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.67537615313596,
                                            x = 10666.839830218,
                                            speed = 138.88888888889,
                                            y = 348435.25019755,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.7861983293924,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.6510216613547,
                                            x = -859.60290753376,
                                            speed = 138.88888888889,
                                            y = 238830.06498033,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.79093346705334,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.64923358905614,
                                            x = 28867.432655614,
                                            speed = 138.88888888889,
                                            y = 229192.81200573,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.79210730030645,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.67147467260826,
                                            x = 42350.066011014,
                                            speed = 138.88888888889,
                                            y = 328603.4848655,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.78614847315203,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.67175425948561,
                                            x = 4491.3049013009,
                                            speed = 138.88888888889,
                                            y = 332447.00419184,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.78548851320805,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65204555535986,
                                            x = -5129.1383466832,
                                            speed = 138.88888888889,
                                            y = 243703.43590426,
                                        }, -- end of [6]
                                        [7] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.79049296088908,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65019603926155,
                                            x = 26285.032364837,
                                            speed = 138.88888888889,
                                            y = 233669.06689227,
                                        }, -- end of [7]
                                        [8] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.79165736392578,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.67210931545411,
                                            x = 39678.034678648,
                                            speed = 138.88888888889,
                                            y = 331648.14303685,
                                        }, -- end of [8]
                                        [9] = 
                                        {
                                            alt = 6000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.7863253011132,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.67245293400836,
                                            x = 5834.2949958639,
                                            speed = 138.88888888889,
                                            y = 335519.96020385,
                                        }, -- end of [9]
                                        [10] = 
                                        {
                                            alt = 30,
                                            type = "Land",
                                            action = "Landing",
                                            lat = 0.78688,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.679696,
                                            x = 11692.789495652,
                                            speed = 138.88888888889,
                                            airdromeId = 13,
                                            y = 367948.47230953,
                                        }, -- end of [10]
                                    }, -- end of points
                                }, -- end of route
                                start_time = 0,
                                task = "AWACS",
                                units = 
                                {
                                    [1] = 
                                    {
                                        type = "A-50",
                                        CLSID = "{CA17F0F8-6AEB-43FA-BC90-76732137F61D}",
                                        unitId = 1,
                                        lat = 0.78693980253228,
                                        skill = "High",
                                        long = 0.67537615313596,
                                        x = 10666.839830218,
                                        name = "Пилот #1",
                                        payload = 
                                        {
                                            pylons = 
                                            {
                                            }, -- end of pylons
                                            fuel = "70000",
                                            flare = 192,
                                            chaff = 192,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        y = 348435.25019755,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 0,
                                            [3] = 0,
                                            name = 100,
                                        }, -- end of callsign
                                        onboard_num = 11,
                                    }, -- end of [1]
                                }, -- end of units
                            }, -- end of [1]
                            [2] = 
                            {
                                hidden = false,
                                taskSelected = true,
                                name = "Самолетная группа #001",
                                groupId = 3,
                                route = 
                                {
                                    points = 
                                    {
                                        [1] = 
                                        {
                                            alt = 45,
                                            type = "TakeOff",
                                            action = "From Runway",
                                            lat = 0.78545,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.651915,
                                            x = -5406.2803440839,
                                            speed = 138.88888888889,
                                            airdromeId = 12,
                                            y = 243127.2973737,
                                        }, -- end of [1]
                                        [2] = 
                                        {
                                            alt = 2000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77523365481794,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.64622087446327,
                                            x = -71793.911364474,
                                            speed = 138.88888888889,
                                            y = 220622.70713614,
                                        }, -- end of [2]
                                        [3] = 
                                        {
                                            alt = 3000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76806382126657,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.64200519344847,
                                            x = -118362.57583858,
                                            speed = 138.88888888889,
                                            y = 203491.50751218,
                                        }, -- end of [3]
                                        [4] = 
                                        {
                                            alt = 3000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.76212777453255,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65888079685853,
                                            x = -152140.67508338,
                                            speed = 138.88888888889,
                                            y = 283220.64265984,
                                        }, -- end of [4]
                                        [5] = 
                                        {
                                            alt = 3000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.7691966074516,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.66437135357915,
                                            x = -105621.33934034,
                                            speed = 138.88888888889,
                                            y = 305824.08996385,
                                        }, -- end of [5]
                                        [6] = 
                                        {
                                            alt = 3000,
                                            type = "Turning Point",
                                            action = "Turning Point",
                                            lat = 0.77473449673803,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.64810546975521,
                                            x = -74538.028783724,
                                            speed = 138.88888888889,
                                            y = 229377.75631256,
                                        }, -- end of [6]
                                        [7] = 
                                        {
                                            alt = 0,
                                            type = "Land",
                                            action = "Landing",
                                            linkUnit = 20,
                                            lat = 0.77920659946906,
                                            targets = 
                                            {
                                            }, -- end of targets
                                            long = 0.65121777828786,
                                            x = -45330.959280914,
                                            speed = 138.88888888889,
                                            helipadId = 20,
                                            y = 242089.37980502,
                                        }, -- 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 = 6,
                                        lat = 0.78545,
                                        skill = "Player",
                                        y = 243127.2973737,
                                        long = 0.651915,
                                        x = -5406.2803440839,
                                        name = "Александр",
                                        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 = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- 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 = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [12]
                                            }, -- end of pylons
                                            fuel = "9400",
                                            flare = 48,
                                            chaff = 48,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 3,
                                            name = "113",
                                        }, -- end of callsign
                                        onboard_num = 13,
                                    }, -- end of [1]
                                    [2] = 
                                    {
                                        type = "Su-33",
                                        CLSID = "{35ED40B9-C66A-4A80-AC29-04B041552520}",
                                        unitId = 7,
                                        lat = 0.785443,
                                        skill = "Excellent",
                                        y = 243161.40518038,
                                        long = 0.651922,
                                        x = -5449.1422353042,
                                        name = "Пилот #2",
                                        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 = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [4]
                                                [5] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [5]
                                                [6] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [6]
                                                [7] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [7]
                                                [8] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- end of [8]
                                                [9] = 
                                                {
                                                    CLSID = "{D841D0F9-5ED1-4E27-AA4B-020A492E7454}",
                                                }, -- 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 = "{FBC29BFE-3D24-4C64-B81D-941239D12249}",
                                                }, -- end of [12]
                                            }, -- end of pylons
                                            fuel = "9400",
                                            flare = 48,
                                            chaff = 48,
                                            gun = 100,
                                        }, -- end of payload
                                        livery_id = 0,
                                        start_type = 2,
                                        callsign = 
                                        {
                                            [1] = 1,
                                            [2] = 1,
                                            [3] = 4,
                                            name = "114",
                                        }, -- end of callsign
                                        onboard_num = 14,
                                    }, -- end of [2]
                                }, -- end of units
                            }, -- end of [2]
                        }, -- end of group
                    }, -- end of plane
                    static = 
                    {
                        group = 
                        {
                        }, -- end of group
                    }, -- end of static
                }, -- end of [1]
                [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 = 3013,
    start_time = 16526700,
    forcedOptions = 
    {
    }, -- end of forcedOptions
    failures = 
    {
    }, -- end of failures
} -- end of mission
