mirror of
https://github.com/ComfyFactory/ComfyFactorio.git
synced 2025-01-16 02:47:48 +02:00
playtimes update
This commit is contained in:
parent
3751c127e9
commit
80d72b4ac9
@ -28,7 +28,7 @@ require "score"
|
||||
--require "maps.biter_battles"
|
||||
--require "maps.cave_miner"
|
||||
--require "maps.labyrinth"
|
||||
require "maps.spooky_forest"
|
||||
--require "maps.spooky_forest"
|
||||
--require "maps.nightfall"
|
||||
--require "maps.atoll"
|
||||
--require "maps.tank_battles"
|
||||
@ -39,7 +39,7 @@ require "maps.spooky_forest"
|
||||
--require "maps.deep_jungle"
|
||||
--require "maps.lost_desert"
|
||||
--require "maps.empty_map"
|
||||
--require "maps.custom_start"
|
||||
require "maps.custom_start"
|
||||
-----------------------------
|
||||
|
||||
local Event = require 'utils.event'
|
||||
|
@ -17,6 +17,9 @@ local function on_player_joined_game(event)
|
||||
player.insert({name = "shotgun-shell", count = 32})
|
||||
player.insert({name = "light-armor", count = 1})
|
||||
global.new_player_equipped[player.name] = true
|
||||
|
||||
local radius = 320
|
||||
game.forces.player.chart(game.surfaces[1], {{x = -1 * radius, y = -1 * radius}, {x = radius, y = radius}})
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -2,9 +2,9 @@
|
||||
-- cpu heavy -- fixed processing rate is 1 chunk per tick
|
||||
|
||||
|
||||
local respawn_interval = 25200 --interval in ticks
|
||||
local respawn_interval = 7200 --interval in ticks
|
||||
global.fish_respawner_water_tiles_per_fish = 32 --amount of water tiles required per fish >> high values = less fish density, low values = high fish density
|
||||
global.fish_respawner_max_respawnrate_per_chunk = 2 --maximum amount of fish that will spawn each interval in one chunk
|
||||
global.fish_respawner_max_respawnrate_per_chunk = 1 --maximum amount of fish that will spawn each interval in one chunk
|
||||
|
||||
local valid_water_tiles = {
|
||||
"water",
|
||||
|
@ -55,7 +55,8 @@ local function create_hunger_gui(player)
|
||||
caption_hunger.style.top_padding = 2
|
||||
end
|
||||
|
||||
local function hunger_update(player, food_value)
|
||||
local function hunger_update(player, food_value)
|
||||
if not player.character then return end
|
||||
if food_value == -1 and player.character.driving == true then return end
|
||||
|
||||
local past_hunger = global.player_hunger[player.name]
|
||||
@ -85,6 +86,7 @@ local function hunger_update(player, food_value)
|
||||
end
|
||||
if player_hunger_stages[global.player_hunger[player.name]] == "Starving" then
|
||||
print_message = "You are starving!"
|
||||
game.print(player.name .. " is starving!", player_hunger_color_list[global.player_hunger[player.name]])
|
||||
end
|
||||
player.print(print_message, player_hunger_color_list[global.player_hunger[player.name]])
|
||||
end
|
||||
|
@ -2,7 +2,8 @@
|
||||
|
||||
require "maps.modules.hunger"
|
||||
require "maps.modules.fish_respawner"
|
||||
global.fish_respawner_water_tiles_per_fish = 16
|
||||
global.fish_respawner_water_tiles_per_fish = 10
|
||||
global.fish_respawner_max_respawnrate_per_chunk = 1
|
||||
|
||||
local shapes = require "maps.tools.shapes"
|
||||
local event = require 'utils.event'
|
||||
@ -358,21 +359,6 @@ biter_building_inhabitants[8] = {{"medium-biter",2,4},{"big-biter",6,8}}
|
||||
biter_building_inhabitants[9] = {{"medium-biter",2,3},{"big-biter",7,9}}
|
||||
biter_building_inhabitants[10] = {{"big-biter",4,8},{"behemoth-biter",3,4}}
|
||||
|
||||
local entity_drop_amount = {
|
||||
['small-biter'] = {low = 16, high = 24},
|
||||
['small-spitter'] = {low = 16, high = 24},
|
||||
['medium-biter'] = {low = 24, high = 32},
|
||||
['medium-spitter'] = {low = 24, high = 32},
|
||||
['big-biter'] = {low = 32, high = 40},
|
||||
['big-spitter'] = {low = 32, high = 40},
|
||||
['behemoth-biter'] = {low = 40, high = 48},
|
||||
['behemoth-spitter'] = {low = 40, high = 48},
|
||||
['biter-spawner'] = {low = 64, high = 128},
|
||||
['spitter-spawner'] = {low = 64, high = 128},
|
||||
['small-worm-turret'] = {low = 64, high = 128},
|
||||
['medium-worm-turret'] = {low = 128, high = 196},
|
||||
['big-worm-turret'] = {low = 196, high = 254}
|
||||
}
|
||||
local ore_spill_raffle = {"iron-ore","iron-ore","iron-ore","iron-ore","copper-ore","copper-ore","copper-ore","coal","coal"}
|
||||
local ore_spawn_raffle = {
|
||||
"iron-ore","iron-ore","iron-ore","iron-ore", "iron-ore","iron-ore","iron-ore","iron-ore", "iron-ore","iron-ore",
|
||||
@ -411,18 +397,8 @@ local function on_entity_died(event)
|
||||
if event.entity.type == "unit" and math_random(1, 256) == 1 then
|
||||
surface.spill_item_stack(event.entity.position,{name = "raw-fish", count = 1}, true)
|
||||
end
|
||||
--[[
|
||||
if entity_drop_amount[event.entity.name] then
|
||||
if game.forces.enemy.evolution_factor < 0.5 then
|
||||
local amount = math.ceil(math.random(entity_drop_amount[event.entity.name].low, entity_drop_amount[event.entity.name].high))
|
||||
surface.spill_item_stack(event.entity.position,{name = ore_spill_raffle[math.random(1,#ore_spill_raffle)], count = amount},true)
|
||||
end
|
||||
return
|
||||
end
|
||||
]]
|
||||
|
||||
if event.entity.type == "tree" then
|
||||
--if math_random(1, 2) == 1 then return end
|
||||
|
||||
if event.entity.type == "tree" then
|
||||
spawn_biter(event.entity.surface, event.entity.position)
|
||||
end
|
||||
end
|
||||
@ -498,8 +474,8 @@ local function on_chunk_generated(event)
|
||||
local entities = {}
|
||||
local tiles = {}
|
||||
|
||||
if position_left_top.x > 128 then return end
|
||||
if position_left_top.y > 128 then return end
|
||||
--if position_left_top.x > 128 then return end
|
||||
--if position_left_top.y > 128 then return end
|
||||
|
||||
for x = 0, 31, 1 do
|
||||
for y = 0, 31, 1 do
|
||||
@ -551,7 +527,8 @@ local disabled_for_deconstruction = {
|
||||
["rock-big"] = true,
|
||||
["sand-rock-big"] = true,
|
||||
["tree-02"] = true,
|
||||
["tree-04"] = true
|
||||
["tree-04"] = true,
|
||||
["dead-tree-desert"] = true
|
||||
}
|
||||
|
||||
local function on_marked_for_deconstruction(event)
|
||||
|
10
readme.md
Normal file
10
readme.md
Normal file
@ -0,0 +1,10 @@
|
||||
# ComfyFactorio
|
||||
A factorio scenario.
|
||||
|
||||
How to install and choose a map:
|
||||
1. Clone or Download the whole repository.
|
||||
2. Copy the extracted folder into your scenario folder. (../factorio/scenarios/comfyfactorio)
|
||||
3. Choose a map to play by opening control.lua with your favorite text editor.
|
||||
4. Find the line "---- enable maps here ----" and remove the "--" in front of the map that you want to activate.
|
||||
Make sure only 1 map is activated.
|
||||
5. Launch it in the game: >>Play >>Scenarios
|
File diff suppressed because one or more lines are too long
121
session_data/AqahyHWcUrfZQeWg.lua
Normal file
121
session_data/AqahyHWcUrfZQeWg.lua
Normal file
@ -0,0 +1,121 @@
|
||||
local playsession = {
|
||||
{"mewmew", {924964}},
|
||||
{"flooxy", {550136}},
|
||||
{"redlabel", {1617436}},
|
||||
{"XaLpHa1989", {313133}},
|
||||
{"shakaman", {376}},
|
||||
{"Giatros", {303032}},
|
||||
{"JoaoPinga", {21326}},
|
||||
{"Akhrem", {663017}},
|
||||
{"Podonkov", {608928}},
|
||||
{"supercuteboy123", {100412}},
|
||||
{"progman", {2784}},
|
||||
{"larshp", {392977}},
|
||||
{"WiredMesh", {8224}},
|
||||
{"kevinma", {582984}},
|
||||
{"uwkster", {1122}},
|
||||
{"shenmeshiren", {327817}},
|
||||
{"Ed9210", {658851}},
|
||||
{"rabenste", {2378}},
|
||||
{"marius86000", {278260}},
|
||||
{"thedubub", {73785}},
|
||||
{"oNcLe", {8683}},
|
||||
{"ailishi19", {118289}},
|
||||
{"Wipergone", {9478}},
|
||||
{"GnarkillX", {5492}},
|
||||
{"Nikkichu", {347827}},
|
||||
{"QuaxzRu", {400823}},
|
||||
{"Kyte", {110718}},
|
||||
{"seeyorise", {85600}},
|
||||
{"joe32", {11941}},
|
||||
{"Shinhan", {379023}},
|
||||
{"ArkenCrafts", {422620}},
|
||||
{"Catbert", {12433}},
|
||||
{"mad58max", {422706}},
|
||||
{"elielie", {7956}},
|
||||
{"die_ott", {3710}},
|
||||
{"Jaazinh", {3792}},
|
||||
{"Zapdos", {21676}},
|
||||
{"AurelienG", {4382}},
|
||||
{"Irx99", {14258}},
|
||||
{"xubos", {5912}},
|
||||
{"NekoBaron", {541060}},
|
||||
{"Loftyhouse", {88060}},
|
||||
{"bhenoa", {27452}},
|
||||
{"cpenguinred", {242150}},
|
||||
{"kubium", {17983}},
|
||||
{"dpoba", {279572}},
|
||||
{"DobryjPahom", {28373}},
|
||||
{"JinNJuice", {430583}},
|
||||
{"GarretShadow", {155128}},
|
||||
{"TXL_PLAYZ", {319292}},
|
||||
{"ksb4145", {86022}},
|
||||
{"Sjetil", {30977}},
|
||||
{"NerZurg", {9840}},
|
||||
{"Scuideie-Guy", {235012}},
|
||||
{"tykak", {52430}},
|
||||
{"SuperAides", {30517}},
|
||||
{"DaHolli", {5238}},
|
||||
{"Kakabututa", {4829}},
|
||||
{"steelhero", {16000}},
|
||||
{"Poo76765", {9163}},
|
||||
{"darkmatter2222", {258486}},
|
||||
{"Garsaf", {121413}},
|
||||
{"Domme", {57400}},
|
||||
{"KingKolla", {72013}},
|
||||
{"ThatSimon", {2370}},
|
||||
{"onyxinsanity", {37261}},
|
||||
{"Pustelnik", {94858}},
|
||||
{"mar123322", {371344}},
|
||||
{"Nivek3k", {8855}},
|
||||
{"LegionMammal978", {86732}},
|
||||
{"Factorian12321", {4500}},
|
||||
{"Whassup", {32871}},
|
||||
{"lintaba", {19803}},
|
||||
{"Moistlos", {49815}},
|
||||
{"MaxMM", {116255}},
|
||||
{"StarLite", {979267}},
|
||||
{"HomelessCaptain", {453494}},
|
||||
{"vad7ik", {12548}},
|
||||
{"ZiP84", {80641}},
|
||||
{"gespenstdermaschine", {8212}},
|
||||
{"thebettersimon", {229}},
|
||||
{"Aronak", {7494}},
|
||||
{"Meraned", {6792}},
|
||||
{"okan009", {50533}},
|
||||
{"GamerRebellion", {639}},
|
||||
{"factoder89", {1018159}},
|
||||
{"mavsmaniac041", {20482}},
|
||||
{"SpektrCZ", {4020}},
|
||||
{"tjql9856", {26636}},
|
||||
{"wilm", {91338}},
|
||||
{"Kruv", {14114}},
|
||||
{"Discuzting", {21081}},
|
||||
{"Promotype7", {11037}},
|
||||
{"Scully_Dog", {13927}},
|
||||
{"cshotton", {38920}},
|
||||
{"iceskaarj", {110902}},
|
||||
{"CrazyAmphibian", {11391}},
|
||||
{"ETK03", {14174}},
|
||||
{"Order", {15438}},
|
||||
{"ronnaldy", {314590}},
|
||||
{"IAmTog", {90265}},
|
||||
{"cogito123", {65320}},
|
||||
{"Mokomi", {136381}},
|
||||
{"ATAMAH", {33404}},
|
||||
{"zakky0919", {95705}},
|
||||
{"captcougar1969", {10011}},
|
||||
{"i-make-robots", {262459}},
|
||||
{"XephosArkeyus", {4854}},
|
||||
{"heypetray", {159402}},
|
||||
{"I_dream_of_corn", {7156}},
|
||||
{"PogomanD", {3861}},
|
||||
{"TimSekys", {76487}},
|
||||
{"niko27111__", {3473}},
|
||||
{"KiraraYen", {154607}},
|
||||
{"Fabianius", {24116}},
|
||||
{"Gerkiz", {7040}},
|
||||
{"exabyte", {16515}},
|
||||
{"Cheeseftw", {7015}}
|
||||
}
|
||||
return playsession
|
14
session_data/BnnEvkICOMAyqowA.lua
Normal file
14
session_data/BnnEvkICOMAyqowA.lua
Normal file
@ -0,0 +1,14 @@
|
||||
local playsession = {
|
||||
{"mewmew", {2614}},
|
||||
{"Ybloc", {83217}},
|
||||
{"userguide", {82431}},
|
||||
{"Dominoscraft", {66194}},
|
||||
{"Cheeseftw", {790}},
|
||||
{"Aaronsblade", {8563}},
|
||||
{"ersu", {107022}},
|
||||
{"HighInFiberOptics", {41650}},
|
||||
{"thaurond", {15715}},
|
||||
{"Factorian12321", {17938}},
|
||||
{"ETK03", {14331}}
|
||||
}
|
||||
return playsession
|
35
session_data/CGEEGZaqaInGiebI.lua
Normal file
35
session_data/CGEEGZaqaInGiebI.lua
Normal file
@ -0,0 +1,35 @@
|
||||
local playsession = {
|
||||
{"7Haydz7", {92234}},
|
||||
{"4xBen", {663045}},
|
||||
{"dog80", {892374}},
|
||||
{"Masterpascoe", {2759}},
|
||||
{"TXL_PLAYZ", {6519}},
|
||||
{"Hitman451", {248603}},
|
||||
{"ottoX4", {413785}},
|
||||
{"Basil_Biscuit", {158109}},
|
||||
{"jbox1", {649630}},
|
||||
{"Factorian12321", {715442}},
|
||||
{"Liam101", {341111}},
|
||||
{"ersu", {555783}},
|
||||
{"Allall", {558839}},
|
||||
{"CrazyCrabEater", {20841}},
|
||||
{"EigenMan", {520783}},
|
||||
{"RedstoneRampage", {169814}},
|
||||
{"Conan_Doyil", {196562}},
|
||||
{"KubskY", {323489}},
|
||||
{"Aiovas95", {431192}},
|
||||
{"Ed9210", {241442}},
|
||||
{"Daniel0712", {368685}},
|
||||
{"juanplay111", {18109}},
|
||||
{"Lil_nubbin", {1959}},
|
||||
{"svartakon", {526}},
|
||||
{"010110", {39164}},
|
||||
{"rocifier", {238931}},
|
||||
{"Velguarder", {225624}},
|
||||
{"Spocks", {168758}},
|
||||
{"SparzianII", {97647}},
|
||||
{"InphinitePhractals", {110285}},
|
||||
{"changaryyy", {2718}},
|
||||
{"BoNDoR", {22240}}
|
||||
}
|
||||
return playsession
|
56
session_data/DnDlciVJbzvGQYaj.lua
Normal file
56
session_data/DnDlciVJbzvGQYaj.lua
Normal file
@ -0,0 +1,56 @@
|
||||
local playsession = {
|
||||
{"mewmew", {353382}},
|
||||
{"trnila", {980305}},
|
||||
{"BuBBleButts", {984534}},
|
||||
{"SubSeven36", {1077499}},
|
||||
{"ToM_zZz", {1022581}},
|
||||
{"szyc", {340448}},
|
||||
{"medicdude", {460714}},
|
||||
{"Cheeseftw", {972667}},
|
||||
{"PickleJuice", {906074}},
|
||||
{"FlyingTreeKB", {910445}},
|
||||
{"JosephHartmann1989", {500}},
|
||||
{"lemarkiz", {209109}},
|
||||
{"Hamersmid", {920}},
|
||||
{"HighInFiberOptics", {51007}},
|
||||
{"silver2127", {3894}},
|
||||
{"matt01ss", {683302}},
|
||||
{"RegularLemons", {327289}},
|
||||
{"Twilightninja458", {1719}},
|
||||
{"Alexis4232", {1516}},
|
||||
{"CueKen", {868}},
|
||||
{"GrazyGamerNL", {13779}},
|
||||
{"Axel_Henir", {5149}},
|
||||
{"Gerkiz", {1433}},
|
||||
{"obisan", {127270}},
|
||||
{"IAmTog", {28523}},
|
||||
{"Lotek", {189631}},
|
||||
{"RainSolid", {230846}},
|
||||
{"therv", {4630}},
|
||||
{"Daniel0712", {198850}},
|
||||
{"DeltaNedas", {543109}},
|
||||
{"Jist", {21145}},
|
||||
{"Lithidoria", {11177}},
|
||||
{"napalm2222", {2882}},
|
||||
{"sharpshot2566", {47574}},
|
||||
{"Aiovas95", {237859}},
|
||||
{"pietoday", {3345}},
|
||||
{"tehepicdude", {2389}},
|
||||
{"Nemium", {177985}},
|
||||
{"EigenMan", {17073}},
|
||||
{"petebra11", {9940}},
|
||||
{"Spocks", {317824}},
|
||||
{"soapster", {3505}},
|
||||
{"kingpinpenguin", {141232}},
|
||||
{"pwnrzero", {153979}},
|
||||
{"swisser", {3012}},
|
||||
{"Banji", {4211}},
|
||||
{"Dominoscraft", {224363}},
|
||||
{"7Haydz7", {8980}},
|
||||
{"newove", {159582}},
|
||||
{"Tribbiani", {80749}},
|
||||
{"OmegaTitan177", {9153}},
|
||||
{"Ybloc", {114602}},
|
||||
{"Hitman451", {39620}}
|
||||
}
|
||||
return playsession
|
17
session_data/EIQBqbqHBYZGYobi.lua
Normal file
17
session_data/EIQBqbqHBYZGYobi.lua
Normal file
@ -0,0 +1,17 @@
|
||||
local playsession = {
|
||||
{"TXL_PLAYZ", {450543}},
|
||||
{"Menander", {466317}},
|
||||
{"FAChyba", {452819}},
|
||||
{"mattdawg10", {324422}},
|
||||
{"Fireflyghost", {429705}},
|
||||
{"LamaJesus", {17489}},
|
||||
{"Netmould", {1053}},
|
||||
{"squarebe", {287429}},
|
||||
{"adee", {301374}},
|
||||
{"ben_fun", {2416}},
|
||||
{"Velguarder", {181180}},
|
||||
{"poatao", {5035}},
|
||||
{"gingiz", {5845}},
|
||||
{"sbelden", {11041}}
|
||||
}
|
||||
return playsession
|
53
session_data/EMMxPJnVaDcMtDDC.lua
Normal file
53
session_data/EMMxPJnVaDcMtDDC.lua
Normal file
@ -0,0 +1,53 @@
|
||||
local playsession = {
|
||||
{"JailsonBR", {917877}},
|
||||
{"brl_chacal", {206099}},
|
||||
{"exabyte", {870900}},
|
||||
{"shenmeshiren", {139506}},
|
||||
{"Mattzoid", {899}},
|
||||
{"rykstar", {299542}},
|
||||
{"lulu85160", {179754}},
|
||||
{"ragegear", {260572}},
|
||||
{"cogito123", {787397}},
|
||||
{"glukuzzz", {90211}},
|
||||
{"agraohar", {42547}},
|
||||
{"supercuteboy123", {38356}},
|
||||
{"changaryyy", {726}},
|
||||
{"nomercyjeffc", {9706}},
|
||||
{"Kxam", {5431}},
|
||||
{"facere", {734019}},
|
||||
{"TiTaN", {705008}},
|
||||
{"Giatros", {16068}},
|
||||
{"tykak", {470951}},
|
||||
{"Avelix", {84815}},
|
||||
{"gespenstdermaschine", {659244}},
|
||||
{"morganc", {643830}},
|
||||
{"killergun1297", {8673}},
|
||||
{"IronPeak", {948}},
|
||||
{"iceskaarj", {573953}},
|
||||
{"demon_453", {17589}},
|
||||
{"Tribbiani", {33658}},
|
||||
{"UndertakerHUN", {19755}},
|
||||
{"vedolv", {401877}},
|
||||
{"Thatl1lGuy", {1170}},
|
||||
{"AurelienG", {409280}},
|
||||
{"dennisdereus", {176573}},
|
||||
{"EPO666", {465973}},
|
||||
{"amadey18", {464004}},
|
||||
{"sunseille", {292}},
|
||||
{"shepart", {3180}},
|
||||
{"Croustibax", {455624}},
|
||||
{"Friscodog", {88574}},
|
||||
{"Galgas", {450016}},
|
||||
{"cawsey21", {219994}},
|
||||
{"j0n3", {137764}},
|
||||
{"dog80", {314253}},
|
||||
{"josdebosduif", {30025}},
|
||||
{"ksb4145", {178240}},
|
||||
{"veladon", {3360}},
|
||||
{"Lagger289", {942}},
|
||||
{"XectriK", {5364}},
|
||||
{"pichutarius", {16004}},
|
||||
{"Ed9210", {9904}},
|
||||
{"Atoms", {24630}}
|
||||
}
|
||||
return playsession
|
9
session_data/ENZRuAbIpyBUYPZQ.lua
Normal file
9
session_data/ENZRuAbIpyBUYPZQ.lua
Normal file
@ -0,0 +1,9 @@
|
||||
local playsession = {
|
||||
{"kunnis", {107820}},
|
||||
{"uruburei1", {105605}},
|
||||
{"Terarink", {104578}},
|
||||
{"Artengineer", {100326}},
|
||||
{"halpenny911", {87881}},
|
||||
{"Geometrically", {1022}}
|
||||
}
|
||||
return playsession
|
20
session_data/EStdmyejPmIODFFU.lua
Normal file
20
session_data/EStdmyejPmIODFFU.lua
Normal file
@ -0,0 +1,20 @@
|
||||
local playsession = {
|
||||
{"mewmew", {198811}},
|
||||
{"I_dream_of_corn", {124763}},
|
||||
{"Mattisso", {143990}},
|
||||
{"MontrealCrook", {93186}},
|
||||
{"Menander", {17949}},
|
||||
{"zimny11", {5611}},
|
||||
{"acurazine", {1795}},
|
||||
{"rlidwka", {7558}},
|
||||
{"TimSekys", {112815}},
|
||||
{"Porg", {9773}},
|
||||
{"CommanderFrog", {7463}},
|
||||
{"Schallfalke", {82088}},
|
||||
{"lordon11", {1442}},
|
||||
{"ETK03", {65005}},
|
||||
{"Altaric", {2733}},
|
||||
{"IAmTog", {1836}},
|
||||
{"Factorian12321", {2974}}
|
||||
}
|
||||
return playsession
|
26
session_data/EsrwbUNgNSLPIoYi.lua
Normal file
26
session_data/EsrwbUNgNSLPIoYi.lua
Normal file
@ -0,0 +1,26 @@
|
||||
local playsession = {
|
||||
{"Menander", {575896}},
|
||||
{"Lotek", {568019}},
|
||||
{"MovingMike", {564473}},
|
||||
{"EPO666", {526942}},
|
||||
{"exabyte", {351261}},
|
||||
{"spacebubbler", {3340}},
|
||||
{"the_bman", {1787}},
|
||||
{"Jarxley", {3837}},
|
||||
{"cogito123", {96868}},
|
||||
{"DaenWaek", {1511}},
|
||||
{"raskl", {2340}},
|
||||
{"JailsonBR", {323576}},
|
||||
{"alexbw", {326055}},
|
||||
{"marklinCZ", {32068}},
|
||||
{"neekoneeko", {26870}},
|
||||
{"tyce1234", {228433}},
|
||||
{"dog80", {232812}},
|
||||
{"Nikkichu", {10962}},
|
||||
{"terradus", {3878}},
|
||||
{"Averest", {1398}},
|
||||
{"GoryGorge", {104996}},
|
||||
{"vedolv", {6328}},
|
||||
{"RonnDlear", {672}}
|
||||
}
|
||||
return playsession
|
17
session_data/FCAjKwEHpZfXEwBe.lua
Normal file
17
session_data/FCAjKwEHpZfXEwBe.lua
Normal file
@ -0,0 +1,17 @@
|
||||
local playsession = {
|
||||
{"dog80", {895865}},
|
||||
{"Menander", {1221617}},
|
||||
{"Fireflyghost", {612425}},
|
||||
{"MrJSelig", {169805}},
|
||||
{"mattdawg10", {24865}},
|
||||
{"ChinaNumba1", {459013}},
|
||||
{"Krono", {382835}},
|
||||
{"huashengmaodou", {17382}},
|
||||
{"ronnaldy", {759339}},
|
||||
{"Thewarlockminer", {6024}},
|
||||
{"facere", {353603}},
|
||||
{"Roufails", {231838}},
|
||||
{"longda88", {4083}},
|
||||
{"poatao", {269258}}
|
||||
}
|
||||
return playsession
|
107
session_data/GKJenTVcVBHEPDof.lua
Normal file
107
session_data/GKJenTVcVBHEPDof.lua
Normal file
@ -0,0 +1,107 @@
|
||||
local playsession = {
|
||||
{"Jhumekes", {701442}},
|
||||
{"BlueDragonner", {779169}},
|
||||
{"ZaPer_RSA", {949511}},
|
||||
{"butterflux", {775796}},
|
||||
{"kaimix", {876125}},
|
||||
{"Tereble", {550856}},
|
||||
{"Lillbirro", {104132}},
|
||||
{"Clythoris", {1005192}},
|
||||
{"Allall", {152210}},
|
||||
{"KloStein", {423975}},
|
||||
{"Immo", {904}},
|
||||
{"mahury", {117383}},
|
||||
{"huyj2k", {616638}},
|
||||
{"Velguarder", {115136}},
|
||||
{"minipini55", {427073}},
|
||||
{"patus", {315234}},
|
||||
{"15stathamt", {799987}},
|
||||
{"aidann06", {274485}},
|
||||
{"eZethNesthrown", {407}},
|
||||
{"Catbert", {146282}},
|
||||
{"SBCK", {169631}},
|
||||
{"Nate66873", {950162}},
|
||||
{"LEGALIZE", {947788}},
|
||||
{"d4vyjones", {1432}},
|
||||
{"Seanerator", {5939}},
|
||||
{"50fffff", {674147}},
|
||||
{"joe32", {882241}},
|
||||
{"psmlnikv", {12192}},
|
||||
{"adlmr", {195454}},
|
||||
{"lord_kill", {550533}},
|
||||
{"DNSGamer", {891586}},
|
||||
{"MeggalBozale", {450978}},
|
||||
{"reofarp", {871967}},
|
||||
{"ersu", {842723}},
|
||||
{"Ybpro4", {247988}},
|
||||
{"ThatOneDudeInPublic", {68151}},
|
||||
{"3061867813", {888}},
|
||||
{"TWLTriston", {4280}},
|
||||
{"andrekoul", {764924}},
|
||||
{"robertkruijt", {118620}},
|
||||
{"EminentMass", {4520}},
|
||||
{"Absolution", {279746}},
|
||||
{"Jackelol", {708089}},
|
||||
{"vonlam999", {387997}},
|
||||
{"Robinjh", {383117}},
|
||||
{"Kyte", {29209}},
|
||||
{"WiredMesh", {148191}},
|
||||
{"Nalleknas", {546768}},
|
||||
{"ReneHSZ", {330690}},
|
||||
{"danyal_knights", {178647}},
|
||||
{"mastersofus", {247339}},
|
||||
{"thisisjack", {640763}},
|
||||
{"LuchokPlay", {108918}},
|
||||
{"nans", {33656}},
|
||||
{"Aldnoah5566", {442619}},
|
||||
{"IamTzu", {591166}},
|
||||
{"Matroxko", {18362}},
|
||||
{"rykstar", {561333}},
|
||||
{"Wadiyatalkinbeet", {5416}},
|
||||
{"Gas1", {214245}},
|
||||
{"s0917312090", {9425}},
|
||||
{"PerryBot", {44414}},
|
||||
{"Porg", {82360}},
|
||||
{"MEATMAN", {6837}},
|
||||
{"Razorback41", {14387}},
|
||||
{"clairefarron17121", {2752}},
|
||||
{"Deltaprof", {981}},
|
||||
{"terradus", {289046}},
|
||||
{"IAmTog", {108136}},
|
||||
{"kyaname", {8147}},
|
||||
{"alyptica", {356970}},
|
||||
{"kn0x", {11679}},
|
||||
{"MisterBabou", {9839}},
|
||||
{"fiscch1", {88027}},
|
||||
{"illmaren", {3089}},
|
||||
{"Jaazinh", {263825}},
|
||||
{"SDSBohrer", {127186}},
|
||||
{"TheWickedMaster", {276342}},
|
||||
{"Bokaza", {2434}},
|
||||
{"vedolv", {256310}},
|
||||
{"FingerFix", {254929}},
|
||||
{"UltimateDolan", {35214}},
|
||||
{"manstro011", {202950}},
|
||||
{"chrisisthebe", {191146}},
|
||||
{"drigone", {3756}},
|
||||
{"Moistlos", {3389}},
|
||||
{"Entropie", {152546}},
|
||||
{"Masato1995", {8747}},
|
||||
{"facere", {130088}},
|
||||
{"Averest", {129344}},
|
||||
{"Slezer", {5448}},
|
||||
{"jer35694", {119666}},
|
||||
{"moqart", {30229}},
|
||||
{"kinoman", {13801}},
|
||||
{"Jixxxa", {102748}},
|
||||
{"SubSeven36", {100083}},
|
||||
{"JakobLM", {3164}},
|
||||
{"ristallderon", {38240}},
|
||||
{"abnoeh", {3112}},
|
||||
{"HardcoreRocco", {17309}},
|
||||
{"Silicon", {46340}},
|
||||
{"l3ycle", {4718}},
|
||||
{"llwebb", {18066}},
|
||||
{"ben84", {10555}}
|
||||
}
|
||||
return playsession
|
8
session_data/GgBqfmBvrKKhZOVy.lua
Normal file
8
session_data/GgBqfmBvrKKhZOVy.lua
Normal file
@ -0,0 +1,8 @@
|
||||
local playsession = {
|
||||
{"4xBen", {215937}},
|
||||
{"snoetje", {17954}},
|
||||
{"RagingPotato", {3402}},
|
||||
{"Ybloc", {82778}},
|
||||
{"soapster", {15986}}
|
||||
}
|
||||
return playsession
|
68
session_data/ISkbErvXeiYELgjt.lua
Normal file
68
session_data/ISkbErvXeiYELgjt.lua
Normal file
@ -0,0 +1,68 @@
|
||||
local playsession = {
|
||||
{"HardcoreRocco", {337918}},
|
||||
{"TheWickedMaster", {431592}},
|
||||
{"Unwichtig", {421786}},
|
||||
{"Brender", {364590}},
|
||||
{"manstro011", {431387}},
|
||||
{"andrekoul", {397919}},
|
||||
{"TXL_PLAYZ", {188031}},
|
||||
{"Jooey14", {426823}},
|
||||
{"hyunbeen", {5691}},
|
||||
{"dorpdorp", {319187}},
|
||||
{"Clythoris", {417744}},
|
||||
{"VincentMonster", {206586}},
|
||||
{"Roeno1997", {239464}},
|
||||
{"IAmTog", {347798}},
|
||||
{"JuanMore", {368460}},
|
||||
{"Lastaustralian", {425814}},
|
||||
{"seeyorise", {419636}},
|
||||
{"Aldnoah5566", {32033}},
|
||||
{"epmonk", {247382}},
|
||||
{"Cheeseftw", {396387}},
|
||||
{"Nikkichu", {390154}},
|
||||
{"marcohald", {9045}},
|
||||
{"zumti", {3184}},
|
||||
{"vedolv", {384772}},
|
||||
{"IamTzu", {383603}},
|
||||
{"1234tv", {51979}},
|
||||
{"nizzy", {6127}},
|
||||
{"Achskelmos", {351628}},
|
||||
{"Falcon6", {18465}},
|
||||
{"Mrog_163", {108269}},
|
||||
{"durztok", {89929}},
|
||||
{"lethal_dark", {3898}},
|
||||
{"demon_453", {202016}},
|
||||
{"JamieHolding", {211159}},
|
||||
{"KickassLee", {236373}},
|
||||
{"Preizhour", {282174}},
|
||||
{"Bokrug", {7228}},
|
||||
{"Junior_Kz", {5717}},
|
||||
{"Miltion", {66448}},
|
||||
{"I_dream_of_corn", {64659}},
|
||||
{"RainSolid", {228900}},
|
||||
{"thisisjack", {6195}},
|
||||
{"aniche", {91927}},
|
||||
{"deadpoetic6", {4412}},
|
||||
{"Roxen", {6189}},
|
||||
{"ayahuasca23", {188788}},
|
||||
{"ksb4145", {114816}},
|
||||
{"Reyand", {91228}},
|
||||
{"Rayeth", {8218}},
|
||||
{"firstandlast", {145818}},
|
||||
{"Whassup", {7677}},
|
||||
{"AIRZYC", {64099}},
|
||||
{"Raijin-Kizuku", {137406}},
|
||||
{"RashiNerha", {30899}},
|
||||
{"abnoeh", {5150}},
|
||||
{"facere", {21105}},
|
||||
{"minipini55", {62863}},
|
||||
{"grundle", {85526}},
|
||||
{"vvictor", {1855}},
|
||||
{"Giatros", {62742}},
|
||||
{"timocb", {44071}},
|
||||
{"tjql9856", {17945}},
|
||||
{"beranabus", {24889}},
|
||||
{"putinss", {7369}},
|
||||
{"mewmew", {2938}}
|
||||
}
|
||||
return playsession
|
13
session_data/IaPFEphKSlfDSGop.lua
Normal file
13
session_data/IaPFEphKSlfDSGop.lua
Normal file
@ -0,0 +1,13 @@
|
||||
local playsession = {
|
||||
{"MeggalBozale", {287643}},
|
||||
{"XephosArkeyus", {172553}},
|
||||
{"Menander", {287070}},
|
||||
{"rocifier", {269608}},
|
||||
{"sadler1321", {260572}},
|
||||
{"kkook30", {658}},
|
||||
{"Allall", {7160}},
|
||||
{"ReubyDoobie", {13468}},
|
||||
{"realDonaldTrump", {59773}},
|
||||
{"slikasandr", {5323}}
|
||||
}
|
||||
return playsession
|
41
session_data/IcMXPCTCndxxhOOv.lua
Normal file
41
session_data/IcMXPCTCndxxhOOv.lua
Normal file
@ -0,0 +1,41 @@
|
||||
local playsession = {
|
||||
{"7Haydz7", {1415099}},
|
||||
{"tyssa", {1189529}},
|
||||
{"Achskelmos", {1459942}},
|
||||
{"flooxy", {355919}},
|
||||
{"SubSeven36", {858345}},
|
||||
{"Dominoscraft", {1364189}},
|
||||
{"14nickel", {752781}},
|
||||
{"Fireflyghost", {265309}},
|
||||
{"Qwicks", {183090}},
|
||||
{"butterflux", {1013218}},
|
||||
{"mechapanda", {196537}},
|
||||
{"Altaric", {108827}},
|
||||
{"Together2929", {27132}},
|
||||
{"Quantum_Mechanic", {712163}},
|
||||
{"Arabiato", {18846}},
|
||||
{"Kostek", {3462}},
|
||||
{"vvictor", {40537}},
|
||||
{"putinss", {207963}},
|
||||
{"neekoneeko", {5762}},
|
||||
{"Galgas", {27890}},
|
||||
{"CrazyCrabEater", {305185}},
|
||||
{"I_dream_of_corn", {34377}},
|
||||
{"aniche", {69880}},
|
||||
{"Ajentorange", {874943}},
|
||||
{"realDonaldTrump", {12209}},
|
||||
{"Velguarder", {420514}},
|
||||
{"civilia", {21168}},
|
||||
{"tickterd", {472984}},
|
||||
{"Tommy17", {1074}},
|
||||
{"RichardMNixon", {2186}},
|
||||
{"TXL_PLAYZ", {7629}},
|
||||
{"WiredMesh", {40625}},
|
||||
{"15944831778", {58166}},
|
||||
{"wesgidowen", {472871}},
|
||||
{"longda88", {18638}},
|
||||
{"kkook30", {6491}},
|
||||
{"ReubyDoobie", {129418}},
|
||||
{"slikasandr", {89928}}
|
||||
}
|
||||
return playsession
|
8
session_data/JBeKYQJMOgrUNhCC.lua
Normal file
8
session_data/JBeKYQJMOgrUNhCC.lua
Normal file
@ -0,0 +1,8 @@
|
||||
local playsession = {
|
||||
{"MikeTheMike2014", {25489}},
|
||||
{"Menander", {250290}},
|
||||
{"4xBen", {91702}},
|
||||
{"mlgsaysyolo", {4791}},
|
||||
{"Duchesko", {61028}}
|
||||
}
|
||||
return playsession
|
38
session_data/KdXPqHQbWsvaRCyZ.lua
Normal file
38
session_data/KdXPqHQbWsvaRCyZ.lua
Normal file
@ -0,0 +1,38 @@
|
||||
local playsession = {
|
||||
{"cawsey21", {1080469}},
|
||||
{"Menander", {2046517}},
|
||||
{"Nikkichu", {913540}},
|
||||
{"4xBen", {1498724}},
|
||||
{"Podonkov", {273234}},
|
||||
{"hundra", {736}},
|
||||
{"CommanderFrog", {2464}},
|
||||
{"meep.", {8411}},
|
||||
{"dog80", {100982}},
|
||||
{"Conan_Doyil", {1085265}},
|
||||
{"SparzianII", {2922}},
|
||||
{"cogito123", {247063}},
|
||||
{"bjoern1035", {5510}},
|
||||
{"ronnaldy", {2052521}},
|
||||
{"Nemium", {308654}},
|
||||
{"KloStein", {1758}},
|
||||
{"PogomanD", {2372}},
|
||||
{"Ed9210", {2914102}},
|
||||
{"damnman", {19113}},
|
||||
{"FAChyba", {418247}},
|
||||
{"realDonaldTrump", {544548}},
|
||||
{"ARKANE77", {4456}},
|
||||
{"Maxboul", {34530}},
|
||||
{"Immo", {879506}},
|
||||
{"Echo2407", {33874}},
|
||||
{"Mullacs", {51036}},
|
||||
{"rocifier", {1478444}},
|
||||
{"DdlyArcher", {12603}},
|
||||
{"MikeTheMike2014", {365983}},
|
||||
{"dazonker", {143123}},
|
||||
{"Oveerlord92", {7390}},
|
||||
{"EPO666", {266117}},
|
||||
{"Atoms", {398201}},
|
||||
{"Griever213", {397}},
|
||||
{"llyykktt", {6392}}
|
||||
}
|
||||
return playsession
|
49
session_data/LiQvkojDKNylVTLd.lua
Normal file
49
session_data/LiQvkojDKNylVTLd.lua
Normal file
@ -0,0 +1,49 @@
|
||||
local playsession = {
|
||||
{"mewmew", {27128}},
|
||||
{"red11", {3753616}},
|
||||
{"Reyand", {115732}},
|
||||
{"Brender", {4143}},
|
||||
{"Serennie", {286556}},
|
||||
{"jayjay999999", {905}},
|
||||
{"Cheeseftw", {4614}},
|
||||
{"trnila", {988860}},
|
||||
{"mastah_mind", {1500365}},
|
||||
{"McSafety", {1437715}},
|
||||
{"demon_453", {488186}},
|
||||
{"shakaman", {4033}},
|
||||
{"LymBAOBEI", {16558}},
|
||||
{"vad50", {651710}},
|
||||
{"pfouto", {1492}},
|
||||
{"neekoneeko", {616574}},
|
||||
{"Degg", {900539}},
|
||||
{"raskl", {5828}},
|
||||
{"Drumpe", {22129}},
|
||||
{"Averest", {46460}},
|
||||
{"vedolv", {12951}},
|
||||
{"kevinma", {47702}},
|
||||
{"ajicurry", {208175}},
|
||||
{"Bunchofrocks", {29230}},
|
||||
{"ChinaNumba1", {259042}},
|
||||
{"XaLpHa1989", {65481}},
|
||||
{"snoetje", {28675}},
|
||||
{"xPedion", {1376}},
|
||||
{"SubSeven36", {3239}},
|
||||
{"vvictor", {2094775}},
|
||||
{"lazerandy", {7746}},
|
||||
{"anima", {3886}},
|
||||
{"Idefix88", {670524}},
|
||||
{"pixel-perfect", {7596}},
|
||||
{"dazonker", {9527}},
|
||||
{"swordjjjkkk", {1524}},
|
||||
{"ben84", {3761}},
|
||||
{"xodud1068", {1667}},
|
||||
{"vishupochampally", {236586}},
|
||||
{"illmaren", {3028}},
|
||||
{"Aceriterium_A", {2714}},
|
||||
{"DKarma", {2640}},
|
||||
{"Zory", {3766}},
|
||||
{"Brathahn", {4196}},
|
||||
{"mcdj23_", {14696}},
|
||||
{"NewRemote", {2650}}
|
||||
}
|
||||
return playsession
|
61
session_data/LpWuUFRDrFbXvZXE.lua
Normal file
61
session_data/LpWuUFRDrFbXvZXE.lua
Normal file
@ -0,0 +1,61 @@
|
||||
local playsession = {
|
||||
{"mewmew", {99893}},
|
||||
{"Zory", {42899}},
|
||||
{"patus", {4570}},
|
||||
{"RonnDlear", {838571}},
|
||||
{"WildVine", {171696}},
|
||||
{"BobtheBuilder31", {8911}},
|
||||
{"Altenius", {3249}},
|
||||
{"vvictor", {1156006}},
|
||||
{"XaLpHa1989", {89871}},
|
||||
{"Order", {647012}},
|
||||
{"Kruv", {331233}},
|
||||
{"Akhrem", {119527}},
|
||||
{"TiTaN", {29790}},
|
||||
{"kaimix", {279005}},
|
||||
{"johnluke93", {129429}},
|
||||
{"Ruuyji", {51193}},
|
||||
{"CommanderFrog", {247191}},
|
||||
{"davidjarrao", {16848}},
|
||||
{"FAChyba", {3339}},
|
||||
{"JustronX", {129198}},
|
||||
{"SubSeven36", {114951}},
|
||||
{"Katian", {38860}},
|
||||
{"FingerFix", {10056}},
|
||||
{"lukasz_liberda", {611835}},
|
||||
{"Skybreaker", {95339}},
|
||||
{"Drumpe", {67376}},
|
||||
{"dragongod21", {14743}},
|
||||
{"Fireflyghost", {378620}},
|
||||
{"Croustibax", {56746}},
|
||||
{"mzore", {678930}},
|
||||
{"neekoneeko", {827496}},
|
||||
{"reofarp", {7139}},
|
||||
{"StarLite", {685652}},
|
||||
{"sharpshot2566", {219322}},
|
||||
{"OwocBomba", {21162}},
|
||||
{"therv", {48194}},
|
||||
{"robertkruijt", {24771}},
|
||||
{"Entropie", {1972}},
|
||||
{"Dimava", {10708}},
|
||||
{"whollyspokes", {109339}},
|
||||
{"Danzou", {59797}},
|
||||
{"xPedion", {399028}},
|
||||
{"NerZurg", {77585}},
|
||||
{"melancoleeca", {6676}},
|
||||
{"Chemino", {5093}},
|
||||
{"Mamling", {7623}},
|
||||
{"Corlin", {3673}},
|
||||
{"Liutio", {3167}},
|
||||
{"RedstoneRampage", {284436}},
|
||||
{"Cheeseftw", {9949}},
|
||||
{"Chevalier1200", {9766}},
|
||||
{"MeggalBozale", {24813}},
|
||||
{"Hitman451", {16084}},
|
||||
{"red11", {1245389}},
|
||||
{"brftjx", {5707}},
|
||||
{"Idefix88", {323135}},
|
||||
{"Brender", {2850}},
|
||||
{"slikasandr", {16307}}
|
||||
}
|
||||
return playsession
|
13
session_data/MMkrjKWmjVqKxEvD.lua
Normal file
13
session_data/MMkrjKWmjVqKxEvD.lua
Normal file
@ -0,0 +1,13 @@
|
||||
local playsession = {
|
||||
{"rocifier", {266978}},
|
||||
{"kaimix", {5562}},
|
||||
{"mad58max", {18055}},
|
||||
{"User8768", {3561}},
|
||||
{"Velguarder", {56949}},
|
||||
{"Immo", {1300}},
|
||||
{"facere", {178938}},
|
||||
{"cawsey21", {221103}},
|
||||
{"NerZurg", {205}},
|
||||
{"neekoneeko", {9379}}
|
||||
}
|
||||
return playsession
|
66
session_data/NEEUlNmYYGJaGRzI.lua
Normal file
66
session_data/NEEUlNmYYGJaGRzI.lua
Normal file
@ -0,0 +1,66 @@
|
||||
local playsession = {
|
||||
{"mewmew", {2304}},
|
||||
{"vvictor", {780826}},
|
||||
{"raskl", {160010}},
|
||||
{"qwert33", {415825}},
|
||||
{"fuatcank", {6450}},
|
||||
{"Soviet_Division", {22362}},
|
||||
{"Fingerdash", {1746}},
|
||||
{"RonnDlear", {171836}},
|
||||
{"MmMinus", {1476}},
|
||||
{"DKarma", {5596}},
|
||||
{"drill95", {4079}},
|
||||
{"Serennie", {203197}},
|
||||
{"COOL-ITEM", {660897}},
|
||||
{"Patton1918", {19773}},
|
||||
{"ManuelG", {262080}},
|
||||
{"TheVanoq", {19936}},
|
||||
{"pakshtyz", {261849}},
|
||||
{"Panzerkira", {7247}},
|
||||
{"Discuzting", {8929}},
|
||||
{"swisser", {82043}},
|
||||
{"Ska-Dee", {57659}},
|
||||
{"CmonMate497", {6249}},
|
||||
{"cogito123", {376104}},
|
||||
{"cpcp1998", {7620}},
|
||||
{"TXL_PLAYZ", {542022}},
|
||||
{"TheIronCove", {7076}},
|
||||
{"fanatax", {1777}},
|
||||
{"FlightofDragons", {5219}},
|
||||
{"RichardMNixon", {270836}},
|
||||
{"Tritex.", {12210}},
|
||||
{"sharpshot2566", {506142}},
|
||||
{"Croustibax", {479896}},
|
||||
{"dredge44", {3671}},
|
||||
{"Creator_Zhang", {39657}},
|
||||
{"ampflog", {11230}},
|
||||
{"Bokrug", {436417}},
|
||||
{"phlogservice", {229938}},
|
||||
{"ZeroBeTaken", {12950}},
|
||||
{"010110", {160149}},
|
||||
{"Zory", {349196}},
|
||||
{"Akhrem", {94216}},
|
||||
{"MatoPlayz", {7542}},
|
||||
{"Marwonline", {314033}},
|
||||
{"adieclay", {297562}},
|
||||
{"elvelazquez", {6119}},
|
||||
{"glukuzzz", {7626}},
|
||||
{"wekkka", {219621}},
|
||||
{"Nemium", {181767}},
|
||||
{"IAmTog", {5609}},
|
||||
{"weehuddy", {1063}},
|
||||
{"Roxen", {9720}},
|
||||
{"Whassup", {10088}},
|
||||
{"Order", {151473}},
|
||||
{"LymBAOBEI", {132494}},
|
||||
{"VincentMonster", {128543}},
|
||||
{"Kyte", {16702}},
|
||||
{"Raz80", {12316}},
|
||||
{"larshp", {92272}},
|
||||
{"KubskY", {24509}},
|
||||
{"blue1999", {7932}},
|
||||
{"Griever213", {1767}},
|
||||
{"Catbert", {2264}},
|
||||
{"ViCticus", {11784}}
|
||||
}
|
||||
return playsession
|
121
session_data/NnMowhFWmJHEdSrh.lua
Normal file
121
session_data/NnMowhFWmJHEdSrh.lua
Normal file
@ -0,0 +1,121 @@
|
||||
local playsession = {
|
||||
{"TheWickedMaster", {1568365}},
|
||||
{"andrekoul", {603950}},
|
||||
{"Reyand", {201535}},
|
||||
{"Preizhour", {959714}},
|
||||
{"beranabus", {404237}},
|
||||
{"putinss", {401441}},
|
||||
{"ayahuasca23", {1870828}},
|
||||
{"manstro011", {1854288}},
|
||||
{"Achskelmos", {1869646}},
|
||||
{"Clythoris", {1032313}},
|
||||
{"Brender", {456289}},
|
||||
{"RainSolid", {565819}},
|
||||
{"Lastaustralian", {571483}},
|
||||
{"KloStein", {561843}},
|
||||
{"Raijin-Kizuku", {937062}},
|
||||
{"twinotter", {297214}},
|
||||
{"Cheeseftw", {1773639}},
|
||||
{"trnila", {421811}},
|
||||
{"DKarma", {28252}},
|
||||
{"Bokrug", {176227}},
|
||||
{"Nikkichu", {545476}},
|
||||
{"grundle", {1126899}},
|
||||
{"IAmTog", {163358}},
|
||||
{"demon_453", {146817}},
|
||||
{"KubaX_24", {4924}},
|
||||
{"mewmew", {693699}},
|
||||
{"davidbutora", {1740500}},
|
||||
{"craigrood", {51605}},
|
||||
{"Jooey14", {1589989}},
|
||||
{"shoniko", {77131}},
|
||||
{"Tommy17", {2145}},
|
||||
{"mtc", {27656}},
|
||||
{"tronas10", {2858}},
|
||||
{"vedolv", {158885}},
|
||||
{"redlabel", {377641}},
|
||||
{"vvictor", {16858}},
|
||||
{"michuk", {8509}},
|
||||
{"Unwichtig", {133446}},
|
||||
{"Dustin1525", {2037}},
|
||||
{"Duchesko", {19219}},
|
||||
{"DaniaBakai", {8225}},
|
||||
{"pakshtyz", {71270}},
|
||||
{"quark036", {79489}},
|
||||
{"Lithidoria", {15292}},
|
||||
{"KickassLee", {19354}},
|
||||
{"StarLite", {488448}},
|
||||
{"Silicon", {725341}},
|
||||
{"HardcoreRocco", {799448}},
|
||||
{"WiredMesh", {925639}},
|
||||
{"Roxen", {214866}},
|
||||
{"AurelienG", {715019}},
|
||||
{"adlmr", {226052}},
|
||||
{"TizianTitus", {4803}},
|
||||
{"Muehre", {6381}},
|
||||
{"Daultash", {24264}},
|
||||
{"forexercise", {46426}},
|
||||
{"meep.", {47466}},
|
||||
{"BlueDragonner", {76528}},
|
||||
{"Boso-Hasam", {1182}},
|
||||
{"ze-hun", {10734}},
|
||||
{"terradus", {252831}},
|
||||
{"BookaaGaming", {726545}},
|
||||
{"I_dream_of_corn", {626774}},
|
||||
{"aalexx", {274010}},
|
||||
{"marius86000", {152769}},
|
||||
{"Roeno1997", {554048}},
|
||||
{"Elrael", {21360}},
|
||||
{"aricias", {9582}},
|
||||
{"Peter9184", {29437}},
|
||||
{"dorpdorp", {192910}},
|
||||
{"snoetje", {23535}},
|
||||
{"Serennie", {67420}},
|
||||
{"soporis", {284943}},
|
||||
{"RashiNerha", {688269}},
|
||||
{"Daveyboy80", {496920}},
|
||||
{"BuBBleButts", {256}},
|
||||
{"safriq", {39617}},
|
||||
{"dmitrymk", {468071}},
|
||||
{"xjohnson", {138876}},
|
||||
{"fouronnes3", {6799}},
|
||||
{"rip70400", {107105}},
|
||||
{"Patton1918", {3519}},
|
||||
{"Katian", {399212}},
|
||||
{"facere", {943677}},
|
||||
{"Artengineer", {961480}},
|
||||
{"_Finley_", {396777}},
|
||||
{"Ed9210", {336056}},
|
||||
{"Erikost3", {138359}},
|
||||
{"DaSanni", {2554}},
|
||||
{"tyssa", {728506}},
|
||||
{"SmokuNoPico", {284652}},
|
||||
{"Mavrick", {11544}},
|
||||
{"Rawutzikabutzi", {717652}},
|
||||
{"daifeiya", {81345}},
|
||||
{"perfectwill", {256803}},
|
||||
{"Psyclone", {19600}},
|
||||
{"FingerFix", {12637}},
|
||||
{"Terarink", {571351}},
|
||||
{"ksb4145", {286583}},
|
||||
{"hunter117x", {337470}},
|
||||
{"RedPandaRam", {10318}},
|
||||
{"kunnis", {321409}},
|
||||
{"cage4313", {2656}},
|
||||
{"ryanwilliams83", {29148}},
|
||||
{"doonaz", {2521}},
|
||||
{"ETK03", {216014}},
|
||||
{"morcup", {11400}},
|
||||
{"grilledham", {24156}},
|
||||
{"mormermer", {1788}},
|
||||
{"onyxinsanity", {289838}},
|
||||
{"seeyorise", {55098}},
|
||||
{"seirjgkemn", {228013}},
|
||||
{"pwnrzero", {2400}},
|
||||
{"14nickel", {148473}},
|
||||
{"butterflux", {58556}},
|
||||
{"CallMeTaste", {8033}},
|
||||
{"newove", {10793}},
|
||||
{"Zorky", {17337}}
|
||||
}
|
||||
return playsession
|
18
session_data/NzVCeXYmJCiVpSxz.lua
Normal file
18
session_data/NzVCeXYmJCiVpSxz.lua
Normal file
@ -0,0 +1,18 @@
|
||||
local playsession = {
|
||||
{"Terarink", {143787}},
|
||||
{"14nickel", {134540}},
|
||||
{"Zorky", {142724}},
|
||||
{"mattdawg10", {4428}},
|
||||
{"newove", {137096}},
|
||||
{"ntweibogui", {4880}},
|
||||
{"IAmTog", {1162}},
|
||||
{"mr__meeseeks", {3353}},
|
||||
{"TheRealSlimChewy", {10402}},
|
||||
{"hashkins", {6521}},
|
||||
{"ajsto88", {33028}},
|
||||
{"CrazyCrabEater", {27078}},
|
||||
{"butterflux", {27040}},
|
||||
{"Pickleman", {12706}},
|
||||
{"kunnis", {4324}}
|
||||
}
|
||||
return playsession
|
28
session_data/PPPgRHjGlToRfSja.lua
Normal file
28
session_data/PPPgRHjGlToRfSja.lua
Normal file
@ -0,0 +1,28 @@
|
||||
local playsession = {
|
||||
{"SparzianII", {1109}},
|
||||
{"Croustibax", {474409}},
|
||||
{"Menander", {359374}},
|
||||
{"kaimix", {809665}},
|
||||
{"FAChyba", {698123}},
|
||||
{"RoastedAppleTree", {12140}},
|
||||
{"Oveerlord92", {284321}},
|
||||
{"C4pT_H0oK", {246980}},
|
||||
{"realDonaldTrump", {647201}},
|
||||
{"Creator_Zhang", {231482}},
|
||||
{"Nikkichu", {58330}},
|
||||
{"AIRZYC", {39957}},
|
||||
{"4xBen", {482792}},
|
||||
{"dog80", {322092}},
|
||||
{"MovingMike", {580287}},
|
||||
{"ronnaldy", {15700}},
|
||||
{"trnila", {319124}},
|
||||
{"Roxen", {95413}},
|
||||
{"KingBigMac", {2964}},
|
||||
{"cogito123", {154380}},
|
||||
{"vince527", {1256}},
|
||||
{"Linkknight", {8626}},
|
||||
{"Avelix", {90338}},
|
||||
{"grundle", {61433}},
|
||||
{"vedolv", {153374}}
|
||||
}
|
||||
return playsession
|
34
session_data/RGsYGxaFxSFEeIod.lua
Normal file
34
session_data/RGsYGxaFxSFEeIod.lua
Normal file
@ -0,0 +1,34 @@
|
||||
local playsession = {
|
||||
{"amadey18", {550495}},
|
||||
{"FailedSoul", {4781}},
|
||||
{"kaimix", {302704}},
|
||||
{"tykak", {81675}},
|
||||
{"NerZurg", {1257}},
|
||||
{"exabyte", {58391}},
|
||||
{"iceskaarj", {549644}},
|
||||
{"Order", {541083}},
|
||||
{"Factorian12321", {419457}},
|
||||
{"lintaba", {40929}},
|
||||
{"cogito123", {26396}},
|
||||
{"WiktorSPL", {4390}},
|
||||
{"tyce1234", {362031}},
|
||||
{"GarretShadow", {235423}},
|
||||
{"gespenstdermaschine", {11374}},
|
||||
{"McSafety", {113057}},
|
||||
{"Tomy52499", {245943}},
|
||||
{"MasjazZ", {205761}},
|
||||
{"AurelienG", {286069}},
|
||||
{"okan009", {308267}},
|
||||
{"TiTaN", {290623}},
|
||||
{"rixon316", {414}},
|
||||
{"TXL_PLAYZ", {833}},
|
||||
{"Silicon", {552}},
|
||||
{"aniche", {128648}},
|
||||
{"Creator_Zhang", {231317}},
|
||||
{"Atoms", {200730}},
|
||||
{"MovingMike", {139099}},
|
||||
{"ronnaldy", {34111}},
|
||||
{"mar123322", {103042}},
|
||||
{"Tommy17", {10554}}
|
||||
}
|
||||
return playsession
|
35
session_data/RLehvTAKVsFvkglF.lua
Normal file
35
session_data/RLehvTAKVsFvkglF.lua
Normal file
@ -0,0 +1,35 @@
|
||||
local playsession = {
|
||||
{"Menander", {3556966}},
|
||||
{"meske", {2246}},
|
||||
{"mad58max", {5017}},
|
||||
{"VoxNeutron", {3376}},
|
||||
{"InphinitePhractals", {359761}},
|
||||
{"rocifier", {1063800}},
|
||||
{"Giatros", {9585}},
|
||||
{"Wingspan", {207472}},
|
||||
{"Creator_Zhang", {12930}},
|
||||
{"TXL_PLAYZ", {14175}},
|
||||
{"cawsey21", {93164}},
|
||||
{"Immo", {302693}},
|
||||
{"McSafety", {329256}},
|
||||
{"Tereble", {9246}},
|
||||
{"exabyte", {2989840}},
|
||||
{"Sauwn", {2004}},
|
||||
{"BlueDragonner", {194}},
|
||||
{"ronnaldy", {361873}},
|
||||
{"SparzianII", {7030}},
|
||||
{"Thewarlockminer", {3246}},
|
||||
{"Nikkichu", {847488}},
|
||||
{"Krono", {1200511}},
|
||||
{"dog80", {229158}},
|
||||
{"762x51mm", {21506}},
|
||||
{"Mimfort", {7746}},
|
||||
{"4xBen", {529181}},
|
||||
{"FAChyba", {525259}},
|
||||
{"Zory", {95220}},
|
||||
{"kaimix", {88057}},
|
||||
{"MovingMike", {175723}},
|
||||
{"dr_evil", {86141}},
|
||||
{"snoetje", {11203}}
|
||||
}
|
||||
return playsession
|
16
session_data/RkIriQeInGCDklzz.lua
Normal file
16
session_data/RkIriQeInGCDklzz.lua
Normal file
@ -0,0 +1,16 @@
|
||||
local playsession = {
|
||||
{"rocifier", {863957}},
|
||||
{"Giatros", {6938}},
|
||||
{"mattdawg10", {2546}},
|
||||
{"Cerwynr", {294432}},
|
||||
{"15944831778", {26983}},
|
||||
{"Sholvo", {4886}},
|
||||
{"Spaceykitten", {11898}},
|
||||
{"hj747371550", {4723}},
|
||||
{"Immo", {237829}},
|
||||
{"MikeTheMike2014", {419489}},
|
||||
{"Menander", {365224}},
|
||||
{"Zory", {117246}},
|
||||
{"SomeRandomGuy5", {1399}}
|
||||
}
|
||||
return playsession
|
@ -1,21 +1,21 @@
|
||||
local playsession = {
|
||||
{"tykak", {575782}},
|
||||
{"SmokuNoPico", {506323}},
|
||||
{"tykak", {654734}},
|
||||
{"SmokuNoPico", {758323}},
|
||||
{"die_ott", {343}},
|
||||
{"Menander", {575259}},
|
||||
{"MovingMike", {573158}},
|
||||
{"Menander", {827259}},
|
||||
{"MovingMike", {825158}},
|
||||
{"jower", {9164}},
|
||||
{"facere", {206221}},
|
||||
{"cogito123", {494395}},
|
||||
{"cogito123", {746395}},
|
||||
{"mzore", {400798}},
|
||||
{"mar123322", {124974}},
|
||||
{"ToadallyTerrific", {3939}},
|
||||
{"TiTaN", {530003}},
|
||||
{"TiTaN", {782003}},
|
||||
{"Nikkichu", {404038}},
|
||||
{"kubek", {503124}},
|
||||
{"kubek", {646109}},
|
||||
{"Zman98789", {428}},
|
||||
{"Arabiato", {4018}},
|
||||
{"demon_453", {491565}},
|
||||
{"demon_453", {632691}},
|
||||
{"chiopobacke", {3521}},
|
||||
{"ryan_gregson2000", {2859}},
|
||||
{"TheFirstWheel", {3955}},
|
||||
@ -24,31 +24,41 @@ local playsession = {
|
||||
{"glukuzzz", {182864}},
|
||||
{"DirtyMan", {3414}},
|
||||
{"daniil6624", {19464}},
|
||||
{"adieclay", {367485}},
|
||||
{"alexbw", {360624}},
|
||||
{"adieclay", {619485}},
|
||||
{"alexbw", {612624}},
|
||||
{"ZiP84", {132115}},
|
||||
{"UnseelieFaerie", {30908}},
|
||||
{"Gerkiz", {40798}},
|
||||
{"dog80", {162280}},
|
||||
{"dog80", {177346}},
|
||||
{"nilloxer", {3951}},
|
||||
{"cawsey21", {266968}},
|
||||
{"cawsey21", {409691}},
|
||||
{"Dressi", {207620}},
|
||||
{"BlueDragonner", {3597}},
|
||||
{"Hudson592", {2511}},
|
||||
{"ro88ie", {1836}},
|
||||
{"TheFabiGM", {2645}},
|
||||
{"Fexx", {219178}},
|
||||
{"Fexx", {431717}},
|
||||
{"iceskaarj", {192009}},
|
||||
{"butterflux", {195225}},
|
||||
{"butterflux", {197124}},
|
||||
{"Shucru", {328}},
|
||||
{"Nightworker", {9189}},
|
||||
{"Zapdos", {130914}},
|
||||
{"Zapdos", {382914}},
|
||||
{"mthw2", {8254}},
|
||||
{"PerryBot", {10736}},
|
||||
{"nosretttap", {27853}},
|
||||
{"Eliniale", {58645}},
|
||||
{"autopss", {40997}},
|
||||
{"Hoppili", {21984}},
|
||||
{"VincentMonster", {13230}}
|
||||
{"Eliniale", {310645}},
|
||||
{"autopss", {292997}},
|
||||
{"Hoppili", {77509}},
|
||||
{"VincentMonster", {13230}},
|
||||
{"Hoppili444", {26061}},
|
||||
{"Hitman451", {13227}},
|
||||
{"mewmew", {41607}},
|
||||
{"Factorian12321", {80429}},
|
||||
{"Lillbirro", {1858}},
|
||||
{"Gorlos", {112699}},
|
||||
{"Krono", {81725}},
|
||||
{"Lotek", {81593}},
|
||||
{"avshkabura", {5066}},
|
||||
{"ksb4145", {3482}}
|
||||
}
|
||||
return playsession
|
138
session_data/SWMaRbLBgqNMTRPD.lua
Normal file
138
session_data/SWMaRbLBgqNMTRPD.lua
Normal file
@ -0,0 +1,138 @@
|
||||
local playsession = {
|
||||
{"Thatl1lGuy", {499392}},
|
||||
{"Giatros", {858875}},
|
||||
{"xjohnson", {1075190}},
|
||||
{"EPO666", {586245}},
|
||||
{"Gas1", {262250}},
|
||||
{"leo5642", {14284}},
|
||||
{"Peter9184", {164460}},
|
||||
{"Tereble", {384998}},
|
||||
{"ninyall", {3083}},
|
||||
{"ReubyDoobie", {1253798}},
|
||||
{"marius86000", {557671}},
|
||||
{"Dimava", {1074028}},
|
||||
{"huyj2k", {103993}},
|
||||
{"Pi83", {527105}},
|
||||
{"Toreu", {13350}},
|
||||
{"BadSpeiling", {30176}},
|
||||
{"cpcp1998", {480}},
|
||||
{"whollyspokes", {1218722}},
|
||||
{"lsh820309", {27762}},
|
||||
{"heekyo", {668616}},
|
||||
{"ATAMAH", {1049999}},
|
||||
{"AIRZYC", {490508}},
|
||||
{"kevinma", {588413}},
|
||||
{"Zanarkand", {3573}},
|
||||
{"ben84", {1047801}},
|
||||
{"cogito123", {721906}},
|
||||
{"TXL_PLAYZ", {1166634}},
|
||||
{"slikasandr", {872949}},
|
||||
{"Ybpro4", {35233}},
|
||||
{"xokcck", {16377}},
|
||||
{"woshiwo", {43799}},
|
||||
{"Reyand", {185655}},
|
||||
{"Zeljko01_", {12988}},
|
||||
{"Akhrem", {159974}},
|
||||
{"Nivek3k", {16353}},
|
||||
{"Order", {59611}},
|
||||
{"Drumpe", {21386}},
|
||||
{"rabenste", {54601}},
|
||||
{"Katian", {415937}},
|
||||
{"rykstar", {20133}},
|
||||
{"YOSSYAN", {19039}},
|
||||
{"BenisNipples", {51863}},
|
||||
{"ryanwilliams83", {512883}},
|
||||
{"50fffff", {704940}},
|
||||
{"jimmyhunter", {413152}},
|
||||
{"thedankchewbacca", {7994}},
|
||||
{"facere", {647747}},
|
||||
{"sanek1441322", {1060}},
|
||||
{"dazonker", {8452}},
|
||||
{"skace", {606457}},
|
||||
{"craigrood", {379762}},
|
||||
{"Raytastic", {43323}},
|
||||
{"joe32", {754373}},
|
||||
{"3615-Motiok", {61007}},
|
||||
{"Foux3k", {68874}},
|
||||
{"thomasdh", {471231}},
|
||||
{"Jhumekes", {915255}},
|
||||
{"porelos", {21942}},
|
||||
{"Doshing", {3851}},
|
||||
{"Jono4728", {221773}},
|
||||
{"niko27111__", {148908}},
|
||||
{"Brender", {159651}},
|
||||
{"die_ott", {320823}},
|
||||
{"ragegear", {14601}},
|
||||
{"putinss", {742350}},
|
||||
{"Rouden", {2049}},
|
||||
{"Rawutzikabutzi", {260868}},
|
||||
{"BobtheBuilder31", {6607}},
|
||||
{"DobryjPahom", {13063}},
|
||||
{"zachicalypse", {52208}},
|
||||
{"epmonk", {9824}},
|
||||
{"aniche", {113052}},
|
||||
{"flooxy", {776431}},
|
||||
{"ScrawBR", {13556}},
|
||||
{"Twitch93", {6449}},
|
||||
{"patus", {329613}},
|
||||
{"IamTzu", {534857}},
|
||||
{"mar123322", {223305}},
|
||||
{"Zatra", {142146}},
|
||||
{"tom1998", {10858}},
|
||||
{"Ogryz", {9091}},
|
||||
{"Jaazinh", {477083}},
|
||||
{"Allall", {94060}},
|
||||
{"K3ranid", {12666}},
|
||||
{"Krezal", {699526}},
|
||||
{"konstaqqq", {36644}},
|
||||
{"xloderunnerx", {1070}},
|
||||
{"SBCK", {656554}},
|
||||
{"aqsa101", {17909}},
|
||||
{"MasjazZ", {195206}},
|
||||
{"robertkruijt", {464606}},
|
||||
{"SomeRandomGuy5", {24269}},
|
||||
{"demon_453", {250333}},
|
||||
{"davidbutora", {569841}},
|
||||
{"tacirus", {19496}},
|
||||
{"redlabel", {552336}},
|
||||
{"reofarp", {101513}},
|
||||
{"zezoide", {13518}},
|
||||
{"TizianTitus", {4062}},
|
||||
{"gespenstdermaschine", {40454}},
|
||||
{"WiredMesh", {293228}},
|
||||
{"tyssa", {461988}},
|
||||
{"dadutchboy-1", {258638}},
|
||||
{"dorpdorp", {437808}},
|
||||
{"Nikkichu", {82169}},
|
||||
{"TheThane", {9511}},
|
||||
{"Diego9909", {8983}},
|
||||
{"TheWickedMaster", {393429}},
|
||||
{"ZiP84", {150636}},
|
||||
{"ciaociosky", {12404}},
|
||||
{"PerfectBlood", {6451}},
|
||||
{"vad7ik", {369106}},
|
||||
{"LeGourmand", {4833}},
|
||||
{"Diatomized", {151853}},
|
||||
{"minjun0611", {38503}},
|
||||
{"smithy9901", {13647}},
|
||||
{"Morhadov", {12746}},
|
||||
{"kucky81", {274973}},
|
||||
{"Roeno1997", {66054}},
|
||||
{"Piewdennis", {233061}},
|
||||
{"aledeludx", {155976}},
|
||||
{"Clythoris", {197769}},
|
||||
{"taroxyz", {154611}},
|
||||
{"killder", {25017}},
|
||||
{"abnoeh", {3258}},
|
||||
{"dpoba", {161306}},
|
||||
{"mewmew", {97688}},
|
||||
{"bl72", {139536}},
|
||||
{"molant228", {11555}},
|
||||
{"manstro011", {93639}},
|
||||
{"grundle", {82859}},
|
||||
{"dap643", {4295}},
|
||||
{"Evandot", {11439}},
|
||||
{"bednic", {6690}},
|
||||
{"ewjack", {29155}}
|
||||
}
|
||||
return playsession
|
15
session_data/UDVvQOwVIpqTPlwf.lua
Normal file
15
session_data/UDVvQOwVIpqTPlwf.lua
Normal file
@ -0,0 +1,15 @@
|
||||
local playsession = {
|
||||
{"Vavyman", {3644}},
|
||||
{"ChipSNSalsa", {1729}},
|
||||
{"TXL_PLAYZ", {234263}},
|
||||
{"Menander", {350994}},
|
||||
{"terradus", {70526}},
|
||||
{"trnila", {253435}},
|
||||
{"DviK", {1828}},
|
||||
{"JailsonBR", {158190}},
|
||||
{"ronnaldy", {188265}},
|
||||
{"cogito123", {92324}},
|
||||
{"Zredy", {52313}},
|
||||
{"neekoneeko", {4411}}
|
||||
}
|
||||
return playsession
|
63
session_data/UklJWERbpPIhsSuk.lua
Normal file
63
session_data/UklJWERbpPIhsSuk.lua
Normal file
@ -0,0 +1,63 @@
|
||||
local playsession = {
|
||||
{"FAChyba", {734009}},
|
||||
{"2kroketten", {2161}},
|
||||
{"shoniko", {30939}},
|
||||
{"MovingMike", {1372211}},
|
||||
{"exabyte", {857432}},
|
||||
{"christoharo", {2002}},
|
||||
{"dog80", {872253}},
|
||||
{"Lotek", {1285442}},
|
||||
{"Menander", {2231623}},
|
||||
{"Gerkiz", {446963}},
|
||||
{"Mrog_163", {701165}},
|
||||
{"cawsey21", {907754}},
|
||||
{"cogito123", {207149}},
|
||||
{"Roxen", {4640}},
|
||||
{"a_kid", {426426}},
|
||||
{"CmonMate497", {241320}},
|
||||
{"SmokuNoPico", {13192}},
|
||||
{"jrad", {76107}},
|
||||
{"Oveerlord92", {888204}},
|
||||
{"BuBBleButts", {2518}},
|
||||
{"Ybloc", {33791}},
|
||||
{"Liam101", {249866}},
|
||||
{"C4pT_H0oK", {745325}},
|
||||
{"Poo76765", {1230773}},
|
||||
{"RedPandaRam", {18474}},
|
||||
{"rlidwka", {26770}},
|
||||
{"simme11", {1143}},
|
||||
{"rocifier", {2119426}},
|
||||
{"Hitman451", {267831}},
|
||||
{"Psyclone", {5866}},
|
||||
{"Ed9210", {5199}},
|
||||
{"PogomanD", {1479052}},
|
||||
{"EigenMan", {1277598}},
|
||||
{"realDonaldTrump", {267273}},
|
||||
{"Cerwynr", {162499}},
|
||||
{"Factorian12321", {238972}},
|
||||
{"ronnaldy", {714299}},
|
||||
{"sqreek", {48127}},
|
||||
{"Crackedcoldone", {978}},
|
||||
{"ayahuasca23", {17867}},
|
||||
{"Artengineer", {20776}},
|
||||
{"ntweibogui", {9274}},
|
||||
{"Conan_Doyil", {1111607}},
|
||||
{"yukinyaa", {7499}},
|
||||
{"Atoms", {2051427}},
|
||||
{"Immo", {1068172}},
|
||||
{"RonnDlear", {8487}},
|
||||
{"Drumpe", {40689}},
|
||||
{"drill95", {870051}},
|
||||
{"samkin", {5727}},
|
||||
{"ampflog", {2088}},
|
||||
{"Nikkichu", {642708}},
|
||||
{"JailsonBR", {141142}},
|
||||
{"FranktheTank44", {1157}},
|
||||
{"Creator_Zhang", {135628}},
|
||||
{"Eliniale", {542621}},
|
||||
{"elvelazquez", {116439}},
|
||||
{"Piewdennis", {10105}},
|
||||
{"Allall", {142944}},
|
||||
{"KubskY", {5404}}
|
||||
}
|
||||
return playsession
|
37
session_data/UmXaOThhsPZcfaTx.lua
Normal file
37
session_data/UmXaOThhsPZcfaTx.lua
Normal file
@ -0,0 +1,37 @@
|
||||
local playsession = {
|
||||
{"MasjazZ", {377131}},
|
||||
{"Achskelmos", {395918}},
|
||||
{"halpenny911", {377178}},
|
||||
{"den4ik_reg", {290586}},
|
||||
{"gespenstdermaschine", {28348}},
|
||||
{"ReubyDoobie", {390890}},
|
||||
{"Fireball_Whiskey", {356500}},
|
||||
{"15944831778", {365734}},
|
||||
{"WildVine", {245189}},
|
||||
{"cubestar3626", {2419}},
|
||||
{"brl_chacal", {21009}},
|
||||
{"Captrain", {27567}},
|
||||
{"Pi83", {19504}},
|
||||
{"L3chu", {2621}},
|
||||
{"kor1106", {14711}},
|
||||
{"Tereble", {212549}},
|
||||
{"KingKolla", {138748}},
|
||||
{"huyj2k", {143684}},
|
||||
{"BadSpeiling", {185128}},
|
||||
{"xjohnson", {182938}},
|
||||
{"mechapanda", {132368}},
|
||||
{"Sjetil", {58920}},
|
||||
{"MisterFro9", {224}},
|
||||
{"Gas1", {159688}},
|
||||
{"Thatl1lGuy", {132545}},
|
||||
{"factoriogame", {22742}},
|
||||
{"Ybpro4", {121310}},
|
||||
{"Tigrok", {9370}},
|
||||
{"1337oxi", {5161}},
|
||||
{"Dimava", {57776}},
|
||||
{"ReneHSZ", {72939}},
|
||||
{"Peter9184", {38903}},
|
||||
{"Giatros", {21770}},
|
||||
{"krengdroid", {9366}}
|
||||
}
|
||||
return playsession
|
9
session_data/VRqIkBDmRXsPiHnA.lua
Normal file
9
session_data/VRqIkBDmRXsPiHnA.lua
Normal file
@ -0,0 +1,9 @@
|
||||
local playsession = {
|
||||
{"Menander", {35889}},
|
||||
{"Gizmodious", {1239}},
|
||||
{"dog80", {33191}},
|
||||
{"Angel116", {1822}},
|
||||
{"ChinaNumba1", {19420}},
|
||||
{"Impulse_doom", {7362}}
|
||||
}
|
||||
return playsession
|
8
session_data/WeMKsnFwzJeiETjZ.lua
Normal file
8
session_data/WeMKsnFwzJeiETjZ.lua
Normal file
@ -0,0 +1,8 @@
|
||||
local playsession = {
|
||||
{"rocifier", {107960}},
|
||||
{"Gas1", {8218}},
|
||||
{"Warbrain", {80551}},
|
||||
{"glukuzzz", {75590}},
|
||||
{"butterflux", {10834}}
|
||||
}
|
||||
return playsession
|
221
session_data/XQfiCKgBERKRpEGk.lua
Normal file
221
session_data/XQfiCKgBERKRpEGk.lua
Normal file
@ -0,0 +1,221 @@
|
||||
local playsession = {
|
||||
{"grundle", {1306926}},
|
||||
{"Timfee", {620324}},
|
||||
{"bl72", {717203}},
|
||||
{"Jhumekes", {645906}},
|
||||
{"tyssa", {1625660}},
|
||||
{"TheWickedMaster", {1952938}},
|
||||
{"flooxy", {600835}},
|
||||
{"TXL_PLAYZ", {60920}},
|
||||
{"manstro011", {1256352}},
|
||||
{"ReubyDoobie", {655950}},
|
||||
{"lord_kill", {359514}},
|
||||
{"ewjack", {931555}},
|
||||
{"ATAMAH", {130172}},
|
||||
{"Clythoris", {2207959}},
|
||||
{"dorpdorp", {600411}},
|
||||
{"Wobbleflopper", {208520}},
|
||||
{"Krezal", {1987106}},
|
||||
{"Whassup", {463690}},
|
||||
{"CallMeTaste", {128003}},
|
||||
{"thomasdh", {510995}},
|
||||
{"craigrood", {438394}},
|
||||
{"xjohnson", {465456}},
|
||||
{"Piewdennis", {498653}},
|
||||
{"porelos", {1880}},
|
||||
{"vad7ik", {1157227}},
|
||||
{"robertkruijt", {844486}},
|
||||
{"rykstar", {765264}},
|
||||
{"NIKITOS", {107930}},
|
||||
{"glukuzzz", {1350022}},
|
||||
{"lyman", {411957}},
|
||||
{"perfectwill", {1139786}},
|
||||
{"ben84", {1699202}},
|
||||
{"SBCK", {2185824}},
|
||||
{"Foof115", {216742}},
|
||||
{"davidbutora", {2107126}},
|
||||
{"Freddis", {15704}},
|
||||
{"putinss", {729582}},
|
||||
{"mewmew", {191793}},
|
||||
{"dpoba", {151620}},
|
||||
{"rantell", {249728}},
|
||||
{"AurelienG", {965084}},
|
||||
{"Galgas", {295851}},
|
||||
{"NMSL", {26630}},
|
||||
{"Sjetil", {212792}},
|
||||
{"minipini55", {424168}},
|
||||
{"mpecko10", {169047}},
|
||||
{"IPlayGames360", {4855}},
|
||||
{"MeggalBozale", {340010}},
|
||||
{"patus", {817159}},
|
||||
{"qeteq", {30249}},
|
||||
{"123", {2838}},
|
||||
{"BlueDragonner", {898828}},
|
||||
{"kevinma", {66955}},
|
||||
{"bhenoa", {668068}},
|
||||
{"Silverline", {6504}},
|
||||
{"Malik", {728019}},
|
||||
{"redlabel", {2052728}},
|
||||
{"BobtheBuilder31", {2929}},
|
||||
{"davidjarrao", {163912}},
|
||||
{"sage307", {44187}},
|
||||
{"IAmTog", {871626}},
|
||||
{"Nate66873", {2014920}},
|
||||
{"Quantaz", {84272}},
|
||||
{"Verticaliber", {11812}},
|
||||
{"czarny_3000", {29902}},
|
||||
{"kubickijj", {10540}},
|
||||
{"Jaazinh", {858867}},
|
||||
{"wesgidowen", {375922}},
|
||||
{"JaxFrost", {11724}},
|
||||
{"xubos", {199529}},
|
||||
{"Katian", {1172776}},
|
||||
{"Dominoscraft", {1153165}},
|
||||
{"marius86000", {2484}},
|
||||
{"untouchablez", {1297213}},
|
||||
{"bednic", {40465}},
|
||||
{"Altaric", {22280}},
|
||||
{"SDSBohrer", {300329}},
|
||||
{"sharpshot2566", {234990}},
|
||||
{"Scuideie-Guy", {53621}},
|
||||
{"Giz123", {7794}},
|
||||
{"exabyte", {13792}},
|
||||
{"renyu5023", {110154}},
|
||||
{"BLURE4L", {108166}},
|
||||
{"14nickel", {30669}},
|
||||
{"DobryjPahom", {59642}},
|
||||
{"neekoneeko", {91103}},
|
||||
{"Roeno1997", {112663}},
|
||||
{"Skybreaker", {5679}},
|
||||
{"S2", {11334}},
|
||||
{"skatordude", {28108}},
|
||||
{"Xetto", {14469}},
|
||||
{"NinjaKeks", {8625}},
|
||||
{"Fireflyghost", {2680}},
|
||||
{"SiGGi_93", {35645}},
|
||||
{"CueKen", {44039}},
|
||||
{"BoBTheDuck", {15496}},
|
||||
{"IrrelevantScrub", {163098}},
|
||||
{"drsynthesizer", {8537}},
|
||||
{"derwahnsinn", {2724}},
|
||||
{"psmlnikv", {71776}},
|
||||
{"Jackelol", {968498}},
|
||||
{"Icepickaxe", {179124}},
|
||||
{"fenderpuddy", {19488}},
|
||||
{"WiredMesh", {1602144}},
|
||||
{"StarLite", {3875}},
|
||||
{"BlaQkout", {26687}},
|
||||
{"adlmr", {265738}},
|
||||
{"HomelessCaptain", {141383}},
|
||||
{"Twilightninja458", {2551}},
|
||||
{"die_ott", {313412}},
|
||||
{"kean", {36036}},
|
||||
{"andrekoul", {310000}},
|
||||
{"Ilula2205", {20564}},
|
||||
{"Kakabututa", {7127}},
|
||||
{"Silicon", {17211}},
|
||||
{"Monza_ru", {57537}},
|
||||
{"SubSeven36", {645229}},
|
||||
{"captcougar1969", {1472845}},
|
||||
{"Dimava", {9669}},
|
||||
{"EPO666", {876024}},
|
||||
{"Catbert", {34613}},
|
||||
{"kaname2", {4569}},
|
||||
{"123", {2838}},
|
||||
{"Entropie", {91411}},
|
||||
{"Alexis4232", {7350}},
|
||||
{"upek", {32868}},
|
||||
{"Aspin", {19599}},
|
||||
{"Xhizor", {6026}},
|
||||
{"tickterd", {733969}},
|
||||
{"I_dream_of_corn", {1226210}},
|
||||
{"Croustibax", {30037}},
|
||||
{"rene_sc", {2809}},
|
||||
{"Nickvr628", {43596}},
|
||||
{"twinotter", {69961}},
|
||||
{"Akfula", {21009}},
|
||||
{"DevilR", {17865}},
|
||||
{"Didier-Sebastien", {93703}},
|
||||
{"Nate_the_gamer_24", {10537}},
|
||||
{"SGH", {99172}},
|
||||
{"jimmyhunter", {13106}},
|
||||
{"mrthetomato", {1151693}},
|
||||
{"TG_Gaming12358", {3462}},
|
||||
{"terradus", {918801}},
|
||||
{"PerryBot", {175862}},
|
||||
{"melancoleeca", {5349}},
|
||||
{"Olchidolchi", {35518}},
|
||||
{"Icaro747", {12902}},
|
||||
{"kacperrools", {3999}},
|
||||
{"prtnchad373", {6993}},
|
||||
{"NerZurg", {6470}},
|
||||
{"top69dog", {141269}},
|
||||
{"Corlin", {32340}},
|
||||
{"Rezz", {154631}},
|
||||
{"settan", {1212848}},
|
||||
{"NaftoGAZ", {129654}},
|
||||
{"Chapucillas", {198208}},
|
||||
{"d4vyjones", {3121}},
|
||||
{"Ajentorange", {19359}},
|
||||
{"DviK", {77459}},
|
||||
{"JinNJuice", {679285}},
|
||||
{"Crustus", {6328}},
|
||||
{"JoduWei", {72609}},
|
||||
{"godotex", {7362}},
|
||||
{"steelhero", {163970}},
|
||||
{"thedubub", {1073586}},
|
||||
{"Uncle_Ben", {6015}},
|
||||
{"junkythefreak", {51456}},
|
||||
{"Venator27", {53744}},
|
||||
{"SalmNephGrogAver", {6378}},
|
||||
{"Mithril_Ryder", {479833}},
|
||||
{"mario31274", {393325}},
|
||||
{"1337oxi", {35259}},
|
||||
{"15stathamt", {956983}},
|
||||
{"wsm", {29338}},
|
||||
{"Revar", {116201}},
|
||||
{"gravion2", {3922}},
|
||||
{"TNT_MAN1111", {359327}},
|
||||
{"tyce1234", {148956}},
|
||||
{"TeZwo", {19173}},
|
||||
{"genious97", {17052}},
|
||||
{"FingerFix", {20146}},
|
||||
{"Moistlos", {17355}},
|
||||
{"Tommy17", {8561}},
|
||||
{"rabenste", {422304}},
|
||||
{"sid123", {7672}},
|
||||
{"MRMemes", {47554}},
|
||||
{"halpenny911", {655942}},
|
||||
{"DNSGamer", {281485}},
|
||||
{"sd205521", {73340}},
|
||||
{"fredsnicker", {23602}},
|
||||
{"UltimateDolan", {135166}},
|
||||
{"Bokrug", {10991}},
|
||||
{"Delqvs", {71698}},
|
||||
{"vince527", {333558}},
|
||||
{"Kruv", {7123}},
|
||||
{"MathFR", {14019}},
|
||||
{"ETK03", {333436}},
|
||||
{"Peter9184", {105769}},
|
||||
{"Mavrick", {510068}},
|
||||
{"Quantum158", {2959}},
|
||||
{"cc1990310", {5613}},
|
||||
{"Gerkiz", {42397}},
|
||||
{"onyxinsanity", {27533}},
|
||||
{"Generalpluto3", {12052}},
|
||||
{"SomeRandomGuy5", {11302}},
|
||||
{"GoryGorge", {48070}},
|
||||
{"Geometrically", {121730}},
|
||||
{"CmdrRat", {76007}},
|
||||
{"kkook30", {34847}},
|
||||
{"Gas1", {287366}},
|
||||
{"Ekumo", {3598}},
|
||||
{"MacaroniFactor", {6029}},
|
||||
{"Giatros", {158759}},
|
||||
{"Thewarlockminer", {8029}},
|
||||
{"Qwicks", {118952}},
|
||||
{"mad58max", {98167}},
|
||||
{"ryanwilliams83", {21453}},
|
||||
{"kunnis", {3992}}
|
||||
}
|
||||
return playsession
|
11
session_data/XnZwvxfvchkKzlCY.lua
Normal file
11
session_data/XnZwvxfvchkKzlCY.lua
Normal file
@ -0,0 +1,11 @@
|
||||
local playsession = {
|
||||
{"Velguarder", {114901}},
|
||||
{"realDonaldTrump", {140329}},
|
||||
{"Giatros", {27570}},
|
||||
{"Volatile2015", {3080}},
|
||||
{"i-make-robots", {80975}},
|
||||
{"rocifier", {76599}},
|
||||
{"15944831778", {57684}},
|
||||
{"hj747371550", {12806}}
|
||||
}
|
||||
return playsession
|
11
session_data/YFwZknObJtKfpDyo.lua
Normal file
11
session_data/YFwZknObJtKfpDyo.lua
Normal file
@ -0,0 +1,11 @@
|
||||
local playsession = {
|
||||
{"tyce1234", {287953}},
|
||||
{"MovingMike", {245020}},
|
||||
{"johnluke93", {237294}},
|
||||
{"Delta124", {15081}},
|
||||
{"exabyte", {18017}},
|
||||
{"iceskaarj", {138364}},
|
||||
{"CommanderFrog", {53915}},
|
||||
{"supercuteboy123", {1492}}
|
||||
}
|
||||
return playsession
|
10
session_data/YhKxSuvwxMsSZnGk.lua
Normal file
10
session_data/YhKxSuvwxMsSZnGk.lua
Normal file
@ -0,0 +1,10 @@
|
||||
local playsession = {
|
||||
{"Krono", {71975}},
|
||||
{"Menander", {70659}},
|
||||
{"MovingMike", {67437}},
|
||||
{"PogomanD", {63892}},
|
||||
{"Hamyr", {63493}},
|
||||
{"BobtheBuilder31", {41152}},
|
||||
{"Galgas", {34595}}
|
||||
}
|
||||
return playsession
|
15
session_data/aIisCCMpVKulvVUg.lua
Normal file
15
session_data/aIisCCMpVKulvVUg.lua
Normal file
@ -0,0 +1,15 @@
|
||||
local playsession = {
|
||||
{"Menander", {92079}},
|
||||
{"cawsey21", {6271}},
|
||||
{"MrCube", {628}},
|
||||
{"SparzianII", {300155}},
|
||||
{"facere", {560}},
|
||||
{"4xBen", {214377}},
|
||||
{"Croustibax", {205656}},
|
||||
{"Podonkov", {987}},
|
||||
{"dazonker", {11275}},
|
||||
{"zarlo5899", {4372}},
|
||||
{"exabyte", {2861}},
|
||||
{"MisterBabou", {4473}}
|
||||
}
|
||||
return playsession
|
6
session_data/cslQwNOOHGobXAyN.lua
Normal file
6
session_data/cslQwNOOHGobXAyN.lua
Normal file
@ -0,0 +1,6 @@
|
||||
local playsession = {
|
||||
{"mewmew", {10107}},
|
||||
{"red11", {34953}},
|
||||
{"dragongod21", {22797}}
|
||||
}
|
||||
return playsession
|
178
session_data/dGOStIvhNIKnRdEF.lua
Normal file
178
session_data/dGOStIvhNIKnRdEF.lua
Normal file
@ -0,0 +1,178 @@
|
||||
local playsession = {
|
||||
{"mewmew", {572900}},
|
||||
{"larshp", {1361490}},
|
||||
{"sharpshot2566", {881505}},
|
||||
{"VincentMonster", {1167810}},
|
||||
{"Nemium", {1077648}},
|
||||
{"ZiP84", {159028}},
|
||||
{"Serennie", {640544}},
|
||||
{"Bokrug", {327105}},
|
||||
{"RonnDlear", {408178}},
|
||||
{"adlmr", {555552}},
|
||||
{"010110", {777468}},
|
||||
{"Zory", {1407506}},
|
||||
{"texanbred", {171871}},
|
||||
{"PipWinsAgain", {375361}},
|
||||
{"cogito123", {525794}},
|
||||
{"vvictor", {4583370}},
|
||||
{"Akhrem", {512916}},
|
||||
{"loutanifi", {2001723}},
|
||||
{"AsukaLangley", {165697}},
|
||||
{"ViCticus", {1223042}},
|
||||
{"Cat_Lord", {868402}},
|
||||
{"TeamKid", {3145}},
|
||||
{"halpenny911", {278287}},
|
||||
{"laizzeman", {2966875}},
|
||||
{"lantotol", {10797}},
|
||||
{"Felix61391", {4612}},
|
||||
{"Marwonline", {424016}},
|
||||
{"ManuelG", {92838}},
|
||||
{"xjohnson", {268176}},
|
||||
{"swic", {621049}},
|
||||
{"DviK", {2304546}},
|
||||
{"voodoo19811", {43410}},
|
||||
{"zumti", {39603}},
|
||||
{"elMoskvin", {802156}},
|
||||
{"thekev09", {90380}},
|
||||
{"NoDz550", {137408}},
|
||||
{"DeIuxe", {3220}},
|
||||
{"Kruv", {572950}},
|
||||
{"BravePotato", {13916}},
|
||||
{"Xoro", {5449}},
|
||||
{"14nickel", {4458}},
|
||||
{"niko27111__", {29111}},
|
||||
{"heypetray", {664824}},
|
||||
{"vad7ik", {5550}},
|
||||
{"dazonker", {11373}},
|
||||
{"Roxen", {254299}},
|
||||
{"raskl", {657241}},
|
||||
{"Delqvs", {472440}},
|
||||
{"CustomSocks", {135100}},
|
||||
{"vince527", {18433}},
|
||||
{"beranabus", {28683}},
|
||||
{"ragegear", {35876}},
|
||||
{"glxl", {191423}},
|
||||
{"imre9999", {145178}},
|
||||
{"xubos", {53243}},
|
||||
{"Kane.Nexus", {350382}},
|
||||
{"xPedion", {495951}},
|
||||
{"Wilk_680", {3973}},
|
||||
{"snoetje", {184087}},
|
||||
{"TheVanoq", {7371}},
|
||||
{"helpower2", {8385}},
|
||||
{"odopoboqo", {12886}},
|
||||
{"ETK03", {19218}},
|
||||
{"Superviviente", {27375}},
|
||||
{"WetSpaghett", {169105}},
|
||||
{"antuan309", {350499}},
|
||||
{"Bryce940", {4107}},
|
||||
{"SBCK", {1173330}},
|
||||
{"DKarma", {2891437}},
|
||||
{"LittleX", {37070}},
|
||||
{"REDgalko", {1596}},
|
||||
{"THE_ZUCCENING", {16091}},
|
||||
{"HighInFiberOptics", {9673}},
|
||||
{"ShakerOfSalt", {65237}},
|
||||
{"ralphmace", {9955}},
|
||||
{"wickskiracer", {1252030}},
|
||||
{"Dimava", {159557}},
|
||||
{"skace", {108275}},
|
||||
{"Creator_Zhang", {1533564}},
|
||||
{"tajemniczy_303", {4143}},
|
||||
{"hsxu", {8916}},
|
||||
{"trnila", {381204}},
|
||||
{"gryph", {140543}},
|
||||
{"TryonHD", {5600}},
|
||||
{"Ilula2205", {225740}},
|
||||
{"changaryyy", {33322}},
|
||||
{"RichardMNixon", {1232}},
|
||||
{"ThisIsMathias", {17898}},
|
||||
{"seeyorise", {3406}},
|
||||
{"CommanderFrog", {33461}},
|
||||
{"grundle", {7402}},
|
||||
{"quigro", {109188}},
|
||||
{"kucbus1989", {2336}},
|
||||
{"Kakabututa", {137324}},
|
||||
{"IAmTog", {4034}},
|
||||
{"Tracolix", {41555}},
|
||||
{"CrazyCrabEater", {633887}},
|
||||
{"Noxy83", {4252}},
|
||||
{"terradus", {2226818}},
|
||||
{"pigwithtach", {1426}},
|
||||
{"z903857322", {6406}},
|
||||
{"Tereble", {99563}},
|
||||
{"wekkka", {236084}},
|
||||
{"Dofolo", {8273}},
|
||||
{"red11", {1047266}},
|
||||
{"khlorghaal", {139106}},
|
||||
{"MTKRailroad", {9515}},
|
||||
{"Wiedrock", {6878}},
|
||||
{"redlabel", {4618331}},
|
||||
{"Tesslapoop", {30128}},
|
||||
{"JNinya", {3241}},
|
||||
{"bjoern1035", {6667}},
|
||||
{"Greifenstein", {3714}},
|
||||
{"Galgas", {29568}},
|
||||
{"lyman", {16650}},
|
||||
{"marius86000", {5204}},
|
||||
{"AkimHUN", {720570}},
|
||||
{"Artengineer", {4434293}},
|
||||
{"martastico", {4456}},
|
||||
{"TCP", {95984}},
|
||||
{"swisser", {409562}},
|
||||
{"CmdrRat", {478695}},
|
||||
{"lemarkiz", {16314}},
|
||||
{"Dominoscraft", {575625}},
|
||||
{"CrazyAmphibian", {3908}},
|
||||
{"dr_evil", {126024}},
|
||||
{"ZumbieHater", {3532}},
|
||||
{"huyj2k", {7349}},
|
||||
{"spencerk", {16562}},
|
||||
{"templarchon", {6955}},
|
||||
{"ARKANE77", {9574}},
|
||||
{"ReubyDoobie", {231599}},
|
||||
{"Maxboul", {6829}},
|
||||
{"Its_Pupper", {223355}},
|
||||
{"tmoneyfizzle", {61538}},
|
||||
{"TXL_PLAYZ", {313203}},
|
||||
{"i-make-robots", {1034424}},
|
||||
{"corbin9228", {19596}},
|
||||
{"JoshTW", {863519}},
|
||||
{"faggot123pro_rape", {5465}},
|
||||
{"Daveyboy80", {2431}},
|
||||
{"EricForce", {19716}},
|
||||
{"cage4313", {3057}},
|
||||
{"cowboygeeker", {1996}},
|
||||
{"closuure", {12405}},
|
||||
{"JiaoLH", {23557}},
|
||||
{"xod220714", {4627}},
|
||||
{"Ska-Dee", {29048}},
|
||||
{"EPO666", {1965}},
|
||||
{"MmMinus", {4544}},
|
||||
{"Parkouralvoil", {5242}},
|
||||
{"RoastedAppleTree", {215483}},
|
||||
{"ajicurry", {669809}},
|
||||
{"Ryp", {7194}},
|
||||
{"GarretShadow", {869797}},
|
||||
{"garewin", {576056}},
|
||||
{"Silverline", {4397}},
|
||||
{"reofarp", {23038}},
|
||||
{"SMikiS", {10541}},
|
||||
{"KloStein", {578578}},
|
||||
{"4xBen", {13839}},
|
||||
{"Mrog_163", {14491}},
|
||||
{"NewRemote", {333352}},
|
||||
{"_Mash_", {959832}},
|
||||
{"ayahuasca23", {6491}},
|
||||
{"yanfang8", {2659}},
|
||||
{"ZeroBeTaken", {17154}},
|
||||
{"factoder89", {176725}},
|
||||
{"sschippers", {17224}},
|
||||
{"JinNJuice", {43921}},
|
||||
{"fenderpuddy", {7345}},
|
||||
{"kag321", {80288}},
|
||||
{"KevinTheRed", {22410}},
|
||||
{"amadey18", {7972}},
|
||||
{"die_ott", {39458}}
|
||||
}
|
||||
return playsession
|
307
session_data/evqiQPIwATPWijqs.lua
Normal file
307
session_data/evqiQPIwATPWijqs.lua
Normal file
@ -0,0 +1,307 @@
|
||||
local playsession = {
|
||||
{"MontrealCrook", {708994}},
|
||||
{"dalindes", {454814}},
|
||||
{"backburn", {787190}},
|
||||
{"Maxfreez21", {1078203}},
|
||||
{"skatordude", {1257831}},
|
||||
{"Giatros", {1713092}},
|
||||
{"HardcoreRocco", {433845}},
|
||||
{"iReed", {3674641}},
|
||||
{"seeyorise", {1749344}},
|
||||
{"Miltion", {363374}},
|
||||
{"Soviet_Division", {6047}},
|
||||
{"Lastaustralian", {1922212}},
|
||||
{"huyj2k", {1807172}},
|
||||
{"SomeRandomGuy5", {42143}},
|
||||
{"Jhumekes", {20738}},
|
||||
{"Katian", {1122380}},
|
||||
{"vvictor", {153025}},
|
||||
{"butterflux", {434095}},
|
||||
{"Biobuur", {414022}},
|
||||
{"llwebb", {418959}},
|
||||
{"cage4313", {885607}},
|
||||
{"라인폰그람", {143312}},
|
||||
{"levmeowsky", {75018}},
|
||||
{"fuatcank", {2267611}},
|
||||
{"kundarsa", {668334}},
|
||||
{"xjohnson", {254103}},
|
||||
{"fiscch1", {118248}},
|
||||
{"skace", {642341}},
|
||||
{"Mr_T", {3223649}},
|
||||
{"ampflog", {71062}},
|
||||
{"Red_eyes87", {958856}},
|
||||
{"Daganoth", {111988}},
|
||||
{"raskl", {9735}},
|
||||
{"Amker", {15250}},
|
||||
{"EPO666", {1188456}},
|
||||
{"grundle", {1135955}},
|
||||
{"niko27111__", {820430}},
|
||||
{"terradus", {1182465}},
|
||||
{"facere", {2745650}},
|
||||
{"nans", {240871}},
|
||||
{"Xackk", {14714}},
|
||||
{"lthcweb", {5100}},
|
||||
{"cogito123", {645566}},
|
||||
{"okan009", {1077270}},
|
||||
{"Clythoris", {3399124}},
|
||||
{"stin7777", {5727}},
|
||||
{"putinss", {223780}},
|
||||
{"MagentaPuppy", {18377}},
|
||||
{"Tereble", {87840}},
|
||||
{"snaodrn", {55902}},
|
||||
{"Roxen", {50128}},
|
||||
{"TXL_PLAYZ", {337648}},
|
||||
{"Santa", {785062}},
|
||||
{"I_dream_of_corn", {691167}},
|
||||
{"Aldnoah5566", {1661503}},
|
||||
{"RonnDlear", {371645}},
|
||||
{"whiteday2jp", {293934}},
|
||||
{"keysersoyze", {777936}},
|
||||
{"andrekoul", {1013065}},
|
||||
{"JamieHolding", {386647}},
|
||||
{"50fffff", {1263546}},
|
||||
{"whollyspokes", {499236}},
|
||||
{"kutay25", {1020}},
|
||||
{"COOL-ITEM", {321024}},
|
||||
{"pakshtyz", {478625}},
|
||||
{"uruburei1", {161410}},
|
||||
{"cia3417", {8709}},
|
||||
{"zumti", {34250}},
|
||||
{"Masato1995", {3302}},
|
||||
{"bl72", {851957}},
|
||||
{"craigrood", {1016791}},
|
||||
{"philiprouthe", {1702}},
|
||||
{"Terarink", {4478956}},
|
||||
{"ReneHSZ", {125442}},
|
||||
{"YAMATO_Hajime", {257649}},
|
||||
{"Meredy", {43247}},
|
||||
{"loadover", {10303}},
|
||||
{"Preizhour", {282067}},
|
||||
{"timocb", {98745}},
|
||||
{"eekao", {3631}},
|
||||
{"dorpdorp", {1387670}},
|
||||
{"aniche", {123022}},
|
||||
{"marius86000", {638045}},
|
||||
{"TheWickedMaster", {3341381}},
|
||||
{"15944831778", {39388}},
|
||||
{"Zuro", {3023}},
|
||||
{"nibby_zero", {26925}},
|
||||
{"Bokrug", {41206}},
|
||||
{"KingKolla", {6222}},
|
||||
{"DviK", {26918}},
|
||||
{"killder", {10708}},
|
||||
{"adlmr", {312374}},
|
||||
{"firstandlast", {39496}},
|
||||
{"thedubub", {886926}},
|
||||
{"Killedkenny", {804354}},
|
||||
{"Piewdennis", {593348}},
|
||||
{"manstro011", {3261554}},
|
||||
{"firemelon", {96710}},
|
||||
{"Jackelol", {8168}},
|
||||
{"R5tr0", {50224}},
|
||||
{"Gerkiz", {18619}},
|
||||
{"Gaaza", {33667}},
|
||||
{"TheMightyToast", {34293}},
|
||||
{"IGotBaconSoda", {53285}},
|
||||
{"Aceriterium_A", {528}},
|
||||
{"BluePython", {204375}},
|
||||
{"NoDz550", {24979}},
|
||||
{"ChoiGyoungMin", {9731}},
|
||||
{"hizhkr", {99388}},
|
||||
{"redlabel", {102866}},
|
||||
{"Dilli", {49285}},
|
||||
{"Plawerth", {3290218}},
|
||||
{"MyNameIsBru", {48725}},
|
||||
{"LegionMammal978", {181646}},
|
||||
{"Poo76765", {391}},
|
||||
{"Serennie", {14665}},
|
||||
{"vexotoxin", {9923}},
|
||||
{"_Finley_", {768955}},
|
||||
{"thisisjack", {246901}},
|
||||
{"Felix61391", {354}},
|
||||
{"Jooey14", {3202214}},
|
||||
{"Ahimson", {9040}},
|
||||
{"S.L", {22392}},
|
||||
{"Sylphnir", {12569}},
|
||||
{"Roeno1997", {1113792}},
|
||||
{"PerutzUK", {124336}},
|
||||
{"Discuzting", {6158}},
|
||||
{"Axlsky", {41802}},
|
||||
{"Kattoor", {11253}},
|
||||
{"TheVanoq", {65643}},
|
||||
{"Cheeseftw", {25659}},
|
||||
{"JinNJuice", {220620}},
|
||||
{"Erusauron", {24508}},
|
||||
{"1234tv", {547994}},
|
||||
{"LEGALIZE", {155960}},
|
||||
{"Nickvr628", {240282}},
|
||||
{"Kyriak.os", {1990}},
|
||||
{"BoooooogieMan", {17150}},
|
||||
{"Nemek", {4933}},
|
||||
{"kunnis", {3072256}},
|
||||
{"Brender", {256524}},
|
||||
{"Kane.Nexus", {121001}},
|
||||
{"demon_453", {522}},
|
||||
{"xArthurZx", {22198}},
|
||||
{"FingerFix", {84549}},
|
||||
{"Schokobrot", {14963}},
|
||||
{"Tcheko", {60993}},
|
||||
{"eggho2301", {9892}},
|
||||
{"sing008767", {8293}},
|
||||
{"Foux3k", {15366}},
|
||||
{"elvelazquez", {26029}},
|
||||
{"ortega1", {18498}},
|
||||
{"MasterMind07", {14680}},
|
||||
{"best2", {150545}},
|
||||
{"glukuzzz", {255890}},
|
||||
{"IAmTog", {1192916}},
|
||||
{"codefish", {5124}},
|
||||
{"AIRZYC", {26391}},
|
||||
{"phlogservice", {99232}},
|
||||
{"xenodasein", {45232}},
|
||||
{"s0p", {16461}},
|
||||
{"JuanMore", {68142}},
|
||||
{"Matt_VA", {24392}},
|
||||
{"FilthyPranks", {39474}},
|
||||
{"R3fr3Sh", {1134967}},
|
||||
{"Whassup", {12535}},
|
||||
{"Dominik94", {20559}},
|
||||
{"MatoPlayz", {18054}},
|
||||
{"tajemniczy_303", {52774}},
|
||||
{"DEKCTEP", {6196}},
|
||||
{"onyxinsanity", {865018}},
|
||||
{"sdsadasd", {16438}},
|
||||
{"qst0", {19668}},
|
||||
{"Griever213", {7154}},
|
||||
{"Nivek3k", {505370}},
|
||||
{"adieclay", {294508}},
|
||||
{"thekev09", {115520}},
|
||||
{"tjql9856", {10153}},
|
||||
{"Zorky", {336460}},
|
||||
{"AurelienG", {597983}},
|
||||
{"chilldude.uk", {1764128}},
|
||||
{"beranabus", {234569}},
|
||||
{"ETK03", {82712}},
|
||||
{"REDgalko", {16887}},
|
||||
{"tonik08", {15147}},
|
||||
{"Nanoc-Awagode", {21090}},
|
||||
{"zaidka", {6503}},
|
||||
{"breitfuss99", {11540}},
|
||||
{"ColonelWill", {32895}},
|
||||
{"tyssa", {179752}},
|
||||
{"red11", {45867}},
|
||||
{"Orenji", {130826}},
|
||||
{"bjoern1035", {37971}},
|
||||
{"dmitrymk", {98660}},
|
||||
{"corbin9228", {182451}},
|
||||
{"KloStein", {120036}},
|
||||
{"Daveyboy80", {56076}},
|
||||
{"RashiNerha", {1700130}},
|
||||
{"Xenoman99", {355387}},
|
||||
{"Raziel23x", {12373}},
|
||||
{"Ajentorange", {39783}},
|
||||
{"ikeikeeng", {40512}},
|
||||
{"GeneralDisasters", {94279}},
|
||||
{"OmegaTitan177", {31891}},
|
||||
{"Thewarlockminer", {11486}},
|
||||
{"Monkeyboy1024", {208247}},
|
||||
{"davidbutora", {2041691}},
|
||||
{"bigoz72", {19308}},
|
||||
{"jetboy99", {251731}},
|
||||
{"rocker3212", {9265}},
|
||||
{"jRekkter", {16351}},
|
||||
{"CorruptTexas", {18355}},
|
||||
{"IroncladWaspbeast", {8094}},
|
||||
{"tysciman7", {18373}},
|
||||
{"Terros21", {12353}},
|
||||
{"Spiritmorin", {419050}},
|
||||
{"b311331", {13452}},
|
||||
{"perfectwill", {469955}},
|
||||
{"EricForce", {108245}},
|
||||
{"tickterd", {287167}},
|
||||
{"murderless", {159841}},
|
||||
{"7Haydz7", {54389}},
|
||||
{"orangenoise14", {54275}},
|
||||
{"tabanouch", {108788}},
|
||||
{"scrosby", {278924}},
|
||||
{"razerbeanz", {2107}},
|
||||
{"supernet2", {155464}},
|
||||
{"DdlyArcher", {283838}},
|
||||
{"ClunkyCluster", {15325}},
|
||||
{"TalosHD", {699}},
|
||||
{"wickskiracer", {92053}},
|
||||
{"Frosty360", {6498}},
|
||||
{"Acruid", {418919}},
|
||||
{"Mavrick", {61318}},
|
||||
{"wjx008", {15656}},
|
||||
{"Blushole", {1432}},
|
||||
{"alokman11", {2175}},
|
||||
{"lorrel", {217324}},
|
||||
{"Subcinericius", {408140}},
|
||||
{"SANCHERIZZO", {16311}},
|
||||
{"realkreep", {7814}},
|
||||
{"tribalthomas", {10016}},
|
||||
{"explodemode", {37300}},
|
||||
{"halpenny911", {612906}},
|
||||
{"MadClown01", {4874}},
|
||||
{"Nate66873", {1379314}},
|
||||
{"jackalex", {122118}},
|
||||
{"bens284", {20796}},
|
||||
{"-slug-", {160838}},
|
||||
{"roosterbrewster", {54222}},
|
||||
{"numberoverzero", {90133}},
|
||||
{"marcotyan", {7154}},
|
||||
{"odopoboqo", {238197}},
|
||||
{"Timfee", {109352}},
|
||||
{"lyman", {89305}},
|
||||
{"SaintAodhan", {58459}},
|
||||
{"violetuniverse", {4732}},
|
||||
{"Mrog_163", {34105}},
|
||||
{"IamTzu", {767273}},
|
||||
{"abnoeh", {246998}},
|
||||
{"dazonker", {18247}},
|
||||
{"vad7ik", {291561}},
|
||||
{"Farglon", {18359}},
|
||||
{"SuperTramp", {9803}},
|
||||
{"Ryp", {38798}},
|
||||
{"Thoren", {28675}},
|
||||
{"TryonHD", {14049}},
|
||||
{"PotatoDuckLord", {4227}},
|
||||
{"kkook30", {3481}},
|
||||
{"Grajowy", {3912}},
|
||||
{"Silverline", {5185}},
|
||||
{"TurtleLiquidz", {6251}},
|
||||
{"maxim67899", {20214}},
|
||||
{"lord_kill", {13176}},
|
||||
{"p0p3", {11153}},
|
||||
{"argbla", {444878}},
|
||||
{"Bennie", {3181}},
|
||||
{"Harcker", {20236}},
|
||||
{"ayahuasca23", {383940}},
|
||||
{"ksb4145", {10403}},
|
||||
{"Icepickaxe", {15426}},
|
||||
{"Exxe", {9789}},
|
||||
{"StarLite", {39435}},
|
||||
{"safriq", {224143}},
|
||||
{"Dysonhive", {17575}},
|
||||
{"TykiMikkk", {68502}},
|
||||
{"pigwithtach", {71541}},
|
||||
{"kag321", {4699}},
|
||||
{"Nefinite", {422}},
|
||||
{"legendary_00", {2812}},
|
||||
{"templarchon", {7934}},
|
||||
{"wangrx92263", {7134}},
|
||||
{"BILLCIPHER2005_83", {28997}},
|
||||
{"RedPandaRam", {55717}},
|
||||
{"symbiotyk", {29842}},
|
||||
{"Tomot2203", {1239}},
|
||||
{"PipWinsAgain", {54905}},
|
||||
{"14nickel", {43226}},
|
||||
{"Mpmpmpmp", {29736}},
|
||||
{"BattleHut", {1391}},
|
||||
{"natto21", {4271}},
|
||||
{"CommanderFrog", {22541}},
|
||||
{"xPedion", {18704}},
|
||||
{"technical", {7939}}
|
||||
}
|
||||
return playsession
|
@ -3,19 +3,19 @@ local playsession = {
|
||||
{"0icke0", {1877842}},
|
||||
{"huyj2k", {803495}},
|
||||
{"cogito123", {885292}},
|
||||
{"WiredMesh", {3313733}},
|
||||
{"WiredMesh", {4300043}},
|
||||
{"COOL-ITEM", {518871}},
|
||||
{"Gundex", {462253}},
|
||||
{"HardcoreRocco", {107704}},
|
||||
{"Silverline", {17953}},
|
||||
{"perfectwill", {2746203}},
|
||||
{"perfectwill", {2753413}},
|
||||
{"craigrood", {107149}},
|
||||
{"Giatros", {1875853}},
|
||||
{"Giatros", {1886776}},
|
||||
{"XaLpHa1989", {2482}},
|
||||
{"EminentMass", {262173}},
|
||||
{"grundle", {3173838}},
|
||||
{"rabenste", {1379181}},
|
||||
{"IAmTog", {3441071}},
|
||||
{"grundle", {3335754}},
|
||||
{"rabenste", {1380798}},
|
||||
{"IAmTog", {4126916}},
|
||||
{"ZaPer_RSA", {2135473}},
|
||||
{"Duchesko", {36194}},
|
||||
{"lulu85160", {463871}},
|
||||
@ -23,10 +23,10 @@ local playsession = {
|
||||
{"AIRZYC", {1056454}},
|
||||
{"ZiP84", {629635}},
|
||||
{"mikeholmes", {7079}},
|
||||
{"illmaren", {3063921}},
|
||||
{"illmaren", {4072894}},
|
||||
{"bluekigh", {383023}},
|
||||
{"Pi83", {45476}},
|
||||
{"LoicB", {3469368}},
|
||||
{"LoicB", {3943986}},
|
||||
{"Soviet_Division", {504273}},
|
||||
{"heekyo", {409403}},
|
||||
{"settan", {1271888}},
|
||||
@ -42,11 +42,11 @@ local playsession = {
|
||||
{"PerryBot", {47352}},
|
||||
{"Unknowned", {5162}},
|
||||
{"beranabus", {655449}},
|
||||
{"mcschnee", {1447346}},
|
||||
{"mcschnee", {1626914}},
|
||||
{"vvictor", {114957}},
|
||||
{"tyssa", {2098718}},
|
||||
{"tyssa", {2245129}},
|
||||
{"Brender", {522531}},
|
||||
{"mewmew", {425154}},
|
||||
{"mewmew", {438274}},
|
||||
{"lv.inspire", {5143}},
|
||||
{"Dik42", {11898}},
|
||||
{"l_Diego_l", {8639}},
|
||||
@ -60,25 +60,25 @@ local playsession = {
|
||||
{"Nate_the_gamer_24", {351928}},
|
||||
{"Turumiki", {12890}},
|
||||
{"mastah_mind", {1107}},
|
||||
{"Dominoscraft", {2586371}},
|
||||
{"TXL_PLAYZ", {1561451}},
|
||||
{"gespenstdermaschine", {1178499}},
|
||||
{"Dominoscraft", {2798309}},
|
||||
{"TXL_PLAYZ", {1844733}},
|
||||
{"gespenstdermaschine", {1213279}},
|
||||
{"BlainD", {153384}},
|
||||
{"Grim-Static", {17110}},
|
||||
{"Dwosky", {51627}},
|
||||
{"Serennie", {227709}},
|
||||
{"Serennie", {259510}},
|
||||
{"KloStein", {17432}},
|
||||
{"g.w.a.c.a.", {1763806}},
|
||||
{"g.w.a.c.a.", {1769966}},
|
||||
{"Fexx", {3166}},
|
||||
{"Dimava", {24345}},
|
||||
{"Fingerdash", {12120}},
|
||||
{"BieneMajaR3turns", {600006}},
|
||||
{"fandoce", {19770}},
|
||||
{"ewjack", {1777331}},
|
||||
{"ewjack", {1786235}},
|
||||
{"Wobbleflopper", {12951}},
|
||||
{"Abird", {2133468}},
|
||||
{"Abird", {2682530}},
|
||||
{"oliv5456", {7512}},
|
||||
{"twinotter", {3707078}},
|
||||
{"twinotter", {4669826}},
|
||||
{"farazkey", {689523}},
|
||||
{"sd3560531", {8751}},
|
||||
{"aniche", {518483}},
|
||||
@ -87,7 +87,7 @@ local playsession = {
|
||||
{"NyyppaDude", {17256}},
|
||||
{"ryan_gregson2000", {315531}},
|
||||
{"Steevouille", {22492}},
|
||||
{"dorpdorp", {155087}},
|
||||
{"dorpdorp", {192543}},
|
||||
{"KingZeothh", {7088}},
|
||||
{"samrrr", {11601}},
|
||||
{"STBio", {10950}},
|
||||
@ -98,29 +98,29 @@ local playsession = {
|
||||
{"VanHate", {5426}},
|
||||
{"basti233", {4969}},
|
||||
{"Bluestripes", {823192}},
|
||||
{"davidbutora", {1809135}},
|
||||
{"davidbutora", {2420330}},
|
||||
{"corbin9228", {1240931}},
|
||||
{"Jahoda_Swag", {5653}},
|
||||
{"halpenny911", {1228737}},
|
||||
{"halpenny911", {1479400}},
|
||||
{"Grubbegrabben", {6114}},
|
||||
{"Nilsi", {61219}},
|
||||
{"yettices", {4885}},
|
||||
{"kuba_mar", {939179}},
|
||||
{"subv3rsiv3", {379396}},
|
||||
{"subv3rsiv3", {381333}},
|
||||
{"nmann9517", {11301}},
|
||||
{"kunnis", {1059916}},
|
||||
{"kunnis", {1656679}},
|
||||
{"zirkum", {420}},
|
||||
{"MeggalBozale", {178930}},
|
||||
{"Tommy17", {97099}},
|
||||
{"NextIdea", {44110}},
|
||||
{"JinNJuice", {157176}},
|
||||
{"JinNJuice", {755626}},
|
||||
{"Vespasia", {133597}},
|
||||
{"whollyspokes", {241192}},
|
||||
{"whollyspokes", {563645}},
|
||||
{"YAMATO_Hajime", {16734}},
|
||||
{"glukuzzz", {142376}},
|
||||
{"glukuzzz", {172665}},
|
||||
{"Creator_Zhang", {991}},
|
||||
{"InnicintChickin", {24640}},
|
||||
{"wesgidowen", {132989}},
|
||||
{"wesgidowen", {390901}},
|
||||
{"NIKEEE", {34316}},
|
||||
{"Sovereign9000", {110864}},
|
||||
{"Finguh3232", {11648}},
|
||||
@ -128,7 +128,7 @@ local playsession = {
|
||||
{"semiotto", {11475}},
|
||||
{"JethroWM", {5740}},
|
||||
{"Roxen", {2923}},
|
||||
{"WillyMF1", {41686}},
|
||||
{"WillyMF1", {59864}},
|
||||
{"thedubub", {1158848}},
|
||||
{"Elrael", {508709}},
|
||||
{"FredSumper23", {34457}},
|
||||
@ -169,35 +169,35 @@ local playsession = {
|
||||
{"Daveyboy80", {3511}},
|
||||
{"CallMeTaste", {1691472}},
|
||||
{"SomeRandomGuy5", {38061}},
|
||||
{"onyxinsanity", {47588}},
|
||||
{"onyxinsanity", {54086}},
|
||||
{"Dichromium", {1700317}},
|
||||
{"flooxy", {75438}},
|
||||
{"flooxy", {140143}},
|
||||
{"steelhero", {53359}},
|
||||
{"DKarma", {27555}},
|
||||
{"DKarma", {34911}},
|
||||
{"pjotir", {28643}},
|
||||
{"epicsmokey", {5047}},
|
||||
{"umbrax", {51803}},
|
||||
{"red11", {429392}},
|
||||
{"red11", {929320}},
|
||||
{"tabanouch", {9416}},
|
||||
{"pickles28", {20821}},
|
||||
{"pickles28", {28283}},
|
||||
{"wraith321", {6193}},
|
||||
{"gynox", {28673}},
|
||||
{"qjamsniper", {13562}},
|
||||
{"Xander91", {9070}},
|
||||
{"downsallaround", {114303}},
|
||||
{"obisan", {95744}},
|
||||
{"Achskelmos", {1953010}},
|
||||
{"Achskelmos", {3544300}},
|
||||
{"Gerkiz", {104973}},
|
||||
{"zwierzak40", {1742}},
|
||||
{"Voety", {3449}},
|
||||
{"aegis549", {67774}},
|
||||
{"frasersuther", {45906}},
|
||||
{"Jalil29", {1622163}},
|
||||
{"Jalil29", {2028119}},
|
||||
{"pietoday", {2201}},
|
||||
{"tmoneyfizzle", {90971}},
|
||||
{"iceskaarj", {164297}},
|
||||
{"I_dream_of_corn", {56119}},
|
||||
{"Banji", {206034}},
|
||||
{"I_dream_of_corn", {101593}},
|
||||
{"Banji", {559489}},
|
||||
{"z903857322", {8139}},
|
||||
{"TryonHD", {23367}},
|
||||
{"fensoft", {17885}},
|
||||
@ -222,7 +222,7 @@ local playsession = {
|
||||
{"KiloG", {13319}},
|
||||
{"qeteq", {31971}},
|
||||
{"3061867813", {5136}},
|
||||
{"cpcp1998", {314307}},
|
||||
{"cpcp1998", {433841}},
|
||||
{"LegionMammal978", {147976}},
|
||||
{"kkook30", {153269}},
|
||||
{"levmeowsky", {15037}},
|
||||
@ -238,7 +238,7 @@ local playsession = {
|
||||
{"wookpower", {11475}},
|
||||
{"TigerTatas", {7864}},
|
||||
{"phocheeky", {230}},
|
||||
{"game54188", {1432}},
|
||||
{"game54188", {4945}},
|
||||
{"Mr_T", {945565}},
|
||||
{"supercuteboy123", {39809}},
|
||||
{"lyman", {27908}},
|
||||
@ -285,12 +285,32 @@ local playsession = {
|
||||
{"surpreme_mett", {1910}},
|
||||
{"brftjx", {3766}},
|
||||
{"zumti", {3679}},
|
||||
{"progman", {25599}},
|
||||
{"Progman", {26975}},
|
||||
{"Corlin", {22361}},
|
||||
{"Roeno1997", {27255}},
|
||||
{"Souliflame", {5449}},
|
||||
{"sto0rmy", {16538}},
|
||||
{"Maxfreez21", {10379}},
|
||||
{"ShroodXD", {2329}}
|
||||
{"ShroodXD", {2329}},
|
||||
{"Galgas", {5827}},
|
||||
{"MaFiX", {8691}},
|
||||
{"SmurfSlinger", {3206}},
|
||||
{"omikaa", {6353}},
|
||||
{"14nickel", {29863}},
|
||||
{"MaZeeT", {147595}},
|
||||
{"Chevalier1200", {23580}},
|
||||
{"Wyldd", {11683}},
|
||||
{"7Haydz7", {216829}},
|
||||
{"demon_453", {330198}},
|
||||
{"xiaoshui05", {14801}},
|
||||
{"SubSeven36", {29614}},
|
||||
{"i-make-robots", {199484}},
|
||||
{"dxaero", {12438}},
|
||||
{"vedolv", {308430}},
|
||||
{"min999", {2657}},
|
||||
{"zemram", {171105}},
|
||||
{"niko27111__", {51229}},
|
||||
{"flame_Sla", {3681}},
|
||||
{"MontrealCrook", {23912}}
|
||||
}
|
||||
return playsession
|
8
session_data/fIYLYPsgAHyNjIPy.lua
Normal file
8
session_data/fIYLYPsgAHyNjIPy.lua
Normal file
@ -0,0 +1,8 @@
|
||||
local playsession = {
|
||||
{"mewmew", {253}},
|
||||
{"caschque", {70947}},
|
||||
{"Reym-Koch", {66627}},
|
||||
{"perfectwill", {47461}},
|
||||
{"crazyguy2049", {5212}}
|
||||
}
|
||||
return playsession
|
7
session_data/gBrrpjdFngXFsjxv.lua
Normal file
7
session_data/gBrrpjdFngXFsjxv.lua
Normal file
@ -0,0 +1,7 @@
|
||||
local playsession = {
|
||||
{"MovingMike", {575753}},
|
||||
{"PogomanD", {14198}},
|
||||
{"Krono", {132241}},
|
||||
{"Menander", {28549}}
|
||||
}
|
||||
return playsession
|
46
session_data/gIiOInRGIwnqSTkb.lua
Normal file
46
session_data/gIiOInRGIwnqSTkb.lua
Normal file
@ -0,0 +1,46 @@
|
||||
local playsession = {
|
||||
{"mewmew", {546109}},
|
||||
{"Idefix88", {502165}},
|
||||
{"vvictor", {1899942}},
|
||||
{"squarebe", {188734}},
|
||||
{"BookaaGaming", {350279}},
|
||||
{"1qwertyu8", {10256}},
|
||||
{"kevinma", {1706}},
|
||||
{"Shinhan", {97727}},
|
||||
{"Tereble", {672668}},
|
||||
{"Brender", {10379}},
|
||||
{"qwert33", {642880}},
|
||||
{"TXL_PLAYZ", {99775}},
|
||||
{"snapboogie", {12582}},
|
||||
{"MutantMeatball", {16883}},
|
||||
{"jbox1", {435574}},
|
||||
{"factoder89", {578846}},
|
||||
{"obisan", {12497}},
|
||||
{"un1x0r", {12862}},
|
||||
{"elvelazquez", {254371}},
|
||||
{"Volatile2015", {6618}},
|
||||
{"tykak", {2334}},
|
||||
{"Zory", {75438}},
|
||||
{"abnoeh", {8110}},
|
||||
{"ersu", {395661}},
|
||||
{"Pandamaster", {6100}},
|
||||
{"Arillish", {11601}},
|
||||
{"Soviet_Division", {244780}},
|
||||
{"Dr.MoonShine", {91398}},
|
||||
{"urfutrgf", {926964}},
|
||||
{"Catbert", {6799}},
|
||||
{"LymBAOBEI", {20148}},
|
||||
{"Serennie", {3384}},
|
||||
{"Endzone", {4718}},
|
||||
{"Jhumekes", {5200}},
|
||||
{"Croustibax", {132183}},
|
||||
{"Nemium", {5512}},
|
||||
{"loutanifi", {87154}},
|
||||
{"Ed9210", {7533}},
|
||||
{"red11", {245195}},
|
||||
{"Reyand", {3157}},
|
||||
{"lukasz_liberda", {4625}},
|
||||
{"DaniaBakai", {6237}},
|
||||
{"AhalaiMahalai", {92608}}
|
||||
}
|
||||
return playsession
|
17
session_data/hATbSUKmpPtzJVOt.lua
Normal file
17
session_data/hATbSUKmpPtzJVOt.lua
Normal file
@ -0,0 +1,17 @@
|
||||
local playsession = {
|
||||
{"Krono", {463921}},
|
||||
{"PogomanD", {503708}},
|
||||
{"MovingMike", {502151}},
|
||||
{"realDonaldTrump", {393679}},
|
||||
{"Nehkko", {490}},
|
||||
{"Twilightninja458", {10791}},
|
||||
{"Factorian12321", {19697}},
|
||||
{"ben_fun", {175385}},
|
||||
{"rocifier", {218190}},
|
||||
{"civilia", {6189}},
|
||||
{"Creampielord", {72396}},
|
||||
{"MeggalBozale", {105386}},
|
||||
{"Achskelmos", {82042}},
|
||||
{"johnluke93", {864}}
|
||||
}
|
||||
return playsession
|
@ -1,9 +1,9 @@
|
||||
local playsession = {
|
||||
{"mewmew", {1988062}},
|
||||
{"westbroma", {12061592}},
|
||||
{"flooxy", {6517625}},
|
||||
{"flooxy", {6521776}},
|
||||
{"Zorky", {4147724}},
|
||||
{"Akhrem", {11528577}},
|
||||
{"Akhrem", {11871579}},
|
||||
{"dpoba", {5510457}},
|
||||
{"jack9761", {101614}},
|
||||
{"NekoBaron", {327793}},
|
||||
@ -13,10 +13,10 @@ local playsession = {
|
||||
{"morcup", {27359}},
|
||||
{"adieclay", {528480}},
|
||||
{"KevinTheRed", {33668}},
|
||||
{"Phil535", {1771091}},
|
||||
{"snoetje", {7032278}},
|
||||
{"Phil535", {2130410}},
|
||||
{"snoetje", {7043374}},
|
||||
{"CarlosDiamanti", {63332}},
|
||||
{"Meredy", {76741}},
|
||||
{"Meredy", {101075}},
|
||||
{"wilm", {124984}},
|
||||
{"userguide", {109596}}
|
||||
}
|
||||
|
17
session_data/indrlIdHzqHVFaZB.lua
Normal file
17
session_data/indrlIdHzqHVFaZB.lua
Normal file
@ -0,0 +1,17 @@
|
||||
local playsession = {
|
||||
{"gespenstdermaschine", {1564}},
|
||||
{"ReubyDoobie", {244460}},
|
||||
{"Achskelmos", {245977}},
|
||||
{"wesgidowen", {227320}},
|
||||
{"slikasandr", {160906}},
|
||||
{"dorpdorp", {92968}},
|
||||
{"Qwicks", {144313}},
|
||||
{"xjohnson", {134175}},
|
||||
{"MasjazZ", {129381}},
|
||||
{"mechapanda", {25678}},
|
||||
{"Jonahqwerty14", {11290}},
|
||||
{"halpenny911", {30048}},
|
||||
{"Toreu", {24502}},
|
||||
{"den4ik_reg", {17712}}
|
||||
}
|
||||
return playsession
|
146
session_data/jTFVuqoMaOeNvWqF.lua
Normal file
146
session_data/jTFVuqoMaOeNvWqF.lua
Normal file
@ -0,0 +1,146 @@
|
||||
local playsession = {
|
||||
{"manstro011", {2411972}},
|
||||
{"TheWickedMaster", {2410788}},
|
||||
{"andrekoul", {1031387}},
|
||||
{"Jackelol", {75826}},
|
||||
{"Jhumekes", {491605}},
|
||||
{"Clythoris", {1547337}},
|
||||
{"ben84", {1864031}},
|
||||
{"SubSeven36", {427765}},
|
||||
{"vedolv", {784827}},
|
||||
{"Entropie", {1669017}},
|
||||
{"Silicon", {1145473}},
|
||||
{"kaimix", {1225866}},
|
||||
{"mahury", {1318}},
|
||||
{"Averest", {781902}},
|
||||
{"perfectwill", {425529}},
|
||||
{"dragongod21", {70975}},
|
||||
{"moqart", {2087}},
|
||||
{"facere", {264976}},
|
||||
{"RonnDlear", {873406}},
|
||||
{"jer35694", {407132}},
|
||||
{"FingerFix", {1093076}},
|
||||
{"vvictor", {335746}},
|
||||
{"lord_kill", {376962}},
|
||||
{"dorpdorp", {514946}},
|
||||
{"terradus", {662725}},
|
||||
{"KloStein", {57421}},
|
||||
{"kamaboko190", {363192}},
|
||||
{"Stejsky", {46893}},
|
||||
{"mewmew", {793936}},
|
||||
{"pakshtyz", {747447}},
|
||||
{"RudolfDiesel", {92243}},
|
||||
{"halpenny911", {2306061}},
|
||||
{"Ermans", {7690}},
|
||||
{"Kamikatze", {94142}},
|
||||
{"Unwichtig", {1375897}},
|
||||
{"IamTzu", {569949}},
|
||||
{"HyperTrancer", {665800}},
|
||||
{"changaryyy", {634445}},
|
||||
{"BlueDragonner", {169377}},
|
||||
{"Dwosky", {70661}},
|
||||
{"SBCK", {2273126}},
|
||||
{"cogito123", {88941}},
|
||||
{"niko27111__", {89886}},
|
||||
{"fact10", {23891}},
|
||||
{"Jaazinh", {795400}},
|
||||
{"Kyte", {26876}},
|
||||
{"Preizhour", {706374}},
|
||||
{"LuchokPlay", {148735}},
|
||||
{"vince527", {425117}},
|
||||
{"Giatros", {326989}},
|
||||
{"I_dream_of_corn", {44167}},
|
||||
{"rykstar", {182242}},
|
||||
{"15stathamt", {1684167}},
|
||||
{"Duchesko", {354911}},
|
||||
{"Alexis4232", {1007370}},
|
||||
{"lyman", {780649}},
|
||||
{"die_ott", {968366}},
|
||||
{"Gas1", {57985}},
|
||||
{"Reyand", {6815}},
|
||||
{"TXL_PLAYZ", {80473}},
|
||||
{"bl72", {447085}},
|
||||
{"TheCandleMan", {148839}},
|
||||
{"Geometrically", {1180895}},
|
||||
{"rantell", {437461}},
|
||||
{"Matsemann08", {7854}},
|
||||
{"Brender", {77079}},
|
||||
{"taroxyz", {576931}},
|
||||
{"Disver", {37092}},
|
||||
{"Cheeseftw", {44248}},
|
||||
{"xodud1068", {112329}},
|
||||
{"kunnis", {597869}},
|
||||
{"ddas", {7891}},
|
||||
{"ZIGA", {17771}},
|
||||
{"lexa777", {29033}},
|
||||
{"amferes", {6480}},
|
||||
{"Dassy", {251564}},
|
||||
{"sid123", {10390}},
|
||||
{"Bryce940", {2744}},
|
||||
{"Jaskarox", {80972}},
|
||||
{"WiredMesh", {1130237}},
|
||||
{"DaenWaek", {351731}},
|
||||
{"adlmr", {382527}},
|
||||
{"ZeroBeTaken", {10082}},
|
||||
{"AurelienG", {1010809}},
|
||||
{"IAmTog", {349439}},
|
||||
{"hasuthika", {28966}},
|
||||
{"codefish", {16583}},
|
||||
{"Krul", {34941}},
|
||||
{"joe32", {956629}},
|
||||
{"Avelix", {11399}},
|
||||
{"glukuzzz", {993270}},
|
||||
{"Akhrem", {6218}},
|
||||
{"Nikkichu", {206863}},
|
||||
{"Mavrick", {4070}},
|
||||
{"uruburei1", {1640943}},
|
||||
{"01capitain", {10873}},
|
||||
{"14nickel", {593525}},
|
||||
{"medicdude", {2016}},
|
||||
{"GoryGorge", {3169}},
|
||||
{"kevinma", {18543}},
|
||||
{"KampetLP", {17323}},
|
||||
{"Punchyyy", {14867}},
|
||||
{"obamayomomma", {112936}},
|
||||
{"tribalthomas", {70056}},
|
||||
{"Zachtekrullen", {2634}},
|
||||
{"Nivek3k", {109323}},
|
||||
{"Kxam", {731374}},
|
||||
{"Water_Moon", {10166}},
|
||||
{"Brathahn", {10740}},
|
||||
{"xjohnson", {735148}},
|
||||
{"Velguarder", {623695}},
|
||||
{"Artengineer", {1282424}},
|
||||
{"DrkgoonXV", {70555}},
|
||||
{"BrokeAsAJoke", {671101}},
|
||||
{"hackguy", {3096}},
|
||||
{"zachicalypse", {55651}},
|
||||
{"Roeno1997", {247898}},
|
||||
{"Chapucillas", {109972}},
|
||||
{"Katian", {133256}},
|
||||
{"huashengmaodou", {91070}},
|
||||
{"Terarink", {928112}},
|
||||
{"JinNJuice", {744493}},
|
||||
{"DmN1314", {29541}},
|
||||
{"soporis", {401550}},
|
||||
{"longda88", {10547}},
|
||||
{"tyssa", {425302}},
|
||||
{"unklesam9000", {5868}},
|
||||
{"ETK03", {331746}},
|
||||
{"sergd14", {69737}},
|
||||
{"Zeemon1", {114664}},
|
||||
{"DviK", {32267}},
|
||||
{"JasonThePsychopath", {86728}},
|
||||
{"Vatticson", {42879}},
|
||||
{"CallMeTaste", {21197}},
|
||||
{"MaZeeT", {357672}},
|
||||
{"Dominoscraft", {38875}},
|
||||
{"SnerkTK", {12171}},
|
||||
{"MsT10a", {99265}},
|
||||
{"ronnaldy", {192517}},
|
||||
{"nateskate777", {2028}},
|
||||
{"Foibleson", {44086}},
|
||||
{"IMI4tth3w", {77518}},
|
||||
{"Roofon", {3600}}
|
||||
}
|
||||
return playsession
|
11
session_data/jpGZbLYFeGiYCBtx.lua
Normal file
11
session_data/jpGZbLYFeGiYCBtx.lua
Normal file
@ -0,0 +1,11 @@
|
||||
local playsession = {
|
||||
{"MeggalBozale", {142041}},
|
||||
{"PogomanD", {69134}},
|
||||
{"rocifier", {129203}},
|
||||
{"aceofshovels", {4047}},
|
||||
{"15944831778", {35933}},
|
||||
{"sadler1321", {86480}},
|
||||
{"Menander", {85931}},
|
||||
{"realDonaldTrump", {58813}}
|
||||
}
|
||||
return playsession
|
10
session_data/jybKFVrHEwNlddWM.lua
Normal file
10
session_data/jybKFVrHEwNlddWM.lua
Normal file
@ -0,0 +1,10 @@
|
||||
local playsession = {
|
||||
{"ronnaldy", {34658}},
|
||||
{"iceskaarj", {48078}},
|
||||
{"MovingMike", {326324}},
|
||||
{"Podonkov", {309}},
|
||||
{"PogomanD", {2144}},
|
||||
{"Ed9210", {1239}},
|
||||
{"tyce1234", {15884}}
|
||||
}
|
||||
return playsession
|
15
session_data/lFwHMxHpaqVjZYRt.lua
Normal file
15
session_data/lFwHMxHpaqVjZYRt.lua
Normal file
@ -0,0 +1,15 @@
|
||||
local playsession = {
|
||||
{"mewmew", {17390}},
|
||||
{"Gerkiz", {42782}},
|
||||
{"TurboTape76", {1121}},
|
||||
{"mattdawg10", {8857}},
|
||||
{"kusok1232", {13027}},
|
||||
{"sharpshot2566", {14673}},
|
||||
{"Assassin_101", {5196}},
|
||||
{"engineX", {15940}},
|
||||
{"ajsto88", {2609}},
|
||||
{"mr__meeseeks", {3973}},
|
||||
{"Artengineer", {52614}},
|
||||
{"justiniand", {50905}}
|
||||
}
|
||||
return playsession
|
50
session_data/lrSGcjEpZuHOUvSC.lua
Normal file
50
session_data/lrSGcjEpZuHOUvSC.lua
Normal file
@ -0,0 +1,50 @@
|
||||
local playsession = {
|
||||
{"MeggalBozale", {11067}},
|
||||
{"Menander", {3418306}},
|
||||
{"rocifier", {742605}},
|
||||
{"zcz543211", {359994}},
|
||||
{"realDonaldTrump", {447206}},
|
||||
{"MovingMike", {1244604}},
|
||||
{"ninyall", {7539}},
|
||||
{"Foof115", {188014}},
|
||||
{"nekrolik", {66167}},
|
||||
{"cubestar3626", {2038}},
|
||||
{"Immo", {379449}},
|
||||
{"sadler1321", {2765839}},
|
||||
{"everLord", {2489098}},
|
||||
{"Mimfort", {647021}},
|
||||
{"bigbizze", {2279}},
|
||||
{"dazonker", {7659}},
|
||||
{"Creator_Zhang", {706326}},
|
||||
{"ReneHSZ", {186737}},
|
||||
{"Raytastic", {1843}},
|
||||
{"Twitch93", {71386}},
|
||||
{"patus", {3402}},
|
||||
{"Diatomized", {4488}},
|
||||
{"dog80", {280905}},
|
||||
{"minjun0611", {27181}},
|
||||
{"JustronX", {21420}},
|
||||
{"Irx99", {82199}},
|
||||
{"Malisane", {911}},
|
||||
{"cawsey21", {191088}},
|
||||
{"adieclay", {849293}},
|
||||
{"3615-Motiok", {12729}},
|
||||
{"Panguin123", {12549}},
|
||||
{"iceskaarj", {1198499}},
|
||||
{"exabyte", {557859}},
|
||||
{"davidjarrao", {12006}},
|
||||
{"FAChyba", {75784}},
|
||||
{"kaimix", {132349}},
|
||||
{"Zatra", {13369}},
|
||||
{"gerc123", {4624}},
|
||||
{"DevilR", {7976}},
|
||||
{"Fireflyghost", {27124}},
|
||||
{"qwe416416", {3695}},
|
||||
{"RedstoneRampage", {6464}},
|
||||
{"Factorian12321", {157800}},
|
||||
{"Uncle_Ben", {14005}},
|
||||
{"junkythefreak", {8879}},
|
||||
{"swisser", {1654}},
|
||||
{"neekoneeko", {6757}}
|
||||
}
|
||||
return playsession
|
67
session_data/mQpvxLTcMVRwELAi.lua
Normal file
67
session_data/mQpvxLTcMVRwELAi.lua
Normal file
@ -0,0 +1,67 @@
|
||||
local playsession = {
|
||||
{"uruburei1", {513958}},
|
||||
{"skatordude", {927221}},
|
||||
{"Terarink", {172399}},
|
||||
{"kunnis", {405528}},
|
||||
{"Artengineer", {1329203}},
|
||||
{"Xenoman99", {601262}},
|
||||
{"14nickel", {395897}},
|
||||
{"adee", {1265288}},
|
||||
{"kevinma", {483672}},
|
||||
{"spittersaregross", {695098}},
|
||||
{"mechapanda", {12151}},
|
||||
{"Velguarder", {390253}},
|
||||
{"15944831778", {21561}},
|
||||
{"Mavrick", {68918}},
|
||||
{"mad58max", {260402}},
|
||||
{"Creampielord", {869884}},
|
||||
{"Ybpro4", {1302}},
|
||||
{"DeaD_Hope", {884334}},
|
||||
{"wxwxwx", {15040}},
|
||||
{"Avadis", {2583}},
|
||||
{"CrazyCrabEater", {254797}},
|
||||
{"mattdawg10", {3892}},
|
||||
{"VinnFrazz", {25866}},
|
||||
{"bluekigh", {329243}},
|
||||
{"kamaboko190", {10073}},
|
||||
{"Gas1", {1066947}},
|
||||
{"scrosby", {16053}},
|
||||
{"AhYi94", {1025320}},
|
||||
{"joe32", {872715}},
|
||||
{"tribalthomas", {275693}},
|
||||
{"changaryyy", {243429}},
|
||||
{"Giatros", {723303}},
|
||||
{"ponderer1", {41600}},
|
||||
{"ksb4145", {87650}},
|
||||
{"ristallderon", {2308}},
|
||||
{"solarcloud7", {1039}},
|
||||
{"kenzory", {3165}},
|
||||
{"LuciferDeVille", {10066}},
|
||||
{"gingiz", {342004}},
|
||||
{"Qwicks", {708829}},
|
||||
{"hunter117x", {527055}},
|
||||
{"SaintAodhan", {110029}},
|
||||
{"thedankchewbacca", {40085}},
|
||||
{"leolon", {17496}},
|
||||
{"KiingBooty", {92348}},
|
||||
{"HyperTrancer", {38888}},
|
||||
{"top69dog", {405172}},
|
||||
{"wangrx92263", {1380}},
|
||||
{"Blooode", {14960}},
|
||||
{"aidann06", {7962}},
|
||||
{"zaidka", {156261}},
|
||||
{"Nalleknas", {241016}},
|
||||
{"glukuzzz", {194665}},
|
||||
{"Clythoris", {175769}},
|
||||
{"Maxfreez21", {57824}},
|
||||
{"adlmr", {137518}},
|
||||
{"derpkun", {106822}},
|
||||
{"andrekoul", {69443}},
|
||||
{"afotare", {12482}},
|
||||
{"Jhumekes", {63169}},
|
||||
{"lord_kill", {52230}},
|
||||
{"Nate66873", {42272}},
|
||||
{"ben84", {39617}},
|
||||
{"terradus", {32948}}
|
||||
}
|
||||
return playsession
|
47
session_data/qVRnezNKrdAKVEFA.lua
Normal file
47
session_data/qVRnezNKrdAKVEFA.lua
Normal file
@ -0,0 +1,47 @@
|
||||
local playsession = {
|
||||
{"mewmew", {25577}},
|
||||
{"DKarma", {112154}},
|
||||
{"Zory", {6395902}},
|
||||
{"Nesot", {27742}},
|
||||
{"IlCande", {26109}},
|
||||
{"Phil535", {10701}},
|
||||
{"brftjx", {4096754}},
|
||||
{"sto0rmy", {980084}},
|
||||
{"BatangChe", {558962}},
|
||||
{"dazonker", {5858}},
|
||||
{"DeltaNedas", {405527}},
|
||||
{"SpektrCZ", {2665505}},
|
||||
{"sid123", {60845}},
|
||||
{"lemarkiz", {330566}},
|
||||
{"DrkgoonXV", {4829}},
|
||||
{"Bunchofrocks", {297108}},
|
||||
{"KatanaKiwi", {90199}},
|
||||
{"Krono", {6087}},
|
||||
{"tykak", {3106}},
|
||||
{"wot_tak", {5815}},
|
||||
{"vad50", {1111145}},
|
||||
{"_Mash_", {273727}},
|
||||
{"anima", {6620}},
|
||||
{"Brender", {12710}},
|
||||
{"flooxy", {58970}},
|
||||
{"abrown4521", {263}},
|
||||
{"wickskiracer", {27511}},
|
||||
{"pietoday", {7271}},
|
||||
{"JustronX", {228277}},
|
||||
{"SLQ", {129309}},
|
||||
{"Guy_732", {20555}},
|
||||
{"A-l-a-n", {416461}},
|
||||
{"FallenSword", {13967}},
|
||||
{"fishguts", {11015}},
|
||||
{"seirjgkemn", {238727}},
|
||||
{"iceskaarj", {29294}},
|
||||
{"tmoneyfizzle", {11577}},
|
||||
{"davidbutora", {4153}},
|
||||
{"kalikas", {475107}},
|
||||
{"SpikeLGWG", {41032}},
|
||||
{"Soarihx", {540580}},
|
||||
{"drill95", {707875}},
|
||||
{"basti233", {18522}},
|
||||
{"Linkknight", {394818}}
|
||||
}
|
||||
return playsession
|
55
session_data/qlmpdoTvKgYEmOxj.lua
Normal file
55
session_data/qlmpdoTvKgYEmOxj.lua
Normal file
@ -0,0 +1,55 @@
|
||||
local playsession = {
|
||||
{"Menander", {848372}},
|
||||
{"everLord", {94700}},
|
||||
{"dog80", {995709}},
|
||||
{"neekoneeko", {285216}},
|
||||
{"Krono", {335975}},
|
||||
{"realDonaldTrump", {1054009}},
|
||||
{"Sgt_kupcake", {147819}},
|
||||
{"4xBen", {822191}},
|
||||
{"rocifier", {884918}},
|
||||
{"adizb", {2408}},
|
||||
{"dr_evil", {335312}},
|
||||
{"he-duun", {3089}},
|
||||
{"762x51mm", {171488}},
|
||||
{"PolanStronk", {3499}},
|
||||
{"CommanderFrog", {827069}},
|
||||
{"XephosArkeyus", {99767}},
|
||||
{"Bokrug", {3021}},
|
||||
{"Meepersa", {781118}},
|
||||
{"Shadblade5", {772117}},
|
||||
{"Spocks", {649476}},
|
||||
{"facere", {608581}},
|
||||
{"fpetarli", {108800}},
|
||||
{"tyce1234", {17444}},
|
||||
{"RichardMNixon", {2848}},
|
||||
{"UltimateDolan", {46920}},
|
||||
{"Gerkiz", {244553}},
|
||||
{"Rayeth", {84968}},
|
||||
{"mmort97", {508127}},
|
||||
{"Hitman451", {681729}},
|
||||
{"vince527", {21497}},
|
||||
{"FingerFix", {424947}},
|
||||
{"HaveNoFears", {1318}},
|
||||
{"ronnaldy", {491787}},
|
||||
{"iceskaarj", {352784}},
|
||||
{"Parkouralvoil", {72333}},
|
||||
{"Giatros", {181504}},
|
||||
{"FlyingMonk3y", {1012}},
|
||||
{"EigenMan", {653041}},
|
||||
{"50fffff", {397388}},
|
||||
{"genious97", {52602}},
|
||||
{"GoryGorge", {90885}},
|
||||
{"Thewarlockminer", {255670}},
|
||||
{"Hydroelectric", {80358}},
|
||||
{"mastersofus", {347534}},
|
||||
{"MovingMike", {630035}},
|
||||
{"Robdelgame", {1767}},
|
||||
{"thedubub", {2126}},
|
||||
{"davidbutora", {88477}},
|
||||
{"KampetLP", {86363}},
|
||||
{"PogomanD", {13521}},
|
||||
{"halpenny911", {2084}},
|
||||
{"Dr.MoonShine", {70391}}
|
||||
}
|
||||
return playsession
|
120
session_data/uFEkPGzmifXnEqnX.lua
Normal file
120
session_data/uFEkPGzmifXnEqnX.lua
Normal file
@ -0,0 +1,120 @@
|
||||
local playsession = {
|
||||
{"Nate66873", {1115767}},
|
||||
{"cage4313", {908118}},
|
||||
{"KickassLee", {120816}},
|
||||
{"bluekigh", {591266}},
|
||||
{"kevinma", {24742}},
|
||||
{"HardcoreRocco", {1104801}},
|
||||
{"Jackelol", {3307}},
|
||||
{"huyj2k", {975130}},
|
||||
{"Lastaustralian", {624371}},
|
||||
{"Jooey14", {1068959}},
|
||||
{"adee", {836586}},
|
||||
{"slikasandr", {798941}},
|
||||
{"PandaPop", {385045}},
|
||||
{"SomeRandomGuy5", {16911}},
|
||||
{"Brender", {579761}},
|
||||
{"Banji", {421606}},
|
||||
{"SBCK", {776615}},
|
||||
{"Pandamaster", {38415}},
|
||||
{"Clythoris", {1003940}},
|
||||
{"BLURE4L", {175430}},
|
||||
{"seeyorise", {1023478}},
|
||||
{"Pgo02032006", {9522}},
|
||||
{"RoastedAppleTree", {673203}},
|
||||
{"sasha21168", {61365}},
|
||||
{"Ran_Mw", {2923}},
|
||||
{"adlmr", {383435}},
|
||||
{"wangrx92263", {3301}},
|
||||
{"BlueDragonner", {683660}},
|
||||
{"andrekoul", {924550}},
|
||||
{"Aldnoah5566", {507499}},
|
||||
{"FARF12", {1660}},
|
||||
{"ampflog", {38303}},
|
||||
{"Absolution", {242300}},
|
||||
{"ReneHSZ", {553500}},
|
||||
{"Zory", {19089}},
|
||||
{"KloStein", {429749}},
|
||||
{"Mr_T", {168412}},
|
||||
{"Catbert", {11617}},
|
||||
{"Sgushenka96", {9499}},
|
||||
{"3061867813", {424}},
|
||||
{"thisisjack", {148925}},
|
||||
{"facere", {803315}},
|
||||
{"vedolv", {473229}},
|
||||
{"Serennie", {767845}},
|
||||
{"dr_evil", {84882}},
|
||||
{"mahury", {294961}},
|
||||
{"tykak", {121023}},
|
||||
{"Jhumekes", {2161}},
|
||||
{"GuidoCram", {588779}},
|
||||
{"porok", {494998}},
|
||||
{"manstro011", {764007}},
|
||||
{"mewmew", {23643}},
|
||||
{"Gas1", {416130}},
|
||||
{"dub0dub", {244685}},
|
||||
{"50fffff", {569129}},
|
||||
{"minipini55", {502581}},
|
||||
{"teady", {1169}},
|
||||
{"PotatoGuy3000", {9745}},
|
||||
{"JailsonBR", {5546}},
|
||||
{"Falcon6", {59144}},
|
||||
{"ayahuasca23", {674577}},
|
||||
{"grundle", {110707}},
|
||||
{"cys613520", {7640}},
|
||||
{"小木木", {26032}},
|
||||
{"DeaD_Hope", {25527}},
|
||||
{"Latteo", {616421}},
|
||||
{"Biobuur", {192974}},
|
||||
{"xjohnson", {67442}},
|
||||
{"ScarpaK", {15136}},
|
||||
{"WiredMesh", {5682}},
|
||||
{"Terrolov", {24309}},
|
||||
{"HyperTrancer", {38638}},
|
||||
{"quadrioters", {38126}},
|
||||
{"MikiMaus", {98294}},
|
||||
{"loutanifi", {97848}},
|
||||
{"IAmTog", {476794}},
|
||||
{"Emmerson", {255840}},
|
||||
{"ksb4145", {355651}},
|
||||
{"OmegaTitan177", {7461}},
|
||||
{"alvarofm", {5315}},
|
||||
{"fiscch1", {48938}},
|
||||
{"kiri970", {5190}},
|
||||
{"REDgalko", {221428}},
|
||||
{"MasterTom", {13479}},
|
||||
{"Roeno1997", {109889}},
|
||||
{"Nemium", {7860}},
|
||||
{"Nikkichu", {387769}},
|
||||
{"Billiameff", {5678}},
|
||||
{"VincentMonster", {342257}},
|
||||
{"TheWickedMaster", {324027}},
|
||||
{"aniche", {130861}},
|
||||
{"Arillish", {27161}},
|
||||
{"Ed9210", {36246}},
|
||||
{"FAChyba", {242408}},
|
||||
{"XAticAtacX", {9495}},
|
||||
{"TXL_PLAYZ", {278335}},
|
||||
{"JuanMore", {288641}},
|
||||
{"lexa777", {8411}},
|
||||
{"Terarink", {283455}},
|
||||
{"dmitrymk", {17047}},
|
||||
{"gioboy", {22591}},
|
||||
{"DeltaNedas", {9979}},
|
||||
{"IOrpheusI", {678}},
|
||||
{"Giatros", {217221}},
|
||||
{"jykim", {2738}},
|
||||
{"veryhasted", {24403}},
|
||||
{"taroxyz", {70925}},
|
||||
{"CheeseLord", {30364}},
|
||||
{"IamTzu", {155281}},
|
||||
{"Gorganus", {57419}},
|
||||
{"LegionMammal978", {5504}},
|
||||
{"twinotter", {10153}},
|
||||
{"hyunbeen", {129489}},
|
||||
{"almajd3713", {2748}},
|
||||
{"dorpdorp", {68711}},
|
||||
{"AIRZYC", {15033}},
|
||||
{"Abigor97", {9040}}
|
||||
}
|
||||
return playsession
|
35
session_data/uRebPVZCiJAJWLhI.lua
Normal file
35
session_data/uRebPVZCiJAJWLhI.lua
Normal file
@ -0,0 +1,35 @@
|
||||
local playsession = {
|
||||
{"mad58max", {972240}},
|
||||
{"kunnis", {580007}},
|
||||
{"kevinma", {128102}},
|
||||
{"Xenoman99", {558960}},
|
||||
{"Gas1", {697335}},
|
||||
{"thedubub", {613830}},
|
||||
{"Artengineer", {949221}},
|
||||
{"halpenny911", {27768}},
|
||||
{"SubSeven36", {898589}},
|
||||
{"Rayeth", {5024}},
|
||||
{"Giatros", {554663}},
|
||||
{"vince527", {252894}},
|
||||
{"KampetLP", {286969}},
|
||||
{"davidbutora", {49800}},
|
||||
{"dinotorio", {30371}},
|
||||
{"Krul", {775468}},
|
||||
{"mastersofus", {56216}},
|
||||
{"Carrrot", {2823}},
|
||||
{"Hitman451", {1917}},
|
||||
{"Mavrick", {86555}},
|
||||
{"IMI4tth3w", {394763}},
|
||||
{"BrokeAsAJoke", {336793}},
|
||||
{"kkook30", {2098}},
|
||||
{"mainstreaming", {3734}},
|
||||
{"Dr.MoonShine", {5279}},
|
||||
{"EigenMan", {195593}},
|
||||
{"TheLastOption", {3551}},
|
||||
{"rocifier", {316808}},
|
||||
{"twinotter", {10079}},
|
||||
{"slikasandr", {60546}},
|
||||
{"butterflux", {135536}},
|
||||
{"SomeRandomGuy5", {5911}}
|
||||
}
|
||||
return playsession
|
82
session_data/umZhdqtXrvHDKLVU.lua
Normal file
82
session_data/umZhdqtXrvHDKLVU.lua
Normal file
@ -0,0 +1,82 @@
|
||||
local playsession = {
|
||||
{"Ed9210", {546940}},
|
||||
{"Atoms", {637512}},
|
||||
{"Erusauron", {1353}},
|
||||
{"sasha21168", {496}},
|
||||
{"Awalone", {1182928}},
|
||||
{"huashengmaodou", {1018}},
|
||||
{"lemarkiz", {340544}},
|
||||
{"JailsonBR", {6355}},
|
||||
{"Fexx", {816150}},
|
||||
{"okan009", {1171355}},
|
||||
{"ZiP84", {254046}},
|
||||
{"MikeTheMike2014", {931101}},
|
||||
{"Mimfort", {462003}},
|
||||
{"jiust", {330094}},
|
||||
{"Brabus", {975696}},
|
||||
{"phill3333", {38440}},
|
||||
{"Dressi", {92984}},
|
||||
{"KloStein", {421}},
|
||||
{"Orenji", {85675}},
|
||||
{"Roxen", {3466}},
|
||||
{"Poo76765", {1034978}},
|
||||
{"CmonMate497", {10157}},
|
||||
{"Latteo", {4405}},
|
||||
{"Menander", {932547}},
|
||||
{"putinss", {320670}},
|
||||
{"Gemma9898", {334285}},
|
||||
{"screemer85", {285449}},
|
||||
{"niko27111__", {9801}},
|
||||
{"cawsey21", {58761}},
|
||||
{"tyssa", {521310}},
|
||||
{"Nikkichu", {793058}},
|
||||
{"MrJSelig", {503039}},
|
||||
{"jrad", {19506}},
|
||||
{"Conan_Doyil", {712842}},
|
||||
{"raskl", {14542}},
|
||||
{"dog80", {155089}},
|
||||
{"beranabus", {160024}},
|
||||
{"KYroPaTKa862", {71851}},
|
||||
{"EPO666", {670034}},
|
||||
{"Falcrum", {691}},
|
||||
{"StaNov", {22407}},
|
||||
{"ronnaldy", {620765}},
|
||||
{"Hitman451", {250281}},
|
||||
{"befzz", {574738}},
|
||||
{"Piewdennis", {583587}},
|
||||
{"darkmatter2222", {238888}},
|
||||
{"dmitrymk", {179066}},
|
||||
{"VincentMonster", {236959}},
|
||||
{"Maxfreez21", {52962}},
|
||||
{"kevinma", {14129}},
|
||||
{"AurelienG", {17587}},
|
||||
{"amadey18", {100344}},
|
||||
{"_BlahBlahBlah_", {79172}},
|
||||
{"RedPandaRam", {158485}},
|
||||
{"waldmann_94", {172600}},
|
||||
{"iceskaarj", {70979}},
|
||||
{"Higgel", {30132}},
|
||||
{"soporis", {346864}},
|
||||
{"_Finley_", {7195}},
|
||||
{"wangrx92263", {21833}},
|
||||
{"Podonkov", {4019}},
|
||||
{"everLord", {237428}},
|
||||
{"Felx-Freeman", {151084}},
|
||||
{"Giatros", {218307}},
|
||||
{"die_ott", {188961}},
|
||||
{"bl72", {10496}},
|
||||
{"ronaldoklais", {165223}},
|
||||
{"Factorian12321", {12965}},
|
||||
{"CommanderFrog", {13136}},
|
||||
{"ksb4145", {141674}},
|
||||
{"Chemino", {19679}},
|
||||
{"quigro", {42331}},
|
||||
{"ampflog", {17107}},
|
||||
{"Pandarnash", {6314}},
|
||||
{"kaimix", {45248}},
|
||||
{"MovingMike", {31675}},
|
||||
{"InphinitePhractals", {25076}},
|
||||
{"Akhrem", {2754}},
|
||||
{"NoDz550", {11002}}
|
||||
}
|
||||
return playsession
|
30
session_data/vFSHRMDlaPSDlJRo.lua
Normal file
30
session_data/vFSHRMDlaPSDlJRo.lua
Normal file
@ -0,0 +1,30 @@
|
||||
local playsession = {
|
||||
{"MovingMike", {251903}},
|
||||
{"SmokuNoPico", {158821}},
|
||||
{"Lotek", {251348}},
|
||||
{"Menander", {251080}},
|
||||
{"Gorlos", {251008}},
|
||||
{"alexbw", {250950}},
|
||||
{"Krono", {250574}},
|
||||
{"cogito123", {163120}},
|
||||
{"diaboloiro", {244306}},
|
||||
{"smithy9901", {191512}},
|
||||
{"W27", {5200}},
|
||||
{"Galgas", {213245}},
|
||||
{"NerZurg", {1613}},
|
||||
{"Venator27", {155100}},
|
||||
{"ksb4145", {58564}},
|
||||
{"IPlayGames360", {19677}},
|
||||
{"Benji4096", {21292}},
|
||||
{"675R", {5820}},
|
||||
{"Dynazap", {2203}},
|
||||
{"McSafety", {105235}},
|
||||
{"SparzianII", {57820}},
|
||||
{"Nikkichu", {69000}},
|
||||
{"beranabus", {7652}},
|
||||
{"cawsey21", {35391}},
|
||||
{"omikaa", {1444}},
|
||||
{"AurelienG", {12695}},
|
||||
{"IAmTog", {4711}}
|
||||
}
|
||||
return playsession
|
28
session_data/wdlbRuftSYJQwTzX.lua
Normal file
28
session_data/wdlbRuftSYJQwTzX.lua
Normal file
@ -0,0 +1,28 @@
|
||||
local playsession = {
|
||||
{"HardcoreRocco", {251958}},
|
||||
{"Jooey14", {250733}},
|
||||
{"captaintickles", {247191}},
|
||||
{"Lastaustralian", {246899}},
|
||||
{"snapboogie", {80104}},
|
||||
{"kevinma", {64264}},
|
||||
{"adlmr", {213175}},
|
||||
{"MutantMeatball", {1594}},
|
||||
{"DviK", {72776}},
|
||||
{"Clythoris", {159831}},
|
||||
{"LvLZeroMarvel", {197629}},
|
||||
{"PopSkicle", {196902}},
|
||||
{"slikasandr", {170958}},
|
||||
{"KickassLee", {147359}},
|
||||
{"obisan", {63885}},
|
||||
{"huyj2k", {119976}},
|
||||
{"Mr_T", {6438}},
|
||||
{"BLURE4L", {101462}},
|
||||
{"Absolution", {24036}},
|
||||
{"redlabel", {48514}},
|
||||
{"Brender", {38310}},
|
||||
{"cage4313", {34108}},
|
||||
{"SBCK", {32057}},
|
||||
{"sasha21168", {4792}},
|
||||
{"Nate66873", {3873}}
|
||||
}
|
||||
return playsession
|
21
session_data/xobECphXvmiagnGf.lua
Normal file
21
session_data/xobECphXvmiagnGf.lua
Normal file
@ -0,0 +1,21 @@
|
||||
local playsession = {
|
||||
{"ryanwilliams83", {105065}},
|
||||
{"Velguarder", {220652}},
|
||||
{"robertkruijt", {29134}},
|
||||
{"Clythoris", {152616}},
|
||||
{"lord_kill", {83268}},
|
||||
{"BlueDragonner", {142666}},
|
||||
{"slikasandr", {69184}},
|
||||
{"Tereble", {78617}},
|
||||
{"rocifier", {78402}},
|
||||
{"Immo", {65425}},
|
||||
{"Lillbirro", {62152}},
|
||||
{"Jhumekes", {41328}},
|
||||
{"mahury", {37607}},
|
||||
{"Allall", {29384}},
|
||||
{"kaimix", {18306}},
|
||||
{"butterflux", {12634}},
|
||||
{"huyj2k", {11054}},
|
||||
{"ZaPer_RSA", {4489}}
|
||||
}
|
||||
return playsession
|
67
session_data/ykXlnJqUejuIUzJI.lua
Normal file
67
session_data/ykXlnJqUejuIUzJI.lua
Normal file
@ -0,0 +1,67 @@
|
||||
local playsession = {
|
||||
{"Menander", {2158536}},
|
||||
{"Gorlos", {512776}},
|
||||
{"Lotek", {620963}},
|
||||
{"Nikkichu", {1307344}},
|
||||
{"MaFiX", {30867}},
|
||||
{"DKarma", {32543}},
|
||||
{"fargas", {133373}},
|
||||
{"Factorian12321", {805597}},
|
||||
{"AurelienG", {1863}},
|
||||
{"rlidwka", {5221}},
|
||||
{"Sin_addict", {1278}},
|
||||
{"Venator27", {1937}},
|
||||
{"MovingMike", {2236121}},
|
||||
{"Ikamusme", {6671}},
|
||||
{"Zory", {108328}},
|
||||
{"facere", {1245477}},
|
||||
{"CrazyCrabEater", {809227}},
|
||||
{"Hitman451", {1208086}},
|
||||
{"morganc", {915833}},
|
||||
{"Foof115", {208199}},
|
||||
{"ronnaldy", {886186}},
|
||||
{"iceskaarj", {331931}},
|
||||
{"dog80", {559152}},
|
||||
{"RonnDlear", {144795}},
|
||||
{"Ed9210", {661524}},
|
||||
{"rocifier", {1421851}},
|
||||
{"Ajentorange", {939252}},
|
||||
{"woshiwo", {8413}},
|
||||
{"adee", {676216}},
|
||||
{"Krul", {922194}},
|
||||
{"Zutan", {13024}},
|
||||
{"RebuffedBrute44", {356407}},
|
||||
{"sharpshot2566", {43634}},
|
||||
{"Giatros", {363062}},
|
||||
{"nakedzeldas", {5766}},
|
||||
{"source_KOT", {45180}},
|
||||
{"Parkouralvoil", {672902}},
|
||||
{"7Haydz7", {399360}},
|
||||
{"Instagib", {6583}},
|
||||
{"Mithraldragon", {12297}},
|
||||
{"InphinitePhractals", {747644}},
|
||||
{"OmegaTitan177", {3233}},
|
||||
{"Mrmcspiff", {12652}},
|
||||
{"Hoboscotty", {2177}},
|
||||
{"realDonaldTrump", {184805}},
|
||||
{"RegionSyx", {7424}},
|
||||
{"game54188", {29482}},
|
||||
{"gman2000", {34243}},
|
||||
{"CallMeTaste", {804382}},
|
||||
{"PogomanD", {623668}},
|
||||
{"wxwxwx", {19809}},
|
||||
{"tykak", {715355}},
|
||||
{"demon_453", {113121}},
|
||||
{"Mattzoid", {5612}},
|
||||
{"stoonian", {20745}},
|
||||
{"jrad", {13353}},
|
||||
{"Tisis", {10131}},
|
||||
{"C0W1E", {13155}},
|
||||
{"TXL_PLAYZ", {10351}},
|
||||
{"Velguarder", {288073}},
|
||||
{"TiTaN", {221642}},
|
||||
{"cawsey21", {124833}},
|
||||
{"RudoReels", {10918}},
|
||||
{"jadenw45", {2727}}
|
||||
}
|
||||
return playsession
|
215
session_data/zbZsmNujQtUFbpJD.lua
Normal file
215
session_data/zbZsmNujQtUFbpJD.lua
Normal file
@ -0,0 +1,215 @@
|
||||
local playsession = {
|
||||
{"andrekoul", {2042773}},
|
||||
{"Creampielord", {69626}},
|
||||
{"top69dog", {10454}},
|
||||
{"derpkun", {1033755}},
|
||||
{"glukuzzz", {803014}},
|
||||
{"Jhumekes", {2577450}},
|
||||
{"Clythoris", {2641502}},
|
||||
{"Nate66873", {2292406}},
|
||||
{"terradus", {4034606}},
|
||||
{"Nalleknas", {694009}},
|
||||
{"loutanifi", {376545}},
|
||||
{"facere", {2724948}},
|
||||
{"TheWickedMaster", {3283627}},
|
||||
{"adee", {756183}},
|
||||
{"SBCK", {3450455}},
|
||||
{"Drahim", {1496}},
|
||||
{"TWLTriston", {178454}},
|
||||
{"NinjaKeks", {11528}},
|
||||
{"huyj2k", {726075}},
|
||||
{"Tereble", {498368}},
|
||||
{"GottZ", {52437}},
|
||||
{"BlueDragonner", {957974}},
|
||||
{"manstro011", {2826210}},
|
||||
{"flooxy", {396243}},
|
||||
{"killder", {38975}},
|
||||
{"sharpshot2566", {619018}},
|
||||
{"WiredMesh", {2610486}},
|
||||
{"kkook30", {44294}},
|
||||
{"MysteryBook", {16480}},
|
||||
{"Jooey14", {2851388}},
|
||||
{"Brender", {534098}},
|
||||
{"Fraserbaser", {42240}},
|
||||
{"ReneHSZ", {592471}},
|
||||
{"StarLite", {1940328}},
|
||||
{"badkill79", {3659}},
|
||||
{"Giatros", {426403}},
|
||||
{"redlabel", {3698559}},
|
||||
{"Aldnoah5566", {53829}},
|
||||
{"rykstar", {46574}},
|
||||
{"AhYi94", {131390}},
|
||||
{"Bozan", {195189}},
|
||||
{"Duchesko", {75654}},
|
||||
{"Xcent", {33119}},
|
||||
{"evomer85", {9641}},
|
||||
{"BlaQkout", {465685}},
|
||||
{"OneMillionBoy", {33051}},
|
||||
{"Porg", {329094}},
|
||||
{"dorpdorp", {3021031}},
|
||||
{"thisisjack", {463582}},
|
||||
{"bluekigh", {855627}},
|
||||
{"The_Carrot_Lord", {83599}},
|
||||
{"Jackelol", {1252872}},
|
||||
{"Entropie", {1844}},
|
||||
{"settan", {531024}},
|
||||
{"ksb4145", {65504}},
|
||||
{"Qwicks", {446698}},
|
||||
{"IamTzu", {787403}},
|
||||
{"longda88", {17199}},
|
||||
{"Avojow", {6469}},
|
||||
{"Serennie", {891852}},
|
||||
{"heekyo", {236890}},
|
||||
{"jockelpeter", {221440}},
|
||||
{"zarlo5899", {36310}},
|
||||
{"adlmr", {214998}},
|
||||
{"xm6320", {9856}},
|
||||
{"Thatl1lGuy", {700942}},
|
||||
{"changaryyy", {590532}},
|
||||
{"gioboy", {207247}},
|
||||
{"Delqvs", {7478}},
|
||||
{"xjohnson", {417883}},
|
||||
{"ZeroBeTaken", {9002}},
|
||||
{"obisan", {222298}},
|
||||
{"TheEvilDJ", {41918}},
|
||||
{"Vadatajs", {25859}},
|
||||
{"thedubub", {1392597}},
|
||||
{"captaintickles", {3271962}},
|
||||
{"mewmew", {269142}},
|
||||
{"maxoshi1", {4186}},
|
||||
{"IAmTog", {1886610}},
|
||||
{"whollyspokes", {38981}},
|
||||
{"wheeshwhoosh", {24208}},
|
||||
{"illmaren", {2532}},
|
||||
{"z903857322", {8246}},
|
||||
{"shiaulis", {14073}},
|
||||
{"Lemming1202", {1311}},
|
||||
{"Lastaustralian", {1090685}},
|
||||
{"sunseille", {32430}},
|
||||
{"Anotomix", {76381}},
|
||||
{"GnarkillX", {16296}},
|
||||
{"Vandango", {6798}},
|
||||
{"Gas1", {415037}},
|
||||
{"r2d266m", {9311}},
|
||||
{"twinotter", {1719111}},
|
||||
{"LuchokPlay", {209741}},
|
||||
{"1272099015", {1529}},
|
||||
{"beranabus", {114811}},
|
||||
{"taroxyz", {129577}},
|
||||
{"fiscch1", {46997}},
|
||||
{"HyperTrancer", {202422}},
|
||||
{"Kakabututa", {11747}},
|
||||
{"SiGGi_93", {30959}},
|
||||
{"LeonSkills", {93949}},
|
||||
{"Yelesiug", {11082}},
|
||||
{"halpenny911", {229264}},
|
||||
{"SmileyDAC", {70514}},
|
||||
{"dredonkey", {11197}},
|
||||
{"matti47", {213132}},
|
||||
{"steelhero", {4551}},
|
||||
{"lyman", {70857}},
|
||||
{"PipWinsAgain", {23139}},
|
||||
{"Silicon", {296946}},
|
||||
{"StoneyBear420", {76753}},
|
||||
{"Mr_T", {485243}},
|
||||
{"BitMapper", {162082}},
|
||||
{"IIPoliII", {3386}},
|
||||
{"LegionMammal978", {165647}},
|
||||
{"EPO666", {238176}},
|
||||
{"Kew-Iz-Laby", {12356}},
|
||||
{"perfectwill", {9481}},
|
||||
{"Slas", {2309}},
|
||||
{"AurelienG", {57236}},
|
||||
{"kuba_mar", {9024}},
|
||||
{"marius86000", {373338}},
|
||||
{"working.worker", {78960}},
|
||||
{"cyberjoel", {9864}},
|
||||
{"TheLastOption", {7874}},
|
||||
{"RonnDlear", {330529}},
|
||||
{"Jaazinh", {101713}},
|
||||
{"dub0dub", {89853}},
|
||||
{"RagdollRalph", {33771}},
|
||||
{"dermemememount", {31069}},
|
||||
{"Gaunter", {2295}},
|
||||
{"S.L", {77390}},
|
||||
{"FingerFix", {239838}},
|
||||
{"NewRemote", {21230}},
|
||||
{"bl72", {5868}},
|
||||
{"cdrichmo", {48382}},
|
||||
{"die_ott", {134342}},
|
||||
{"Bokrug", {25483}},
|
||||
{"MaZeeT", {161235}},
|
||||
{"Tommy17", {1558}},
|
||||
{"Chapucillas", {33935}},
|
||||
{"Roxen", {5082}},
|
||||
{"bikram_singh", {106903}},
|
||||
{"antuan309", {4496}},
|
||||
{"Roeno1997", {429141}},
|
||||
{"Terarink", {1976977}},
|
||||
{"spittersaregross", {6635}},
|
||||
{"Cheeseftw", {90443}},
|
||||
{"HardcoreRocco", {660494}},
|
||||
{"RashiNerha", {1828088}},
|
||||
{"pilypas", {472975}},
|
||||
{"Peter9184", {346252}},
|
||||
{"neufcm", {9342}},
|
||||
{"I_dream_of_corn", {14242}},
|
||||
{"nibby_zero", {7736}},
|
||||
{"Krezal", {531174}},
|
||||
{"14nickel", {76253}},
|
||||
{"steroids1992", {3461}},
|
||||
{"soporis", {16649}},
|
||||
{"ben84", {18594}},
|
||||
{"kaimix", {99267}},
|
||||
{"AIRZYC", {34020}},
|
||||
{"onyxinsanity", {31698}},
|
||||
{"JinNJuice", {266068}},
|
||||
{"Alexis4232", {21201}},
|
||||
{"BrokeAsAJoke", {402766}},
|
||||
{"MeggalBozale", {161058}},
|
||||
{"Bluestripes", {28118}},
|
||||
{"Spaghetti Man", {2147}},
|
||||
{"tyssa", {186047}},
|
||||
{"Artengineer", {1400988}},
|
||||
{"kunnis", {932167}},
|
||||
{"Supremebeing", {7066}},
|
||||
{"Jist", {22191}},
|
||||
{"snoetje", {6673}},
|
||||
{"Acruid", {45009}},
|
||||
{"OmegaTitan177", {102583}},
|
||||
{"scrosby", {90625}},
|
||||
{"uruburei1", {11555}},
|
||||
{"soapster", {2722}},
|
||||
{"Snako", {10236}},
|
||||
{"KloStein", {4114}},
|
||||
{"hlapointe", {90975}},
|
||||
{"ETK03", {43728}},
|
||||
{"Hitman451", {6838}},
|
||||
{"kevinma", {9698}},
|
||||
{"Zeemon1", {36927}},
|
||||
{"corbin9228", {40457}},
|
||||
{"RichardMNixon", {34124}},
|
||||
{"MaricTheTrader", {1891}},
|
||||
{"pointyears314", {137}},
|
||||
{"Ybloc", {87748}},
|
||||
{"vince527", {150588}},
|
||||
{"HighInFiberOptics", {3115}},
|
||||
{"KubskY", {596}},
|
||||
{"vvictor", {141119}},
|
||||
{"oxleycraft", {74473}},
|
||||
{"Xenoman99", {449261}},
|
||||
{"LazarusDarkeyes", {925}},
|
||||
{"ryanwilliams83", {588551}},
|
||||
{"Dr.MoonShine", {20359}},
|
||||
{"davidbutora", {34914}},
|
||||
{"vishupochampally", {70404}},
|
||||
{"SpanFish", {18301}},
|
||||
{"ampflog", {32546}},
|
||||
{"Peehole Skin", {52395}},
|
||||
{"KiingBooty", {50208}},
|
||||
{"Apiary", {4343}},
|
||||
{"sonix_", {32862}},
|
||||
{"qwert33", {58383}},
|
||||
{"snapboogie", {39857}}
|
||||
}
|
||||
return playsession
|
69
session_data/zqgRdPMQYOgyWnyV.lua
Normal file
69
session_data/zqgRdPMQYOgyWnyV.lua
Normal file
@ -0,0 +1,69 @@
|
||||
local playsession = {
|
||||
{"Pickleman", {263015}},
|
||||
{"CrazyCrabEater", {874240}},
|
||||
{"Zorky", {1256021}},
|
||||
{"kunnis", {614123}},
|
||||
{"Terarink", {1281044}},
|
||||
{"jbox1", {481541}},
|
||||
{"MontrealCrook", {1252744}},
|
||||
{"justiniand", {367000}},
|
||||
{"Reym-Koch", {1879}},
|
||||
{"bluekigh", {168215}},
|
||||
{"JoshTW", {491491}},
|
||||
{"moonheart08", {15460}},
|
||||
{"caschque", {6450}},
|
||||
{"라인폰그람", {139236}},
|
||||
{"yukinyaa", {41742}},
|
||||
{"Spiritmorin", {993777}},
|
||||
{"skatordude", {967141}},
|
||||
{"IamTzu", {910330}},
|
||||
{"huyj2k", {882092}},
|
||||
{"Shucru", {2624}},
|
||||
{"JuanMore", {119202}},
|
||||
{"hyunbeen", {83130}},
|
||||
{"climbinguy", {9083}},
|
||||
{"DeaD_Hope", {103478}},
|
||||
{"dalindes", {765060}},
|
||||
{"7Haydz7", {89434}},
|
||||
{"butterflux", {727922}},
|
||||
{"Qwicks", {341882}},
|
||||
{"SpikeLGWG", {268424}},
|
||||
{"datadrian", {121689}},
|
||||
{"aniche", {494757}},
|
||||
{"bl72", {574421}},
|
||||
{"ETK03", {420321}},
|
||||
{"Mr_T", {578208}},
|
||||
{"ikeikeeng", {496548}},
|
||||
{"tickterd", {493706}},
|
||||
{"dorpdorp", {286395}},
|
||||
{"DviK", {163619}},
|
||||
{"kevinma", {17290}},
|
||||
{"Banji", {231581}},
|
||||
{"adeooo45", {112908}},
|
||||
{"Falcon6", {13086}},
|
||||
{"Tribbiani", {13777}},
|
||||
{"iReed", {400816}},
|
||||
{"Achskelmos", {45861}},
|
||||
{"hsxu", {7632}},
|
||||
{"gameandtype", {19304}},
|
||||
{"TXL_PLAYZ", {122732}},
|
||||
{"SonySeva", {37158}},
|
||||
{"Factorian12321", {89681}},
|
||||
{"50fffff", {220142}},
|
||||
{"Daganoth", {71739}},
|
||||
{"BansuSang", {20250}},
|
||||
{"MeeperThyBeeper", {34152}},
|
||||
{"ampflog", {28741}},
|
||||
{"lexa777", {11298}},
|
||||
{"Tereble", {23000}},
|
||||
{"glukuzzz", {171273}},
|
||||
{"Aldnoah5566", {125901}},
|
||||
{"jrad", {74769}},
|
||||
{"Giatros", {124840}},
|
||||
{"backburn", {80965}},
|
||||
{"Maxfreez21", {71571}},
|
||||
{"seeyorise", {44623}},
|
||||
{"HardcoreRocco", {29816}},
|
||||
{"Miltion", {24428}}
|
||||
}
|
||||
return playsession
|
Loading…
Reference in New Issue
Block a user