Global("TracksInfoZ", {
    -- Load Settings from client if false or from this file if true
    --    ,   
    AlwaysUseTextConfig = false,
    -- Settings
    -- 
    Settings = {
        -- Show list of trackable objects if true, no list if false
        --      
        ShowList = false,
        -- Don't show trackable objects titles in the list if true, show titles if false
        --       
        NoTrackName = true,
        -- Show spawn time of known trackable objects on minimap if true
        --        
        ShowMiniMap = true,
        -- Gather information on other trackable objects, display it and output to the log file if true
        --            
        CollectTracks = false,
    },
    -- Table of respawn time of known trackable objects by name on locations
    -- TrackTime[Localization string or Track Name][Localization string or Location Name or !All] = Respawn time
    -- !All - any location
    --         
    -- TrackTime[    ][ ,   ,  !All] =  
    -- !All -  
    TrackTime = {
        ["TRACKS_SUMMONING_OPPORTUNITIES"] = { --   ,        .
            ["!All"] = 120, -- 
        },
        ["TRACKS_WILD_RAGE"] = { --        ,    .
            ["LOCATION_TRAINING_CAMP"] = 120,
            ["LOCATION_BATTLE_FOR_CARGALLAS"] = 120,
            ["LOCATION_WITCHES_HOLLOW"] = 60,
        },
        ["TRACKS_ACCELERATION"] = { --   ,     .
            ["LOCATION_TRAINING_CAMP"] = 120,
        },
        ["TRACKS_LEADER_BANNER"] = {
            ["LOCATION_DESERTED_FARM"] = 180,
        },
        ["TRACKS_REGENERATION"] = { --    10%     2 .
            ["LOCATION_BATTLE_FOR_CARGALLAS"] = 120,
        },
        ["TRACKS_OPTIMIZATION_PROTOCOL"] = { --   +30%     20 .
            ["LOCATION_TOWER_OF_ORDER"] = 30,
        },
        ["TRACKS_EFFICIENCY_PROTOCOL"] = { --   +25%        40 .
            ["LOCATION_TOWER_OF_ORDER"] = 45,
        },
        ["TRACKS_DECAY_PROTOCOL"] = { --   +400     40 .
            ["LOCATION_TOWER_OF_ORDER"] = 45,
        },
        ["TRACKS_SPHERE_OF_POWER"] = { --    .
            ["LOCATION_TOWER_OF_ORDER"] = 90,
        },
    },
    -- Set localization from Locales table or autodetect if false
    --          false
    -- "rus", "eng_eu", "ger", "fra", "tr" etc.
    OverrideLocalization = false,
    -- Locales table
    --   
    Locales = {}
})