local locations = {
"Phoenix", "Tucson", "Scottdale", "Chandler", "Brainburg", "Saintrose", "Mesa",
"Red-Rock", "Yuma", "Surprise", "Prescott", "Glendale", "Kingman", "Winslow",
"Payson", "Show%20Low", "Casa-Grande", "Page", "Sun-City", "Queen-Creek", "Gilbert",
"Sedona", "Holiday", "Wednesday", "Yava", "Bumble%20Bee", "Mobile%201", "Mobile%202", "Mobile%203"
}
local result = {}
for i, location in ipairs(locations) do
local url = "https://raw.githubusercontent.com/Egolarik/Egolarik/main/" .. location .. ".txt"
result[i] = request.get(url).text
end