diff --git a/experiments/g_index/G-Index.py b/experiments/g_index/G-Index.py new file mode 100644 index 0000000000000000000000000000000000000000..b66315cbcbfcb164362d8aed931ea496b01a7f7f --- /dev/null +++ b/experiments/g_index/G-Index.py @@ -0,0 +1,79 @@ +# --- +# jupyter: +# jupytext: +# formats: ipynb,py:percent +# text_representation: +# extension: .py +# format_name: percent +# format_version: '1.3' +# jupytext_version: 1.16.1 +# kernelspec: +# display_name: Python 3 (ipykernel) +# language: python +# name: python3 +# --- + +# %% +from pathlib import Path +import jupyter_black +import polars as pl +from g_index import h_and_g_index + +BASE_DIR = Path().resolve().parent.parent +DATA_DIR = BASE_DIR.parent / "board-game-data" + +jupyter_black.load() + +# %% +game_data = pl.scan_ndjson(DATA_DIR / "scraped" / "bgg_GameItem.jl").select( + "bgg_id", + "name", +) + +# %% +play_counts = ( + pl.scan_ndjson(DATA_DIR / "scraped" / "bgg_RatingItem.jl") + .select("bgg_id", "bgg_user_name", "bgg_user_play_count") + .drop_nulls() + .filter(pl.col("bgg_user_play_count") > 0) +) + +# %% [markdown] +# ## Games + +# %% +game_indexes = h_and_g_index( + counts=play_counts, + count_col="bgg_user_play_count", + target_col="bgg_id", +) + +# %% +game_result = ( + game_data.join(game_indexes, on="bgg_id", how="inner") + .sort(["h_index", "g_index", "bgg_id"], descending=[True, True, False]) + .collect() +) + +# %% +game_result.head(10) + +# %% +game_result.filter(pl.col("h_index") >= 10).write_csv("games.csv") + +# %% [markdown] +# ## Players + +# %% +player_result = h_and_g_index( + counts=play_counts, + count_col="bgg_user_play_count", + target_col="bgg_user_name", +).collect() +player_result.shape + +# %% +player_result.head(10) + +# %% +player_result.filter(pl.col("h_index") >= 10).write_csv("players.csv") diff --git a/experiments/g_index/g_index/__init__.py b/experiments/g_index/g_index/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..cf88570b4bff5a332be73275b45f206cee3a1cc0 --- /dev/null +++ b/experiments/g_index/g_index/__init__.py @@ -0,0 +1 @@ +from g_index.metrics import h_and_g_index diff --git a/experiments/g_index/g_index/metrics.py b/experiments/g_index/g_index/metrics.py new file mode 100644 index 0000000000000000000000000000000000000000..318e0427827d8cae5c82f9d266f344403b3f07d1 --- /dev/null +++ b/experiments/g_index/g_index/metrics.py @@ -0,0 +1,49 @@ +"""Metrics for h- and g-index calculation.""" + +import polars as pl + + +def h_and_g_index( + counts: pl.DataFrame | pl.LazyFrame, + count_col: str, + target_col: str, +) -> pl.LazyFrame: + """Calculate h-index and g-index.""" + + return ( + counts.lazy() + .sort( + [target_col, count_col], + descending=[False, True], + ) + .select( + pl.col(target_col), + pl.col(count_col), + pl.col(count_col).cum_sum().over(target_col).alias("cum_count"), + pl.col(count_col) + .rank("ordinal", descending=True) + .over(target_col) + .alias("rank"), + ) + .with_columns( + pl.when(pl.col("rank") <= pl.col(count_col)) + .then(pl.col("rank")) + .alias("h_index_rank"), + pl.when(pl.col("rank") ** 2 <= pl.col("cum_count")) + .then(pl.col("rank")) + .alias("g_index_rank"), + ) + .group_by(target_col) + .agg( + pl.col("h_index_rank").max().alias("h_index"), + pl.col("g_index_rank").max().alias("g_index"), + ) + .sort(["h_index", "g_index", target_col], descending=[True, True, False]) + .select( + pl.col("h_index").rank("min", descending=True).alias("rank_h_index"), + pl.col("h_index"), + pl.col("g_index").rank("min", descending=True).alias("rank_g_index"), + pl.col("g_index"), + pl.col(target_col), + ) + ) diff --git a/experiments/g_index/games.csv b/experiments/g_index/games.csv new file mode 100644 index 0000000000000000000000000000000000000000..fcc408e01841e72b3121753c174ca97d7cec87be --- /dev/null +++ b/experiments/g_index/games.csv @@ -0,0 +1,7524 @@ +bgg_id,name,rank_h_index,h_index,rank_g_index,g_index +463,Magic: The Gathering,1,500,11,1496 +28143,Race for the Galaxy,2,311,17,624 +36218,Dominion,3,306,19,565 +171,Chess,4,279,15,849 +285774,Marvel Champions: The Card Game,5,264,23,401 +124742,Android: Netrunner,6,250,21,479 +147020,Star Realms,7,225,22,478 +41,Can't Stop,8,223,25,352 +284083,The Crew: The Quest for Planet Nine,9,208,36,297 +77423,The Lord of the Rings: The Card Game,10,204,31,321 +167791,Terraforming Mars,11,191,32,314 +822,Carcassonne,12,180,34,306 +266192,Wingspan,13,174,37,291 +205637,Arkham Horror: The Card Game,14,172,2,20074 +50,Lost Cities,15,160,32,314 +68448,7 Wonders,15,160,41,278 +18291,Unpublished Prototype,17,156,39,287 +174430,Gloomhaven,17,156,54,220 +2397,Backgammon,19,153,20,482 +215,Tichu,19,153,27,338 +13,CATAN,19,153,29,324 +244522,That's Pretty Clever!,19,153,40,286 +2398,Cribbage,23,152,35,305 +162886,Spirit Island,24,151,47,243 +84876,The Castles of Burgundy,24,151,48,242 +230802,Azul,26,150,46,246 +98778,Hanabi,27,149,28,328 +129437,Legendary: A Marvel Deck Building Game,28,145,44,247 +69789,Ascension: Deckbuilding Game,29,144,30,322 +173346,7 Wonders Duel,29,144,44,247 +9209,Ticket to Ride,31,142,42,274 +148228,Splendor,32,139,55,218 +521,Crokinole,32,139,62,205 +178900,Codenames,34,134,77,183 +188,Go,35,133,24,375 +182028,Through the Ages: A New Story of Civilization,35,133,50,235 +129622,Love Letter,37,130,58,211 +324856,The Crew: Mission Deep Sea,38,128,74,185 +2223,UNO,39,127,51,234 +31260,Agricola,40,124,1,24045 +2243,Yahtzee,40,124,38,289 +163412,Patchwork,40,124,80,182 +1115,Poker,43,123,5,5054 +257501,KeyForge: Call of the Archons,43,123,49,238 +156336,Onirim (Second Edition),43,123,58,211 +342942,Ark Nova,43,123,87,176 +147949,One Night Ultimate Werewolf,43,123,99,171 +63888,Innovation,48,120,61,206 +242302,Space Base,49,119,62,205 +103885,Star Wars: X-Wing Miniatures Game,50,118,66,201 +30549,Pandemic,50,118,68,195 +204583,Kingdomino,50,118,85,178 +131357,Coup,50,118,96,172 +432,Take 5,54,117,64,204 +10630,Memoir '44,54,117,74,185 +205359,Star Wars: Destiny,56,114,60,208 +223040,Fantasy Realms,56,114,96,172 +107529,Kingdom Builder,58,113,71,192 +2655,Hive,58,113,117,156 +320,Scrabble,60,111,57,214 +194655,Santorini,61,109,87,176 +34635,Stone Age,62,108,106,161 +327,Loopin' Louie,62,108,121,153 +233867,Welcome To...,64,107,115,157 +40834,Dominion: Intrigue,65,106,70,194 +3076,Puerto Rico,65,106,77,183 +165722,KLASK,67,104,106,161 +102652,Sentinels of the Multiverse,68,103,87,176 +118247,Lucky Numbers,69,102,87,176 +263918,Cartographers,70,101,82,180 +25613,Through the Ages: A Story of Civilization,70,101,86,177 +120677,Terra Mystica,70,101,96,172 +271324,It's a Wonderful World,70,101,109,160 +131260,Qwixx,70,101,132,148 +70323,King of Tokyo,70,101,142,141 +12333,Twilight Struggle,76,100,83,179 +63268,Spot it!,76,100,150,134 +245654,Railroad Ink: Deep Blue Edition,78,99,74,185 +811,Rummikub,78,99,104,163 +45,Perudo,80,98,120,155 +156009,Port Royal,80,98,121,153 +205597,Jump Drive,82,97,117,156 +128882,The Resistance: Avalon,82,97,121,153 +123570,Strike,82,97,140,143 +2165,Pokémon Trading Card Game,85,96,65,203 +21241,Neuroshima Hex! 3.0,85,96,83,179 +132531,Roll for the Galaxy,85,96,111,158 +54043,Jaipur,85,96,134,147 +169786,Scythe,85,96,135,146 +14996,Ticket to Ride: Europe,90,95,135,146 +2719,Connect Four,90,95,162,130 +181,Risk,92,94,3,7096 +198994,Hero Realms,92,94,102,164 +43570,Friday,92,94,111,158 +9217,Saint Petersburg,92,94,127,150 +224037,Codenames: Duet,92,94,155,133 +6887,Hearts,97,93,67,198 +169255,A Game of Thrones: The Card Game (Second Edition),98,92,105,162 +12942,No Thanks!,98,92,182,121 +206931,Encore!,100,91,72,190 +180974,Potion Explosion,100,91,117,156 +346703,7 Wonders: Architects,100,91,127,150 +760,Battle Line,100,91,144,139 +245476,CuBirds,104,90,115,157 +268620,Similo,104,90,150,134 +5782,Coloretto,104,90,162,130 +133038,Pathfinder Adventure Card Game: Rise of the Runelords – Base Set,107,89,168,128 +71836,Onirim,108,88,77,183 +8217,San Juan,108,88,87,176 +1406,Monopoly,110,87,155,133 +237182,Root,110,87,164,129 +191189,Aeon's End,110,87,185,120 +2181,Bridge,113,86,16,691 +269210,Twice as Clever!,113,86,142,141 +262712,Res Arcana,113,86,169,127 +108745,Seasons,116,85,94,174 +312484,Lost Ruins of Arnak,116,85,145,138 +41114,The Resistance,116,85,155,133 +37380,Roll Through the Ages: The Bronze Age,116,85,159,132 +133473,Sushi Go!,116,85,192,119 +6901,Euchre,121,84,100,170 +209418,Dominion (Second Edition),121,84,137,144 +172,For Sale,121,84,185,120 +55690,Kingdom Death: Monster,124,83,193,118 +199561,Sagrada,125,82,177,124 +173090,The Game,125,82,193,118 +264055,Draftosaurus,125,82,216,114 +302260,Abandon All Artichokes,128,81,140,143 +21790,Thurn and Taxis,128,81,145,138 +3955,BANG!,128,81,159,132 +245487,Orchard: A 9 card solitaire game,128,81,164,129 +110327,Lords of Waterdeep,128,81,177,124 +251658,Sprawlopolis,133,80,106,161 +191925,Bandido,133,80,111,158 +1465,Wizard,133,80,161,131 +161417,Red7,133,80,226,111 +231999,Finished!,137,79,93,175 +367220,Sea Salt & Paper,137,79,175,125 +353545,Next Station: London,137,79,185,120 +166384,Spyfall,137,79,265,102 +243,Advanced Squad Leader,141,78,124,152 +1293,Boggle,141,78,132,148 +219215,Werewords,141,78,235,109 +47185,Warhammer: Invasion,144,77,124,152 +9674,Ingenious,144,77,137,144 +240980,Blood on the Clocktower,144,77,155,133 +188834,Secret Hitler,144,77,164,129 +220308,Gaia Project,144,77,193,118 +266083,L.L.A.M.A.,144,77,255,104 +62871,Zombie Dice,150,76,12,1020 +199792,Everdell,150,76,150,134 +70919,Takenoko,150,76,175,125 +14105,Commands & Colors: Ancients,150,76,185,120 +15818,Pickomino,150,76,193,118 +180020,Virus!,150,76,208,115 +244992,The Mind,150,76,293,96 +2083,Checkers,157,75,95,173 +232361,After the Virus,157,75,226,111 +15512,Incan Gold,157,75,269,101 +2093,Mahjong,160,74,87,176 +103886,Star Wars: The Card Game,160,74,150,134 +11,Bohnanza,160,74,198,117 +164153,Star Wars: Imperial Assault,160,74,277,99 +286096,Tapestry,164,73,202,116 +298047,Marvel United,164,73,255,104 +99875,Martian Dice,166,72,164,129 +194594,Dice Forge,166,72,172,126 +40398,Monopoly Deal Card Game,166,72,202,116 +6249,Alhambra,166,72,224,112 +254640,Just One,166,72,244,107 +269385,The Lord of the Rings: Journeys in Middle-Earth,166,72,315,93 +2394,Dominoes,172,71,81,181 +4390,Carcassonne: Hunters and Gatherers,172,71,208,115 +38453,Space Alert,172,71,255,104 +21804,Traditional Card Games,175,70,102,164 +117663,Piraten Kapern,175,70,150,134 +17053,Sleeping Queens,175,70,238,108 +150145,Skull King,175,70,244,107 +160477,Onitama,175,70,265,102 +154597,Hive Pocket,175,70,277,99 +28720,Brass: Lancashire,181,69,193,118 +40692,Small World,181,69,198,117 +8098,Jungle Speed,181,69,216,114 +25669,Qwirkle,181,69,250,105 +295947,Cascadia,181,69,269,101 +271320,The Castles of Burgundy,181,69,281,98 +12,Ra,181,69,299,95 +295770,Frosthaven,181,69,364,86 +256589,Rallyman: GT,189,68,177,124 +252328,Star Wars: X-Wing (Second Edition),189,68,208,115 +2651,Power Grid,189,68,238,108 +27225,Bananagrams,189,68,238,108 +372,Schotten Totten,189,68,269,101 +203430,Fuji Flush,189,68,277,99 +199042,Harry Potter: Hogwarts Battle,189,68,299,95 +15987,Arkham Horror,189,68,308,94 +2375,Sequence,197,67,226,111 +258,Fluxx,197,67,255,104 +19857,Glory to Rome,197,67,293,96 +356123,Turing Machine,197,67,299,95 +42,Tigris & Euphrates,201,66,247,106 +217449,NMBR 9,201,66,269,101 +143741,BANG! The Dice Game,201,66,286,97 +8203,"Hey, That's My Fish!",201,66,328,91 +113294,Escape: The Curse of the Temple,201,66,344,89 +295486,My City,201,66,382,84 +15985,Blood Bowl: Living Rulebook,207,65,26,350 +39953,A Game of Thrones: The Card Game,207,65,169,127 +246761,Cahoots,207,65,235,109 +681,Quarto,207,65,238,108 +182874,Grand Austria Hotel,207,65,250,105 +16992,Tsuro,207,65,260,103 +193738,Great Western Trail,207,65,308,94 +209778,Magic Maze,207,65,416,81 +66171,Dragonheart,215,64,216,114 +11170,Heroscape Master Set: Rise of the Valkyrie,215,64,222,113 +307002,Regicide,215,64,247,106 +246192,Gizmos,215,64,250,105 +284435,Nova Luna,215,64,260,103 +274637,"Unmatched: Battle of Legends, Volume One",215,64,274,100 +295564,Unmatched Game System,215,64,274,100 +96848,Mage Knight Board Game,215,64,320,92 +126163,Tzolk'in: The Mayan Calendar,215,64,337,90 +104162,Descent: Journeys in the Dark (Second Edition),215,64,416,81 +194607,Mystic Vale,225,63,198,117 +249259,War Chest,225,63,198,117 +37111,Battlestar Galactica: The Board Game,225,63,208,115 +123540,Tokaido,225,63,208,115 +177736,A Feast for Odin,225,63,208,115 +239464,Palm Island,225,63,216,114 +349067,The Lord of the Rings: The Card Game – Revised Core Set,225,63,281,98 +21050,Combat Commander: Europe,225,63,293,96 +316546,Clever Cubed,225,63,299,95 +92415,Skull,225,63,434,79 +4154,Yu-Gi-Oh! Trading Card Game,235,62,18,617 +58281,Summoner Wars,235,62,202,116 +171623,The Voyages of Marco Polo,235,62,320,92 +274960,Point Salad,235,62,405,82 +1269,Skip-Bo,239,61,185,120 +53953,Thunderstone,239,61,260,103 +37046,Ghost Stories,239,61,308,94 +125678,DC Deck-Building Game,239,61,308,94 +171273,FUSE,239,61,344,89 +329839,So Clover!,239,61,352,88 +13823,Fairy Tale,239,61,356,87 +154203,Imperial Settlers,239,61,356,87 +34219,Biblios,239,61,371,85 +23953,Outside the Scope of BGG,248,60,13,929 +93260,Summoner Wars: Master Set,248,60,238,108 +21632,To Court the King,248,60,255,104 +27173,Vikings,248,60,281,98 +148575,Marvel Dice Masters: Avengers vs. X-Men,248,60,286,97 +16747,Tumblin' Dice,248,60,337,90 +316554,Dune: Imperium,248,60,344,89 +146021,Eldritch Horror,248,60,364,86 +192291,Sushi Go Party!,248,60,382,84 +198773,Codenames: Pictures,248,60,416,81 +117959,Las Vegas,248,60,467,77 +2251,Strat-O-Matic Baseball,259,59,68,195 +925,Werewolf,259,59,216,114 +9446,Blue Moon,259,59,238,108 +122522,Smash Up,259,59,299,95 +39463,Cosmic Encounter,259,59,352,88 +150,PitchCar,259,59,405,82 +209685,Century: Spice Road,259,59,416,81 +145639,Coconuts,259,59,426,80 +244521,The Quacks of Quedlinburg,259,59,491,75 +19100,Hacienda,268,58,145,138 +244115,Shards of Infinity,268,58,177,124 +31497,Oregon,268,58,265,102 +118048,Targi,268,58,299,95 +153065,Linko,268,58,320,92 +144733,Russian Railroads,268,58,371,85 +215311,Downforce,268,58,371,85 +39856,Dixit,268,58,392,83 +158600,Hanamikoji,268,58,405,82 +624,Quoridor,277,57,4,5224 +1198,SET,277,57,127,150 +15878,Rummy,277,57,208,115 +943,Ligretto,277,57,222,113 +316377,7 Wonders (Second Edition),277,57,286,97 +25821,The Werewolves of Miller's Hollow,277,57,299,95 +359970,Challengers!,277,57,328,91 +3837,Rat-a-Tat Cat,277,57,364,86 +100423,Elder Sign,277,57,392,83 +206051,Insider,277,57,480,76 +17329,Animal Upon Animal,277,57,491,75 +35677,Le Havre,288,56,137,144 +11901,Tic-Tac-Toe,288,56,172,126 +184151,Legend of the Five Rings: The Card Game,288,56,286,97 +369646,Disney Lorcana,288,56,293,96 +230253,Star Realms: Frontiers,288,56,308,94 +276042,Conspiracy: Abyss Universe,288,56,315,93 +246228,Impact: Battle of Elements,288,56,328,91 +31481,Galaxy Trucker,288,56,337,90 +281259,The Isle of Cats,288,56,344,89 +103649,The City,288,56,352,88 +2448,Kalah,288,56,364,86 +172225,Exploding Kittens,288,56,364,86 +201808,Clank!: A Deck-Building Adventure,288,56,426,80 +9441,Ribbit,288,56,434,79 +300753,Cross Clues,288,56,448,78 +283864,Trails of Tucana,288,56,467,77 +143884,Machi Koro,288,56,519,73 +180263,The 7th Continent,288,56,567,70 +156129,Deception: Murder in Hong Kong,288,56,628,66 +592,Spades,307,55,130,149 +2842,TransAmerica,307,55,202,116 +183571,Deep Space D-6,307,55,260,103 +1917,Stratego,307,55,286,97 +155426,Castles of Mad King Ludwig,307,55,320,92 +183006,Qwinto,307,55,337,90 +929,The Great Dalmuti,307,55,371,85 +31627,Ticket to Ride: Nordic Countries,307,55,371,85 +38159,Ultimate Werewolf: Ultimate Edition,307,55,382,84 +2453,Blokus,307,55,392,83 +149155,Dead Man's Draw: Captain Carcass,307,55,434,79 +183394,Viticulture Essential Edition,307,55,434,79 +245422,Werewords Deluxe Edition,307,55,448,78 +192135,Too Many Bones,307,55,467,77 +199478,Flamme Rouge,307,55,508,74 +121921,Robinson Crusoe: Adventures on the Cursed Island,307,55,550,71 +46213,Telestrations,307,55,567,70 +18602,Caylus,324,54,226,111 +182631,Star Realms: Colony Wars,324,54,235,109 +4192,Warhammer: The Mass Combat Fantasy Roleplaying Game (1st Edition),324,54,250,105 +9220,Saboteur,324,54,328,91 +217547,Can't Stop Express,324,54,344,89 +317985,Beyond the Sun,324,54,405,82 +179275,One Deck Dungeon,324,54,426,80 +4098,Age of Steam,324,54,434,79 +171499,Cacao,324,54,491,75 +11971,Cockroach Poker,324,54,533,72 +100901,Flash Point: Fire Rescue,324,54,533,72 +256952,Zombie Kidz Evolution,324,54,613,67 +95064,Ascension: Return of the Fallen,336,53,111,158 +2389,Othello,336,53,130,149 +1295,Pente,336,53,250,105 +153623,Limes,336,53,308,94 +116,Guillotine,336,53,315,93 +25574,Gin Rummy,336,53,328,91 +329873,Grove: A 9 card solitaire game,336,53,344,89 +51,Ricochet Robots,336,53,434,79 +478,Citadels,336,53,448,78 +157809,Nations: The Dice Game,336,53,448,78 +283155,Calico,336,53,448,78 +148949,Istanbul,336,53,467,77 +152237,Pairs,336,53,467,77 +24508,Taluva,336,53,480,76 +91536,Quarriors!,336,53,491,75 +150658,Pandemic: The Cure,336,53,519,73 +712,Blood Bowl (Third Edition),352,52,149,135 +3439,HeroClix,352,52,202,116 +124361,Concordia,352,52,202,116 +2122,Vampire: The Eternal Struggle,352,52,208,115 +1116,Oh Hell!,352,52,247,106 +1927,Munchkin,352,52,281,98 +267378,Chakra,352,52,281,98 +5404,Amun-Re,352,52,293,96 +175199,Mottainai,352,52,293,96 +73439,Troyes,352,52,328,91 +24068,Shadow Hunters,352,52,371,85 +277085,Love Letter,352,52,392,83 +146652,Legendary Encounters: An Alien Deck Building Game,352,52,434,79 +224517,Brass: Birmingham,352,52,448,78 +268201,Dice Throne,352,52,448,78 +134253,Hostage Negotiator,352,52,533,72 +41302,First Orchard,352,52,550,71 +161936,Pandemic Legacy: Season 1,352,52,567,70 +264220,Tainted Grail: The Fall of Avalon,352,52,641,65 +4143,Guess Who?,371,51,7,3337 +38318,Start Player,371,51,224,112 +195314,Herbaceous,371,51,231,110 +200680,Agricola (Revised Edition),371,51,320,92 +21763,Mr. Jack,371,51,364,86 +699,HeroQuest,371,51,426,80 +198740,Lovecraft Letter,371,51,467,77 +135382,Shadowrun: Crossfire,371,51,491,75 +65244,Forbidden Island,371,51,519,73 +151007,Pathfinder Adventure Card Game: Skull & Shackles – Base Set,371,51,519,73 +251678,Railroad Ink: Blazing Red Edition,371,51,533,72 +117942,Zooloretto: The Dice Game,371,51,550,71 +229853,Teotihuacan: City of Gods,371,51,550,71 +231733,Obsession,371,51,550,71 +337,Circus Flohcati,371,51,585,69 +247763,Underwater Cities,371,51,601,68 +91514,Rhino Hero,371,51,641,65 +169427,Middara: Unintentional Malum – Act 1,371,51,661,64 +6819,Skat,389,50,109,160 +108784,Ascension: Storm of Souls,389,50,126,151 +2392,Mastermind,389,50,169,127 +2136,Pachisi,389,50,226,111 +25554,Notre Dame,389,50,308,94 +43022,Yomi,389,50,315,93 +2452,Jenga,389,50,320,92 +156776,"Warhammer 40,000: Conquest",389,50,337,90 +98,Axis & Allies,389,50,356,87 +5716,Balloon Cup,389,50,356,87 +20952,UNO Junior,389,50,356,87 +291457,Gloomhaven: Jaws of the Lion,389,50,371,85 +7717,Carcassonne: The Castle,389,50,382,84 +590,Mille Bornes,389,50,392,83 +2425,Battleship,389,50,392,83 +7688,Memory,389,50,392,83 +123260,Suburbia,389,50,426,80 +1294,Clue,389,50,467,77 +137297,Rise of Augustus,389,50,467,77 +13004,The Downfall of Pompeii,389,50,491,75 +68425,Eminent Domain,389,50,491,75 +3,Samurai,389,50,508,74 +180680,Automobiles,389,50,533,72 +176494,Isle of Skye: From Chieftain to King,389,50,550,71 +303672,Trek 12: Himalaya,389,50,550,71 +113924,Zombicide,389,50,567,70 +168584,Love Letter: Batman,389,50,585,69 +345584,Mindbug: First Contact,389,50,601,68 +18803,Black Stories,389,50,699,62 +9364,Doppelkopf,418,49,185,120 +34166,Finito!,418,49,364,86 +1472,Five Crowns,418,49,416,81 +224597,Warhammer Underworlds: Shadespire,418,49,416,81 +35503,Ra: The Dice Game,418,49,434,79 +270836,Imperial Settlers: Roll & Write,418,49,434,79 +111148,Würfel Bohnanza,418,49,448,78 +216132,Clans of Caledonia,418,49,448,78 +151022,Baseball Highlights: 2045,418,49,467,77 +328479,Living Forest,418,49,533,72 +194626,Happy Salmon,418,49,585,69 +260407,Soviet Kitchen Unleashed,418,49,601,68 +37196,Sorry! Sliders,418,49,661,64 +183251,Karuba,418,49,661,64 +207830,5-Minute Dungeon,418,49,684,63 +1887,Legend of the Five Rings,433,48,181,122 +212445,Blood Bowl (2016 Edition),433,48,315,93 +148203,Dutch Blitz,433,48,392,83 +7865,10 Days in Africa,433,48,448,78 +138788,Dungeon Roll,433,48,491,75 +22345,Yspahan,433,48,508,74 +136888,Bruges,433,48,533,72 +8051,Attika,433,48,601,68 +184921,Bunny Kingdom,433,48,613,67 +27162,Kingsburg,433,48,641,65 +41010,My First Carcassonne,433,48,661,64 +181304,Mysterium,433,48,684,63 +54137,Battle Sheep,433,48,699,62 +171668,The Grizzled,433,48,699,62 +293348,Flesh and Blood,447,47,216,114 +17534,Just4Fun,447,47,328,91 +5,Acquire,447,47,356,87 +18,RoboRally,447,47,356,87 +172081,Burgle Bros.,447,47,371,85 +39683,At the Gates of Loyang,447,47,491,75 +260300,Dungeon Mayhem,447,47,491,75 +5867,10 Days in Europe,447,47,533,72 +204135,Skyjo,447,47,533,72 +291453,SCOUT,447,47,533,72 +129090,Roll For It!,447,47,567,70 +176189,Zombicide: Black Plague,447,47,613,67 +56692,Parade,447,47,628,66 +293014,Nidavellir,447,47,628,66 +203427,Fabled Fruit,447,47,661,64 +178570,Unusual Suspects,447,47,684,63 +251247,Barrage,447,47,684,63 +220,High Society,447,47,717,61 +366013,Heat: Pedal to the Metal,447,47,717,61 +20100,Wits & Wagers,447,47,740,60 +4583,Pinochle,467,46,277,99 +328871,Terraforming Mars: Ares Expedition,467,46,320,92 +197405,Tak,467,46,382,84 +227466,Break the Code,467,46,392,83 +115746,War of the Ring: Second Edition,467,46,405,82 +288513,Tranquility,467,46,405,82 +128271,Ginkgopolis,467,46,434,79 +201,The Rose King,467,46,448,78 +128,Take it Easy!,467,46,480,76 +17405,1846: The Race for the Midwest,467,46,480,76 +167400,Ashes Reborn: Rise of the Phoenixborn,467,46,491,75 +6830,Zendo,467,46,519,73 +341169,Great Western Trail: Second Edition,467,46,519,73 +102680,Trajan,467,46,550,71 +219513,Bärenpark,467,46,550,71 +232988,The Castles of Burgundy: The Dice Game,467,46,601,68 +137330,Cube Quest,467,46,613,67 +256960,Pax Pamir: Second Edition,467,46,628,66 +206915,Tempel des Schreckens,467,46,684,63 +6351,Gulo Gulo,467,46,699,62 +102794,Caverna: The Cave Farmers,467,46,740,60 +236457,Architects of the West Kingdom,467,46,740,60 +146508,T.I.M.E Stories,467,46,791,58 +908,Tally Ho!,490,45,352,88 +9851,Shut the Box,490,45,371,85 +2593,Pass the Pigs,490,45,382,84 +37628,Haggis,490,45,392,83 +146278,Tash-Kalar: Arena of Legends,490,45,416,81 +192343,Bubblee Pop,490,45,434,79 +16395,Blokus Duo,490,45,448,78 +1197,Blink,490,45,491,75 +230914,Carcassonne Big Box 6,490,45,519,73 +256382,Disney Villainous: The Worst Takes it All,490,45,550,71 +121423,Skyline,490,45,567,70 +12002,Jambo,490,45,585,69 +66362,Glen More,490,45,585,69 +284584,Troyes Dice,490,45,613,67 +85256,Timeline: Inventions,490,45,628,66 +163166,One Night Ultimate Werewolf: Daybreak,490,45,641,65 +119890,Agricola: All Creatures Big and Small,490,45,661,64 +169426,Roll Player,490,45,661,64 +140934,Arboretum,490,45,684,63 +7854,YINSH,490,45,717,61 +38545,Kamisado,490,45,717,61 +173341,Loopin' Chewie,490,45,717,61 +74,Apples to Apples,490,45,740,60 +4209,Monza,490,45,740,60 +39206,Tac Tac Jack,490,45,760,59 +280794,Etherfields,490,45,760,59 +217372,The Quest for El Dorado,490,45,815,57 +183840,Oh My Goods!,490,45,840,56 +304783,Hadrian's Wall,490,45,867,55 +339789,Welcome to the Moon,490,45,867,55 +19643,World of Warcraft Trading Card Game,520,44,269,101 +10400,Patience,520,44,299,95 +3347,Solo,520,44,382,84 +66590,Just4Fun Colours,520,44,392,83 +128780,Pax Porfiriana,520,44,519,73 +302280,Shifting Stones,520,44,519,73 +19841,Pentago,520,44,550,71 +2346,DVONN,520,44,567,70 +146791,Shadows of Brimstone: City of the Ancients,520,44,567,70 +245643,Luxor,520,44,567,70 +317299,Loco Momo,520,44,567,70 +205059,Mansions of Madness: Second Edition,520,44,601,68 +50381,Cards Against Humanity,520,44,613,67 +196326,Love Letter: Premium Edition,520,44,613,67 +55670,Macao,520,44,641,65 +18833,Lord of the Rings: The Confrontation,520,44,661,64 +71721,Space Hulk: Death Angel – The Card Game,520,44,684,63 +112373,BraveRats,520,44,684,63 +233961,Claim,520,44,684,63 +305682,Rolling Realms,520,44,684,63 +251412,On Tour,520,44,699,62 +236217,Timebomb,520,44,717,61 +232832,Century: Golem Edition,520,44,760,59 +170216,Blood Rage,520,44,815,57 +300531,Paleo,520,44,970,52 +164812,Roll For It! Deluxe Edition,545,43,467,77 +278553,Silver,545,43,508,74 +79828,A Few Acres of Snow,545,43,533,72 +31594,In the Year of the Dragon,545,43,550,71 +40270,Call of Cthulhu: The Card Game,545,43,567,70 +141572,Paperback,545,43,567,70 +170587,Don't Mess with Cthulhu,545,43,567,70 +73664,Cabo,545,43,641,65 +200077,Mint Works,545,43,641,65 +58421,Egizia,545,43,661,64 +155703,Evolution,545,43,661,64 +160069,Ticket to Ride: 10th Anniversary,545,43,661,64 +265683,Second Chance,545,43,661,64 +25417,BattleLore,545,43,699,62 +30933,BANG! The Bullet!,545,43,699,62 +303553,Skulls of Sedlec,545,43,699,62 +309110,Food Chain Island,545,43,699,62 +6714,Go Away Monster!,545,43,717,61 +277659,Final Girl,545,43,717,61 +166669,San Juan (Second Edition),545,43,740,60 +228504,Cat Lady,545,43,740,60 +234277,Nusfjord,545,43,760,59 +242705,Aeon Trespass: Odyssey,545,43,760,59 +299169,Spicy,545,43,760,59 +270673,Silver & Gold,545,43,791,58 +231664,Fast Forward: FEAR,545,43,815,57 +246784,Cryptid,545,43,840,56 +241590,Smart10,545,43,867,55 +135779,A Fake Artist Goes to New York,545,43,929,53 +169654,Deep Sea Adventure,545,43,970,52 +272453,KeyForge: Age of Ascension,575,42,371,85 +17104,Canasta,575,42,382,84 +3181,Farkle,575,42,405,82 +826,Cartagena,575,42,416,81 +1032,B-17: Queen of the Skies,575,42,448,78 +101721,Mage Wars Arena,575,42,448,78 +357563,Akropolis,575,42,467,77 +62222,Commands & Colors: Napoleonics,575,42,508,74 +40628,Finca,575,42,533,72 +220877,Rajas of the Ganges,575,42,601,68 +340,Frank's Zoo,575,42,613,67 +7866,10 Days in the USA,575,42,628,66 +111341,The Great Zimbabwe,575,42,641,65 +158899,Colt Express,575,42,641,65 +3201,Lord of the Rings: The Confrontation,575,42,699,62 +36235,The Duke,575,42,717,61 +43015,Hansa Teutonica,575,42,760,59 +169416,Pathfinder Adventure Card Game: Wrath of the Righteous – Base Set,575,42,760,59 +306881,Railroad Ink Challenge: Lush Green Edition,575,42,760,59 +93,El Grande,575,42,791,58 +43443,Castle Panic,575,42,791,58 +336382,Marvel United: X-Men,575,42,791,58 +127398,Legends of Andor,575,42,815,57 +287084,Oriflamme,575,42,815,57 +17133,Railways of the World,575,42,902,54 +225694,Decrypto,575,42,929,53 +157354,Five Tribes: The Djinns of Naqala,575,42,970,52 +251661,Oathsworn: Into the Deepwood,575,42,1074,49 +11017,Crazy Eights,603,41,52,223 +175621,Epic Card Game,603,41,405,82 +5072,Carrom,603,41,448,78 +156714,Doomtown: Reloaded,603,41,480,76 +300936,Via Magica,603,41,550,71 +1260,Rook,603,41,585,69 +155987,Abyss,603,41,585,69 +494,Ave Caesar,603,41,601,68 +175914,Food Chain Magnate,603,41,641,65 +245934,Carpe Diem,603,41,641,65 +528,ZÈRTZ,603,41,661,64 +318553,Rajas of the Ganges: The Dice Charmers,603,41,661,64 +16496,Roma,603,41,684,63 +31105,Archaeology: The Card Game,603,41,717,61 +31999,TZAAR,603,41,717,61 +122515,Keyflower,603,41,717,61 +187273,The Dresden Files Cooperative Card Game,603,41,717,61 +218421,Street Masters,603,41,717,61 +140,Pit,603,41,760,59 +155695,Age of War,603,41,760,59 +318184,Imperium: Classics,603,41,760,59 +29368,Last Night on Earth: The Zombie Game,603,41,791,58 +37904,Formula D,603,41,791,58 +126042,Nations,603,41,791,58 +146886,La Granja,603,41,791,58 +170042,Raiders of the North Sea,603,41,791,58 +3570,Chicken Cha Cha Cha,603,41,815,57 +163967,Tiny Epic Galaxies,603,41,815,57 +244916,Drop It,603,41,815,57 +526,Abalone,603,41,840,56 +1219,Labyrinth,603,41,840,56 +143693,Glass Road,603,41,840,56 +10547,Betrayal at House on the Hill,603,41,867,55 +124708,Mice and Mystics,603,41,867,55 +218417,Aeon's End: War Eternal,603,41,867,55 +92828,Dixit: Odyssey,603,41,902,54 +175117,Celestia,603,41,902,54 +72125,Eclipse: New Dawn for the Galaxy,603,41,929,53 +153938,Camel Up,603,41,929,53 +352515,Trio,603,41,929,53 +5048,Candy Land,643,40,9,2411 +15889,Scopa,643,40,260,103 +1270,Star Wars Customizable Card Game,643,40,274,100 +7682,Go Fish,643,40,299,95 +586,Up Front,643,40,328,91 +224483,Exceed Fighting System,643,40,328,91 +3720,Subbuteo,643,40,382,84 +27627,Talisman: Revised 4th Edition,643,40,448,78 +2952,Trivial Pursuit: Genus Edition,643,40,508,74 +1111,Taboo,643,40,533,72 +5895,Hungry Hungry Hippos,643,40,550,71 +295260,It's a Wonderful World: Heritage Edition,643,40,567,70 +106,Mystery Rummy: Jack the Ripper,643,40,585,69 +34707,The Hanging Gardens,643,40,585,69 +271460,UNO Flip!,643,40,585,69 +24417,Factory Fun,643,40,613,67 +2381,Scattergories,643,40,628,66 +173,Formula Dé,643,40,641,65 +314088,Agropolis,643,40,641,65 +34585,Keltis,643,40,699,62 +1353,Time's Up!,643,40,740,60 +6411,Blokus 3D,643,40,740,60 +117995,"Spot it! 1,2,3",643,40,740,60 +46,Medici,643,40,760,59 +1258,Phase 10,643,40,760,59 +209325,The Game: Extreme,643,40,760,59 +350184,Earth,643,40,760,59 +270314,Ohanami,643,40,791,58 +421,1830: Railways & Robber Barons,643,40,815,57 +83195,Ghost Blitz,643,40,840,56 +128621,Viticulture,643,40,840,56 +194880,Dream Home,643,40,867,55 +220517,The Shipwreck Arcana,643,40,867,55 +27588,Zooloretto,643,40,902,54 +172931,Outfoxed!,643,40,970,52 +221107,Pandemic Legacy: Season 2,643,40,1012,51 +262211,Cloudspire,643,40,1012,51 +253344,Cthulhu: Death May Die,643,40,1074,49 +10816,Blackjack,681,39,52,223 +157026,Ascension: Realms Unraveled,681,39,73,186 +2633,DOG,681,39,337,90 +1540,BattleTech,681,39,480,76 +54,Tikal,681,39,491,75 +284229,Butterfly,681,39,491,75 +67254,Warmachine Prime Mk II,681,39,508,74 +163745,Star Wars: Armada,681,39,567,70 +47082,"Win, Lose, or Banana",681,39,585,69 +158275,Marvel Dice Masters: Uncanny X-Men,681,39,628,66 +193558,The Oracle of Delphi,681,39,641,65 +143404,Castellion,681,39,699,62 +276025,Maracaibo,681,39,699,62 +307305,Bullet♥︎,681,39,717,61 +94362,Rune Age,681,39,740,60 +162082,Deus,681,39,815,57 +196340,Yokohama,681,39,815,57 +248562,Mage Knight: Ultimate Edition,681,39,815,57 +16986,Ubongo,681,39,902,54 +31016,We Didn't Playtest This At All,681,39,902,54 +265736,Tiny Towns,681,39,902,54 +270844,Imperial Settlers: Empires of the North,681,39,902,54 +147151,Concept,681,39,970,52 +192458,51st State: Master Set,681,39,970,52 +204801,Kneipenquiz: Das Original,681,39,1012,51 +234120,Gold Fever,681,39,1012,51 +164928,Orléans,681,39,1074,49 +2162,"Warhammer 40,000 (Third Edition)",708,38,56,217 +2603,The Lord of the Rings Trading Card Game,708,38,405,82 +11929,Go-Moku,708,38,426,80 +26162,Claim It!,708,38,491,75 +88408,Nightfall,708,38,491,75 +483,Diplomacy,708,38,519,73 +339,Quiddler,708,38,550,71 +123123,BattleCON: Devastation of Indines,708,38,550,71 +12962,Reef Encounter,708,38,585,69 +32484,The Battle for Hill 218,708,38,601,68 +26884,Escalation!,708,38,641,65 +40425,Maori,708,38,641,65 +13230,Gobblet Gobblers,708,38,661,64 +10550,Big Boggle,708,38,699,62 +285894,Bravo!,708,38,699,62 +223750,Hardback,708,38,717,61 +244271,Dice Throne: Season Two – Battle Chest,708,38,717,61 +106217,Hawaii,708,38,760,59 +122298,Morels,708,38,791,58 +346482,Voll verplant,708,38,791,58 +29773,Cheeky Monkey,708,38,815,57 +37400,Sushizock im Gockelwok,708,38,815,57 +139976,Cthulhu Wars,708,38,815,57 +22484,Ingenious: Travel Edition,708,38,840,56 +139771,Star Trek: Attack Wing,708,38,840,56 +260180,Project L,708,38,840,56 +308493,Relics of Rajavihara,708,38,840,56 +125311,Okiya,708,38,867,55 +136063,Forbidden Desert,708,38,867,55 +293296,Splendor: Marvel,708,38,867,55 +319793,Happy City,708,38,867,55 +17226,Descent: Journeys in the Dark,708,38,902,54 +7805,Fearsome Floors,708,38,929,53 +132372,Guildhall,708,38,929,53 +187687,Pathfinder Adventure Card Game: Mummy's Mask – Base Set,708,38,929,53 +231665,Fast Forward: FORTRESS,708,38,929,53 +91671,Da ist der Wurm drin,708,38,970,52 +197376,Charterstone,708,38,970,52 +235488,Istanbul: The Dice Game,708,38,1012,51 +72287,Mr. Jack Pocket,708,38,1042,50 +177524,ICECOOL,708,38,1042,50 +2569,Pick Picknic,708,38,1074,49 +300010,Dragomino,708,38,1159,47 +122294,Ascension: Immortal Heroes,751,37,182,121 +503,Through the Desert,751,37,231,110 +138233,Ascension: Rise of Vigil,751,37,265,102 +3085,Gang of Four,751,37,382,84 +3421,StreetSoccer,751,37,467,77 +1915,Middle-earth,751,37,519,73 +917,Rack-O,751,37,601,68 +152242,Ultimate Werewolf: Deluxe Edition,751,37,661,64 +191977,The Castles of Burgundy: The Card Game,751,37,661,64 +164127,Carcassonne Big Box 5,751,37,699,62 +346965,Azul: Queen's Garden,751,37,740,60 +196526,Coffee Roaster,751,37,760,59 +391163,Forest Shuffle,751,37,760,59 +2290,Good & Bad Ghosts,751,37,791,58 +36553,Time's Up! Title Recall!,751,37,815,57 +308765,Praga Caput Regni,751,37,815,57 +175,What the Heck?,751,37,840,56 +143519,Quantum,751,37,840,56 +213266,Circle the Wagons,751,37,840,56 +216734,Dice Throne: Season One,751,37,867,55 +226501,Dragonfire,751,37,867,55 +130176,Tales & Games: The Hare & the Tortoise,751,37,902,54 +130882,Cardline: Animals,751,37,902,54 +264241,Mandala,751,37,929,53 +331265,Port Royal: Big Box,751,37,929,53 +167355,Nemesis,751,37,970,52 +205045,Avenue,751,37,970,52 +2653,Survive: Escape from Atlantis!,751,37,1012,51 +153064,Good Cop Bad Cop,751,37,1012,51 +180602,Game of Trains,751,37,1012,51 +187645,Star Wars: Rebellion,751,37,1012,51 +357,Excape,751,37,1042,50 +14254,PitchCar Mini,751,37,1042,50 +15290,R-Eco,751,37,1074,49 +101785,D-Day Dice,751,37,1074,49 +277458,Kluster,751,37,1074,49 +279537,The Search for Planet X,751,37,1074,49 +358124,Mists over Carcassonne,751,37,1074,49 +129736,Cockroach Poker Royal,751,37,1118,48 +370591,Dorfromantik: The Board Game,751,37,1118,48 +287954,Azul: Summer Pavilion,751,37,1159,47 +230080,Majesty: For the Realm,751,37,1192,46 +209010,Mechs vs. Minions,751,37,1339,43 +2386,Chinese Checkers,794,36,434,79 +714,Talisman,794,36,448,78 +123607,Puzzle Strike: Third Edition,794,36,567,70 +27710,Catan Dice Game,794,36,613,67 +144553,The Builders: Middle Ages,794,36,613,67 +194517,Super Fantasy Brawl,794,36,628,66 +291794,Dice Throne: Season One ReRolled,794,36,628,66 +94902,Dungeons & Dragons Starter Set,794,36,661,64 +161970,Alchemists,794,36,684,63 +225482,Seas of Strife,794,36,740,60 +233078,Twilight Imperium: Fourth Edition,794,36,760,59 +179303,Cthulhu Realms,794,36,791,58 +334011,A Gentle Rain,794,36,815,57 +218121,Dice Hospital,794,36,840,56 +314503,Codex Naturalis,794,36,902,54 +318472,Blood Bowl: Second Season Edition,794,36,902,54 +2582,Catch Phrase!,794,36,929,53 +15062,Shadows over Camelot,794,36,929,53 +42452,Rattus,794,36,929,53 +118410,Dirty Pig,794,36,929,53 +310873,Carnegie,794,36,929,53 +372559,Spots,794,36,929,53 +29223,Marrakech,794,36,970,52 +113401,Timeline: Events,794,36,970,52 +134352,Two Rooms and a Boom,794,36,970,52 +165950,Beasty Bar,794,36,970,52 +341530,Super Mega Lucky Box,794,36,970,52 +373106,Sky Team,794,36,970,52 +49,Mamma Mia!,794,36,1012,51 +8946,Da Vinci Code,794,36,1012,51 +65532,Defenders of the Realm,794,36,1012,51 +248861,Metro X,794,36,1012,51 +184346,Go Nuts for Donuts,794,36,1042,50 +221965,The Fox in the Forest,794,36,1042,50 +878,Wyatt Earp,794,36,1074,49 +266810,Paladins of the West Kingdom,794,36,1074,49 +286751,Zombicide: 2nd Edition,794,36,1118,48 +296151,Viscounts of the West Kingdom,794,36,1159,47 +306735,Under Falling Skies,794,36,1192,46 +233371,Clank! In! Space!: A Deck-Building Adventure,794,36,1285,44 +310448,Zombie Teenz Evolution,794,36,1339,43 +285775,KeyForge: Worlds Collide,835,35,480,76 +20528,Palace,835,35,567,70 +63975,Mountain Goats,835,35,628,66 +148943,Coup: Rebellion G54,835,35,641,65 +2407,Sorry!,835,35,661,64 +216459,The Lost Expedition,835,35,661,64 +89952,Carcassonne: 10 Year Special Edition,835,35,717,61 +394,Kahuna,835,35,760,59 +18946,Just Desserts,835,35,760,59 +11229,Star Wars Miniatures,835,35,867,55 +17804,Dungeons & Dragons Basic Game,835,35,867,55 +160851,Lanterns: The Harvest Festival,835,35,867,55 +3284,Star Wars: Epic Duels,835,35,902,54 +217475,Twenty One,835,35,902,54 +2921,The Game of Life,835,35,929,53 +22245,Royal Visit,835,35,929,53 +60435,Rallyman,835,35,929,53 +208775,Qwixx Deluxe,835,35,929,53 +20545,Rory's Story Cubes,835,35,970,52 +154892,Loonacy,835,35,970,52 +269595,Copenhagen,835,35,970,52 +269144,Hadara,835,35,1012,51 +191300,Archaeology: The New Expedition,835,35,1042,50 +241724,Villagers,835,35,1042,50 +364073,Splendor Duel,835,35,1042,50 +374173,Star Wars: The Deckbuilding Game,835,35,1042,50 +278,Catan Card Game,835,35,1074,49 +73761,K2,835,35,1074,49 +155821,Inis,835,35,1074,49 +179172,Unfair,835,35,1074,49 +189932,Tyrants of the Underdark,835,35,1074,49 +300329,Harry Potter Strike Dice Game,835,35,1074,49 +366162,Clever 4Ever,835,35,1074,49 +555,The Princes of Florence,835,35,1118,48 +131325,Timeline: General Interest,835,35,1118,48 +216428,Seikatsu,835,35,1118,48 +329465,Red Rising,835,35,1118,48 +438,Scotland Yard,835,35,1159,47 +159675,Fields of Arle,835,35,1159,47 +177639,Raptor,835,35,1159,47 +227072,The Chameleon,835,35,1159,47 +329082,Radlands,835,35,1159,47 +118,Modern Art,835,35,1192,46 +91312,Discworld: Ankh-Morpork,835,35,1192,46 +203993,Lorenzo il Magnifico,835,35,1192,46 +41916,The Magic Labyrinth,835,35,1233,45 +170561,Valeria: Card Kingdoms,835,35,1233,45 +253618,5-Minute Marvel,835,35,1233,45 +285253,Fiesta de los Muertos,835,35,1233,45 +157820,Escape: The Curse of the Temple – Big Box,835,35,1285,44 +19237,Ca$h 'n Gun$,835,35,1339,43 +185257,Innovation Deluxe,886,34,371,85 +103,Titan,886,34,405,82 +4505,Tarot,886,34,467,77 +551,Battle Cry,886,34,519,73 +113819,Tenzi,886,34,533,72 +113997,Tajemnicze Domostwo,886,34,661,64 +220988,Criss Cross,886,34,699,62 +214,Café International,886,34,717,61 +186751,Mythic Battles: Pantheon,886,34,717,61 +270633,Aeon's End: The New Age,886,34,717,61 +125028,Colorpop,886,34,760,59 +297129,Jekyll vs. Hyde,886,34,760,59 +168,Empire Builder,886,34,791,58 +222887,Twin It!,886,34,815,57 +233571,Star Wars: Legion,886,34,840,56 +10799,Old Maid,886,34,902,54 +3699,Killer Bunnies and the Quest for the Magic Carrot,886,34,929,53 +29073,Blockers!,886,34,929,53 +103343,A Game of Thrones: The Board Game (Second Edition),886,34,929,53 +200147,Kanagawa,886,34,929,53 +240225,Roll to the Top!,886,34,929,53 +351476,My City: Roll & Build,886,34,929,53 +638,Hera and Zeus,886,34,970,52 +7,Cathedral,886,34,1012,51 +158900,Samurai Spirit,886,34,1012,51 +204027,Cottage Garden,886,34,1012,51 +332944,Sobek: 2 Players,886,34,1012,51 +2944,Halli Galli,886,34,1042,50 +8552,I Go!,886,34,1042,50 +41003,Keltis: Der Weg der Steine Mitbringspiel,886,34,1042,50 +169611,Love Letter: The Hobbit – The Battle of the Five Armies,886,34,1042,50 +296512,The Game: Quick & Easy,886,34,1042,50 +359152,Marvel: Remix,886,34,1042,50 +245961,Fleet: The Dice Game,886,34,1074,49 +257614,Tussie Mussie,886,34,1074,49 +269199,Dizzle,886,34,1074,49 +344254,Yummy Yummy Monster Tummy,886,34,1074,49 +823,The Lord of the Rings,886,34,1118,48 +12346,Spooky Stairs,886,34,1118,48 +140620,Lewis & Clark: The Expedition,886,34,1118,48 +293141,King of Tokyo: Dark Edition,886,34,1118,48 +148729,Maquis,886,34,1159,47 +282524,Horrified,886,34,1159,47 +84732,Kariba,886,34,1192,46 +5770,Orchard,886,34,1233,45 +17025,Poison,886,34,1233,45 +241477,Karak,886,34,1233,45 +266524,PARKS,886,34,1233,45 +168435,Between Two Cities,886,34,1285,44 +256226,Azul: Stained Glass of Sintra,886,34,1285,44 +230383,Memoarrr!,886,34,1339,43 +269207,The Taverns of Tiefenthal,886,34,1339,43 +155068,Arcadia Quest,886,34,1396,42 +191862,Imhotep,886,34,1431,41 +332800,Summoner Wars (Second Edition),940,33,480,76 +13123,500,940,33,533,72 +12493,Twilight Imperium: Third Edition,940,33,740,60 +200853,Habitats,940,33,740,60 +73365,Papayoo,940,33,760,59 +11865,Koi-Koi,940,33,791,58 +94389,Urbion,940,33,867,55 +172242,Exploding Kittens: NSFW Deck,940,33,867,55 +271321,CABO (Second Edition),940,33,902,54 +268586,6 nimmt! 25 Jahre,940,33,929,53 +31730,Wabash Cannonball,940,33,970,52 +38657,Cities,940,33,970,52 +40832,Keltis: Das Kartenspiel,940,33,970,52 +15364,Vegas Showdown,940,33,1042,50 +17240,That's Life!,940,33,1042,50 +304285,Infinity Gauntlet: A Love Letter Game,940,33,1042,50 +29387,Zombie Fluxx,940,33,1074,49 +45315,Dungeon Lords,940,33,1074,49 +128664,Timeline,940,33,1074,49 +2266,Gobblet,940,33,1118,48 +43111,Chaos in the Old World,940,33,1118,48 +108687,Puerto Rico,940,33,1118,48 +130792,The Enchanted Tower,940,33,1118,48 +180593,The Bloody Inn,940,33,1118,48 +193210,Dice Stars,940,33,1118,48 +59946,Dungeons & Dragons: Castle Ravenloft Board Game,940,33,1159,47 +81453,Famiglia,940,33,1159,47 +90137,Blood Bowl: Team Manager – The Card Game,940,33,1159,47 +223770,Startups,940,33,1159,47 +24310,The Red Dragon Inn,940,33,1192,46 +48726,Alien Frontiers,940,33,1192,46 +71061,DungeonQuest (Third Edition),940,33,1192,46 +154246,La Isla,940,33,1192,46 +160499,King of New York,940,33,1192,46 +354,Stick 'Em,940,33,1233,45 +197443,Fugitive,940,33,1233,45 +235922,King of the Dice,940,33,1233,45 +253284,Ticket to Ride: New York,940,33,1233,45 +253684,Spring Meadow,940,33,1233,45 +1231,Bausack,940,33,1285,44 +105593,Cheating Moth,940,33,1285,44 +309105,Sagani,940,33,1285,44 +770,Loot,940,33,1339,43 +21882,Blue Moon City,940,33,1339,43 +170771,Sword & Sorcery,940,33,1339,43 +150312,Welcome to the Dungeon,940,33,1396,42 +244995,Illusion,940,33,1431,41 +318977,MicroMacro: Crime City,940,33,1431,41 +265256,PUSH,940,33,1491,40 +268864,Undaunted: Normandy,940,33,1491,40 +35188,Legends of the Three Kingdoms,990,32,101,167 +2393,Xiangqi,990,32,182,121 +108018,Riichi Mahjong,990,32,185,120 +185123,Ascension: Dreamscape,990,32,519,73 +7263,Nertz,990,32,585,69 +22398,10 Days in Asia,990,32,601,68 +491,Web of Power,990,32,717,61 +271529,Botanik,990,32,760,59 +7475,Hand and Foot,990,32,791,58 +33468,Zombie in My Pocket,990,32,791,58 +1035,Squad Leader,990,32,815,57 +5432,Chutes and Ladders,990,32,815,57 +143157,SOS Titanic,990,32,867,55 +315767,Cartographers Heroes,990,32,867,55 +72667,Mijnlieff,990,32,902,54 +285905,Marvel: Crisis Protocol,990,32,902,54 +131111,Codex: Card-Time Strategy – Deluxe Set,990,32,929,53 +216849,Dominion (Second Edition) Big Box,990,32,929,53 +102104,Star Fluxx,990,32,970,52 +121297,Fleet,990,32,970,52 +264647,Age of Civilization,990,32,970,52 +8129,Sluff Off!,990,32,1012,51 +41762,Fastrack,990,32,1012,51 +32441,Bezzerwizzer,990,32,1042,50 +158339,Lost Legacy: The Starship,990,32,1042,50 +206941,First Class: All Aboard the Orient Express!,990,32,1042,50 +385761,Faraway,990,32,1042,50 +5130,Afrikan tähti,990,32,1074,49 +146439,BattleLore: Second Edition,990,32,1074,49 +217861,Paper Tales,990,32,1074,49 +359609,Arkham Horror: The Card Game (Revised Edition),990,32,1074,49 +7708,Hisss,990,32,1159,47 +198928,Iberia,990,32,1159,47 +233678,Indian Summer,990,32,1159,47 +283948,Marco Polo II: In the Service of the Khan,990,32,1159,47 +164840,Monopoly Deal,990,32,1192,46 +218208,Ticket to Ride: First Journey (Europe),990,32,1192,46 +8964,Funny Bunny,990,32,1233,45 +134453,The Little Prince: Make Me a Planet,990,32,1233,45 +255692,New Frontiers,990,32,1233,45 +350736,Voyages,990,32,1233,45 +22545,Age of Empires III: The Age of Discovery,990,32,1285,44 +56933,Penguin Party,990,32,1285,44 +28023,Jamaica,990,32,1339,43 +173092,Träxx,990,32,1339,43 +206718,Ethnos,990,32,1339,43 +262543,Wavelength,990,32,1339,43 +66056,Rivals for Catan,990,32,1396,42 +172971,Crossing,990,32,1396,42 +9216,Goa: A New Expedition,990,32,1491,40 +45358,Alhambra: Big Box,990,32,1491,40 +150376,Dead of Winter: A Crossroads Game,990,32,1491,40 +218333,Rhino Hero: Super Battle,990,32,1491,40 +294484,Unmatched: Cobble & Fog,990,32,1491,40 +139030,Mascarade,990,32,1549,39 +194879,Not Alone,990,32,1549,39 +328908,The Initiative,990,32,1615,38 +2281,Pictionary,1047,31,320,92 +6866,Mus,1047,31,448,78 +270131,KLASK 4,1047,31,760,59 +4112,Hex,1047,31,840,56 +151247,Greed,1047,31,867,55 +147303,Carcassonne: South Seas,1047,31,902,54 +11634,Mexican Train,1047,31,929,53 +165401,Wir sind das Volk!,1047,31,929,53 +65262,Connect 4 (Revised Edition),1047,31,970,52 +25643,Arkadia,1047,31,1012,51 +21523,Runebound: Second Edition,1047,31,1074,49 +186279,Finska Mini,1047,31,1074,49 +8125,Santiago,1047,31,1118,48 +176165,Dale of Merchants,1047,31,1118,48 +233208,D-Day Dice (Second Edition),1047,31,1118,48 +313473,L.A.M.A. Party Edition,1047,31,1118,48 +152,Mü & More,1047,31,1159,47 +559,Metro,1047,31,1159,47 +24181,Imperial,1047,31,1159,47 +8924,Dancing Eggs,1047,31,1192,46 +37208,Court of the Medici,1047,31,1192,46 +42215,Tobago,1047,31,1192,46 +181960,Portal of Heroes,1047,31,1192,46 +215341,Thunderstone Quest,1047,31,1192,46 +131366,Eight-Minute Empire,1047,31,1233,45 +147154,Blue Moon Legends,1047,31,1233,45 +300322,Hallertau,1047,31,1233,45 +25314,Bowling Solitaire,1047,31,1285,44 +125618,Libertalia,1047,31,1285,44 +145189,Timeline: Music & Cinema,1047,31,1285,44 +198953,Pax Renaissance,1047,31,1285,44 +236461,The Game: Face to Face,1047,31,1285,44 +256606,Spirits of the Wild,1047,31,1285,44 +325494,ISS Vanguard,1047,31,1285,44 +358690,MANTIS,1047,31,1285,44 +153,Take 5!,1047,31,1339,43 +398,Wildlife Safari,1047,31,1339,43 +62227,"Labyrinth: The War on Terror, 2001 – ?",1047,31,1339,43 +65781,London,1047,31,1339,43 +127997,Qin,1047,31,1339,43 +207243,The City of Kings,1047,31,1339,43 +444,Escape from the Hidden Castle,1047,31,1396,42 +273330,Bloodborne: The Board Game,1047,31,1431,41 +300905,Top Ten,1047,31,1431,41 +36932,Claustrophobia,1047,31,1491,40 +192153,Reign of Cthulhu,1047,31,1491,40 +274364,Watergate,1047,31,1491,40 +318243,HITSTER,1047,31,1491,40 +339214,No Mercy,1047,31,1491,40 +124172,Tsuro of the Seas,1047,31,1549,39 +127060,Bora Bora,1047,31,1549,39 +153016,Telestrations: 12 Player Party Pack,1047,31,1615,38 +185343,Anachrony,1047,31,1615,38 +244228,Reef,1047,31,1696,37 +7316,Bingo,1101,30,43,249 +144864,Ascension: Darkness Unleashed,1101,30,337,90 +11733,Briscola,1101,30,416,81 +183284,Factory Funner,1101,30,416,81 +392,Brawl,1101,30,508,74 +568,Rage,1101,30,613,67 +70918,Hanabi & Ikebana,1101,30,661,64 +230889,Aristeia!,1101,30,760,59 +13337,Whist,1101,30,815,57 +527,GIPF,1101,30,867,55 +21133,Infinity N3: Core Book,1101,30,867,55 +187988,Pyramid Arcade,1101,30,867,55 +15,Cosmic Encounter,1101,30,902,54 +98085,Seven Dragons,1101,30,902,54 +244711,Newton,1101,30,902,54 +10093,Axis & Allies,1101,30,929,53 +157,Eurorails,1101,30,970,52 +1301,Netrunner,1101,30,970,52 +4741,Warmachine,1101,30,970,52 +181390,Buttons,1101,30,970,52 +1634,Warhammer Quest,1101,30,1012,51 +63706,11 nimmt!,1101,30,1012,51 +66587,GOSU,1101,30,1012,51 +181329,Team Play,1101,30,1042,50 +150580,Spexxx,1101,30,1074,49 +1419,Pylos,1101,30,1118,48 +329954,Carcassonne: 20th Anniversary Edition,1101,30,1118,48 +140535,Koryŏ,1101,30,1159,47 +347013,Get on Board: New York & London,1101,30,1159,47 +22,Magic Realm,1101,30,1192,46 +91,Paths of Glory,1101,30,1192,46 +185709,Beasts of Balance,1101,30,1192,46 +472,DungeonQuest,1101,30,1233,45 +141007,Carcassonne Big Box 3,1101,30,1233,45 +271060,Pathfinder Adventure Card Game: Core Set,1101,30,1233,45 +335212,Sentinels of the Multiverse: Definitive Edition,1101,30,1233,45 +40393,FITS,1101,30,1285,44 +206084,Nautilion,1101,30,1285,44 +285984,Last Bastion,1101,30,1285,44 +99975,Timeline: Discoveries,1101,30,1339,43 +141428,Pass the Pandas,1101,30,1339,43 +175307,Love Letter: Adventure Time,1101,30,1339,43 +227758,Kokoro: Avenue of the Kodama,1101,30,1339,43 +35497,Fauna,1101,30,1396,42 +54998,Cyclades,1101,30,1396,42 +108044,Nefarious,1101,30,1396,42 +119432,Snowdonia,1101,30,1396,42 +129948,The Palaces of Carrara,1101,30,1396,42 +159566,Unicorn Glitterluck: Cloud Crystals,1101,30,1396,42 +176229,Tides of Time,1101,30,1396,42 +353470,Star Wars: Jabba's Palace – A Love Letter Game,1101,30,1396,42 +105,Colossal Arena,1101,30,1431,41 +112,Condottiere,1101,30,1431,41 +18100,China,1101,30,1431,41 +216600,Fantastic Factories,1101,30,1431,41 +234439,Karuba Junior,1101,30,1431,41 +244608,Menara,1101,30,1431,41 +257499,Arkham Horror (Third Edition),1101,30,1431,41 +319604,Ricochet: A la poursuite du Comte courant,1101,30,1431,41 +15511,Fjords,1101,30,1491,40 +235655,Dragon's Breath,1101,30,1491,40 +258779,Planet Unknown,1101,30,1491,40 +275467,Letter Jam,1101,30,1491,40 +66589,Navegador,1101,30,1549,39 +104006,Village,1101,30,1549,39 +157969,Sheriff of Nottingham,1101,30,1549,39 +253664,Taco Cat Goat Cheese Pizza,1101,30,1549,39 +281194,Flick of Faith,1101,30,1549,39 +294514,5-Minute Mystery,1101,30,1549,39 +329845,Stella: Dixit Universe,1101,30,1549,39 +255984,Sleeping Gods,1101,30,1615,38 +260605,Camel Up (Second Edition),1101,30,1615,38 +296237,Warp's Edge,1101,30,1615,38 +314491,Meadow,1101,30,1615,38 +322708,Descent: Legends of the Dark,1101,30,1615,38 +156546,Monikers,1101,30,1696,37 +188920,This War of Mine: The Board Game,1101,30,1696,37 +233312,Stuffed Fables,1101,30,1696,37 +310632,Dice Miner,1101,30,1696,37 +220775,Codenames: Disney – Family Edition,1101,30,1782,36 +232043,Queendomino,1101,30,1782,36 +105134,Risk Legacy,1101,30,1867,35 +1339,Dungeon!,1183,29,10,1759 +5071,Sjoelen,1183,29,533,72 +361540,Quest Calendar: The Voidspark Chronicles,1183,29,601,68 +169147,Letter Tycoon,1183,29,791,58 +89409,BattleCON: War of Indines,1183,29,815,57 +124590,Call to Glory,1183,29,840,56 +367662,Applejack,1183,29,840,56 +67928,Puzzle Strike,1183,29,867,55 +4040,Tri-Ominos,1183,29,902,54 +1038,Tantrix,1183,29,970,52 +247567,D-Day Dice Pocket,1183,29,970,52 +3141,The Bucket King,1183,29,1074,49 +139993,Kingdom Builder: Big Box,1183,29,1074,49 +5942,Mystery Rummy: Al Capone and the Chicago Underworld,1183,29,1118,48 +146816,Sanssouci,1183,29,1118,48 +31808,GUBS: A Game of Wit and Luck,1183,29,1159,47 +235375,Spirits of the Forest,1183,29,1159,47 +21955,Treehouse,1183,29,1192,46 +67609,Way of the Dragon,1183,29,1192,46 +129050,P.I.,1183,29,1192,46 +267314,My First Castle Panic,1183,29,1192,46 +3307,Wallenstein,1183,29,1233,45 +130877,Blood Bound,1183,29,1233,45 +297658,[kosmopoli:t],1183,29,1233,45 +12171,Le Passe-Trappe,1183,29,1285,44 +140711,Carcassonne Big Box 4,1183,29,1285,44 +216497,District Noir,1183,29,1285,44 +269041,Calavera,1183,29,1285,44 +276894,Ticket to Ride: London,1183,29,1285,44 +308119,Pax Renaissance: 2nd Edition,1183,29,1285,44 +34320,Shanghaien,1183,29,1339,43 +102148,NOIR: Deductive Mystery Game,1183,29,1339,43 +116998,Thunderstone Advance: Towers of Ruin,1183,29,1339,43 +172287,Champions of Midgard,1183,29,1339,43 +234190,Unstable Unicorns,1183,29,1339,43 +297985,Battle Line: Medieval,1183,29,1339,43 +814,Aquarius,1183,29,1396,42 +9609,War of the Ring,1183,29,1396,42 +243430,Dealt!,1183,29,1396,42 +19999,Aton,1183,29,1431,41 +104347,Santiago de Cuba,1183,29,1431,41 +143405,Sylvion,1183,29,1431,41 +236245,Sen,1183,29,1431,41 +254192,Harry Potter: Hogwarts Battle – Defence Against the Dark Arts,1183,29,1431,41 +380165,Next Station: Tokyo,1183,29,1431,41 +170,Family Business,1183,29,1491,40 +16267,Trans Europa,1183,29,1491,40 +104710,Wiz-War (Eighth Edition),1183,29,1491,40 +121408,Trains,1183,29,1491,40 +232219,Dragon Castle,1183,29,1491,40 +366456,My Shelfie,1183,29,1491,40 +4636,Clans,1183,29,1549,39 +15363,Nexus Ops,1183,29,1549,39 +43578,Monster Chase,1183,29,1549,39 +48979,Wazabi,1183,29,1549,39 +97207,Dungeon Petz,1183,29,1549,39 +313531,Rustling Leaves,1183,29,1549,39 +2596,Villa Paletti,1183,29,1615,38 +62219,Dominant Species,1183,29,1615,38 +66505,The Speicherstadt,1183,29,1615,38 +70149,Ora et Labora,1183,29,1615,38 +213460,Unlock!: Escape Adventures,1183,29,1615,38 +227789,Heaven & Ale,1183,29,1615,38 +903,Hamsterrolle,1183,29,1696,37 +42776,Gears of War: The Board Game,1183,29,1696,37 +205125,Ticket to Ride: First Journey (U.S.),1183,29,1696,37 +269725,Corinth,1183,29,1696,37 +287938,Kitchen Rush (Revised Edition),1183,29,1696,37 +348096,Kites,1183,29,1696,37 +146312,Ghost Fightin' Treasure Hunters,1183,29,1782,36 +310789,Catapult Feud,1183,29,1782,36 +632,Cloud 9,1183,29,1867,35 +314040,Pandemic Legacy: Season 0,1183,29,1953,34 +1410,Trouble,1256,28,740,60 +75449,Firenze,1256,28,760,59 +112138,Krosmaster: Arena,1256,28,815,57 +118023,Keltis: Das Würfelspiel,1256,28,840,56 +56931,Arena: Roma II,1256,28,867,55 +143175,Kashgar: Merchants of the Silk Road,1256,28,867,55 +193,Fill or Bust,1256,28,929,53 +156689,Legendary: A Marvel Deck Building Game – Villains,1256,28,970,52 +193308,Spyfall 2,1256,28,970,52 +22897,Dreamblade,1256,28,1012,51 +138161,Firefly: The Game,1256,28,1012,51 +7262,Top Trumps,1256,28,1042,50 +281526,The Isofarian Guard,1256,28,1074,49 +120,Hoity Toity,1256,28,1159,47 +331328,Unsurmountable,1256,28,1192,46 +88,Torres,1256,28,1233,45 +2114,"Duck, Duck, Bruce",1256,28,1233,45 +110260,Roll'n Bump,1256,28,1233,45 +237087,DropMix,1256,28,1233,45 +363622,The Castles of Burgundy: Special Edition,1256,28,1233,45 +230,Merchant of Venus,1256,28,1285,44 +234,Hannibal: Rome vs. Carthage,1256,28,1285,44 +4888,Don't Break the Ice,1256,28,1285,44 +46255,Campaign Manager 2008,1256,28,1285,44 +161614,Stockpile,1256,28,1285,44 +175549,Salem 1692,1256,28,1285,44 +244330,Scarabya,1256,28,1285,44 +296167,Boomerang: Australia,1256,28,1285,44 +403,Elk Fest,1256,28,1339,43 +6381,Sequence for Kids,1256,28,1339,43 +20295,WeyKick,1256,28,1339,43 +21348,Ticket to Ride: Märklin,1256,28,1339,43 +31503,Slide 5,1256,28,1339,43 +220520,Caverna: Cave vs Cave,1256,28,1339,43 +232414,Oceans,1256,28,1339,43 +244994,Würfelland,1256,28,1339,43 +256804,Exploding Kittens: Party Pack,1256,28,1339,43 +60,Vinci,1256,28,1396,42 +300583,Village Green,1256,28,1396,42 +9149,Zitternix,1256,28,1431,41 +55427,Mr. Jack in New York,1256,28,1431,41 +275089,Mental Blocks,1256,28,1431,41 +330174,Explorers,1256,28,1431,41 +8195,Viva Topo!,1256,28,1491,40 +202670,Ticket to Ride: Rails & Sails,1256,28,1491,40 +204472,Sub Terra,1256,28,1491,40 +247935,Tramways Engineer's Workbook,1256,28,1491,40 +154809,Nippon,1256,28,1549,39 +160010,Conan,1256,28,1549,39 +161761,King's Gold,1256,28,1549,39 +205398,Citadels,1256,28,1549,39 +3565,Mordheim: City of the Damned,1256,28,1615,38 +17396,Manoeuvre,1256,28,1615,38 +23107,Drakon (Third Edition),1256,28,1615,38 +24480,The Pillars of the Earth,1256,28,1615,38 +27833,Steam,1256,28,1615,38 +30618,Eat Poop You Cat,1256,28,1615,38 +37371,Piece o' Cake,1256,28,1615,38 +176524,Hoplomachus: Origins,1256,28,1615,38 +259069,Punto,1256,28,1615,38 +267127,Aerion,1256,28,1615,38 +274093,Quirky Circuits,1256,28,1615,38 +32125,Felicity: The Cat in the Sack,1256,28,1696,37 +65814,Dweebies,1256,28,1696,37 +273910,Stars of Akarios,1256,28,1696,37 +284936,Café,1256,28,1696,37 +37120,Pack & Stack,1256,28,1782,36 +172818,Above and Below,1256,28,1782,36 +191004,My First Stone Age,1256,28,1782,36 +264239,Patchwork Doodle,1256,28,1782,36 +15817,Manila,1256,28,1867,35 +67877,Anomia,1256,28,1867,35 +176396,Quadropolis,1256,28,1867,35 +176558,Mafia de Cuba,1256,28,1867,35 +188866,Awkward Guests: The Walton Case,1256,28,1867,35 +195421,Near and Far,1256,28,1867,35 +329591,Ultimate Railroads,1256,28,1867,35 +152162,Diamonds,1256,28,1953,34 +271896,Star Wars: Outer Rim,1256,28,2048,33 +255360,Bargain Basement Bathysphere,1256,28,2156,32 +11582,Schnapsen,1336,27,585,69 +3886,Nine Men's Morris,1336,27,684,63 +3406,Lines of Action,1336,27,867,55 +17991,TAC,1336,27,902,54 +12995,Dungeon Twister,1336,27,970,52 +102237,Drako: Dragon & Dwarves,1336,27,1012,51 +131835,Boss Monster: The Dungeon Building Card Game,1336,27,1012,51 +183562,Star Wars: X-Wing Miniatures Game – The Force Awakens Core Set,1336,27,1074,49 +285157,Legendary: A James Bond Deck Building Game,1336,27,1074,49 +236639,Flaming Pyramids,1336,27,1118,48 +314243,"Warhammer 40,000 (Ninth Edition)",1336,27,1192,46 +334307,Clash of Decks: Starter Kit,1336,27,1192,46 +353152,Framework,1336,27,1192,46 +883,Ivanhoe,1336,27,1233,45 +260428,Fall of Rome,1336,27,1233,45 +11168,Flames of War: The World War II Miniatures Game,1336,27,1285,44 +21791,Masons,1336,27,1285,44 +246663,NEOM,1336,27,1285,44 +3706,Batik,1336,27,1339,43 +33767,Yavalath,1336,27,1339,43 +65611,Cthulhu Dice,1336,27,1339,43 +180231,OctoDice,1336,27,1339,43 +374541,Numbsters,1336,27,1339,43 +168681,Beyond Baker Street,1336,27,1396,42 +171541,Flying Kiwis,1336,27,1396,42 +208808,Cinco Linko,1336,27,1396,42 +253786,Don't Mess with Cthulhu Deluxe,1336,27,1396,42 +355433,boop.,1336,27,1396,42 +67185,Sobek,1336,27,1431,41 +105037,Tournay,1336,27,1431,41 +147768,Five Cucumbers,1336,27,1431,41 +287780,Squire for Hire,1336,27,1431,41 +2987,Pirate's Cove,1336,27,1491,40 +42910,Peloponnes,1336,27,1491,40 +119,Kingdoms,1336,27,1549,39 +123228,Bling Bling Gemstone,1336,27,1549,39 +204431,One Night Ultimate Alien,1336,27,1549,39 +232894,Escape: The Curse of the Temple – Big Box Second Edition,1336,27,1549,39 +2818,UNO Attack!,1336,27,1615,38 +20750,Black Stories 2,1336,27,1615,38 +27940,RattleSnake,1336,27,1615,38 +39938,Carson City,1336,27,1615,38 +241451,Aeon's End: Legacy,1336,27,1615,38 +247367,"Air, Land, & Sea",1336,27,1615,38 +299252,Here to Slay,1336,27,1615,38 +12589,Razzia!,1336,27,1696,37 +21550,Blokus Trigon,1336,27,1696,37 +77130,Sid Meier's Civilization: The Board Game,1336,27,1696,37 +102548,Dungeon Fighter,1336,27,1696,37 +107190,Flash Duel: Second Edition,1336,27,1696,37 +142039,Lost Legacy,1336,27,1696,37 +159473,Quartermaster General,1336,27,1696,37 +258210,Blitzkrieg!: World War Two in 20 Minutes,1336,27,1696,37 +290236,Canvas,1336,27,1696,37 +333255,Keep the Heroes Out!,1336,27,1696,37 +20437,Lords of Vegas,1336,27,1782,36 +25292,Merchants & Marauders,1336,27,1782,36 +32341,Cockroach Salad,1336,27,1782,36 +33160,Endeavor,1336,27,1782,36 +125153,The Gallerist,1336,27,1782,36 +181345,Dr. Eureka,1336,27,1782,36 +181521,Warhammer Quest: The Adventure Card Game,1336,27,1782,36 +184267,On Mars,1336,27,1782,36 +205158,Codenames: Deep Undercover,1336,27,1782,36 +205610,A Game of Thrones: Hand of the King,1336,27,1782,36 +1234,Once Upon a Time: The Storytelling Card Game,1336,27,1867,35 +1403,Turn the Tide,1336,27,1867,35 +13308,Niagara,1336,27,1867,35 +172507,Mmm!,1336,27,1867,35 +268012,Chronicles of Drunagor: Age of Darkness,1336,27,1867,35 +43528,World Without End,1336,27,1953,34 +164265,Witness,1336,27,1953,34 +193042,Junk Art,1336,27,1953,34 +266164,Babylonia,1336,27,1953,34 +40793,Dice Town,1336,27,2048,33 +116954,Indigo,1336,27,2048,33 +171131,Captain Sonar,1336,27,2048,33 +350948,Familiar Tales,1336,27,2048,33 +2065,Shogi,1414,26,148,136 +17,Button Men,1414,26,392,83 +13713,Solitaire,1414,26,550,71 +15722,Belote,1414,26,641,65 +142131,Dominion: Big Box,1414,26,740,60 +172155,Ascension: Dawn of Champions,1414,26,740,60 +366161,Wingspan Asia,1414,26,840,56 +508,Blue Max,1414,26,867,55 +191128,UNO: With Customizable Wild Cards,1414,26,867,55 +37165,"Warhammer 40,000 (Fifth Edition)",1414,26,902,54 +29351,Durak,1414,26,929,53 +94,Union Pacific,1414,26,970,52 +3495,Harry Potter Trading Card Game,1414,26,1012,51 +56796,Let's Catch the Lion!,1414,26,1042,50 +175155,Forbidden Stars,1414,26,1042,50 +302734,Master Word,1414,26,1074,49 +130,Iron Dragon,1414,26,1118,48 +713,Nuclear War,1414,26,1118,48 +2511,Sherlock Holmes Consulting Detective: The Thames Murders & Other Cases,1414,26,1118,48 +267568,HexRoller,1414,26,1118,48 +325810,Ascension: 10 Year Anniversary Edition,1414,26,1118,48 +182453,The Game + The Game on Fire,1414,26,1159,47 +310953,Pokémon Trading Card Game Battle Academy,1414,26,1159,47 +16497,Rat Hot,1414,26,1192,46 +19184,Lectio,1414,26,1192,46 +20195,Six,1414,26,1192,46 +39088,Hoppladi Hopplada!,1414,26,1192,46 +6424,Pick Up Sticks,1414,26,1233,45 +261594,Warhammer Underworlds: Nightvault,1414,26,1233,45 +341358,DONUTS,1414,26,1233,45 +22497,Straw,1414,26,1285,44 +144592,Bruxelles 1893,1414,26,1285,44 +174458,Baseball Highlights: 2045 – Deluxe Edition,1414,26,1285,44 +158408,Coup: Deluxe Edition,1414,26,1339,43 +65990,Don Quixote,1414,26,1396,42 +208766,13 Clues,1414,26,1396,42 +251219,Istanbul: Big Box,1414,26,1396,42 +224,History of the World,1414,26,1431,41 +42487,Lost Cities: The Board Game,1414,26,1431,41 +133848,Euphoria: Build a Better Dystopia,1414,26,1431,41 +138649,DC Comics Dice Masters: Justice League,1414,26,1431,41 +150997,Shadows of Brimstone: Swamps of Death,1414,26,1431,41 +183420,Kung Fu Zoo,1414,26,1431,41 +31506,Ziegen Kriegen,1414,26,1491,40 +224710,Zombicide: Green Horde,1414,26,1491,40 +254123,Shadowrun: Crossfire – Prime Runner Edition,1414,26,1491,40 +306882,Railroad Ink Challenge: Shining Yellow Edition,1414,26,1491,40 +1383,Pool Party,1414,26,1549,39 +35815,A Touch of Evil: The Supernatural Game,1414,26,1549,39 +223376,A Song of Ice & Fire: Tabletop Miniatures Game – Stark vs Lannister Starter Set,1414,26,1549,39 +270109,Iwari,1414,26,1549,39 +327831,Lost Cities: Roll & Write,1414,26,1549,39 +10,Elfenland,1414,26,1615,38 +6932,Hi Ho! Cherry-O,1414,26,1615,38 +8172,Coyote,1414,26,1615,38 +29355,Würfel Bingo,1414,26,1615,38 +83330,Mansions of Madness,1414,26,1615,38 +108906,Thunder Alley,1414,26,1615,38 +127024,Room 25,1414,26,1615,38 +167292,Bellz!,1414,26,1615,38 +221194,Dinosaur Island,1414,26,1615,38 +619,The Bottle Imp,1414,26,1696,37 +651,Zero Down,1414,26,1696,37 +2476,Industrial Waste,1414,26,1696,37 +117555,CLACK!,1414,26,1696,37 +191876,Ulm,1414,26,1696,37 +222514,Batman: Gotham City Chronicles,1414,26,1696,37 +230852,BONK,1414,26,1696,37 +234487,Altiplano,1414,26,1696,37 +256916,Concordia Venus,1414,26,1696,37 +298371,Wild Space,1414,26,1696,37 +319422,Everdell: Collector's Edition,1414,26,1696,37 +322622,Floriferous,1414,26,1696,37 +332398,Everdell: The Complete Collection,1414,26,1696,37 +3522,LCR,1414,26,1782,36 +16991,Khet: The Laser Game,1414,26,1782,36 +57660,Time's Up! Edición Azul,1414,26,1782,36 +59959,Letters from Whitechapel,1414,26,1782,36 +71671,Yggdrasil,1414,26,1782,36 +125048,Dobble: Free Demo Version,1414,26,1782,36 +128667,Samurai Sword,1414,26,1782,36 +140068,Galaxy Trucker: Anniversary Edition,1414,26,1782,36 +172073,MammuZ,1414,26,1782,36 +191963,Thunder & Lightning,1414,26,1782,36 +211940,Level 10,1414,26,1782,36 +316412,The LOOP,1414,26,1782,36 +379629,Knarr,1414,26,1782,36 +4396,Odin's Ravens,1414,26,1867,35 +17162,The Little Orchard,1414,26,1867,35 +28086,Risk Express,1414,26,1867,35 +35505,Walk the Plank!,1414,26,1867,35 +65564,Hornet Leader: Carrier Air Operations,1414,26,1867,35 +73538,Pirate Fluxx,1414,26,1867,35 +157723,We Didn't Playtest This at All with Chaos Pack Expansion,1414,26,1867,35 +172933,Dragonwood,1414,26,1867,35 +3097,1849: The Game of Sicilian Railways,1414,26,1953,34 +23540,Shikoku 1889,1414,26,1953,34 +82222,Xia: Legends of a Drift System,1414,26,1953,34 +135649,Tales & Games: The Three Little Pigs,1414,26,1953,34 +235802,Too Many Bones: Undertow,1414,26,1953,34 +271055,Dwellings of Eldervale,1414,26,1953,34 +1382,Winner's Circle,1414,26,2048,33 +166286,Bottom of the 9th,1414,26,2048,33 +336794,Galaxy Trucker (Second Edition),1414,26,2048,33 +475,Taj Mahal,1414,26,2156,32 +36648,Pyramid of Pengqueen,1414,26,2156,32 +192074,Odin's Ravens (Second Edition),1414,26,2156,32 +260789,Assassin's Creed: Brotherhood of Venice,1414,26,2156,32 +291845,Three Sisters,1414,26,2156,32 +300877,New York Zoo,1414,26,2156,32 +350933,The Guild of Merchant Explorers,1414,26,2156,32 +155362,Ca$h 'n Guns: Second Edition,1414,26,2261,31 +266507,Clank! Legacy: Acquisitions Incorporated,1414,26,2261,31 +245655,The King's Dilemma,1414,26,2387,30 +182134,Evolution: Climate,1528,25,6,5047 +895,APBA Pro Baseball,1528,25,286,97 +6955,Reiner Knizia's Decathlon,1528,25,392,83 +76150,Revolver,1528,25,426,80 +2471,Zombies!!!,1528,25,480,76 +299,De Bellis Antiquitatis: Quick Play Wargame Rules with Army Lists for Ancient and Medieval Battles,1528,25,508,74 +13293,Vs System,1528,25,508,74 +255653,Warhammer Age of Sigmar: Champions Trading Card Game,1528,25,613,67 +90419,Airlines Europe,1528,25,740,60 +295574,Dice Masters,1528,25,740,60 +10789,Pitch,1528,25,760,59 +338896,Quest Calendar: The Gates of Terralon,1528,25,815,57 +1568,Space Crusade,1528,25,867,55 +6263,King's Breakfast,1528,25,867,55 +37198,Risk (Revised Edition),1528,25,902,54 +135262,Electronic Catch Phrase,1528,25,929,53 +155451,Guild Ball,1528,25,970,52 +2785,Game of Goose,1528,25,1042,50 +84838,Yomi (Second Edition),1528,25,1074,49 +239188,Chronicles of Crime,1528,25,1074,49 +5795,Richelieu,1528,25,1118,48 +481,Carolus Magnus,1528,25,1233,45 +224035,Zombie Dice Horde Edition,1528,25,1285,44 +1475,Careers,1528,25,1339,43 +40381,Modern Art Card Game,1528,25,1339,43 +142852,DC Deck-Building Game: Heroes Unite,1528,25,1339,43 +17521,Golf,1528,25,1396,42 +210290,Legendary: Buffy The Vampire Slayer,1528,25,1396,42 +1502,Hotel Tycoon,1528,25,1431,41 +2163,Space Hulk,1528,25,1431,41 +230059,Crossfire,1528,25,1431,41 +273065,The Genius Square,1528,25,1431,41 +1515,Upwords,1528,25,1491,40 +14017,Oceania,1528,25,1491,40 +85005,The Boss,1528,25,1491,40 +109276,Kanban: Driver's Edition,1528,25,1491,40 +209095,UNO: Super Mario,1528,25,1491,40 +7929,Dungeons & Dragons Miniatures,1528,25,1549,39 +27708,1960: The Making of the President,1528,25,1549,39 +149951,Warfighter: The Tactical Special Forces Card Game,1528,25,1549,39 +158742,Yardmaster Express,1528,25,1549,39 +297895,Divvy Dice,1528,25,1549,39 +21930,Crazy Kick,1528,25,1615,38 +162107,Doodle City,1528,25,1615,38 +214880,City of the Big Shoulders,1528,25,1615,38 +220700,Cobra Paw,1528,25,1615,38 +305985,Mountain Goats,1528,25,1615,38 +25568,Metropolys,1528,25,1696,37 +55834,Mosaix,1528,25,1696,37 +88827,Battle Cry: 150th Civil War Anniversary Edition,1528,25,1696,37 +225885,Unbroken,1528,25,1696,37 +231484,Carnival of Monsters,1528,25,1696,37 +281655,High Frontier 4 All,1528,25,1696,37 +296912,Fort,1528,25,1696,37 +240,Britannia,1528,25,1782,36 +635,Formula Motor Racing,1528,25,1782,36 +9203,Wings of War: Famous Aces,1528,25,1782,36 +32412,Palastgeflüster,1528,25,1782,36 +65282,Tanto Cuore,1528,25,1782,36 +66356,Dungeons & Dragons: Wrath of Ashardalon Board Game,1528,25,1782,36 +160902,Dungeons & Dragons Dice Masters: Battle for Faerûn,1528,25,1782,36 +200551,30 Rails,1528,25,1782,36 +236191,London (Second Edition),1528,25,1782,36 +281075,Welcome to New Las Vegas,1528,25,1782,36 +594,Sleuth,1528,25,1867,35 +9823,Advanced Squad Leader: Starter Kit #1,1528,25,1867,35 +12005,Around the World in 80 Days,1528,25,1867,35 +112092,Shadowrift,1528,25,1867,35 +121193,Cover Your Assets,1528,25,1867,35 +125924,Clubs,1528,25,1867,35 +175095,Dawn of the Zeds (Third Edition),1528,25,1867,35 +212404,In Vino Morte,1528,25,1867,35 +334590,For Northwood! A Solo Trick-Taking Game,1528,25,1867,35 +335609,TEN,1528,25,1867,35 +17557,Super Farmer,1528,25,1953,34 +19427,Gemblo,1528,25,1953,34 +98229,Pictomania,1528,25,1953,34 +105551,Archipelago,1528,25,1953,34 +121288,Dixit: Journey,1528,25,1953,34 +128554,Völuspá,1528,25,1953,34 +178940,Push It,1528,25,1953,34 +190400,Aventuria: Adventure Card Game,1528,25,1953,34 +207336,Honshū,1528,25,1953,34 +267319,Roam,1528,25,1953,34 +334065,Verdant,1528,25,1953,34 +938,Enchanted Forest,1528,25,2048,33 +30539,Get Bit!,1528,25,2048,33 +36345,Monty Python Fluxx,1528,25,2048,33 +131014,Carcassonne: Winter Edition,1528,25,2048,33 +139899,VivaJava: The Coffee Game: The Dice Game,1528,25,2048,33 +144826,Zombie 15',1528,25,2048,33 +197070,Massive Darkness,1528,25,2048,33 +226320,My Little Scythe,1528,25,2048,33 +248065,Zombicide: Invader,1528,25,2048,33 +259374,Belratti,1528,25,2048,33 +328565,Caper: Europe,1528,25,2048,33 +382,Heimlich & Co.,1528,25,2156,32 +3656,Score Four,1528,25,2156,32 +28089,Burg Appenzell,1528,25,2156,32 +34127,Ticket to Ride: The Card Game,1528,25,2156,32 +54625,Space Hulk (Third Edition),1528,25,2156,32 +168679,Flip City,1528,25,2156,32 +171905,Orléans: Deluxe Edition,1528,25,2156,32 +180040,Villages of Valeria,1528,25,2156,32 +223953,Kitchen Rush,1528,25,2156,32 +246900,Eclipse: Second Dawn for the Galaxy,1528,25,2156,32 +272533,Kingdom Rush: Rift in Time,1528,25,2156,32 +284653,Mind MGMT: The Psychic Espionage “Game.”,1528,25,2156,32 +338957,Caesar!: Seize Rome in 20 Minutes!,1528,25,2156,32 +40237,Long Shot,1528,25,2261,31 +140933,Blueprints,1528,25,2261,31 +298586,Demeter,1528,25,2261,31 +320390,Kabuto Sumo,1528,25,2261,31 +12157,Unanimo,1528,25,2387,30 +91872,Dungeons & Dragons: The Legend of Drizzt Board Game,1528,25,2387,30 +233020,Fireball Island: The Curse of Vul-Kar,1528,25,2387,30 +311193,Anno 1800: The Board Game,1528,25,2387,30 +161533,Lisboa,1528,25,2512,29 +298069,Cubitos,1528,25,2512,29 +63788,Freecell,1647,24,344,89 +30869,Thebes,1647,24,426,80 +1302,Cosmic Wimpout,1647,24,791,58 +6817,Schafkopf,1647,24,970,52 +5306,Harry's Grand Slam Baseball Game,1647,24,1042,50 +13597,Big Two,1647,24,1118,48 +32674,Monsterpocalypse,1647,24,1285,44 +69779,Polis: Fight for the Hegemony,1647,24,1285,44 +38984,MOW,1647,24,1339,43 +180241,Warhammer Age of Sigmar,1647,24,1339,43 +10660,micropul,1647,24,1396,42 +8989,Hansa,1647,24,1431,41 +2086,Elfer raus!,1647,24,1491,40 +19957,Blitz,1647,24,1491,40 +39813,Qwirkle Cubes,1647,24,1491,40 +66608,Two by Two,1647,24,1491,40 +95527,Madeira,1647,24,1491,40 +192312,Mr. Cabbagehead's Garden,1647,24,1491,40 +229427,"Warhammer 40,000 (Eighth Edition)",1647,24,1491,40 +249552,Ascension: Delirium,1647,24,1491,40 +5697,Reiner Knizia's Amazing Flea Circus,1647,24,1549,39 +153004,Lemminge,1647,24,1549,39 +156943,Saint Petersburg (Second Edition),1647,24,1549,39 +158882,Elevenses for One,1647,24,1549,39 +206754,Burke's Gambit,1647,24,1549,39 +260678,Stone Age: Anniversary,1647,24,1549,39 +269146,Yōkai,1647,24,1549,39 +16398,War,1647,24,1615,38 +16693,UNO H2O,1647,24,1615,38 +64956,10 Days in the Americas,1647,24,1615,38 +66837,1862: Railway Mania in the Eastern Counties,1647,24,1615,38 +84465,Ottoman Sunset: The Great War in the Near East,1647,24,1615,38 +170604,Renegade,1647,24,1615,38 +187617,Nemo's War (Second Edition),1647,24,1615,38 +188465,Otrio,1647,24,1615,38 +234671,Pandemic: Rising Tide,1647,24,1615,38 +296044,Fruit Picking,1647,24,1615,38 +342562,ROVE: Results-Oriented Versatile Explorer,1647,24,1615,38 +1412,Trendy,1647,24,1696,37 +3874,Ultimate Mastermind,1647,24,1696,37 +20782,Siam,1647,24,1696,37 +25021,Sekigahara: The Unification of Japan,1647,24,1696,37 +33154,Wasabi!,1647,24,1696,37 +34119,Tales of the Arabian Nights,1647,24,1696,37 +73369,51st State,1647,24,1696,37 +262388,Qwantum,1647,24,1696,37 +316085,Ukiyo,1647,24,1696,37 +815,Chrononauts,1647,24,1782,36 +949,Twixt,1647,24,1782,36 +5206,Ogre,1647,24,1782,36 +126792,Myrmes,1647,24,1782,36 +256066,"Warhammer 40,000: Kill Team",1647,24,1782,36 +258036,Between Two Castles of Mad King Ludwig,1647,24,1782,36 +295577,Dungeon Mayhem: Monster Madness,1647,24,1782,36 +367375,Race to the Raft,1647,24,1782,36 +12616,Zingo!,1647,24,1867,35 +17816,Family Fluxx,1647,24,1867,35 +98351,Core Worlds,1647,24,1867,35 +146149,Quick Cups,1647,24,1867,35 +158889,Summoner Wars: Alliances Master Set,1647,24,1867,35 +246912,Take 5 & Take A Number,1647,24,1867,35 +264198,Warhammer Quest: Blackstone Fortress,1647,24,1867,35 +349463,"Dungeons, Dice & Danger",1647,24,1867,35 +363247,Azul: Master Chocolatier,1647,24,1867,35 +2533,Kupferkessel Co.,1647,24,1953,34 +13328,Chromino,1647,24,1953,34 +22827,StarCraft: The Board Game,1647,24,1953,34 +25213,30 Seconds,1647,24,1953,34 +63170,1817,1647,24,1953,34 +109451,A Fistful of Penguins,1647,24,1953,34 +110277,Among the Stars,1647,24,1953,34 +129556,Tapple,1647,24,1953,34 +137155,Potato Man,1647,24,1953,34 +172220,Dungeons & Dragons: Temple of Elemental Evil Board Game,1647,24,1953,34 +176371,Explorers of the North Sea,1647,24,1953,34 +180956,One Night Ultimate Vampire,1647,24,1953,34 +261393,Dungeon Universalis,1647,24,1953,34 +271512,5211,1647,24,1953,34 +298635,Alice's Garden,1647,24,1953,34 +47,Chinatown,1647,24,2048,33 +6472,A Game of Thrones,1647,24,2048,33 +19777,Indonesia,1647,24,2048,33 +22864,Zeus on the Loose,1647,24,2048,33 +32116,Airships,1647,24,2048,33 +38713,Time's Up! Edición Amarilla,1647,24,2048,33 +59294,Runewars,1647,24,2048,33 +165595,JamSumo,1647,24,2048,33 +245136,Bluff Jubiläumsausgabe,1647,24,2048,33 +248158,Thanos Rising: Avengers Infinity War,1647,24,2048,33 +253608,18Chesapeake,1647,24,2048,33 +281260,Veilwraith: A Veil Odyssey Game,1647,24,2048,33 +311715,Mini Rogue,1647,24,2048,33 +348406,Marvel Dice Throne,1647,24,2048,33 +64220,Richard Scarry's Busytown: Eye found it! Game,1647,24,2156,32 +96007,The New Era,1647,24,2156,32 +195528,La Granja: No Siesta,1647,24,2156,32 +248949,Skull Tales: Full Sail!,1647,24,2156,32 +271519,Ecosystem,1647,24,2156,32 +273264,Iron Helm,1647,24,2156,32 +331787,Tiny Epic Dungeons,1647,24,2156,32 +2767,Snail's Pace Race,1647,24,2261,31 +5894,Twister,1647,24,2261,31 +91523,Mondo,1647,24,2261,31 +142992,Gravwell: Escape from the 9th Dimension,1647,24,2261,31 +159109,XenoShyft: Onslaught,1647,24,2261,31 +170624,Crusaders: Thy Will Be Done,1647,24,2261,31 +172386,Mombasa,1647,24,2261,31 +175239,Machi Koro: Deluxe Edition,1647,24,2261,31 +192455,First Martians: Adventures on the Red Planet,1647,24,2261,31 +241491,Who Did It?,1647,24,2261,31 +298065,Santa Monica,1647,24,2261,31 +304420,Bonfire,1647,24,2261,31 +310192,Overboss: A Boss Monster Adventure,1647,24,2261,31 +904,Nightmare Productions,1647,24,2387,30 +21985,Giro Galoppo,1647,24,2387,30 +33604,Say Anything,1647,24,2387,30 +34084,Witch's Brew,1647,24,2387,30 +40765,Clash of Cultures,1647,24,2387,30 +97842,Last Will,1647,24,2387,30 +163602,XCOM: The Board Game,1647,24,2387,30 +176734,The Manhattan Project: Energy Empire,1647,24,2387,30 +229220,Santa Maria,1647,24,2387,30 +238546,The Rise of Queensdale,1647,24,2387,30 +241164,Jurassic Snack,1647,24,2387,30 +245638,Coimbra,1647,24,2387,30 +335275,Whirling Witchcraft,1647,24,2512,29 +344554,Décorum,1647,24,2512,29 +136991,Loony Quest,1647,24,2647,28 +262215,Blackout: Hong Kong,1647,24,2647,28 +317434,Exit: The Game – Advent Calendar: The Mystery of the Ice Cave,1647,24,2807,27 +343322,Exit: The Game – Advent Calendar: The Hunt for the Golden Book,1647,24,2967,26 +359394,My Island,1647,24,2967,26 +356314,Exit: The Game – Advent Calendar: The Silent Storm,1647,24,3361,24 +3730,Statis Pro Baseball,1780,23,491,75 +141019,Thermopyles,1780,23,508,74 +5740,Strat-O-Matic Pro Football,1780,23,533,72 +290357,Hanabi: Grands Feux,1780,23,840,56 +244654,Wildlands,1780,23,1074,49 +301607,KeyForge: Mass Mutation,1780,23,1074,49 +95,Igel Ärgern,1780,23,1118,48 +26468,Klaverjassen,1780,23,1118,48 +1860,Dragon Dice,1780,23,1192,46 +27172,Ponte del Diavolo,1780,23,1233,45 +143147,Saboteur Gold,1780,23,1233,45 +168998,Marvel Dice Masters: Age of Ultron,1780,23,1233,45 +10653,Pirates of the Spanish Main,1780,23,1285,44 +1797,Pay Day,1780,23,1339,43 +18121,Casino,1780,23,1339,43 +5451,Hanafuda,1780,23,1396,42 +2288,Blood Bowl (Second Edition),1780,23,1431,41 +4376,Kings in the Corner,1780,23,1431,41 +113873,"The Hunters: German U-Boats at War, 1939-43",1780,23,1431,41 +10453,Crocodile Dentist,1780,23,1491,40 +159469,Ortus Regni,1780,23,1491,40 +161537,7 Steps,1780,23,1491,40 +85897,Thunderstone: Dragonspire,1780,23,1549,39 +127023,Kemet,1780,23,1549,39 +181385,Retro Loonacy,1780,23,1549,39 +212551,Qwixx: Das Duell,1780,23,1549,39 +2932,Hnefatafl,1780,23,1615,38 +127493,Bolt Action,1780,23,1615,38 +241245,Get the MacGuffin,1780,23,1615,38 +125,Money!,1780,23,1696,37 +222,Space Beans,1780,23,1696,37 +35369,Martian Fluxx,1780,23,1696,37 +92644,Schnappt Hubi!,1780,23,1696,37 +216123,Звёздные империи. Подарочное издание (Star Realms. Gift Edition),1780,23,1696,37 +238393,Monolith Arena,1780,23,1696,37 +313889,Hoplomachus: Victorum,1780,23,1696,37 +73313,Elements,1780,23,1782,36 +122159,Cthulhu Fluxx,1780,23,1782,36 +238992,Call to Adventure,1780,23,1782,36 +247314,Concept Kids: Animals,1780,23,1782,36 +299104,Apex Theropod Deck Building Game: Collected Edition,1780,23,1782,36 +352454,Trailblazers,1780,23,1782,36 +363289,Fantasy Realms: Deluxe Edition,1780,23,1782,36 +34169,Potion-Making: Practice,1780,23,1867,35 +34819,Pengoloo,1780,23,1867,35 +37358,Founding Fathers,1780,23,1867,35 +112598,Monster Factory,1780,23,1867,35 +235365,Doctor Who Fluxx,1780,23,1867,35 +249763,Claim 2,1780,23,1867,35 +322703,Death Valley,1780,23,1867,35 +199,Manhattan,1780,23,1953,34 +6738,Quicksand,1780,23,1953,34 +111173,Little Devils,1780,23,1953,34 +143986,CV,1780,23,1953,34 +158340,Lost Legacy: Flying Garden,1780,23,1953,34 +171011,Favor of the Pharaoh,1780,23,1953,34 +181530,Runebound (Third Edition),1780,23,1953,34 +209003,Commands & Colors: Medieval,1780,23,1953,34 +249675,Desolate,1780,23,1953,34 +268252,Colorful,1780,23,1953,34 +269420,Ragemore,1780,23,1953,34 +275044,Glow,1780,23,1953,34 +9004,Pop-Up Pirate!,1780,23,2048,33 +137269,Spyrium,1780,23,2048,33 +176361,One Night Revolution,1780,23,2048,33 +198525,Lotus,1780,23,2048,33 +227456,Escape the Dark Castle,1780,23,2048,33 +244049,Forum Trajanum,1780,23,2048,33 +299317,Aeon's End: Outcasts,1780,23,2048,33 +300442,Trekking the World,1780,23,2048,33 +306745,El portero Baldomero,1780,23,2048,33 +20963,Fury of Dracula (Second Edition),1780,23,2156,32 +24773,On the Underground,1780,23,2156,32 +47046,Gambit 7,1780,23,2156,32 +52461,Legacy: The Testament of Duke de Crecy,1780,23,2156,32 +123955,Thunderbolt Apache Leader,1780,23,2156,32 +125368,Dino Hunt Dice,1780,23,2156,32 +132028,Conflict of Heroes: Awakening the Bear! – Operation Barbarossa 1941 (Second Edition),1780,23,2156,32 +146035,Eggs of Ostrich,1780,23,2156,32 +157958,DungeonQuest: Revised Edition,1780,23,2156,32 +171890,Best Treehouse Ever,1780,23,2156,32 +206327,The King's Guild,1780,23,2156,32 +225981,Penguin Trap,1780,23,2156,32 +231218,Black Sonata,1780,23,2156,32 +276925,Warhammer Age of Sigmar: Warcry Starter Set,1780,23,2156,32 +291572,Oath: Chronicles of Empire & Exile,1780,23,2156,32 +327711,It's a Wonderful Kingdom,1780,23,2156,32 +363307,Evergreen,1780,23,2156,32 +369634,Smitten,1780,23,2156,32 +13884,The Scepter of Zavandor,1780,23,2261,31 +24742,Cold War: CIA vs KGB,1780,23,2261,31 +41627,Zulus on the Ramparts!: The Battle of Rorke's Drift – Second Edition,1780,23,2261,31 +95103,Fortune and Glory: The Cliffhanger Game,1780,23,2261,31 +121806,Race to the Treasure!,1780,23,2261,31 +198707,Hostage Negotiator: Crime Wave,1780,23,2261,31 +256730,Pipeline,1780,23,2261,31 +302524,Super-Skill Pinball: 4-Cade,1780,23,2261,31 +306680,GOLD,1780,23,2261,31 +63628,The Manhattan Project,1780,23,2387,30 +155969,Harbour,1780,23,2387,30 +161546,Timeline: American History,1780,23,2387,30 +231280,Harvest Dice,1780,23,2387,30 +265188,Glen More II: Chronicles,1780,23,2387,30 +267367,Suburbia: Collector's Edition,1780,23,2387,30 +313698,Monster Expedition,1780,23,2387,30 +328326,Fleet: The Dice Game (Second Edition),1780,23,2387,30 +361241,Vaalbara,1780,23,2387,30 +125921,Catan: Junior,1780,23,2512,29 +150999,Valley of the Kings,1780,23,2512,29 +171129,Spinderella,1780,23,2512,29 +272380,SHŌBU,1780,23,2512,29 +342900,Earthborne Rangers,1780,23,2512,29 +293,Bamboleo,1780,23,2647,28 +148261,SeaFall,1780,23,2647,28 +149776,Fireteam Zero,1780,23,2647,28 +163068,Trickerion: Legends of Illusion,1780,23,2647,28 +205896,Rising Sun,1780,23,2647,28 +227224,The Red Cathedral,1780,23,2647,28 +297030,Tekhenu: Obelisk of the Sun,1780,23,2647,28 +375651,That's Not a Hat,1780,23,2647,28 +273703,Altar Quest,1780,23,2807,27 +324158,Professor Charlie's world tour,1780,23,3361,24 +38054,Snow Tails,1902,22,231,110 +38531,Powerboats,1902,22,791,58 +22192,HeroQuest Advanced Quest,1902,22,840,56 +68199,Catchup,1902,22,840,56 +371,Mystery Rummy: Murders in the Rue Morgue,1902,22,867,55 +97803,Penny Arcade: The Game – Gamers vs. Evil,1902,22,929,53 +6748,Scum: The Food Chain Game,1902,22,970,52 +178892,Vs System 2PCG: The Marvel Battles,1902,22,1042,50 +2272,Aggravation,1902,22,1118,48 +141067,History Maker Baseball,1902,22,1118,48 +6644,Spite & Malice,1902,22,1159,47 +553,Chez Geek,1902,22,1192,46 +2322,Malefiz,1902,22,1192,46 +40234,Einauge sei wachsam!,1902,22,1192,46 +200456,Ascension X: War of Shadows,1902,22,1192,46 +1589,Star Fleet Battles,1902,22,1233,45 +55253,Atlantis,1902,22,1233,45 +215616,Ascension: Gift of the Elements,1902,22,1233,45 +5445,Rod Hockey,1902,22,1285,44 +17970,Axis & Allies Miniatures,1902,22,1285,44 +153318,Dimension,1902,22,1285,44 +256297,Transformers Trading Card Game,1902,22,1285,44 +614,Rubik's Race,1902,22,1431,41 +11618,Cranium Zigity,1902,22,1431,41 +101796,SUTAKKU,1902,22,1431,41 +157451,Mein erster Spieleschatz,1902,22,1431,41 +10989,ConHex,1902,22,1491,40 +105265,Battle of LITS,1902,22,1491,40 +128671,Spartacus: A Game of Blood and Treachery,1902,22,1549,39 +345976,System Gateway (fan expansion for Android: Netrunner),1902,22,1549,39 +169,En Garde,1902,22,1615,38 +1265,Mystery Rummy: Jekyll & Hyde,1902,22,1615,38 +13928,Chinagold,1902,22,1615,38 +88147,Adaman,1902,22,1615,38 +13511,Ninja Versus Ninja,1902,22,1696,37 +66797,Heckmeck Junior,1902,22,1696,37 +200632,QANGO,1902,22,1696,37 +236305,Combo Fighter,1902,22,1696,37 +272541,Marvel Fluxx,1902,22,1696,37 +986,Babel,1902,22,1782,36 +10283,Monkey Madness,1902,22,1782,36 +11104,Who's the Ass?,1902,22,1782,36 +142057,Carcassonne Big Box,1902,22,1782,36 +161226,The Builders: Antiquity,1902,22,1782,36 +318556,Tucano,1902,22,1782,36 +370193,Roll to the Top: Journeys,1902,22,1782,36 +13362,"Warhammer 40,000 (Fourth Edition)",1902,22,1867,35 +38506,Witch of Salem,1902,22,1867,35 +132251,Ghooost!,1902,22,1867,35 +132620,Gobbit,1902,22,1867,35 +142503,One Night Werewolf,1902,22,1867,35 +198522,Archer: Once You Go Blackmail...,1902,22,1867,35 +267609,Guards of Atlantis II,1902,22,1867,35 +329841,Ticket to Ride: Europe – 15th Anniversary,1902,22,1867,35 +443,Code 777,1902,22,1953,34 +12902,Carcassonne: The City,1902,22,1953,34 +16216,Carcassonne: The Discovery,1902,22,1953,34 +22347,Pecking Order,1902,22,1953,34 +93971,Nile DeLuxor,1902,22,1953,34 +134726,Smash Up: Awesome Level 9000,1902,22,1953,34 +160610,Thunderbirds,1902,22,1953,34 +182704,SteamRollers,1902,22,1953,34 +191055,Kerala: The Way of the Elephant,1902,22,1953,34 +195571,Legendary Encounters: A Firefly Deck Building Game,1902,22,1953,34 +229130,Kingdom Builder: Big Box (Second Edition),1902,22,1953,34 +244114,Yellow & Yangtze,1902,22,1953,34 +288169,The Fox in the Forest Duet,1902,22,1953,34 +334717,Tranquility: The Ascent,1902,22,1953,34 +121,Dune,1902,22,2048,33 +14634,Homeworlds,1902,22,2048,33 +17392,Here I Stand,1902,22,2048,33 +22877,Fields of Fire,1902,22,2048,33 +127127,The Lord of the Rings: The Fellowship of the Ring Deck-Building Game,1902,22,2048,33 +150016,Shephy,1902,22,2048,33 +180511,Shakespeare,1902,22,2048,33 +182082,Carcassonne: Over Hill and Dale,1902,22,2048,33 +182116,Dingo's Dreams,1902,22,2048,33 +224821,One Deck Dungeon: Forest of Shadows,1902,22,2048,33 +318182,Imperium: Legends,1902,22,2048,33 +485,Galloping Pigs,1902,22,2156,32 +23878,Star Wars: Stolen Plans Card Game,1902,22,2156,32 +28181,Combat Commander: Pacific,1902,22,2156,32 +28396,It's Alive!,1902,22,2156,32 +40004,Contract Rummy,1902,22,2156,32 +73171,Earth Reborn,1902,22,2156,32 +94104,Omen: A Reign of War,1902,22,2156,32 +103185,Walnut Grove,1902,22,2156,32 +120515,Chupacabra: Survive the Night,1902,22,2156,32 +130680,iKNOW,1902,22,2156,32 +137290,Nosferatu,1902,22,2156,32 +149869,Sherlock 13,1902,22,2156,32 +177678,Signorie,1902,22,2156,32 +195544,Tides of Madness,1902,22,2156,32 +196496,Warfighter: The WWII Tactical Combat Card Game,1902,22,2156,32 +210296,DinoGenics,1902,22,2156,32 +256801,Fast Forward: FORTUNE,1902,22,2156,32 +295192,Tinderblox,1902,22,2156,32 +2338,Starship Catan,1902,22,2261,31 +9028,Tongiaki: Journey into the Unknown,1902,22,2261,31 +19996,Nacht der Magier,1902,22,2261,31 +34969,Ubongo: Duel,1902,22,2261,31 +53093,Heroes of Normandie,1902,22,2261,31 +93688,The Sneaky Snacky Squirrel Game,1902,22,2261,31 +157526,Viceroy,1902,22,2261,31 +171669,Discoveries: The Journals of Lewis & Clark,1902,22,2261,31 +182189,Treasure Hunter,1902,22,2261,31 +188547,Maximum Apocalypse,1902,22,2261,31 +202288,Medici: The Card Game,1902,22,2261,31 +218129,Catch the Moon,1902,22,2261,31 +233974,Sundae Split,1902,22,2261,31 +251551,Dale of Merchants Collection,1902,22,2261,31 +257726,Brikks,1902,22,2261,31 +284378,Kanban EV,1902,22,2261,31 +299027,Colt Super Express,1902,22,2261,31 +368465,Qawale,1902,22,2261,31 +18117,Schoko-Hexe,1902,22,2387,30 +33643,Whoowasit?,1902,22,2387,30 +108831,Kulami,1902,22,2387,30 +174570,Legendary Encounters: A Predator Deck Building Game,1902,22,2387,30 +177590,"13 Days: The Cuban Missile Crisis, 1962",1902,22,2387,30 +193621,Joking Hazard,1902,22,2387,30 +201825,Ex Libris,1902,22,2387,30 +231581,AuZtralia,1902,22,2387,30 +262477,Mercado de Lisboa,1902,22,2387,30 +271785,Slide Quest,1902,22,2387,30 +301767,Mysterium Park,1902,22,2387,30 +312618,Flourish,1902,22,2387,30 +1768,Fireball Island,1902,22,2512,29 +13642,Louis XIV,1902,22,2512,29 +22825,Tide of Iron,1902,22,2512,29 +43868,The Adventurers: The Temple of Chac,1902,22,2512,29 +66588,Wits & Wagers Family,1902,22,2512,29 +84419,Space Empires 4X,1902,22,2512,29 +97786,Small World Underground,1902,22,2512,29 +118695,Riff Raff,1902,22,2512,29 +125548,Pixel Tactics,1902,22,2512,29 +129293,Gauntlet of Fools,1902,22,2512,29 +130960,Triumph & Tragedy: European Balance of Power 1936-1945,1902,22,2512,29 +144239,Impulse,1902,22,2512,29 +156455,Viticulture: Complete Collector's Edition,1902,22,2512,29 +159504,Folklore: The Affliction,1902,22,2512,29 +175360,W1815,1902,22,2512,29 +183880,Risk: Star Wars Edition,1902,22,2512,29 +233398,Endeavor: Age of Sail,1902,22,2512,29 +254708,Roll Player Adventures,1902,22,2512,29 +285554,Fire!,1902,22,2512,29 +290359,Undaunted: North Africa,1902,22,2512,29 +303669,Magic Rabbit,1902,22,2512,29 +315043,Scape Goat,1902,22,2512,29 +322524,Bardsung,1902,22,2512,29 +16362,Hula Hippos,1902,22,2647,28 +27746,Colosseum,1902,22,2647,28 +40990,Word on the Street,1902,22,2647,28 +67492,Battles of Westeros,1902,22,2647,28 +136280,La Boca,1902,22,2647,28 +140519,Myth,1902,22,2647,28 +163474,V-Sabotage,1902,22,2647,28 +163640,Eminent Domain: Microcosm,1902,22,2647,28 +171233,The Big Book of Madness,1902,22,2647,28 +180198,Rolling America,1902,22,2647,28 +191538,Leo,1902,22,2647,28 +191894,Imagine,1902,22,2647,28 +193214,Meeple Circus,1902,22,2647,28 +223215,Flip Ships,1902,22,2647,28 +255683,Roll for Adventure,1902,22,2647,28 +286749,Hansa Teutonica: Big Box,1902,22,2647,28 +315610,Massive Darkness 2: Hellscape,1902,22,2647,28 +350316,Wayfarers of the South Tigris,1902,22,2647,28 +354934,Legacy of Yu,1902,22,2647,28 +365717,Clank!: Catacombs,1902,22,2647,28 +361,Hare & Tortoise,1902,22,2807,27 +23686,Gift Trap,1902,22,2807,27 +34297,The Climbers,1902,22,2807,27 +97903,Terror in Meeple City,1902,22,2807,27 +144344,Rococo,1902,22,2807,27 +148951,Tiny Epic Kingdoms,1902,22,2807,27 +181687,The Pursuit of Happiness,1902,22,2807,27 +243358,Space Park,1902,22,2807,27 +255262,Agricola: All Creatures Big and Small – The Big Box,1902,22,2807,27 +291962,Paper Dungeons: A Dungeon Scrawler Game,1902,22,2807,27 +295374,Long Shot: The Dice Game,1902,22,2807,27 +330592,Phantom Ink,1902,22,2807,27 +338834,MicroMacro: Crime City – Full House,1902,22,2807,27 +261114,Men at Work,1902,22,2967,26 +137408,Amerigo,1902,22,3155,25 +240196,Betrayal Legacy,1902,22,3155,25 +301880,Raiders of Scythia,1902,22,3155,25 +340325,Vagrantsong,1902,22,3155,25 +2795,Car Wars,2090,21,231,110 +5825,Paris Paris,2090,21,929,53 +32901,Prawo Dżungli,2090,21,970,52 +60316,Moon Leap,2090,21,1042,50 +3597,Strat-O-Matic Hockey,2090,21,1074,49 +42206,7 Ate 9,2090,21,1233,45 +241266,Little Town,2090,21,1233,45 +4286,A Game of Thrones Collectible Card Game,2090,21,1285,44 +278554,Silver Bullet,2090,21,1285,44 +46807,Infinite City,2090,21,1396,42 +79073,Resident Evil Deck Building Game,2090,21,1431,41 +3072,Necromunda,2090,21,1549,39 +13122,Antiquity,2090,21,1549,39 +119866,Wings of Glory: WW1 Rules and Accessories Pack,2090,21,1549,39 +148641,Yōkaï no Mori,2090,21,1549,39 +193083,Kribbeln,2090,21,1549,39 +25794,Axis & Allies: War at Sea,2090,21,1615,38 +90050,Eleminis,2090,21,1615,38 +1491,Outpost,2090,21,1696,37 +37836,"Julius Caesar: Caesar, Pompey, and the Roman Civil War",2090,21,1696,37 +268504,Adventure Tactics: Domianne's Tower,2090,21,1696,37 +287,Bazaar,2090,21,1782,36 +89910,"Run, Fight, or Die!",2090,21,1782,36 +197097,Four Against Darkness,2090,21,1782,36 +6931,Katamino,2090,21,1867,35 +52328,Malifaux,2090,21,1867,35 +129731,DreadBall: The Futuristic Sports Game,2090,21,1867,35 +130006,Mini Kubb,2090,21,1867,35 +147537,Malifaux (Second Edition),2090,21,1867,35 +342894,Mythic Mischief,2090,21,1867,35 +352606,Naturopolis,2090,21,1867,35 +5718,Cranium Cariboo,2090,21,1953,34 +5749,Simon,2090,21,1953,34 +6209,Mag·Blast (Second Edition),2090,21,1953,34 +55705,Callisto: The Game,2090,21,1953,34 +103132,Rapa Nui,2090,21,1953,34 +141517,A Study in Emerald,2090,21,1953,34 +142334,Sushi Dice,2090,21,1953,34 +155322,Hearts of AttrAction,2090,21,1953,34 +225244,Ticket to Ride: Germany,2090,21,1953,34 +253759,Paint the Roses,2090,21,1953,34 +338460,The Isle of Cats: Explore & Draw,2090,21,1953,34 +223,Expedition,2090,21,2048,33 +1545,Flowerpower,2090,21,2048,33 +1608,Ambush!,2090,21,2048,33 +2541,Cosmic Cows,2090,21,2048,33 +10672,"Easy Come, Easy Go",2090,21,2048,33 +90040,Pergamon,2090,21,2048,33 +112102,Pantolino,2090,21,2048,33 +132532,"Here, Fishy, Fishy!",2090,21,2048,33 +156566,Lords of Xidit,2090,21,2048,33 +237211,Valhalla,2090,21,2048,33 +243435,Verflucht!,2090,21,2048,33 +245200,Heckmeck Deluxe,2090,21,2048,33 +270233,Heul doch! Mau Mau,2090,21,2048,33 +283242,The Whatnot Cabinet,2090,21,2048,33 +221,Ikusa,2090,21,2156,32 +129492,Bee Alert,2090,21,2156,32 +137988,Zombicide Season 2: Prison Outbreak,2090,21,2156,32 +205867,Bohnanza: The Duel,2090,21,2156,32 +117,Ta Yü,2090,21,2261,31 +6541,Articulate!,2090,21,2261,31 +17027,Sitting Ducks Gallery,2090,21,2261,31 +19764,PÜNCT,2090,21,2261,31 +34373,Tiki Topple,2090,21,2261,31 +67823,Piou Piou,2090,21,2261,31 +99437,Rumble in the House,2090,21,2261,31 +118215,Würfelwurst,2090,21,2261,31 +123129,We Didn't Playtest This: Legacies,2090,21,2261,31 +171726,Project: ELITE,2090,21,2261,31 +180564,Carcassonne: Star Wars,2090,21,2261,31 +263155,One Key,2090,21,2261,31 +286062,Haiclue,2090,21,2261,31 +335764,"Unmatched: Battle of Legends, Volume Two",2090,21,2261,31 +351540,Walkie Talkie,2090,21,2261,31 +257,Kill Doctor Lucky,2090,21,2387,30 +333,Waterworks,2090,21,2387,30 +338,Bargain Hunter,2090,21,2387,30 +891,Cranium,2090,21,2387,30 +2371,Extra!,2090,21,2387,30 +3685,Hammer of the Scots,2090,21,2387,30 +8222,Spank the Monkey,2090,21,2387,30 +54138,Imperial 2030,2090,21,2387,30 +103814,Streams,2090,21,2387,30 +155731,Tokaido Collector's Edition,2090,21,2387,30 +159581,Maskmen,2090,21,2387,30 +160409,Too Many Cinderellas,2090,21,2387,30 +178613,Star Trek: Five-Year Mission,2090,21,2387,30 +216439,Trash Pandas,2090,21,2387,30 +277025,Vampire: The Masquerade – CHAPTERS,2090,21,2387,30 +281658,Hats,2090,21,2387,30 +299151,Deck of Wonders,2090,21,2387,30 +321108,Riverside,2090,21,2387,30 +7062,Smarty Party!,2090,21,2512,29 +26990,Container,2090,21,2512,29 +28620,Phoenicia,2090,21,2512,29 +29937,König von Siam,2090,21,2512,29 +30957,Tribune: Primus Inter Pares,2090,21,2512,29 +31563,Middle-Earth Quest,2090,21,2512,29 +32048,Bobbin' Bumblebee,2090,21,2512,29 +54307,Chronicle,2090,21,2512,29 +66188,Fresco,2090,21,2512,29 +75358,Paris Connection,2090,21,2512,29 +82168,Escape from the Aliens in Outer Space,2090,21,2512,29 +127784,Suspend,2090,21,2512,29 +137909,Bugs in the Kitchen,2090,21,2512,29 +142271,Anomia: Party Edition,2090,21,2512,29 +158243,Dragon Slayer,2090,21,2512,29 +191231,Via Nebula,2090,21,2512,29 +272682,Expedition to Newdale,2090,21,2512,29 +276182,Dead Reckoning,2090,21,2512,29 +287607,The Mind Extreme,2090,21,2512,29 +314421,The Fuzzies,2090,21,2512,29 +344258,That Time You Killed Me,2090,21,2512,29 +6779,The Ark of the Covenant,2090,21,2647,28 +12750,1860: Railways on the Isle of Wight,2090,21,2647,28 +36946,Red November,2090,21,2647,28 +39351,Automobile,2090,21,2647,28 +43691,Delve: The Dice Game,2090,21,2647,28 +65901,Age of Industry,2090,21,2647,28 +123239,Wits & Wagers Party,2090,21,2647,28 +160669,Town Center (Fourth Edition),2090,21,2647,28 +175293,Trambahn,2090,21,2647,28 +184491,Spaceteam,2090,21,2647,28 +206803,Warsaw: City of Ruins,2090,21,2647,28 +214491,Paku Paku,2090,21,2647,28 +224272,Hellapagos,2090,21,2647,28 +228411,Iron Curtain,2090,21,2647,28 +232405,Western Legends,2090,21,2647,28 +255674,Imhotep: The Duel,2090,21,2647,28 +270971,Era: Medieval Age,2090,21,2647,28 +282435,1882: Assiniboia,2090,21,2647,28 +291859,Riftforce,2090,21,2647,28 +293665,Ensemble,2090,21,2647,28 +333055,Subastral,2090,21,2647,28 +341919,Magic Mountain,2090,21,2647,28 +1324,Café International: Das Kartenspiel,2090,21,2807,27 +3093,Croak!,2090,21,2807,27 +4637,Max,2090,21,2807,27 +6481,Ada's Library,2090,21,2807,27 +11231,Snorta!,2090,21,2807,27 +26566,Homesteaders,2090,21,2807,27 +80771,Dungeon Raiders,2090,21,2807,27 +147370,Robot Turtles,2090,21,2807,27 +147790,Buccaneer Bones,2090,21,2807,27 +166158,Dark Tales,2090,21,2807,27 +186659,Tiny Epic Galaxies: Deluxe Edition,2090,21,2807,27 +213953,Pyramid Poker,2090,21,2807,27 +224783,Vindication,2090,21,2807,27 +295607,Canopy,2090,21,2807,27 +352697,Resist!,2090,21,2807,27 +10997,Boomtown,2090,21,2967,26 +24827,Traders of Osaka,2090,21,2967,26 +118497,Trick of the Rails,2090,21,2967,26 +121041,Pluckin' Pairs,2090,21,2967,26 +155708,Tiny Epic Defenders,2090,21,2967,26 +163968,Elysium,2090,21,2967,26 +172308,Broom Service,2090,21,2967,26 +192834,Fight for Olympus,2090,21,2967,26 +192860,Oceanos,2090,21,2967,26 +205046,Capital Lux,2090,21,2967,26 +222509,Lords of Hellas,2090,21,2967,26 +230408,Monopoly Gamer,2090,21,2967,26 +246200,Piepmatz,2090,21,2967,26 +280453,Masters of Renaissance: Lorenzo il Magnifico – The Card Game,2090,21,2967,26 +324914,Inside Job,2090,21,2967,26 +336847,Tyrants of the Underdark: Board Game,2090,21,2967,26 +340364,Machi Koro 2,2090,21,2967,26 +217,A la carte,2090,21,3155,25 +191572,Animals on Board,2090,21,3155,25 +218603,Photosynthesis,2090,21,3155,25 +284108,Pictures,2090,21,3155,25 +305986,Sequoia,2090,21,3155,25 +257674,Vampire: The Masquerade – Heritage,2090,21,3592,23 +195162,Plague Inc.: The Board Game,2264,20,8,2619 +6366,Dungeons & Dragons: The Fantasy Adventure Board Game,2264,20,244,107 +50849,Le Boomb!,2264,20,434,79 +174660,New York 1901,2264,20,434,79 +154634,Yardmaster,2264,20,684,63 +24947,The Spoils,2264,20,717,61 +4229,Spellfire,2264,20,791,58 +10502,Poker Dice,2264,20,840,56 +7290,Dynasty League Baseball,2264,20,867,55 +186567,Baseball Highlights: 2045 – Super Deluxe Edition,2264,20,1118,48 +700,Battle Masters,2264,20,1233,45 +1561,Clue Master Detective,2264,20,1233,45 +22847,Connect6,2264,20,1285,44 +30,Dark Tower,2264,20,1396,42 +344341,SolForge Fusion,2264,20,1431,41 +237,Wooden Ships & Iron Men,2264,20,1491,40 +589,Wiz-War,2264,20,1491,40 +200785,Legendary Inventors,2264,20,1491,40 +3852,Star Trek Customizable Card Game,2264,20,1549,39 +15712,Egyptian Ratscrew,2264,20,1549,39 +379110,SETUP,2264,20,1549,39 +798,Ace of Aces: Handy Rotary Series,2264,20,1615,38 +2578,Phase 10 Dice,2264,20,1615,38 +151835,Qwixx Card Game,2264,20,1615,38 +13084,Volcano,2264,20,1696,37 +37301,Decktet,2264,20,1696,37 +8817,Call of Cthulhu: Collectible Card Game,2264,20,1782,36 +14035,Piranha Pedro,2264,20,1782,36 +40107,"Soviet Dawn: The Russian Civil War, 1918-1921",2264,20,1782,36 +172235,Schrödinger's Cats,2264,20,1782,36 +3818,Alias,2264,20,1867,35 +214000,In the Year of the Dragon: 10th Anniversary,2264,20,1867,35 +2238,PanzerBlitz,2264,20,1953,34 +71074,Expedition: Northwest Passage,2264,20,1953,34 +170416,Vast: The Crystal Caverns,2264,20,1953,34 +269573,Dracarys Dice,2264,20,1953,34 +71,Civilization,2264,20,2048,33 +14038,Anachronism,2264,20,2048,33 +63539,Lupus in Tabula,2264,20,2048,33 +129091,Trainmaker,2264,20,2048,33 +131904,Heart of Crown,2264,20,2048,33 +166109,Meteor,2264,20,2048,33 +170969,Gigamons,2264,20,2048,33 +175755,The Lord of the Rings: Journey to Mordor,2264,20,2048,33 +215371,CrossTalk,2264,20,2048,33 +234931,Star Wars: Destiny – Two-Player Game,2264,20,2048,33 +283135,Magic Maze on Mars,2264,20,2048,33 +344697,"Warhammer 40,000: Kill Team",2264,20,2048,33 +39534,Paper Safari,2264,20,2156,32 +94483,Hoot Owl Hoot!,2264,20,2156,32 +120269,Red White & Blue Racin': Stock Car Action Game,2264,20,2156,32 +145633,Ascension: Apprentice Edition,2264,20,2156,32 +156266,Apex Theropod Deck-Building Game,2264,20,2156,32 +193867,1822: The Railways of Great Britain,2264,20,2156,32 +248005,Ganymede,2264,20,2156,32 +75,Falling,2264,20,2261,31 +980,Al Cabohne,2264,20,2261,31 +987,Kingmaker,2264,20,2261,31 +1275,221B Baker Street: The Master Detective Game,2264,20,2261,31 +1445,Canasta Caliente,2264,20,2261,31 +2639,Panzer Leader: Game of Tactical Warfare on the Western Front,2264,20,2261,31 +3737,Operation,2264,20,2261,31 +7098,Monopoly: Deluxe Edition,2264,20,2261,31 +13172,Kung Fu Fighting,2264,20,2261,31 +101020,PAX,2264,20,2261,31 +129459,Duel of Ages II,2264,20,2261,31 +147305,Om Nom Nom,2264,20,2261,31 +208024,The Reckoners,2264,20,2261,31 +243538,Goblivion,2264,20,2261,31 +258437,Bukiet,2264,20,2261,31 +386,Pirateer,2264,20,2387,30 +715,Escape from Colditz,2264,20,2387,30 +939,Star Wars: The Queen's Gambit,2264,20,2387,30 +3727,Carla Cat,2264,20,2387,30 +12826,Tumblin' Monkeys,2264,20,2387,30 +21389,Happy Families,2264,20,2387,30 +24703,Heroscape Marvel: The Conflict Begins,2264,20,2387,30 +27976,Heroscape Master Set: Swarm of the Marro,2264,20,2387,30 +39872,Guess Who? Extra,2264,20,2387,30 +96913,Lancaster,2264,20,2387,30 +130592,Clue,2264,20,2387,30 +136192,Dungeon Dice,2264,20,2387,30 +161547,Timeline: Americana,2264,20,2387,30 +161773,Little Cooperation,2264,20,2387,30 +175861,Meow,2264,20,2387,30 +183896,Firefly Fluxx,2264,20,2387,30 +191071,Mino Dice,2264,20,2387,30 +205420,Gooseberry,2264,20,2387,30 +207242,Pentaquark,2264,20,2387,30 +211364,Seize the Bean,2264,20,2387,30 +224904,Sunset Over Water,2264,20,2387,30 +225167,Human Punishment: Social Deduction 2.0,2264,20,2387,30 +232353,Costume Party Detective,2264,20,2387,30 +252153,Tang Garden,2264,20,2387,30 +260316,Art Decko,2264,20,2387,30 +269069,Pearls,2264,20,2387,30 +269752,Noctiluca,2264,20,2387,30 +295948,Aqualin,2264,20,2387,30 +434,Yucata',2264,20,2512,29 +1117,You're Bluffing!,2264,20,2512,29 +1549,Password,2264,20,2512,29 +4095,Star Munchkin,2264,20,2512,29 +4934,Battling Tops,2264,20,2512,29 +41493,Yamslam,2264,20,2512,29 +41933,Arctic Scavengers,2264,20,2512,29 +118705,Ghost Blitz 2,2264,20,2512,29 +119506,Freedom: The Underground Railroad,2264,20,2512,29 +129946,AttrAction,2264,20,2512,29 +231824,Blank,2264,20,2512,29 +233247,Civilization: A New Dawn,2264,20,2512,29 +249821,Codenames: Harry Potter,2264,20,2512,29 +264991,Par Odin,2264,20,2512,29 +300327,The Castles of Tuscany,2264,20,2512,29 +309862,Gudetama: The Tricky Egg Card Game,2264,20,2512,29 +28,Illuminati,2264,20,2647,28 +875,Roads & Boats,2264,20,2647,28 +1829,Risk 2210 A.D.,2264,20,2647,28 +2679,Mouse Trap,2264,20,2647,28 +5588,Perfection,2264,20,2647,28 +21441,Mykerinos,2264,20,2647,28 +40760,Alea Iacta Est,2264,20,2647,28 +65515,Nuns on the Run,2264,20,2647,28 +119637,Zug um Zug: Deutschland,2264,20,2647,28 +124052,Cinque Terre,2264,20,2647,28 +144529,Theseus: The Dark Orbit,2264,20,2647,28 +148532,Ghost Blitz: 5 to 12,2264,20,2647,28 +148767,Brandon the Brave,2264,20,2647,28 +185374,Loot N Run,2264,20,2647,28 +218920,Valletta,2264,20,2647,28 +240567,Chocolate Factory,2264,20,2647,28 +245446,Nimble,2264,20,2647,28 +246639,Patchwork Express,2264,20,2647,28 +257733,Fine Sand,2264,20,2647,28 +274638,Unmatched: Robin Hood vs. Bigfoot,2264,20,2647,28 +318009,Dinosaur Island: Rawr 'n Write,2264,20,2647,28 +331571,My Gold Mine,2264,20,2647,28 +336755,King of Tokyo: Monster Box,2264,20,2647,28 +337784,Number Drop,2264,20,2647,28 +228,Lunch Money,2264,20,2807,27 +424,1870: Railroading Across the Trans Mississippi from 1870,2264,20,2807,27 +3728,Ker Plunk,2264,20,2807,27 +5339,Monopoly Junior,2264,20,2807,27 +41636,Abandon Ship,2264,20,2807,27 +46396,Ubongo 3D,2264,20,2807,27 +57925,Havana,2264,20,2807,27 +80006,Mord im Arosa,2264,20,2807,27 +116858,Noah,2264,20,2807,27 +129614,Rondo,2264,20,2807,27 +134150,Mini Curling Game,2264,20,2807,27 +143075,Luchador! Mexican Wrestling Dice,2264,20,2807,27 +153507,Terra,2264,20,2807,27 +181325,Completto,2264,20,2807,27 +195539,The Godfather: Corleone's Empire,2264,20,2807,27 +200954,Fields of Green,2264,20,2807,27 +218314,3 Secrets,2264,20,2807,27 +244513,ICECOOL2,2264,20,2807,27 +257732,Pax Transhumanity,2264,20,2807,27 +269618,Crystallo,2264,20,2807,27 +279254,Ecos: First Continent,2264,20,2807,27 +132,Caesar & Cleopatra,2264,20,2967,26 +163,Balderdash,2264,20,2967,26 +1218,Junior Labyrinth,2264,20,2967,26 +1459,Sharp Shooters,2264,20,2967,26 +1544,Beyond Balderdash,2264,20,2967,26 +5737,Domaine,2264,20,2967,26 +20551,Shogun,2264,20,2967,26 +88126,Time's Up! Family,2264,20,2967,26 +147930,King & Assassins,2264,20,2967,26 +154386,Medieval Academy,2264,20,2967,26 +156858,Black Orchestra,2264,20,2967,26 +184842,Catan Junior,2264,20,2967,26 +202737,Are You Dumber Than a Box of Rocks?,2264,20,2967,26 +230933,Merlin,2264,20,2967,26 +247342,Village Pillage,2264,20,2967,26 +252526,Pictomania (Second Edition),2264,20,2967,26 +255924,Snowdonia: Deluxe Master Set,2264,20,2967,26 +256680,Return to Dark Tower,2264,20,2967,26 +270847,Set & Match,2264,20,2967,26 +276498,Paris: La Cité de la Lumière,2264,20,2967,26 +280789,Pandemic: Rapid Response,2264,20,2967,26 +283317,The 7th Continent: Classic Edition,2264,20,2967,26 +319966,The King Is Dead: Second Edition,2264,20,2967,26 +326494,The Adventures of Robin Hood,2264,20,2967,26 +371942,The White Castle,2264,20,2967,26 +420,Rail Baron,2264,20,3155,25 +10681,Apples to Apples Junior,2264,20,3155,25 +39684,Merkator,2264,20,3155,25 +50750,Belfort,2264,20,3155,25 +70512,Luna,2264,20,3155,25 +85250,The Dwarf King,2264,20,3155,25 +128996,1775: Rebellion,2264,20,3155,25 +163370,Carcassonne: Gold Rush,2264,20,3155,25 +173064,Leaving Earth,2264,20,3155,25 +174226,Arctic Scavengers: Base Game+HQ+Recon,2264,20,3155,25 +178336,World's Fair 1893,2264,20,3155,25 +179572,Dice City,2264,20,3155,25 +190082,Whitehall Mystery,2264,20,3155,25 +195043,Welcome Back to the Dungeon,2264,20,3155,25 +225729,Arkham Noir: Case #1 – The Witch Cult Murders,2264,20,3155,25 +230200,Overbooked,2264,20,3155,25 +239840,Micropolis,2264,20,3155,25 +250442,Crypt,2264,20,3155,25 +258444,Gingerbread House,2264,20,3155,25 +283393,Aquatica,2264,20,3155,25 +295490,Dodo,2264,20,3155,25 +300930,Schotten Totten 2,2264,20,3155,25 +347137,Chronicles of Avel,2264,20,3155,25 +50768,Ninjato,2264,20,3361,24 +55601,Sneaks & Snitches,2264,20,3361,24 +159508,AquaSphere,2264,20,3361,24 +179803,Arcadia Quest: Inferno,2264,20,3361,24 +228341,Pulsar 2849,2264,20,3361,24 +234669,Legacy of Dragonholt,2264,20,3361,24 +238656,Tiny Epic Defenders (Second Edition),2264,20,3361,24 +280136,Paranormal Detectives,2264,20,3361,24 +3228,Pueblo,2264,20,3592,23 +244331,Blue Lagoon,2264,20,3592,23 +11028,Lotto,2481,19,344,89 +165,Black Box,2481,19,356,87 +299571,Bandida,2481,19,448,78 +176,Give Me the Brain!,2481,19,628,66 +3452,Emerald,2481,19,760,59 +4616,Arimaa,2481,19,929,53 +1644,Tipp-Kick,2481,19,1118,48 +3475,Shadowfist,2481,19,1159,47 +40819,Cheese Chasers,2481,19,1192,46 +216403,Element,2481,19,1192,46 +144728,Adventure Time Card Wars: Finn vs. Jake,2481,19,1233,45 +256320,Fertility,2481,19,1285,44 +1799,Warlord: Saga of the Storm,2481,19,1431,41 +1037,Deadlands: Doomtown,2481,19,1615,38 +69552,Panic Station,2481,19,1615,38 +126613,"Warhammer 40,000 (Sixth Edition)",2481,19,1696,37 +156373,Chimera,2481,19,1782,36 +171662,Neanderthal,2481,19,1782,36 +222988,Helionox: Deluxe Edition,2481,19,1782,36 +902,Meuterer,2481,19,1867,35 +82421,Summoner Wars: Phoenix Elves vs Tundra Orcs,2481,19,1867,35 +174431,Wipers Salient,2481,19,1867,35 +197831,Dark Souls: The Board Game,2481,19,1867,35 +262498,Puzzle Dungeon,2481,19,1867,35 +2399,Senet,2481,19,1953,34 +5314,Hangman,2481,19,1953,34 +150293,The Ravens of Thri Sahashri,2481,19,1953,34 +748,Trax,2481,19,2048,33 +2922,Chairs,2481,19,2048,33 +12891,Friedrich,2481,19,2048,33 +146784,A Touch of Evil: Dark Gothic,2481,19,2048,33 +181279,Fury of Dracula (Third/Fourth Edition),2481,19,2048,33 +225910,Terrors of London,2481,19,2048,33 +442,Um Reifenbreite,2481,19,2156,32 +18399,Fan Tan,2481,19,2156,32 +229956,"Fort Sumter: The Secession Crisis, 1860-61",2481,19,2156,32 +306182,Bandada,2481,19,2156,32 +27117,Animalia,2481,19,2261,31 +29140,Tumblin-Dice Jr.,2481,19,2261,31 +37141,Time's Up! Deluxe,2481,19,2261,31 +42105,Mixmo,2481,19,2261,31 +181811,Tatsu,2481,19,2261,31 +183315,Tetrarchia,2481,19,2261,31 +247417,Solomon Kane,2481,19,2261,31 +266188,Seven Bridges,2481,19,2261,31 +281442,Trismegistus: The Ultimate Formula,2481,19,2261,31 +318084,Furnace,2481,19,2261,31 +341080,Warhammer Age of Sigmar (Third Edition),2481,19,2261,31 +1194,Speed Circuit,2481,19,2387,30 +1950,The Mysteries of Peking,2481,19,2387,30 +6546,Labyrinth,2481,19,2387,30 +18333,Nature Fluxx,2481,19,2387,30 +26997,1989: Dawn of Freedom,2481,19,2387,30 +31159,Piratatak,2481,19,2387,30 +156180,Eggs and Empires,2481,19,2387,30 +169341,Birds of a Feather,2481,19,2387,30 +258723,ToeShamBo,2481,19,2387,30 +280834,For Science!,2481,19,2387,30 +323898,Doom Machine,2481,19,2387,30 +340041,Kingdomino Origins,2481,19,2387,30 +344789,Skytear Horde,2481,19,2387,30 +356996,The Border,2481,19,2387,30 +834,Chronology,2481,19,2512,29 +39242,Black Friday,2481,19,2512,29 +158991,Hannin Wa Odoru,2481,19,2512,29 +174078,Holmes: Sherlock & Mycroft,2481,19,2512,29 +200847,Secrets,2481,19,2512,29 +210232,Dungeon Degenerates: Hand of Doom,2481,19,2512,29 +246567,Big Monster,2481,19,2512,29 +258148,Power Rangers: Heroes of the Grid,2481,19,2512,29 +283355,Dune,2481,19,2512,29 +344839,Dog Lover,2481,19,2512,29 +351817,Marvel Zombies: A Zombicide Game,2481,19,2512,29 +373828,Galdor's Grip,2481,19,2512,29 +374145,Dungeon Pages: Core Set,2481,19,2512,29 +1484,Clue: The Great Museum Caper,2481,19,2647,28 +1897,The Starfarers of Catan,2481,19,2647,28 +3804,Slamwich,2481,19,2647,28 +6795,Battleball,2481,19,2647,28 +10640,Doom: The Boardgame,2481,19,2647,28 +23142,Mag·Blast: Third Edition,2481,19,2647,28 +25951,The Castle of the Devil,2481,19,2647,28 +40941,Hide the Kids!,2481,19,2647,28 +96345,Black Stories: Funny Death Edition,2481,19,2647,28 +98242,Star Trek Deck Building Game: The Next Generation,2481,19,2647,28 +128185,Don't Rock the Boat,2481,19,2647,28 +152241,Ultimate Werewolf,2481,19,2647,28 +160418,Wing Leader: Victories 1940-1942,2481,19,2647,28 +164949,"Time of Crisis: The Roman Empire in Turmoil, 235-284 AD",2481,19,2647,28 +192401,Dungeon Time,2481,19,2647,28 +201054,What's Up,2481,19,2647,28 +217321,Déjà Vu,2481,19,2647,28 +275870,TEAM3 GREEN,2481,19,2647,28 +301919,Pandemic: Hot Zone – North America,2481,19,2647,28 +323262,Velonimo,2481,19,2647,28 +108,TAMSK,2481,19,2807,27 +192,Nicht die Bohne!,2481,19,2807,27 +533,Labyrinth: The Card Game,2481,19,2807,27 +1452,Mhing,2481,19,2807,27 +3845,Yahtzee Jr.,2481,19,2807,27 +38287,Beep! Beep!,2481,19,2807,27 +38996,Washington's War,2481,19,2807,27 +139326,UGO!,2481,19,2807,27 +157413,New Bedford,2481,19,2807,27 +173096,A Tale of Pirates,2481,19,2807,27 +187680,Quests of Valeria,2481,19,2807,27 +189052,Sea of Clouds,2481,19,2807,27 +210342,Timeline: British History,2481,19,2807,27 +218126,Whozit?,2481,19,2807,27 +219430,Math Fluxx,2481,19,2807,27 +236360,Don't Drop the Soap,2481,19,2807,27 +237792,Rummikub Twist,2481,19,2807,27 +270970,Century: A New World,2481,19,2807,27 +271601,Feed the Kraken,2481,19,2807,27 +281946,Aftermath,2481,19,2807,27 +286295,Quantik,2481,19,2807,27 +288775,Fairy Trails,2481,19,2807,27 +355735,Hungry Monkey,2481,19,2807,27 +380,Polarity,2481,19,2967,26 +869,Bongo!,2481,19,2967,26 +3337,Double Down,2481,19,2967,26 +6137,Drive,2481,19,2967,26 +16035,Cranium Whoonu,2481,19,2967,26 +29603,D-Day at Omaha Beach,2481,19,2967,26 +31545,Pow Wow,2481,19,2967,26 +34004,Big Points,2481,19,2967,26 +55600,Shipyard,2481,19,2967,26 +55835,Ligretto Dice,2481,19,2967,26 +104780,Hoppe Reiter,2481,19,2967,26 +142325,Kobayakawa,2481,19,2967,26 +146130,Coin Age,2481,19,2967,26 +163930,Abracada...What?,2481,19,2967,26 +175254,Apocrypha Adventure Card Game: Box One – The World,2481,19,2967,26 +182340,Star Trek: Frontiers,2481,19,2967,26 +209578,"Little Bird, Big Hunger",2481,19,2967,26 +235465,Karuba: The Card Game,2481,19,2967,26 +239942,Black Rose Wars,2481,19,2967,26 +261614,Unanimo Party,2481,19,2967,26 +279869,Nine Tiles Panic,2481,19,2967,26 +289601,Combo Color,2481,19,2967,26 +294175,Cheese Thief,2481,19,2967,26 +3243,Wooly Wars,2481,19,3155,25 +5534,Light Speed,2481,19,3155,25 +19526,Elasund: The First City,2481,19,3155,25 +27364,Caylus Magna Carta,2481,19,3155,25 +29934,Amyitis,2481,19,3155,25 +44163,Power Grid: Factory Manager,2481,19,3155,25 +98527,Gloom of Kilforth: A Fantasy Quest Game,2481,19,3155,25 +111417,The Great Heartland Hauling Co.,2481,19,3155,25 +138431,Galaxy Defenders,2481,19,3155,25 +173156,Timeline Challenge,2481,19,3155,25 +176530,Xenon Profiteer,2481,19,3155,25 +192934,Colony,2481,19,3155,25 +218074,Detective: City of Angels,2481,19,3155,25 +231327,The Grizzled: Armistice Edition,2481,19,3155,25 +233896,Resident Evil 2: The Board Game,2481,19,3155,25 +254018,Solenia,2481,19,3155,25 +271869,Sushi Roll,2481,19,3155,25 +285826,Ultra Tiny Epic Galaxies,2481,19,3155,25 +322709,Ugly Gryphon Inn,2481,19,3155,25 +329939,Keystone: North America,2481,19,3155,25 +332686,John Company: Second Edition,2481,19,3155,25 +354570,Undaunted: Stalingrad,2481,19,3155,25 +44,David & Goliath,2481,19,3361,24 +115,I'm the Boss!,2481,19,3361,24 +8668,Igloo Pop,2481,19,3361,24 +11945,Linq,2481,19,3361,24 +18745,Sun Tzu,2481,19,3361,24 +24800,Conflict of Heroes: Awakening the Bear! – Russia 1941-42,2481,19,3361,24 +40354,Maria,2481,19,3361,24 +91534,Struggle for Catan,2481,19,3361,24 +123885,Pick-a-Dog,2481,19,3361,24 +142326,Eight-Minute Empire: Legends,2481,19,3361,24 +144189,Fire in the Lake,2481,19,3361,24 +149809,Escape: Zombie City,2481,19,3361,24 +159503,The Captain Is Dead,2481,19,3361,24 +181810,Kodama: The Tree Spirits,2481,19,3361,24 +195372,Krazy Wordz: Nicht 100% jugendfrei,2481,19,3361,24 +204493,Sakura Arms,2481,19,3361,24 +210900,Topiary,2481,19,3361,24 +217085,Unearth,2481,19,3361,24 +242574,Century: Eastern Wonders,2481,19,3361,24 +247160,Dinosaur Tea Party,2481,19,3361,24 +257769,Walking in Burano,2481,19,3361,24 +275916,Cairn,2481,19,3361,24 +285533,Miyabi,2481,19,3361,24 +306637,Resident Evil 3: The Board Game,2481,19,3361,24 +321539,A Game of Cat & Mouth,2481,19,3361,24 +343526,G.I. JOE Deck-Building Game,2481,19,3361,24 +182,Knights of Charlemagne,2481,19,3592,23 +38548,Fast Flowing Forest Fellers,2481,19,3592,23 +117915,Yedo,2481,19,3592,23 +145645,Le Fantôme de l'Opéra,2481,19,3592,23 +150485,Cat Tower,2481,19,3592,23 +155173,Subdivision,2481,19,3592,23 +155624,Specter Ops,2481,19,3592,23 +251747,Atlantic Chase,2481,19,3592,23 +295895,Distilled,2481,19,3592,23 +310100,Nemesis: Lockdown,2481,19,3592,23 +325853,Don't L.L.A.M.A. Dice,2481,19,3592,23 +336986,Flamecraft,2481,19,3592,23 +342062,Artisans of Splendent Vale,2481,19,3592,23 +343905,Boonlake,2481,19,3592,23 +352179,Astro Knights,2481,19,3592,23 +356033,Libertalia: Winds of Galecrest,2481,19,3592,23 +362452,Atiwa,2481,19,3592,23 +10659,Hex Hex,2481,19,3819,22 +19600,Antike,2481,19,3819,22 +193949,Star Trek: Ascendancy,2481,19,3819,22 +332772,Revive,2481,19,3819,22 +364766,MicroMacro: Crime City – All In,2481,19,4078,21 +1498,Paydirt,2692,18,641,65 +8944,Triple Yahtzee,2692,18,1339,43 +91620,Pastiche,2692,18,1339,43 +274735,13 Sheep,2692,18,1339,43 +287754,Warhammer Underworlds: Beastgrave,2692,18,1431,41 +362505,One Piece Card Game,2692,18,1431,41 +128412,Bohn to Be Wild!,2692,18,1491,40 +17530,Go Stop,2692,18,1549,39 +102275,Lord of the Rings: The Adventure Deck Game,2692,18,1549,39 +41090,Magnate,2692,18,1696,37 +10527,Gyges,2692,18,1782,36 +193428,Street Fighter: The Miniatures Game,2692,18,1782,36 +222643,The Lady and the Tiger,2692,18,1782,36 +574,Devil Take the Hindmost,2692,18,1867,35 +7806,King Up!,2692,18,1867,35 +34496,World of Warcraft: Miniatures Game,2692,18,1867,35 +208480,Wordsy,2692,18,1867,35 +96628,Miscellaneous Game Compilation,2692,18,1953,34 +165838,Space Hulk (Fourth Edition),2692,18,1953,34 +188188,Complots,2692,18,1953,34 +6688,Ninety-Nine,2692,18,2048,33 +7742,Confrontation,2692,18,2048,33 +32154,Down Under,2692,18,2048,33 +121764,Plato 3000,2692,18,2048,33 +152959,The Settlers of Catan,2692,18,2048,33 +244691,UNO: Minecraft,2692,18,2048,33 +43152,Assyria,2692,18,2156,32 +93287,Final Fantasy Trading Card Game,2692,18,2156,32 +101865,Saga,2692,18,2156,32 +141008,Carcassonne Big Box 2,2692,18,2156,32 +270168,Tuki,2692,18,2156,32 +334986,Daybreak,2692,18,2156,32 +277,Res Publica,2692,18,2261,31 +30662,Travel Carcassonne,2692,18,2261,31 +41860,Kangaroo,2692,18,2261,31 +42448,We Didn't Playtest This Either,2692,18,2261,31 +62230,Wild Blue Yonder,2692,18,2261,31 +1674,Naval War,2692,18,2387,30 +281073,Cat Lady: Premium Edition,2692,18,2387,30 +295785,Euthia: Torment of Resurrection,2692,18,2387,30 +331212,Aeon's End: Legacy of Gravehold,2692,18,2387,30 +73,Show Manager,2692,18,2512,29 +859,Illuminati,2692,18,2512,29 +7553,Babylon,2692,18,2512,29 +8920,BuyWord,2692,18,2512,29 +22950,Play Nine,2692,18,2512,29 +30241,Patrician,2692,18,2512,29 +176083,Hit Z Road,2692,18,2512,29 +199182,Commands & Colors Tricorne: The American Revolution,2692,18,2512,29 +212765,Songbirds,2692,18,2512,29 +259066,Commands & Colors: Samurai Battles,2692,18,2512,29 +316632,La Marche du Crabe,2692,18,2512,29 +324884,Monster 12,2692,18,2512,29 +341164,Exploding Minions,2692,18,2512,29 +342857,"Air, Land, and Sea: Critters at War",2692,18,2512,29 +359211,The Old Prince 1871,2692,18,2512,29 +1333,Boom-O,2692,18,2647,28 +2808,The Russian Campaign,2692,18,2647,28 +13875,Quoridor Kid,2692,18,2647,28 +37362,Robot Master,2692,18,2647,28 +42050,Eurobusiness,2692,18,2647,28 +124545,Town Center,2692,18,2647,28 +125752,Race! Formula 90,2692,18,2647,28 +150146,Rattlebones,2692,18,2647,28 +161866,Zombicide Season 3: Rue Morgue,2692,18,2647,28 +171879,Kraftwagen,2692,18,2647,28 +174219,Time's Up! Kids,2692,18,2647,28 +212346,Shadows of Brimstone: Forbidden Fortress,2692,18,2647,28 +217353,Assembly,2692,18,2647,28 +240843,Maiden's Quest,2692,18,2647,28 +247104,Blitz Bowl,2692,18,2647,28 +270143,Kōhaku,2692,18,2647,28 +285967,Ankh: Gods of Egypt,2692,18,2647,28 +297569,Spicy Dice,2692,18,2647,28 +337627,Voidfall,2692,18,2647,28 +552,Bus,2692,18,2807,27 +9440,Maharaja: The Game of Palace Building in India,2692,18,2807,27 +17855,Castle Keep,2692,18,2807,27 +20832,Halli Galli Junior,2692,18,2807,27 +22861,Feed the Kitty,2692,18,2807,27 +37728,Rock the Beat,2692,18,2807,27 +47055,High Frontier,2692,18,2807,27 +72644,Perplexus,2692,18,2807,27 +102940,Trophy Buck,2692,18,2807,27 +104955,Antike Duellum,2692,18,2807,27 +111124,Dark Moon,2692,18,2807,27 +136056,Asante,2692,18,2807,27 +145014,Cardline: Globetrotter,2692,18,2807,27 +151004,Smash Up: Science Fiction Double Feature,2692,18,2807,27 +155463,DC Deck-Building Game: Forever Evil,2692,18,2807,27 +162378,Holiday Fluxx,2692,18,2807,27 +163277,Cardline: Dinosaurs,2692,18,2807,27 +163929,Coconuts Duo,2692,18,2807,27 +165877,Spellcaster,2692,18,2807,27 +168274,Mistfall,2692,18,2807,27 +178209,Adventure Time Fluxx,2692,18,2807,27 +186302,Die Fiesen 7,2692,18,2807,27 +192701,Final Touch,2692,18,2807,27 +207951,Tintas,2692,18,2807,27 +217335,111 Ants,2692,18,2807,27 +253399,Journal 29: Interactive Book Game,2692,18,2807,27 +288080,Dice Realms,2692,18,2807,27 +294275,Way of the Samurai,2692,18,2807,27 +313010,Cosmic Encounter: 42nd Anniversary Edition,2692,18,2807,27 +338467,Zuuli,2692,18,2807,27 +341416,High Score,2692,18,2807,27 +354892,That's Pretty Clever! Kids,2692,18,2807,27 +423,1856: Railroading in Upper Canada from 1856,2692,18,2967,26 +1315,Africa,2692,18,2967,26 +1501,Masterpiece,2692,18,2967,26 +2770,Stay Alive,2692,18,2967,26 +2843,Absacker,2692,18,2967,26 +3343,Go For Broke,2692,18,2967,26 +5707,Cuckoo Zoo,2692,18,2967,26 +11825,Empire of the Sun,2692,18,2967,26 +12692,Gloom,2692,18,2967,26 +14441,Kinder Bunnies: Their First Adventure,2692,18,2967,26 +18485,18MEX,2692,18,2967,26 +23817,1861: The Railways of the Russian Empire,2692,18,2967,26 +30367,Perry Rhodan: The Cosmic League,2692,18,2967,26 +30640,Rio,2692,18,2967,26 +42920,UNO Moo!,2692,18,2967,26 +87890,Prêt-à-Porter,2692,18,2967,26 +91817,City Square Off,2692,18,2967,26 +93185,Tetris Link,2692,18,2967,26 +112686,Epic Spell Wars of the Battle Wizards: Duel at Mt. Skullzfyre,2692,18,2967,26 +119788,Hyperborea,2692,18,2967,26 +121073,Panic Lab,2692,18,2967,26 +143185,Smash Up: The Obligatory Cthulhu Set,2692,18,2967,26 +154086,Gold West,2692,18,2967,26 +184287,Frantic,2692,18,2967,26 +195296,Scuttle!,2692,18,2967,26 +206480,Imperial Struggle,2692,18,2967,26 +209660,Dungeon Alliance,2692,18,2967,26 +218050,Hotshots,2692,18,2967,26 +231748,Time Bomb Evolution,2692,18,2967,26 +232980,Dream On!,2692,18,2967,26 +235817,Space Explorers,2692,18,2967,26 +256569,Castle Rampage,2692,18,2967,26 +264476,Rangers of Shadow Deep,2692,18,2967,26 +369548,After Us,2692,18,2967,26 +634,River Dragons,2692,18,3155,25 +833,For the People,2692,18,3155,25 +915,Mystery of the Abbey,2692,18,3155,25 +932,Top Race,2692,18,3155,25 +1245,Isis & Osiris,2692,18,3155,25 +8790,Activity,2692,18,3155,25 +11760,Knuckling Knights,2692,18,3155,25 +12063,There's a Moose in the House,2692,18,3155,25 +24304,Unspeakable Words,2692,18,3155,25 +36522,2 de Mayo,2692,18,3155,25 +37296,Yahtzee Free for All,2692,18,3155,25 +71882,Conquest of Planet Earth: The Space Alien Game,2692,18,3155,25 +104020,Vanuatu,2692,18,3155,25 +118063,Android: Infiltration,2692,18,3155,25 +118418,Divinare,2692,18,3155,25 +145642,The Cards of Cthulhu,2692,18,3155,25 +156496,March of the Ants,2692,18,3155,25 +166571,Tramways,2692,18,3155,25 +201921,Tiny Epic Quest,2692,18,3155,25 +206939,Do De Li Do,2692,18,3155,25 +216201,Robo Rally,2692,18,3155,25 +218530,Tortuga 1667,2692,18,3155,25 +232918,Fallout,2692,18,3155,25 +242740,Magic Maze Kids,2692,18,3155,25 +243759,Hellboy: The Board Game,2692,18,3155,25 +255664,The Binding of Isaac: Four Souls,2692,18,3155,25 +258074,Volfyirion,2692,18,3155,25 +265204,Pocket Landship,2692,18,3155,25 +278292,Anachrony: Infinity Box,2692,18,3155,25 +281152,On the Underground: London/Berlin,2692,18,3155,25 +281960,Kingdomino Duel,2692,18,3155,25 +283792,SpaceShipped,2692,18,3155,25 +284189,Foundations of Rome,2692,18,3155,25 +300305,Nanga Parbat,2692,18,3155,25 +312251,Curious Cargo,2692,18,3155,25 +328575,Ragnarocks,2692,18,3155,25 +330538,All on 1 Card,2692,18,3155,25 +545,Kaleidos,2692,18,3361,24 +1942,Foppen,2692,18,3361,24 +3632,Foodie Forest,2692,18,3361,24 +4862,Outburst!,2692,18,3361,24 +24565,Magical Athlete,2692,18,3361,24 +31056,Micro Mutants: Evolution,2692,18,3361,24 +31479,Ubongo Extreme,2692,18,3361,24 +67888,Lords of Scotland,2692,18,3361,24 +90870,Pelican Cove,2692,18,3361,24 +117838,Oz Fluxx,2692,18,3361,24 +124390,"Goblins Drool, Fairies Rule!",2692,18,3361,24 +124839,Hoplomachus: The Lost Cities,2692,18,3361,24 +128721,Crisis,2692,18,3361,24 +142239,Vye: The Card Game of Capture and Control,2692,18,3361,24 +145308,Marrying Mr. Darcy,2692,18,3361,24 +151347,Millennium Blades,2692,18,3361,24 +155873,Power Grid Deluxe: Europe/North America,2692,18,3361,24 +171630,Drakon (Fourth Edition),2692,18,3361,24 +172881,Quartz,2692,18,3361,24 +173105,The Great War,2692,18,3361,24 +191597,Dale of Merchants 2,2692,18,3361,24 +191612,Skies Above the Reich,2692,18,3361,24 +206940,Carcassonne: Amazonas,2692,18,3361,24 +222145,Lucidity: Six-Sided Nightmares,2692,18,3361,24 +223779,Pocket Mars,2692,18,3361,24 +229791,Triplock,2692,18,3361,24 +245710,Blossoms,2692,18,3361,24 +247694,TEAM3 PINK,2692,18,3361,24 +254591,Heroes of Terrinoth,2692,18,3361,24 +259345,Snail Sprint!,2692,18,3361,24 +269257,Chartae,2692,18,3361,24 +281417,Hoarders,2692,18,3361,24 +290484,Unsettled,2692,18,3361,24 +302212,Sebastian Fitzek Safehouse Würfelspiel,2692,18,3361,24 +311988,Frostpunk: The Board Game,2692,18,3361,24 +322045,Cartographers Heroes: Collector's Edition,2692,18,3361,24 +322289,Darwin's Journey,2692,18,3361,24 +324413,Doomlings,2692,18,3361,24 +324759,Aleph Null,2692,18,3361,24 +344415,Trek 12: Amazonia,2692,18,3361,24 +371535,Chicken!,2692,18,3361,24 +399378,For One: Galaktix,2692,18,3361,24 +804,Thunder Road,2692,18,3592,23 +2570,Atlantic Star,2692,18,3592,23 +4218,O Zoo le Mio,2692,18,3592,23 +34194,Aquaretto,2692,18,3592,23 +42052,Vinhos,2692,18,3592,23 +54735,Lemming Mafia,2692,18,3592,23 +66214,Samarkand: Routes to Riches,2692,18,3592,23 +79127,Star Trek: Fleet Captains,2692,18,3592,23 +95386,Tem-Purr-A,2692,18,3592,23 +131646,Merchant of Venus (Second Edition),2692,18,3592,23 +134520,Phantom Leader: Deluxe Edition,2692,18,3592,23 +140865,Agent Hunter,2692,18,3592,23 +148290,Longhorn,2692,18,3592,23 +162007,Steampunk Rally,2692,18,3592,23 +177249,The Manhattan Project: Chain Reaction,2692,18,3592,23 +192547,Go Cuckoo!,2692,18,3592,23 +199723,"UltraQuest: Gold, Ruhm! und Ehre!",2692,18,3592,23 +203411,Word Slam,2692,18,3592,23 +212281,Village Attacks,2692,18,3592,23 +216597,Flatline,2692,18,3592,23 +242529,Medium,2692,18,3592,23 +250458,Gùgōng,2692,18,3592,23 +256999,Project: ELITE,2692,18,3592,23 +257759,The River,2692,18,3592,23 +268890,Proving Grounds,2692,18,3592,23 +271319,Las Vegas Royale,2692,18,3592,23 +277927,Bites,2692,18,3592,23 +283863,The Magnificent,2692,18,3592,23 +285192,Destinies,2692,18,3592,23 +322656,burncycle,2692,18,3592,23 +331224,Zombicide: Undead or Alive,2692,18,3592,23 +344114,Bag of Chips,2692,18,3592,23 +351913,Tiletum,2692,18,3592,23 +354886,Quacks & Co.: Quedlinburg Dash,2692,18,3592,23 +360471,Aquamarine,2692,18,3592,23 +370164,Fun Facts,2692,18,3592,23 +437,Master Labyrinth,2692,18,3819,22 +15126,Advanced Squad Leader: Starter Kit #2,2692,18,3819,22 +16772,Mall of Horror,2692,18,3819,22 +17223,World of Warcraft: The Boardgame,2692,18,3819,22 +21641,Aquädukt,2692,18,3819,22 +25071,Munchkin Cthulhu,2692,18,3819,22 +98315,The Adventurers: The Pyramid of Horus,2692,18,3819,22 +135116,Rent a Hero,2692,18,3819,22 +145659,Scoville,2692,18,3819,22 +148319,Tragedy Looper,2692,18,3819,22 +160081,Dungeon Saga: Dwarf King's Quest,2692,18,3819,22 +162286,Super Motherload,2692,18,3819,22 +171672,Why First?,2692,18,3819,22 +173761,Telestrations After Dark,2692,18,3819,22 +174476,10' to Kill,2692,18,3819,22 +175640,Vinhos: Deluxe Edition,2692,18,3819,22 +176920,Mission: Red Planet (Second Edition),2692,18,3819,22 +177965,Rush & Bash,2692,18,3819,22 +208895,New York Slice,2692,18,3819,22 +256788,Detective Club,2692,18,3819,22 +262341,TTMC: Tu te mets combien?,2692,18,3819,22 +276779,Micro City (Second Edition),2692,18,3819,22 +277700,Merchants Cove,2692,18,3819,22 +293207,Eila and Something Shiny,2692,18,3819,22 +299659,Clash of Cultures: Monumental Edition,2692,18,3819,22 +299684,Khôra: Rise of an Empire,2692,18,3819,22 +312959,Rallyman: DIRT,2692,18,3819,22 +379005,The Lord of the Rings Adventure Book Game,2692,18,3819,22 +1099,Downspin,2692,18,4078,21 +217083,LYNGK,2692,18,4078,21 +295488,Andor: The Family Fantasy Game,2692,18,4078,21 +34887,Revolution!,2692,18,4352,20 +345972,Cat in the Box: Deluxe Edition,2692,18,4352,20 +1602,The Royal Game of Ur,2981,17,641,65 +11330,Jass,2981,17,661,64 +118000,Africana,2981,17,970,52 +133535,Foosball tabletop soccer,2981,17,1118,48 +130552,Warhammer: The Game of Fantasy Battles (8th Edition),2981,17,1159,47 +149910,Six Making,2981,17,1159,47 +19969,Truco,2981,17,1192,46 +38387,Los Banditos,2981,17,1233,45 +158976,Ascension: Year One Collector's Edition,2981,17,1233,45 +3864,Mechwarrior: Dark Age,2981,17,1285,44 +308368,Digimon Card Game,2981,17,1431,41 +186375,Tokaido: Deluxe Edition,2981,17,1491,40 +2125,Amazons,2981,17,1696,37 +4453,Statis Pro Basketball,2981,17,1696,37 +12131,42,2981,17,1696,37 +210295,Lightseekers,2981,17,1696,37 +83196,Pig 10,2981,17,1782,36 +2669,Frog Juice,2981,17,1867,35 +7307,Cranium: Hullabaloo,2981,17,1867,35 +316080,KeyForge: Dark Tidings,2981,17,1867,35 +32382,Gipsy King,2981,17,1953,34 +93594,Keezbord,2981,17,1953,34 +4553,Attribute,2981,17,2048,33 +13005,Dance of Ibexes,2981,17,2048,33 +30380,Cuba,2981,17,2048,33 +67919,The Message,2981,17,2048,33 +87632,Escape of the Dead Minigame,2981,17,2156,32 +163920,Gaïa,2981,17,2156,32 +9090,My First UNO,2981,17,2261,31 +18098,Napoleon's Triumph,2981,17,2261,31 +36241,Israeli Independence: The First Arab-Israeli War,2981,17,2261,31 +45748,Carcassonne: Wheel of Fortune,2981,17,2261,31 +205885,X nimmt!,2981,17,2261,31 +352003,Lipogram,2981,17,2261,31 +259,Atlantic Storm,2981,17,2387,30 +4249,Trias,2981,17,2387,30 +19679,Hordes,2981,17,2387,30 +191073,Vampire Queen,2981,17,2387,30 +210040,Illimat,2981,17,2387,30 +347117,Star Trek: Missions,2981,17,2387,30 +4079,What's My Word?,2981,17,2512,29 +17419,CATAN 3D Collector's Edition,2981,17,2512,29 +28805,The Lord of the Rings: Strategy Battle Game,2981,17,2512,29 +41863,Axis & Allies: 1942,2981,17,2512,29 +64675,Schweinebande,2981,17,2512,29 +115233,Rory's Story Cubes: Voyages,2981,17,2512,29 +140863,Council of Verona,2981,17,2512,29 +160044,"Warhammer 40,000 (Seventh Edition)",2981,17,2512,29 +1910,Venice Connection,2981,17,2647,28 +4853,Tripoley,2981,17,2647,28 +35342,Hold the Line,2981,17,2647,28 +56885,The Werewolves of Miller's Hollow: The Village,2981,17,2647,28 +112844,Swintus 2.0,2981,17,2647,28 +149361,Hapsburg Eclipse,2981,17,2647,28 +202582,Trellis,2981,17,2647,28 +203655,Timeline: Polska,2981,17,2647,28 +203885,Mysterious Dungeons,2981,17,2647,28 +207729,The Edge: Dawnfall,2981,17,2647,28 +313963,Cloud City,2981,17,2647,28 +334646,Dice Hospital: ER – Emergency Roll,2981,17,2647,28 +137,Pass the Bomb,2981,17,2807,27 +631,Daytona 500,2981,17,2807,27 +5336,Talisman (Third Edition),2981,17,2807,27 +7320,Elefun,2981,17,2807,27 +33451,The Red Dragon Inn 2,2981,17,2807,27 +90474,Gold!,2981,17,2807,27 +126996,King's Forge,2981,17,2807,27 +144415,Nauticus,2981,17,2807,27 +150605,Candy Chaser,2981,17,2807,27 +198961,Yeti in My Spaghetti,2981,17,2807,27 +272085,Bloom,2981,17,2807,27 +308416,Tapeworm,2981,17,2807,27 +26,Age of Renaissance,2981,17,2967,26 +1372,Rise of the Luftwaffe,2981,17,2967,26 +3190,Quixo,2981,17,2967,26 +11670,The Game of Authors,2981,17,2967,26 +15410,Walk the Dogs,2981,17,2967,26 +22111,Double or Nothing,2981,17,2967,26 +23604,The World Cup Game,2981,17,2967,26 +24878,AT-43 Initiation Set: Operation Damocles,2981,17,2967,26 +36399,The Napoleonic Wars (Second Edition),2981,17,2967,26 +41066,Virgin Queen,2981,17,2967,26 +91080,Andean Abyss,2981,17,2967,26 +93001,IceDice,2981,17,2967,26 +94480,Pantheon,2981,17,2967,26 +160018,Smash Up: Monster Smash,2981,17,2967,26 +163805,Transatlantic,2981,17,2967,26 +234469,Origami,2981,17,2967,26 +256874,Legendary Encounters: The X-Files Deck Building Game,2981,17,2967,26 +270637,Axio Rota,2981,17,2967,26 +278824,Rollecate,2981,17,2967,26 +282439,Lux Aeterna,2981,17,2967,26 +301242,Skyjo Action,2981,17,2967,26 +323784,Ghost Letters,2981,17,2967,26 +343844,Bullet⭐,2981,17,2967,26 +345036,Qwixx Longo,2981,17,2967,26 +872,M,2981,17,3155,25 +1420,Monopoly Express,2981,17,3155,25 +5668,Mini Mastermind,2981,17,3155,25 +11081,Familienbande,2981,17,3155,25 +13166,Let's Go Fishin',2981,17,3155,25 +14039,Flix Mix,2981,17,3155,25 +14808,Marvel Heroes,2981,17,3155,25 +19646,Cowabunga,2981,17,3155,25 +31552,Wings of War: Deluxe Set,2981,17,3155,25 +61692,Axis & Allies: Europe 1940,2981,17,3155,25 +84464,Animal Upon Animal: Balancing Bridge,2981,17,3155,25 +126444,The Hobbit Card Game,2981,17,3155,25 +155255,Pax Pamir,2981,17,3155,25 +158356,Dark Horse,2981,17,3155,25 +158392,Stay Away!,2981,17,3155,25 +178210,Batman Fluxx,2981,17,3155,25 +192240,Control,2981,17,3155,25 +214887,CO₂: Second Chance,2981,17,3155,25 +220738,Topito,2981,17,3155,25 +244099,Herbaceous Sprouts,2981,17,3155,25 +251433,Yokai Septet,2981,17,3155,25 +282418,Toy Story: Obstacles & Adventures,2981,17,3155,25 +300367,Boomerang: Europe,2981,17,3155,25 +307963,Durian,2981,17,3155,25 +379078,Expeditions,2981,17,3155,25 +99,Fortress America,2981,17,3361,24 +321,The Mole in the Hole,2981,17,3361,24 +1041,San Marco,2981,17,3361,24 +1899,13 Dead End Drive,2981,17,3361,24 +15318,Palazzo,2981,17,3361,24 +34375,Go Nuts!,2981,17,3361,24 +38343,Ad Astra,2981,17,3361,24 +40667,Ring-O Flamingo,2981,17,3361,24 +68264,No Retreat! The Russian Front,2981,17,3361,24 +102435,Navajo Wars,2981,17,3361,24 +113289,Snake Oil,2981,17,3361,24 +130899,12 Days,2981,17,3361,24 +142854,Infection: Humanity's Last Gasp,2981,17,3361,24 +156719,Dino Race,2981,17,3361,24 +161926,Dead Drop,2981,17,3361,24 +171908,El Grande Big Box,2981,17,3361,24 +172047,The Others,2981,17,3361,24 +175973,The Hunters A.D. 2114,2981,17,3361,24 +197455,Dice Heist,2981,17,3361,24 +202077,Deep Madness,2981,17,3361,24 +214204,ARGH,2981,17,3361,24 +220780,Fairy Tile,2981,17,3361,24 +227693,Tiny Park,2981,17,3361,24 +228855,Set a Watch,2981,17,3361,24 +234877,Sebastian Fitzek Safehouse,2981,17,3361,24 +251053,Let's Make a Bus Route,2981,17,3361,24 +256705,Seasons of Rice,2981,17,3361,24 +256876,Football Highlights 2052,2981,17,3361,24 +264052,Circadians: First Light,2981,17,3361,24 +266722,Rumble Nation,2981,17,3361,24 +284775,Funkoverse Strategy Game,2981,17,3361,24 +285893,HILO,2981,17,3361,24 +304051,Creature Comforts,2981,17,3361,24 +319971,Monster Hunter World: The Board Game,2981,17,3361,24 +334583,Ricochet: Le Profil de l'Homme Sans Visage,2981,17,3361,24 +334889,Tiny Epic Dungeons: Deluxe Edition,2981,17,3361,24 +335869,A Little Wordy,2981,17,3361,24 +348447,Hens,2981,17,3361,24 +352695,Oranienburger Kanal,2981,17,3361,24 +353543,Lost Seas,2981,17,3361,24 +357726,51st State: Ultimate Edition,2981,17,3361,24 +366129,Gang of Dice,2981,17,3361,24 +14,Basari,2981,17,3592,23 +1692,Spoons,2981,17,3592,23 +1705,Slapshot,2981,17,3592,23 +2379,Guesstures,2981,17,3592,23 +12291,Animal Party,2981,17,3592,23 +15510,Tower of Babel,2981,17,3592,23 +17449,Beowulf: The Legend,2981,17,3592,23 +22198,Great Wall of China,2981,17,3592,23 +24658,Avanti mare!,2981,17,3592,23 +36739,Black Sheep,2981,17,3592,23 +42673,Field Commander: Napoleon,2981,17,3592,23 +67178,Water Lily,2981,17,3592,23 +111799,Cuba Libre,2981,17,3592,23 +121015,Tea Time,2981,17,3592,23 +147431,Cubist,2981,17,3592,23 +152765,Thunderstone Advance: Worlds Collide,2981,17,3592,23 +153709,Pyramix,2981,17,3592,23 +190639,Zany Penguins,2981,17,3592,23 +192836,The Colonists,2981,17,3592,23 +195856,Bloodborne: The Card Game,2981,17,3592,23 +213882,Mole Rats in Space,2981,17,3592,23 +214029,SpaceCorp: 2025-2300AD,2981,17,3592,23 +229491,Edge of Darkness,2981,17,3592,23 +237179,Weather Machine,2981,17,3592,23 +256570,Crown of Emara,2981,17,3592,23 +281474,Lands of Galzyr,2981,17,3592,23 +299607,Capital Lux 2: Generations,2981,17,3592,23 +316858,CloudAge,2981,17,3592,23 +318328,Picnic,2981,17,3592,23 +355093,Woodcraft,2981,17,3592,23 +355881,Cubosaurs,2981,17,3592,23 +356999,21 Giochi Minuti,2981,17,3592,23 +3318,Heave Ho!,2981,17,3819,22 +4491,Cave Troll,2981,17,3819,22 +4493,Kayanak,2981,17,3819,22 +22348,Duplik,2981,17,3819,22 +28259,Cutthroat Caverns,2981,17,3819,22 +38823,Conflict of Heroes: Storms of Steel! – Kursk 1943,2981,17,3819,22 +40508,Scrabble Slam!,2981,17,3819,22 +59223,Diego Drachenzahn,2981,17,3819,22 +72420,Braggart,2981,17,3819,22 +81250,Stich-Meister,2981,17,3819,22 +118610,Santa Cruz,2981,17,3819,22 +129051,Le Havre: The Inland Port,2981,17,3819,22 +141791,Piñata,2981,17,3819,22 +143515,Coal Baron,2981,17,3819,22 +145501,Fun Farm,2981,17,3819,22 +154458,Akrotiri,2981,17,3819,22 +154905,Brew Crafters: Travel Card Game,2981,17,3819,22 +163413,Murano,2981,17,3819,22 +177352,Carson City: Big Box,2981,17,3819,22 +187377,Vikings Gone Wild,2981,17,3819,22 +191475,Wizard: Jubiläumsedition,2981,17,3819,22 +192656,Nightmarium,2981,17,3819,22 +198190,Kepler-3042,2981,17,3819,22 +202583,Rise of Tribes,2981,17,3819,22 +205418,Agricola: Family Edition,2981,17,3819,22 +211450,Take That,2981,17,3819,22 +212402,The Grimm Forest,2981,17,3819,22 +219217,Arena: The Contest,2981,17,3819,22 +223855,Sentient,2981,17,3819,22 +227893,Smile,2981,17,3819,22 +237728,Ravine,2981,17,3819,22 +238799,Messina 1347,2981,17,3819,22 +246297,Shadows: Amsterdam,2981,17,3819,22 +250396,Terminator Genisys: Rise of the Resistance,2981,17,3819,22 +252446,Key Flow,2981,17,3819,22 +252929,Planet,2981,17,3819,22 +319031,Project L: Kickstarter Edition,2981,17,3819,22 +361212,Town 66,2981,17,3819,22 +370913,Star Wars: The Clone Wars,2981,17,3819,22 +1513,The Republic of Rome,2981,17,4078,21 +5781,"Edel, Stein & Reich",2981,17,4078,21 +18723,"Aye, Dark Overlord! The Red Box",2981,17,4078,21 +25261,Tannhäuser,2981,17,4078,21 +35570,Tinners' Trail,2981,17,4078,21 +37919,Ascending Empires,2981,17,4078,21 +72991,Asara,2981,17,4078,21 +86073,5 Second Rule,2981,17,4078,21 +131287,Panamax,2981,17,4078,21 +152757,Doodle Quest,2981,17,4078,21 +153097,Heroes Wanted,2981,17,4078,21 +168215,Saboteur: The Duel,2981,17,4078,21 +174785,Mare Nostrum: Empires,2981,17,4078,21 +175223,Valley of the Kings: Afterlife,2981,17,4078,21 +201248,Evolution: The Beginning,2981,17,4078,21 +241831,Reykholt,2981,17,4078,21 +244191,Naga Raja,2981,17,4078,21 +244536,Tiny Epic Zombies,2981,17,4078,21 +249381,The Estates,2981,17,4078,21 +257957,X-Code,2981,17,4078,21 +262201,Sword & Sorcery: Ancient Chronicles,2981,17,4078,21 +269511,Cooper Island,2981,17,4078,21 +274349,Pakal,2981,17,4078,21 +284742,Honey Buzz,2981,17,4078,21 +332290,Stardew Valley: The Board Game,2981,17,4078,21 +346501,Mille Fiori,2981,17,4078,21 +394735,Exit: The Game – Advent Calendar: The Missing Hollywood Star,2981,17,4078,21 +41002,Vasco da Gama,2981,17,4352,20 +98918,Bios: Genesis,2981,17,4352,20 +111105,Agents of SMERSH,2981,17,4352,20 +144797,Argent: The Consortium,2981,17,4352,20 +175497,Dinosaur Escape,2981,17,4352,20 +198454,When I Dream,2981,17,4352,20 +215471,Wind the Film!,2981,17,4352,20 +230244,Black Angel,2981,17,4352,20 +266064,Trudvang Legends,2981,17,4352,20 +287158,Half Truth,2981,17,4352,20 +287228,Mal Trago,2981,17,4352,20 +305096,Endless Winter: Paleoamericans,2981,17,4352,20 +311322,Herd Mentality,2981,17,4352,20 +364655,Kinfire Chronicles: Night's Fall,2981,17,4352,20 +18258,Mission: Red Planet,2981,17,4679,19 +121410,Steam Park,2981,17,4679,19 +223321,Detective: A Modern Crime Board Game,2981,17,4679,19 +330036,Great Plains,2981,17,5069,18 +10445,Duel Masters Trading Card Game,3260,16,405,82 +14188,Bughouse Chess,3260,16,1042,50 +67948,Mahjong Solitaire,3260,16,1159,47 +37731,Manille,3260,16,1339,43 +141423,Dead Men Tell No Tales,3260,16,1339,43 +39029,Castle Builders,3260,16,1431,41 +133425,Quartett,3260,16,1431,41 +251293,Megaland,3260,16,1431,41 +24996,Start Player: A Kinda Collectible Card Game,3260,16,1491,40 +62220,Urban Sprawl,3260,16,1491,40 +2254,Title Bout,3260,16,1615,38 +2780,Tarock,3260,16,1615,38 +173755,Aquaducts,3260,16,1615,38 +128425,Asteriated Grail,3260,16,1696,37 +181440,Hack Trick,3260,16,1696,37 +1859,Doomtrooper,3260,16,1782,36 +160094,Каркассон: Королевский Подарок,3260,16,1867,35 +360552,Beaches for the Brave: A Solitaire Wargame,3260,16,1867,35 +32346,Super Tock 4,3260,16,1953,34 +34221,Atoll,3260,16,1953,34 +160903,Target for Today,3260,16,1953,34 +219475,Axio,3260,16,1953,34 +130705,Super Big Boggle,3260,16,2048,33 +230273,Ascension: Valley of the Ancients,3260,16,2048,33 +2240,Mad Magazine Card Game,3260,16,2156,32 +158268,Karma,3260,16,2156,32 +260234,Middle-Earth Strategy Battle Game: Rules Manual,3260,16,2156,32 +275032,Ghost Adventure,3260,16,2156,32 +31449,Army of Frogs,3260,16,2261,31 +154875,"Silent Victory: U.S. Submarines in the Pacific, 1941-45",3260,16,2261,31 +169649,Sapiens,3260,16,2261,31 +181524,Masmorra: Dungeons of Arcadia,3260,16,2261,31 +316287,Quest,3260,16,2261,31 +4052,Star Wars: Trading Card Game,3260,16,2387,30 +91034,Laser Chess,3260,16,2387,30 +28302,Oware,3260,16,2512,29 +82420,Summoner Wars: Guild Dwarves vs Cave Goblins,3260,16,2512,29 +96765,CardFight!! Vanguard,3260,16,2512,29 +149130,Monster Fluxx,3260,16,2512,29 +164874,Airborne Commander,3260,16,2512,29 +173319,Lost Legacy: Second Chronicle – Vorpal Sword & Whitegold Spire,3260,16,2512,29 +272743,Hanabi Deluxe II,3260,16,2512,29 +1555,Dungeon Dice,3260,16,2647,28 +8392,Buckaroo!,3260,16,2647,28 +40529,Cosmic Encounter,3260,16,2647,28 +177939,Marvel Dice Masters: The Amazing Spider-Man,3260,16,2647,28 +299566,Batman: The Animated Series Adventures – Shadow of the Bat,3260,16,2647,28 +1379,Ebbe & Flut,3260,16,2807,27 +15474,Zombiaki,3260,16,2807,27 +35052,Axis & Allies Anniversary Edition,3260,16,2807,27 +39103,Jungle Speed: Deluxe,3260,16,2807,27 +41429,Band of Brothers: Screaming Eagles,3260,16,2807,27 +43393,Cubiko,3260,16,2807,27 +56128,Zombiaki II: Attack on Moscow,3260,16,2807,27 +89415,Rory's Story Cubes: Actions,3260,16,2807,27 +128442,Relic,3260,16,2807,27 +129615,DOG Royal,3260,16,2807,27 +149863,Castro,3260,16,2807,27 +154479,Piña Pirata,3260,16,2807,27 +257372,The Bears and the Bees,3260,16,2807,27 +279419,Eternal: Chronicles of the Throne,3260,16,2807,27 +341489,Carrooka,3260,16,2807,27 +1159,Evo,3260,16,2967,26 +3507,By Golly!,3260,16,2967,26 +12065,Wig Out!,3260,16,2967,26 +16320,Bonnie and Clyde,3260,16,2967,26 +26054,Black Stories 3,3260,16,2967,26 +40651,Too Many Monkeys,3260,16,2967,26 +104805,Animal Upon Animal: Small and Yet Great!,3260,16,2967,26 +105199,Space Mission,3260,16,2967,26 +111081,Animal Upon Animal: Crest Climbers,3260,16,2967,26 +140457,Ultimate Werewolf: Inquisition,3260,16,2967,26 +220193,Chemistry Fluxx,3260,16,2967,26 +221599,Tiny Ninjas: Original,3260,16,2967,26 +365698,Rainforest,3260,16,2967,26 +1535,Formula 1,3260,16,3155,25 +1597,Streetcar,3260,16,3155,25 +1613,Ghost Castle,3260,16,3155,25 +4522,The Ladybug's Costume Party,3260,16,3155,25 +11195,Karottenklau,3260,16,3155,25 +13436,Hopp hopp Häschen,3260,16,3155,25 +22889,Pictureka!,3260,16,3155,25 +24803,Speed,3260,16,3155,25 +29638,Hop Hop Hooray!,3260,16,3155,25 +57052,Black Stories: Real Crime Edition,3260,16,3155,25 +66120,Zooloretto Junior,3260,16,3155,25 +139443,Superfight,3260,16,3155,25 +147030,World of Tanks: Rush,3260,16,3155,25 +155689,Dungeons & Dragons: Attack Wing,3260,16,3155,25 +157001,Trains: Rising Sun,3260,16,3155,25 +168680,The Werewolves of Miller's Hollow: The Pact,3260,16,3155,25 +177843,Mix It,3260,16,3155,25 +208773,Quartermaster General: 1914,3260,16,3155,25 +228570,Raging Bulls,3260,16,3155,25 +270972,Ringmaster: Welcome to the Big Top,3260,16,3155,25 +311020,Marvel Battleworld,3260,16,3155,25 +311031,Five Three Five,3260,16,3155,25 +314530,Iwari: Deluxe Edition,3260,16,3155,25 +367498,Horizons of Spirit Island,3260,16,3155,25 +923,Breakaway Rider,3260,16,3361,24 +1413,Attack Sub,3260,16,3361,24 +8170,Return of the Heroes,3260,16,3361,24 +19803,Martian Chess,3260,16,3361,24 +19854,Federation Commander: Klingon Border,3260,16,3361,24 +21754,Nottingham,3260,16,3361,24 +23656,Chuck-It Chicken!,3260,16,3361,24 +60153,War of the Ring Collector's Edition,3260,16,3361,24 +71021,Evolution: The Origin of Species,3260,16,3361,24 +71099,Ingenious Challenges,3260,16,3361,24 +111379,My Very First Games: Animal upon Animal,3260,16,3361,24 +125046,Fantastiqa: The Rucksack Edition,3260,16,3361,24 +144506,Mysteries?,3260,16,3361,24 +159536,Hungry as a Bear,3260,16,3361,24 +159575,Dracula's Feast,3260,16,3361,24 +165986,Royals,3260,16,3361,24 +177877,SiXeS,3260,16,3361,24 +191301,The Walking Dead: All Out War,3260,16,3361,24 +213984,Notre Dame: 10th Anniversary,3260,16,3361,24 +217776,Import / Export,3260,16,3361,24 +219276,Dungeon Draft,3260,16,3361,24 +220547,Sparkle*Kitty,3260,16,3361,24 +240100,Match Me!: What color is this?,3260,16,3361,24 +252997,Mapmaker: The Gerrymandering Game,3260,16,3361,24 +253185,Chai,3260,16,3361,24 +256838,Nessos,3260,16,3361,24 +267058,300: Earth & Water,3260,16,3361,24 +299573,Papageno,3260,16,3361,24 +315881,Funfair,3260,16,3361,24 +326945,Castles of Mad King Ludwig: Collector's Edition,3260,16,3361,24 +375440,61 Feuilles d'automne,3260,16,3361,24 +384,TurfMaster,3260,16,3592,23 +433,Shark,3260,16,3592,23 +1299,Trivial Pursuit: Genus IV,3260,16,3592,23 +3586,Sherlock,3260,16,3592,23 +6539,Formula Dé Mini,3260,16,3592,23 +7483,Schatz der Drachen,3260,16,3592,23 +7804,Dracula,3260,16,3592,23 +10164,Fliegen klatschen,3260,16,3592,23 +15156,Coloretto Amazonas,3260,16,3592,23 +19363,Havoc: The Hundred Years War,3260,16,3592,23 +24509,Gambit Royale,3260,16,3592,23 +40213,Nile,3260,16,3592,23 +40214,Bombay,3260,16,3592,23 +61028,D-Day Dice: Free Trial Version,3260,16,3592,23 +62814,Tumblin-Dice Medium,3260,16,3592,23 +88594,Eruption,3260,16,3592,23 +147999,Händler der Karibik,3260,16,3592,23 +158791,Dodekka,3260,16,3592,23 +168917,Smash Up: Pretty Pretty Smash Up,3260,16,3592,23 +181331,Qwingo,3260,16,3592,23 +198830,"Heroes of Land, Air & Sea",3260,16,3592,23 +200871,Hanna Honeybee,3260,16,3592,23 +201308,Hive Mind,3260,16,3592,23 +202296,Wizardry to the Power of Three,3260,16,3592,23 +204466,Dark Is the Night,3260,16,3592,23 +206175,Braintopia,3260,16,3592,23 +213893,Yamataï,3260,16,3592,23 +214396,Campy Creatures,3260,16,3592,23 +223950,Fantasy Defense,3260,16,3592,23 +228668,Dungeons & Dragons: Tomb of Annihilation Board Game,3260,16,3592,23 +230650,Table Battles,3260,16,3592,23 +230791,Time of Legends: Joan of Arc,3260,16,3592,23 +257063,SiegeStorm: SiegeMode,3260,16,3592,23 +260788,Knapp Daneben!,3260,16,3592,23 +263192,Teenage Mutant Ninja Turtles Adventures: Change is Constant,3260,16,3592,23 +271522,L'Auberge des pirates,3260,16,3592,23 +333280,Plata,3260,16,3592,23 +340677,Bad Company,3260,16,3592,23 +110,Auf Achse,3260,16,3819,22 +701,A House Divided: War Between the States 1861-65,3260,16,3819,22 +1381,Pokémon Master Trainer,3260,16,3819,22 +1822,Wilderness War,3260,16,3819,22 +3383,Mahé,3260,16,3819,22 +8166,Anno 1503,3260,16,3819,22 +9027,Oasis,3260,16,3819,22 +19948,Rum & Pirates,3260,16,3819,22 +21506,New Mastermind,3260,16,3819,22 +21551,SPQR (Deluxe Edition),3260,16,3819,22 +22141,Cleopatra and the Society of Architects,3260,16,3819,22 +23730,Gheos,3260,16,3819,22 +23890,Der schwarze Pirat,3260,16,3819,22 +25491,Alhambra: The Dice Game,3260,16,3819,22 +40507,Skip-Bo Junior,3260,16,3819,22 +41239,Mamma Mia! Plus,3260,16,3819,22 +41658,Adios Amigos,3260,16,3819,22 +53168,Triumvirate,3260,16,3819,22 +58602,Cable Car,3260,16,3819,22 +66849,Safranito,3260,16,3819,22 +69601,1880: China,3260,16,3819,22 +72321,The Networks,3260,16,3819,22 +117960,Saint Malo,3260,16,3819,22 +125315,FlowerFall,3260,16,3819,22 +135219,The Battle of Five Armies,3260,16,3819,22 +138704,Northern Pacific,3260,16,3819,22 +143096,Camp Grizzly,3260,16,3819,22 +150783,Antidote,3260,16,3819,22 +153002,Koboldbande,3260,16,3819,22 +154182,Helios,3260,16,3819,22 +171110,Cosmic Run,3260,16,3819,22 +173047,Nevermore,3260,16,3819,22 +173275,Ghostbusters: The Board Game,3260,16,3819,22 +194387,DREIst!,3260,16,3819,22 +198138,Enchanters,3260,16,3819,22 +204836,Escape Room: The Game,3260,16,3819,22 +217338,Mistkäfer,3260,16,3819,22 +223726,Destination X,3260,16,3819,22 +230358,Penny Papers Adventures: The Temple of Apikhabou,3260,16,3819,22 +235944,Schummel Hummel,3260,16,3819,22 +237031,D100 Dungeon,3260,16,3819,22 +254513,The Grimm Masquerade,3260,16,3819,22 +256541,Monster Crunch! The Breakfast Battle Game,3260,16,3819,22 +256729,Wacky Races: The Board Game,3260,16,3819,22 +262208,Dungeon Drop,3260,16,3819,22 +270445,Omerta,3260,16,3819,22 +284217,Rush M.D.,3260,16,3819,22 +302469,Ausonia,3260,16,3819,22 +351605,Bohnanza: 25th Anniversary Edition,3260,16,3819,22 +352710,Ouch!,3260,16,3819,22 +354859,The Fields of Normandy: A Solitaire Wargame,3260,16,3819,22 +70,Big City,3260,16,4078,21 +1107,Nyet!,3260,16,4078,21 +2604,Compatibility,3260,16,4078,21 +2860,Piecepack,3260,16,4078,21 +4174,Lifeboat,3260,16,4078,21 +8107,Risk: The Lord of the Rings Trilogy Edition,3260,16,4078,21 +10206,Make 'n' Break,3260,16,4078,21 +12004,Candamir: The First Settlers,3260,16,4078,21 +12495,Fire & Axe: A Viking Saga,3260,16,4078,21 +20806,Three-Dragon Ante,3260,16,4078,21 +25729,World at War: Eisenbach Gap,3260,16,4078,21 +28829,Field Commander: Rommel,3260,16,4078,21 +38863,The Rich and the Good,3260,16,4078,21 +45986,Stronghold,3260,16,4078,21 +57390,Catacombs,3260,16,4078,21 +123160,Battle For Souls,3260,16,4078,21 +124827,Space Cadets: Away Missions,3260,16,4078,21 +136594,Dragon's Hoard,3260,16,4078,21 +167298,Sheep & Thief,3260,16,4078,21 +170041,Splash!,3260,16,4078,21 +174614,Apotheca,3260,16,4078,21 +177478,IKI,3260,16,4078,21 +191051,Outlive,3260,16,4078,21 +196379,Shit Happens,3260,16,4078,21 +213491,The Legend of the Wendigo,3260,16,4078,21 +230267,Dice Settlers,3260,16,4078,21 +245928,Pax Emancipation,3260,16,4078,21 +255633,Town Builder: Coevorden,3260,16,4078,21 +255668,Trickerion: Collector's Edition,3260,16,4078,21 +259830,Hedgehog Roll,3260,16,4078,21 +275469,Floor Plan,3260,16,4078,21 +277410,Veggies,3260,16,4078,21 +294448,Tea for 2,3260,16,4078,21 +316750,The Princess Bride Adventure Book Game,3260,16,4078,21 +323612,Bitoku,3260,16,4078,21 +325382,Family Inc.,3260,16,4078,21 +336929,Land vs Sea,3260,16,4078,21 +341931,K3,3260,16,4078,21 +367771,Stomp the Plank,3260,16,4078,21 +256,Mississippi Queen,3260,16,4352,20 +1806,The Piggyback Brigade,3260,16,4352,20 +6352,Lord of the Rings,3260,16,4352,20 +10814,Dawn Under,3260,16,4352,20 +23658,Fiery Dragons,3260,16,4352,20 +25294,Take It to the Limit!,3260,16,4352,20 +45134,Arcana,3260,16,4352,20 +63759,Seeland,3260,16,4352,20 +124847,1911 Amundsen vs Scott,3260,16,4352,20 +155693,Game of Thrones: Westeros Intrigue,3260,16,4352,20 +163839,Feudum,3260,16,4352,20 +167513,Barony,3260,16,4352,20 +177354,Frostgrave,3260,16,4352,20 +193322,Master of Orion: The Board Game,3260,16,4352,20 +202426,Sidereal Confluence,3260,16,4352,20 +206715,Ultimate Werewolf Legacy,3260,16,4352,20 +215312,Stop Thief!,3260,16,4352,20 +216798,Telestrations: 6 Player Family Pack,3260,16,4352,20 +231666,Fast Forward: FLEE,3260,16,4352,20 +234260,Prey Another Day,3260,16,4352,20 +257096,Run Fight or Die: Reloaded,3260,16,4352,20 +257527,Trapwords,3260,16,4352,20 +264196,Dungeons & Dragons: Waterdeep – Dungeon of the Mad Mage Board Game,3260,16,4352,20 +271530,Ankh'or,3260,16,4352,20 +284333,Yggdrasil Chronicles,3260,16,4352,20 +296100,Rococo: Deluxe Edition,3260,16,4352,20 +296108,Terraforming Mars: The Dice Game,3260,16,4352,20 +299121,Machina Arcana (Second/Third Edition),3260,16,4352,20 +318560,Witchstone,3260,16,4352,20 +320718,Hidden Leaders,3260,16,4352,20 +349955,The Quacks of Quedlinburg: MegaBox,3260,16,4352,20 +364011,Great Western Trail: Argentina,3260,16,4352,20 +364792,Zombicide: Gear Up,3260,16,4352,20 +1855,Hedbanz for Adults!,3260,16,4679,19 +27356,Portobello Market,3260,16,4679,19 +94246,1812: The Invasion of Canada,3260,16,4679,19 +103651,23,3260,16,4679,19 +142379,Escape Plan,3260,16,4679,19 +160495,ZhanGuo,3260,16,4679,19 +164338,The Golden Ages,3260,16,4679,19 +199966,Kingsburg (Second Edition),3260,16,4679,19 +202408,Adrenaline,3260,16,4679,19 +204305,Sherlock Holmes Consulting Detective: Jack the Ripper & West End Adventures,3260,16,4679,19 +204505,Museum,3260,16,4679,19 +220133,Endangered,3260,16,4679,19 +223049,Custom Heroes,3260,16,4679,19 +227545,Spy Club,3260,16,4679,19 +254188,Blank Slate,3260,16,4679,19 +259081,Machi Koro Legacy,3260,16,4679,19 +269526,Valley of the Vikings,3260,16,4679,19 +272739,Clinic: Deluxe Edition,3260,16,4679,19 +286428,"Wits & Wagers: It's Vegas, Baby!",3260,16,4679,19 +291508,Tiny Epic Dinosaurs,3260,16,4679,19 +293835,Oltréé,3260,16,4679,19 +293889,Fallout Shelter: The Board Game,3260,16,4679,19 +325698,Juicy Fruits,3260,16,4679,19 +347805,Green Team Wins,3260,16,4679,19 +355483,Wandering Towers,3260,16,4679,19 +368017,Point City,3260,16,4679,19 +106753,Ooga Booga,3260,16,5069,18 +266830,QE,3260,16,5069,18 +331059,Last Message,3260,16,5069,18 +26952,International Checkers,3580,15,480,76 +18824,WWE Raw Deal,3580,15,613,67 +154394,Sheepshead,3580,15,628,66 +185813,Murderer's Row,3580,15,929,53 +174182,Force of Will,3580,15,1396,42 +174973,Boss Monster 2: The Next Level,3580,15,1491,40 +1770,Aliens,3580,15,1549,39 +3125,7th Sea Collectible Card Game,3580,15,1615,38 +119591,Rialto,3580,15,1615,38 +1499,World in Flames,3580,15,1696,37 +1421,Lost Worlds,3580,15,1782,36 +270239,Moonrakers,3580,15,1782,36 +864,Mage Knight,3580,15,1953,34 +274037,Solar Storm,3580,15,1953,34 +3934,Bowling Dice,3580,15,2048,33 +15549,Roulette,3580,15,2048,33 +38821,Settlers of Catan: Gallery Edition,3580,15,2048,33 +46147,Свинтус,3580,15,2048,33 +3377,20 Questions,3580,15,2156,32 +4213,Mao,3580,15,2156,32 +19765,Deduce or Die,3580,15,2156,32 +40432,Stratego (Revised Edition),3580,15,2156,32 +326624,Warhammer Underworlds: Direchasm,3580,15,2156,32 +2133,Rage,3580,15,2261,31 +7308,Rock 'Em Sock 'Em Robots,3580,15,2261,31 +17106,Boxes,3580,15,2261,31 +83092,303,3580,15,2261,31 +123609,Puzzle Strike Shadows,3580,15,2261,31 +203719,Krosmaster Arena 2.0,3580,15,2261,31 +261321,Ascension: Deliverance,3580,15,2261,31 +309113,Ticket to Ride: Amsterdam,3580,15,2261,31 +8813,Shocking Roulette,3580,15,2387,30 +237860,The Shores of Tripoli,3580,15,2387,30 +256422,Warhammer Age of Sigmar (Second Edition) Core Rules,3580,15,2387,30 +4488,Scarab Lords,3580,15,2512,29 +9963,Santorini,3580,15,2512,29 +36367,Dust Tactics,3580,15,2512,29 +41763,Le Passe-Trappe Grande,3580,15,2512,29 +219101,Pavlov's House,3580,15,2512,29 +224303,Pocket Landship: Free Trial Version,3580,15,2512,29 +42142,Doctor Who: Solitaire Story Game,3580,15,2647,28 +180543,"Exceed: Red Horizon – Reese, Heidi, Nehtali, and Vincent",3580,15,2647,28 +193049,Mau Mau!!,3580,15,2647,28 +76,Air Baron,3580,15,2807,27 +1814,Dilbert: Corporate Shuffle,3580,15,2807,27 +3749,Sumo!,3580,15,2807,27 +5585,UNO: Harry Potter,3580,15,2807,27 +27385,Alchemist,3580,15,2807,27 +29952,Quinamid,3580,15,2807,27 +100104,Rush Hour Scramble,3580,15,2807,27 +149787,Perdition's Mouth: Abyssal Rift,3580,15,2807,27 +162660,Secret Moon,3580,15,2807,27 +306300,Little Factory,3580,15,2807,27 +349131,Splitter,3580,15,2807,27 +32,Buffalo Chess,3580,15,2967,26 +1563,Rise and Decline of the Third Reich,3580,15,2967,26 +9556,Snatch,3580,15,2967,26 +25420,Ur,3580,15,2967,26 +32149,Word Blur,3580,15,2967,26 +85245,Magician's Kitchen,3580,15,2967,26 +91666,Crossboule,3580,15,2967,26 +154906,Isle of Trains,3580,15,2967,26 +202723,The Bogey,3580,15,2967,26 +223481,Take the Gold,3580,15,2967,26 +257518,Claustrophobia 1643,3580,15,2967,26 +269970,Quiztopia,3580,15,2967,26 +277892,The Great Escape,3580,15,2967,26 +315221,Vampire: The Masquerade – Rivals Expandable Card Game,3580,15,2967,26 +321757,Monza 20th Anniversary,3580,15,2967,26 +350079,Puzzle Strike 2,3580,15,2967,26 +244,Circus Maximus,3580,15,3155,25 +366,Viva Pamplona!,3580,15,3155,25 +427,Grass,3580,15,3155,25 +4378,Cootie,3580,15,3155,25 +10934,The Game of Things,3580,15,3155,25 +39862,Flapjacks & Sasquatches,3580,15,3155,25 +58329,Langfinger,3580,15,3155,25 +95105,1st & Goal,3580,15,3155,25 +102219,Connect 4 Launchers,3580,15,3155,25 +117985,Star Trek: Catan,3580,15,3155,25 +171626,Lotti Karotti: Das Hasenrennen,3580,15,3155,25 +171721,Micro Rome,3580,15,3155,25 +182094,BANG! The Duel,3580,15,3155,25 +193265,Port Royal: Unterwegs!,3580,15,3155,25 +199242,Mini Rogue: A 9-Card Print-and-Play Game,3580,15,3155,25 +207764,Time Bomb,3580,15,3155,25 +226605,Fire Tower,3580,15,3155,25 +240835,Bug,3580,15,3155,25 +253756,Gorus Maximus,3580,15,3155,25 +317030,Quest: Avalon Big Box Edition,3580,15,3155,25 +196,Kremlin,3580,15,3361,24 +464,Billabong,3580,15,3361,24 +847,Feudal,3580,15,3361,24 +1442,Victory in the Pacific,3580,15,3361,24 +1604,The Mad Magazine Game,3580,15,3361,24 +1758,Advanced Heroquest,3580,15,3361,24 +3409,The Napoleonic Wars,3580,15,3361,24 +11394,Shopping List,3580,15,3361,24 +13490,Ballons,3580,15,3361,24 +55833,Tarantel Tango,3580,15,3361,24 +98529,Disney Pixar Cars 2 Sorry Sliders: World Grand Prix Race Edition,3580,15,3361,24 +132018,Churchill,3580,15,3361,24 +140717,Progress: Evolution of Technology,3580,15,3361,24 +146418,Warhammer: Diskwars,3580,15,3361,24 +150926,Roll Through the Ages: The Iron Age,3580,15,3361,24 +157838,Roll For It! Express,3580,15,3361,24 +230251,Mint Delivery,3580,15,3361,24 +232420,Gier,3580,15,3361,24 +246701,DOS,3580,15,3361,24 +255175,Mutants,3580,15,3361,24 +269789,Caravan,3580,15,3361,24 +271693,Wodny szlak,3580,15,3361,24 +300369,Boomerang: USA,3580,15,3361,24 +341233,Almadi,3580,15,3361,24 +383179,Age of Innovation,3580,15,3361,24 +151,Piratenbillard,3580,15,3592,23 +1044,Gunslinger,3580,15,3592,23 +3967,Battlefleet Gothic,3580,15,3592,23 +6979,Match of the Penguins,3580,15,3592,23 +10756,Dancing Dice,3580,15,3592,23 +11778,Cat & Mouse,3580,15,3592,23 +27048,Duel in the Dark,3580,15,3592,23 +29308,Beowulf: The Movie Board Game,3580,15,3592,23 +32114,Merchants,3580,15,3592,23 +34615,New World: A Carcassonne Game,3580,15,3592,23 +37589,Clue: Discover the Secrets,3580,15,3592,23 +42124,Dungeon Twister 2: Prison,3580,15,3592,23 +47218,Yikerz!,3580,15,3592,23 +85204,Kings of War,3580,15,3592,23 +113853,"Richard Scarry's Busytown: Busy, Busy Airport Game",3580,15,3592,23 +129395,Monopoly Millionaire Deal Card Game,3580,15,3592,23 +140997,Romans Go Home!,3580,15,3592,23 +155122,"1066, Tears to Many Mothers: The Battle of Hastings",3580,15,3592,23 +160958,DC Deck-Building Game: Rivals – Batman vs The Joker,3580,15,3592,23 +167763,DC Deck-Building Game: Teen Titans,3580,15,3592,23 +198671,The Lion Guard: Protect the Pride Lands,3580,15,3592,23 +202721,The Last Hundred Yards,3580,15,3592,23 +224319,Flanx,3580,15,3592,23 +244203,Red Panda,3580,15,3592,23 +257601,The Duke: Lord's Legacy,3580,15,3592,23 +264452,High Risk,3580,15,3592,23 +271615,The Quest for El Dorado: The Golden Temples,3580,15,3592,23 +343282,Exploding Kittens: Recipes for Disaster,3580,15,3592,23 +254,Empires in Arms,3580,15,3819,22 +466,Inkognito,3580,15,3819,22 +1263,Knights,3580,15,3819,22 +2001,Trivial Pursuit: Family Edition,3580,15,3819,22 +3655,The Settlers of Canaan,3580,15,3819,22 +6050,Duel of Ages Set 1: Worldspanner,3580,15,3819,22 +24410,Treasures & Traps,3580,15,3819,22 +37696,The Stars Are Right,3580,15,3819,22 +38391,Kakerlakensuppe,3580,15,3819,22 +46158,Time's Up! Academy,3580,15,3819,22 +54361,Heroscape Master Set: Battle for the Underdark,3580,15,3819,22 +64204,The Logo Board Game,3580,15,3819,22 +67026,Diamoniak,3580,15,3819,22 +88140,Stomple,3580,15,3819,22 +88922,Clue: Card Game,3580,15,3819,22 +89953,Carcassonne: The Dice Game,3580,15,3819,22 +101737,Angry Birds: Card Game,3580,15,3819,22 +126750,Sky Tango,3580,15,3819,22 +128174,Dragon Farkle,3580,15,3819,22 +137095,The Witches,3580,15,3819,22 +169062,Monsters vs. Heroes: Victorian Nightmares,3580,15,3819,22 +172559,Targets,3580,15,3819,22 +188076,Taluva Deluxe,3580,15,3819,22 +192638,Multiuniversum,3580,15,3819,22 +193592,Gas Out,3580,15,3819,22 +234292,13 Ghosts,3580,15,3819,22 +240271,Core Space,3580,15,3819,22 +248702,Trivial Pursuit: Classic Edition,3580,15,3819,22 +249814,Crimson Company,3580,15,3819,22 +259537,Saint Seiya: Deckbuilding,3580,15,3819,22 +305752,Gate,3580,15,3819,22 +308762,Mystic Vale: Essential Edition,3580,15,3819,22 +325096,Skies Above Britain,3580,15,3819,22 +340541,Wizards of the Grimoire,3580,15,3819,22 +386989,Focus,3580,15,3819,22 +242,Junta,3580,15,4078,21 +509,The Reef,3580,15,4078,21 +704,Montgolfiere,3580,15,4078,21 +1662,"Napoléon: The Waterloo Campaign, 1815",3580,15,4078,21 +2821,UNO Stacko,3580,15,4078,21 +3353,World War II: Barbarossa to Berlin,3580,15,4078,21 +3870,7 Ages,3580,15,4078,21 +4471,Fist of Dragonstones,3580,15,4078,21 +5576,Dungeoneer: Tomb of the Lich Lord,3580,15,4078,21 +6558,The Secret Door,3580,15,4078,21 +24037,Escape from Atlantis,3580,15,4078,21 +61487,Unconditional Surrender! World War 2 in Europe,3580,15,4078,21 +66085,Keltis: Das Orakel,3580,15,4078,21 +68820,Enemy Action: Ardennes,3580,15,4078,21 +84671,Kissenschlacht,3580,15,4078,21 +119632,IOTA,3580,15,4078,21 +136415,Alles Käse!,3580,15,4078,21 +142267,Bomb Squad,3580,15,4078,21 +163642,Chimera Station,3580,15,4078,21 +166107,Matcha,3580,15,4078,21 +166633,Bounce-Off,3580,15,4078,21 +168770,Epic PVP: Fantasy,3580,15,4078,21 +169318,City of Spies: Estoril 1942,3580,15,4078,21 +176565,Ninja Camp,3580,15,4078,21 +180387,Dungeon Solitaire: Tomb of the Four Kings,3580,15,4078,21 +181617,Beasty Bar: New Beasts in Town,3580,15,4078,21 +182077,Cardline: Marvel,3580,15,4078,21 +182260,Agent Decker,3580,15,4078,21 +191543,Micro Robots,3580,15,4078,21 +201406,OrganATTACK!,3580,15,4078,21 +205494,"Machi Koro: Bright Lights, Big City",3580,15,4078,21 +209289,The Treasure of Isla Tortuga,3580,15,4078,21 +212956,Room 25 Ultimate,3580,15,4078,21 +227460,Hannibal & Hamilcar,3580,15,4078,21 +237706,Heroes of Tenefyr,3580,15,4078,21 +242553,Einhorn Glitzerglück: Funkel-Bingo,3580,15,4078,21 +246696,Monster Match,3580,15,4078,21 +248490,Atlantis Rising (Second Edition),3580,15,4078,21 +250539,The Potion,3580,15,4078,21 +282237,"Heist: One Team, One Mission",3580,15,4078,21 +295262,Sniper Elite: The Board Game,3580,15,4078,21 +302336,Marvel Villainous: Infinite Power,3580,15,4078,21 +304531,Ascension Tactics: Miniatures Deckbuilding Game,3580,15,4078,21 +309000,Blue Skies,3580,15,4078,21 +310031,Whale Riders: The Card Game,3580,15,4078,21 +326112,Das perfekte Wort,3580,15,4078,21 +327793,30 Monedas,3580,15,4078,21 +329607,Baseball Highlights: The Dice Game,3580,15,4078,21 +156,Wildlife Adventure,3580,15,4352,20 +2247,Zero!: The Rise and Fall of The Imperial Japanese Air Force Dec 1941 - June 1942,3580,15,4352,20 +2838,Loaded Questions,3580,15,4352,20 +3800,Himalaya,3580,15,4352,20 +4424,Cranium: Hoopla,3580,15,4352,20 +5259,Oh Snap!,3580,15,4352,20 +5824,The Kids of Catan,3580,15,4352,20 +6117,Nobody but Us Chickens,3580,15,4352,20 +7824,Break the Safe,3580,15,4352,20 +9735,Duell,3580,15,4352,20 +13728,Naval Battles,3580,15,4352,20 +13780,In the Shadow of the Emperor,3580,15,4352,20 +20022,Terra Nova,3580,15,4352,20 +21654,Iliad,3580,15,4352,20 +41052,Loco Motive,3580,15,4352,20 +41496,Chickyboom,3580,15,4352,20 +41835,Minotaurus,3580,15,4352,20 +62853,JAB: Realtime Boxing,3580,15,4352,20 +66126,Mystery Rummy: Escape from Alcatraz,3580,15,4352,20 +94731,Heroica: Fortaan,3580,15,4352,20 +103686,Mundus Novus,3580,15,4352,20 +130827,Rumble in the Dungeon,3580,15,4352,20 +136955,Hands in the Sea,3580,15,4352,20 +139898,Brew Crafters,3580,15,4352,20 +142084,Kings of Israel,3580,15,4352,20 +144568,Dawn of the Zeds (Second edition),3580,15,4352,20 +145393,Gem Rush,3580,15,4352,20 +145588,Citrus,3580,15,4352,20 +147116,The Witcher Adventure Game,3580,15,4352,20 +148291,Trieste,3580,15,4352,20 +154910,Darklight: Memento Mori,3580,15,4352,20 +155119,Mars Attacks: The Dice Game,3580,15,4352,20 +157403,Black Fleet,3580,15,4352,20 +159692,Comanchería: The Rise and Fall of the Comanche Empire,3580,15,4352,20 +163056,Musée,3580,15,4352,20 +163170,Firefly: Shiny Dice,3580,15,4352,20 +166226,The Staufer Dynasty,3580,15,4352,20 +172503,Mage Wars Academy,3580,15,4352,20 +172552,Karmaka,3580,15,4352,20 +183231,Adventure Land,3580,15,4352,20 +188018,Nine Tiles,3580,15,4352,20 +192735,Broom Service: The Card Game,3580,15,4352,20 +193037,Dead of Winter: The Long Night,3580,15,4352,20 +194553,Dairyman,3580,15,4352,20 +205322,The Oregon Trail Card Game,3580,15,4352,20 +205766,Gnomes at Night,3580,15,4352,20 +206169,Slide Blast,3580,15,4352,20 +213370,Castles of Caladale,3580,15,4352,20 +231567,Now Boarding,3580,15,4352,20 +232830,Shifty Eyed Spies,3580,15,4352,20 +234248,Voodoo Prince,3580,15,4352,20 +234621,Tybor the Builder,3580,15,4352,20 +238094,Mutabo,3580,15,4352,20 +239826,Dice Fishing: Roll and Catch,3580,15,4352,20 +252688,Enchanters: Overlords,3580,15,4352,20 +254213,Boomerang,3580,15,4352,20 +256997,Perseverance: Castaway Chronicles – Episodes 1 & 2,3580,15,4352,20 +281466,Yedo: Deluxe Master Set,3580,15,4352,20 +282463,Copenhagen: Roll & Write,3580,15,4352,20 +284777,Unmatched: Jurassic Park – InGen vs Raptors,3580,15,4352,20 +292907,The Deadlies,3580,15,4352,20 +300001,Renature,3580,15,4352,20 +301716,Glasgow,3580,15,4352,20 +341935,Art Robbery,3580,15,4352,20 +343899,Coral,3580,15,4352,20 +345969,Aventura Z: Vol 1 Lovecraft,3580,15,4352,20 +347883,Dandelions,3580,15,4352,20 +358987,Battles of Medieval Britain: A Solitaire Wargame,3580,15,4352,20 +359878,Splito,3580,15,4352,20 +360843,Stellarion,3580,15,4352,20 +371922,Rauha,3580,15,4352,20 +376683,In the Footsteps of Darwin,3580,15,4352,20 +377515,Mind Up!,3580,15,4352,20 +1,Die Macher,3580,15,4679,19 +162,The Awful Green Things From Outer Space,3580,15,4679,19 +368,Relationship Tightrope,3580,15,4679,19 +1261,Medina,3580,15,4679,19 +1345,Genoa,3580,15,4679,19 +6707,Age of Mythology: The Boardgame,3580,15,4679,19 +15167,King Arthur: The Card Game,3580,15,4679,19 +18866,Shear Panic,3580,15,4679,19 +22278,12 Thieves,3580,15,4679,19 +29198,Inn-Fighting,3580,15,4679,19 +30645,Tammany Hall,3580,15,4679,19 +32944,Neue Heimat,3580,15,4679,19 +39210,Tier auf Tier: Das Duell,3580,15,4679,19 +85325,Kolejka,3580,15,4679,19 +88402,Crappy Birthday,3580,15,4679,19 +123219,OddVille,3580,15,4679,19 +130060,Ohne Furcht und Adel Sonderausgabe,3580,15,4679,19 +131568,Codinca,3580,15,4679,19 +136000,Rivet Wars: Eastern Front,3580,15,4679,19 +137031,Ancient Terrible Things,3580,15,4679,19 +142079,Space Cadets: Dice Duel,3580,15,4679,19 +143994,Capo Dei Capi,3580,15,4679,19 +149853,Bullfrogs,3580,15,4679,19 +150298,One Zero One,3580,15,4679,19 +158435,Dogs of War,3580,15,4679,19 +163641,Eminent Domain: Battlecruisers,3580,15,4679,19 +169124,Flick 'em Up!,3580,15,4679,19 +173074,Tales & Games: Little Red Riding Hood,3580,15,4679,19 +173101,Council of 4,3580,15,4679,19 +175088,Pharaoh's Gulo Gulo,3580,15,4679,19 +177079,Die Legenden von Andor: Chada & Thorn,3580,15,4679,19 +186767,Shahrazad,3580,15,4679,19 +192457,Cry Havoc,3580,15,4679,19 +194232,Rick and Morty: Total Rickall Card Game,3580,15,4679,19 +206504,The Blood of an Englishman,3580,15,4679,19 +209877,World At War 85: Storming the Gap,3580,15,4679,19 +215946,Sub Terra: Collector's Edition,3580,15,4679,19 +223740,Bargain Quest,3580,15,4679,19 +224271,Yogi,3580,15,4679,19 +227935,Wonderland's War,3580,15,4679,19 +231223,Visitor in Blackwood Grove,3580,15,4679,19 +231553,Jagged Alliance: The Board Game,3580,15,4679,19 +240464,Cosmic Run: Regeneration,3580,15,4679,19 +248117,Carson City: The Card Game,3580,15,4679,19 +249673,Rolling Ranch,3580,15,4679,19 +254619,Porto,3580,15,4679,19 +257164,Dungeon Raiders,3580,15,4679,19 +262188,Dinoblivion,3580,15,4679,19 +264164,Night of the Living Dead: A Zombicide Game,3580,15,4679,19 +274466,Valley of the Kings: Premium Edition,3580,15,4679,19 +282414,Pharaon,3580,15,4679,19 +284121,Uprising: Curse of the Last Emperor,3580,15,4679,19 +298383,Golem,3580,15,4679,19 +303057,Pan Am,3580,15,4679,19 +306040,Merv: The Heart of the Silk Road,3580,15,4679,19 +317105,Tiny Epic Galaxies BLAST OFF!,3580,15,4679,19 +318195,Biss 20,3580,15,4679,19 +322195,Kokopelli,3580,15,4679,19 +328413,Darwin's Journey: Collector's Edition,3580,15,4679,19 +329716,Eleven: Football Manager Board Game,3580,15,4679,19 +339484,Savannah Park,3580,15,4679,19 +343562,Horrified: American Monsters,3580,15,4679,19 +347703,First Rat,3580,15,4679,19 +353288,Trekking Through History,3580,15,4679,19 +362976,Beacon Patrol,3580,15,4679,19 +377470,Sail,3580,15,4679,19 +4099,Keythedral,3580,15,5069,18 +9625,Struggle of Empires,3580,15,5069,18 +16366,Funny Friends,3580,15,5069,18 +22721,Combo King,3580,15,5069,18 +28025,Wicked Witches Way,3580,15,5069,18 +38386,A Castle for All Seasons,3580,15,5069,18 +58798,Cardcassonne,3580,15,5069,18 +65534,The Ares Project,3580,15,5069,18 +79067,Hex Hex XL,3580,15,5069,18 +83197,Zen Master,3580,15,5069,18 +90305,Cargo Noir,3580,15,5069,18 +106662,Power Grid: The First Sparks,3580,15,5069,18 +115105,Kittens in a Blender,3580,15,5069,18 +146548,Имаджинариум (Imaginarium),3580,15,5069,18 +153999,"...and then, we held hands.",3580,15,5069,18 +159492,The Game of 49,3580,15,5069,18 +173442,Empires: Age of Discovery,3580,15,5069,18 +180852,Tiny Epic Western,3580,15,5069,18 +183797,Timeline: Star Wars,3580,15,5069,18 +191057,Halt mal kurz: Das Känguru-Spiel,3580,15,5069,18 +193668,The Red Dragon Inn: Battle for Greyport,3580,15,5069,18 +200934,Coldwater Crown,3580,15,5069,18 +206156,SUPERHOT: The Card Game,3580,15,5069,18 +217553,Go Go Gelato!,3580,15,5069,18 +219638,Donner Dinner Party,3580,15,5069,18 +220827,Planet Apocalypse,3580,15,5069,18 +226176,Fallout: Wasteland Warfare,3580,15,5069,18 +231696,Bob Ross: Art of Chill Game,3580,15,5069,18 +232524,Welcome to Dino World,3580,15,5069,18 +246684,Smartphone Inc.,3580,15,5069,18 +261403,Inhuman Conditions,3580,15,5069,18 +269603,Minecraft: Builders & Biomes,3580,15,5069,18 +274841,Cóatl,3580,15,5069,18 +292375,The Great Wall,3580,15,5069,18 +293678,Stellar,3580,15,5069,18 +298060,Truffle Shuffle,3580,15,5069,18 +317311,Switch & Signal,3580,15,5069,18 +318359,Groundhog Day: The Game,3580,15,5069,18 +328859,Hula-Hoo!,3580,15,5069,18 +362944,War of the Ring: The Card Game,3580,15,5069,18 +378200,Triqueta,3580,15,5069,18 +36811,The Princes of Machu Picchu,3580,15,5525,17 +137154,Auf Teufel komm raus,3580,15,5525,17 +181236,Bastion,3580,15,5525,17 +192802,Days of Ire: Budapest 1956,3580,15,5525,17 +222542,Otys,3580,15,5525,17 +244320,SOS Dino,3580,15,5525,17 +256568,Adventure Island,3580,15,5525,17 +273477,Obscurio,3580,15,5525,17 +300217,Merchants of the Dark Road,3580,15,5525,17 +302723,Forgotten Waters,3580,15,5525,17 +318546,CoraQuest,3580,15,5525,17 +331106,The Witcher: Old World,3580,15,5525,17 +361545,Twilight Inscription,3580,15,5525,17 +390092,Ticket to Ride Legacy: Legends of the West,3580,15,5525,17 +37907,Diamonds Club,3580,15,6010,16 +207691,Railroad Revolution,3580,15,6010,16 +370984,Tracks: Siren Bay,3580,15,6574,15 +5122,Charades,4003,14,172,126 +31821,Goita,4003,14,480,76 +165948,Mangrovia,4003,14,567,70 +2728,The Generals,4003,14,585,69 +4642,Sports Illustrated Baseball,4003,14,1074,49 +32288,Dou Dizhu,4003,14,1431,41 +132717,Words with Friends,4003,14,1431,41 +352375,Baby Dinosaur Rescue,4003,14,1431,41 +3573,Napoleon at Waterloo,4003,14,1549,39 +118402,Maharani,4003,14,1549,39 +285265,Rune Stones,4003,14,1549,39 +218293,Rise to Nobility,4003,14,1615,38 +59576,Weiß Schwarz,4003,14,1696,37 +298166,Hungry Hamsters,4003,14,1696,37 +111,Rheinländer,4003,14,1782,36 +230553,Dragon Ball Super Card Game,4003,14,1867,35 +168230,The Supershow,4003,14,1953,34 +1621,Mutant Chronicles: Siege of the Citadel,4003,14,2156,32 +4282,Greed,4003,14,2156,32 +201046,Dice of Crowns,4003,14,2156,32 +325401,Beyond the Rift: A Perdition's Mouth Card Game,4003,14,2261,31 +2127,Overpower,4003,14,2387,30 +10520,Tyrus,4003,14,2387,30 +393325,Captain Flip,4003,14,2387,30 +8935,Shazamm!,4003,14,2512,29 +2455,India Rails,4003,14,2647,28 +12350,Battlestations,4003,14,2647,28 +35546,Aronda,4003,14,2647,28 +126239,Twin Tin Bots,4003,14,2647,28 +276161,MOON,4003,14,2647,28 +202477,Bananagrams Party,4003,14,2807,27 +344685,Go Goa,4003,14,2807,27 +441,Filthy Rich,4003,14,2967,26 +2689,British Rails,4003,14,2967,26 +5966,Sequence Dice,4003,14,2967,26 +8095,Prophecy,4003,14,2967,26 +9685,Bounce It-In Game,4003,14,2967,26 +11396,Dragon Master,4003,14,2967,26 +12325,Perpetual Commotion,4003,14,2967,26 +31111,Picture Dominoes,4003,14,2967,26 +133671,A Fool's Fortune,4003,14,2967,26 +199076,Warmachine Prime Mk III,4003,14,2967,26 +322560,Maeshowe: an Orkney Saga,4003,14,2967,26 +102,Klunker,4003,14,3155,25 +422,1835,4003,14,3155,25 +4149,Barrel of Monkeys,4003,14,3155,25 +5393,Wheedle,4003,14,3155,25 +6068,Queen's Necklace,4003,14,3155,25 +7270,GOLO,4003,14,3155,25 +17054,Pegs and Jokers,4003,14,3155,25 +22143,EastFront: The War in Russia 1941-45 – Second Edition,4003,14,3155,25 +25462,German Whist,4003,14,3155,25 +42207,Super Circles,4003,14,3155,25 +72800,RoadZters,4003,14,3155,25 +167270,Medina (Second Edition),4003,14,3155,25 +228133,Crystal Clans,4003,14,3155,25 +228766,A4 Quest,4003,14,3155,25 +238510,Farkle,4003,14,3155,25 +265785,Rune,4003,14,3155,25 +291511,Medici: The Dice Game,4003,14,3155,25 +356414,Space Station Phoenix,4003,14,3155,25 +431,Alhambra: The Card Game,4003,14,3361,24 +2060,Probe,4003,14,3361,24 +32466,Kogworks,4003,14,3361,24 +43262,Neuroshima Hex! Duel,4003,14,3361,24 +181289,Terra Mystica: Big Box,4003,14,3361,24 +232831,Super Mario Bros. Power Up Card Game,4003,14,3361,24 +232974,Paco Ŝako,4003,14,3361,24 +270677,Knaster,4003,14,3361,24 +1827,Chainsaw Warrior,4003,14,3592,23 +5709,Touché,4003,14,3592,23 +21709,Jericho,4003,14,3592,23 +25097,Die Maus: Mausefalle,4003,14,3592,23 +26235,Pick & Pack,4003,14,3592,23 +27363,Danger 13,4003,14,3592,23 +38872,Jet Set,4003,14,3592,23 +83040,Leader 1: Hell of the North,4003,14,3592,23 +99097,Food Fight,4003,14,3592,23 +142121,Guildhall: Job Faire,4003,14,3592,23 +145888,CapCom Street Fighter Deck-Building Game,4003,14,3592,23 +152359,Machiavelli,4003,14,3592,23 +160964,Star Wars: Empire vs. Rebellion,4003,14,3592,23 +195484,Ominoes,4003,14,3592,23 +249277,Brazil: Imperial,4003,14,3592,23 +274049,Nope!,4003,14,3592,23 +274075,The Quest Kids,4003,14,3592,23 +284760,Disney Villainous: Evil Comes Prepared,4003,14,3592,23 +298562,Minigolf Designer,4003,14,3592,23 +326934,Unmatched: Hell's Kitchen,4003,14,3592,23 +3059,Rebound,4003,14,3819,22 +17075,Giza,4003,14,3819,22 +18985,Battleground,4003,14,3819,22 +19914,Hexxagon,4003,14,3819,22 +25623,Mmm ... Brains!,4003,14,3819,22 +33088,Chabyrinthe,4003,14,3819,22 +144468,Jungle Speed: Safari,4003,14,3819,22 +154633,Clue,4003,14,3819,22 +158256,Last One Lost,4003,14,3819,22 +181293,Alien Artifacts,4003,14,3819,22 +183959,Latice,4003,14,3819,22 +194789,10 Minute Heist: The Wizard's Tower,4003,14,3819,22 +199780,Looterz,4003,14,3819,22 +204175,Batman: The Animated Series Dice Game,4003,14,3819,22 +211454,VOLT,4003,14,3819,22 +224986,Mascotas,4003,14,3819,22 +252432,Zoo Break,4003,14,3819,22 +265752,Exceed: Street Fighter – Ryu Box,4003,14,3819,22 +280107,Kami,4003,14,3819,22 +296577,Red Flag Over Paris,4003,14,3819,22 +297570,2Can,4003,14,3819,22 +316624,Stationfall,4003,14,3819,22 +321641,Merchants of Magick: A Set a Watch Tale,4003,14,3819,22 +341914,Froggies,4003,14,3819,22 +355224,Isle of Trains: All Aboard,4003,14,3819,22 +356039,Volto,4003,14,3819,22 +358000,Birds of a Feather: Western North America,4003,14,3819,22 +364343,Strands,4003,14,3819,22 +399375,For One: Schwarze Rosen,4003,14,3819,22 +271,It's Mine!,4003,14,4078,21 +606,Pico 2,4003,14,4078,21 +1321,Catch the Match,4003,14,4078,21 +1431,War at Sea (Second Edition),4003,14,4078,21 +1536,Lord of the Fries,4003,14,4078,21 +3404,The Legend of Landlock,4003,14,4078,21 +4122,Electronic Battleship,4003,14,4078,21 +8481,Crusader Rex,4003,14,4078,21 +14032,Finders Keepers!,4003,14,4078,21 +15600,Kreta,4003,14,4078,21 +15839,Bonaparte at Marengo,4003,14,4078,21 +20542,Advanced Squad Leader: Starter Kit #3,4003,14,4078,21 +23334,Doodle Dice,4003,14,4078,21 +27948,Beppo der Bock,4003,14,4078,21 +33495,Time's Up! Édition purple,4003,14,4078,21 +36745,Simply Ingenious,4003,14,4078,21 +38275,Robotory,4003,14,4078,21 +42651,Airborne in My Pocket,4003,14,4078,21 +55829,Axis & Allies: Pacific 1940,4003,14,4078,21 +56294,Jungle Speed: Rabbids,4003,14,4078,21 +89403,Big Five,4003,14,4078,21 +97751,Hit the Throttle!,4003,14,4078,21 +118536,Police Precinct,4003,14,4078,21 +120605,Neuroshima: Convoy,4003,14,4078,21 +146818,Cappuccino,4003,14,4078,21 +147253,The Ancient World,4003,14,4078,21 +161138,Dragon Run,4003,14,4078,21 +172737,High Frontier (Third Edition),4003,14,4078,21 +174837,Sol: Last Days of a Star,4003,14,4078,21 +175878,504,4003,14,4078,21 +179245,World Championship Russian Roulette,4003,14,4078,21 +181501,Peloponnes Card Game,4003,14,4078,21 +197760,Ghost Blitz: Spooky Doo,4003,14,4078,21 +210008,Off the Rails,4003,14,4078,21 +214910,Tiki,4003,14,4078,21 +225214,Legendary Forests,4003,14,4078,21 +228943,Barbaria,4003,14,4078,21 +256998,Robin Wood,4003,14,4078,21 +280748,Escape the Dark Sector,4003,14,4078,21 +280896,Foodies,4003,14,4078,21 +300725,Ripple Rush,4003,14,4078,21 +301257,Maglev Metro,4003,14,4078,21 +306494,Rolling Village,4003,14,4078,21 +317504,Mandala Stones,4003,14,4078,21 +338468,Paperback Adventures,4003,14,4078,21 +360153,Marvel Dice Throne: Scarlet Witch v. Thor v. Loki v. Spider-Man,4003,14,4078,21 +90,Star Wars: Episode 1 – Clash of the Lightsabers,4003,14,4352,20 +692,Wizard Kings,4003,14,4352,20 +1233,Facts in Five,4003,14,4352,20 +1449,Kings Cribbage,4003,14,4352,20 +1961,5 Alive,4003,14,4352,20 +4529,Hellas,4003,14,4352,20 +5332,Split (Revised Edition),4003,14,4352,20 +6607,Munchkin Fu,4003,14,4352,20 +7538,Fish Eat Fish,4003,14,4352,20 +20079,Pacific Typhoon,4003,14,4352,20 +20734,Corsair Leader,4003,14,4352,20 +21464,California,4003,14,4352,20 +25277,Richard III: The Wars of the Roses,4003,14,4352,20 +27870,Toss Your Cookies,4003,14,4352,20 +28044,Pocket Civ,4003,14,4352,20 +34745,Battleship Express,4003,14,4352,20 +35435,Nefertiti,4003,14,4352,20 +37376,Gem Dealer,4003,14,4352,20 +40444,Livingstone,4003,14,4352,20 +41490,Phantom Leader,4003,14,4352,20 +83157,"Engine, Engine No. 9",4003,14,4352,20 +83629,The Hobbit,4003,14,4352,20 +109969,Mutant Meeples,4003,14,4352,20 +128445,Darkest Night,4003,14,4352,20 +133637,Temple Run: Danger Chase,4003,14,4352,20 +138195,City Blocks,4003,14,4352,20 +143401,Yunnan,4003,14,4352,20 +144036,Diamonsters,4003,14,4352,20 +145976,Talon,4003,14,4352,20 +153422,Gardens,4003,14,4352,20 +154173,7 Ronin,4003,14,4352,20 +154600,Desperados of Dice Town,4003,14,4352,20 +172996,The King Is Dead,4003,14,4352,20 +189660,XenoShyft: Dreadmire,4003,14,4352,20 +191285,Less: Like Chess but Less!,4003,14,4352,20 +194100,Costa Rica,4003,14,4352,20 +212376,Stroop,4003,14,4352,20 +218025,The Little Flower Shop,4003,14,4352,20 +218395,Sine Tempore,4003,14,4352,20 +232090,Doodle Rush,4003,14,4352,20 +232595,Skulk Hollow,4003,14,4352,20 +233149,Pulp Detective,4003,14,4352,20 +234521,Necromunda: Underhive,4003,14,4352,20 +235451,GROWL,4003,14,4352,20 +241987,Dual Powers: Revolution 1917,4003,14,4352,20 +245222,Squadro,4003,14,4352,20 +249746,Nanty Narking,4003,14,4352,20 +256852,Aliens: Another Glorious Day in the Corps,4003,14,4352,20 +261831,Avocado Smash!,4003,14,4352,20 +265285,Queenz: To Bee or Not to Bee,4003,14,4352,20 +274450,Last Aurora,4003,14,4352,20 +275564,Maximum Apocalypse: Legendary Edition,4003,14,4352,20 +282131,Monster Baby Rescue!,4003,14,4352,20 +284054,Smoothies,4003,14,4352,20 +287591,Storytailors,4003,14,4352,20 +295788,Plakks,4003,14,4352,20 +297978,Mariposas,4003,14,4352,20 +299933,Dice Flick,4003,14,4352,20 +299946,Eiyo,4003,14,4352,20 +302388,Back to the Future: Back in Time,4003,14,4352,20 +313841,Lunar Base,4003,14,4352,20 +320677,Noch mal!: Kids,4003,14,4352,20 +321608,Hegemony: Lead Your Class to Victory,4003,14,4352,20 +322010,Enchanted Plumes,4003,14,4352,20 +325635,Unmatched: Little Red Riding Hood vs. Beowulf,4003,14,4352,20 +351040,Ready Set Bet,4003,14,4352,20 +379625,Elawa,4003,14,4352,20 +520,Axis & Allies: Europe,4003,14,4679,19 +602,Animal Poker,4003,14,4679,19 +1690,Unexploded Cow,4003,14,4679,19 +2507,Liberté,4003,14,4679,19 +2955,Mexica,4003,14,4679,19 +2961,Confusion: Espionage and Deception in the Cold War,4003,14,4679,19 +8229,Armadöra,4003,14,4679,19 +13507,WINK,4003,14,4679,19 +16144,Fruit Spy,4003,14,4679,19 +17851,Pizza Box Football,4003,14,4679,19 +28238,Kitty Bitty,4003,14,4679,19 +28258,Ubongo Mini,4003,14,4679,19 +32989,Axis Empires: Totaler Krieg!,4003,14,4679,19 +55165,Bisikle,4003,14,4679,19 +66781,Space Infantry,4003,14,4679,19 +75789,Mai-Star,4003,14,4679,19 +86246,Drum Roll,4003,14,4679,19 +91873,Strasbourg,4003,14,4679,19 +97915,Bios: Megafauna,4003,14,4679,19 +99312,Feudality,4003,14,4679,19 +100679,Ultimate Warriorz,4003,14,4679,19 +102181,In a Grove,4003,14,4679,19 +107255,Evo (Second Edition),4003,14,4679,19 +118174,Compounded,4003,14,4679,19 +136117,The Walking Dead Card Game,4003,14,4679,19 +137931,Nada!,4003,14,4679,19 +147009,Zombie Kidz,4003,14,4679,19 +150364,Dig Down Dwarf,4003,14,4679,19 +162114,Hamsterbacke,4003,14,4679,19 +163377,Rolling Japan,4003,14,4679,19 +168054,Grifters,4003,14,4679,19 +178054,A Study in Emerald (Second Edition),4003,14,4679,19 +189350,Starving Artists,4003,14,4679,19 +193737,Star Trek Panic,4003,14,4679,19 +195454,NUT,4003,14,4679,19 +197572,Warhammer Quest: Silver Tower,4003,14,4679,19 +204516,878 Vikings: Invasions of England,4003,14,4679,19 +205057,Word Domination,4003,14,4679,19 +209001,Monster Lands,4003,14,4679,19 +215437,Codex: Card-Time Strategy – Core Set,4003,14,4679,19 +219100,UBOOT: The Board Game,4003,14,4679,19 +223742,Colourbrain,4003,14,4679,19 +230968,Panic Island!,4003,14,4679,19 +231854,Twin Stars: Adventure Series I,4003,14,4679,19 +232824,Caper,4003,14,4679,19 +234711,Christmas Tree,4003,14,4679,19 +235014,Sorcerer City,4003,14,4679,19 +235252,GoTown,4003,14,4679,19 +236272,Echidna Shuffle,4003,14,4679,19 +240465,CIV: Carta Impera Victoria,4003,14,4679,19 +244216,Shark Bite,4003,14,4679,19 +249590,Nevsky: Teutons and Rus in Collision 1240-1242,4003,14,4679,19 +249703,Gentes: Deluxified Edition,4003,14,4679,19 +254713,The Artemis Project,4003,14,4679,19 +255507,Orbis,4003,14,4679,19 +257284,Timeline: Classic,4003,14,4679,19 +265402,In the Hall of the Mountain King,4003,14,4679,19 +266966,Dice Throne: Season Two – Gunslinger v. Samurai,4003,14,4679,19 +269623,Unicorn Glitterluck: Cloud Stacking,4003,14,4679,19 +270293,Gorinto,4003,14,4679,19 +273814,Deliverance,4003,14,4679,19 +300192,Twilight Struggle: Red Sea – Conflict in the Horn of Africa,4003,14,4679,19 +300683,Meeple Land,4003,14,4679,19 +306481,Tawantinsuyu: The Inca Empire,4003,14,4679,19 +325414,Happy Little Dinosaurs,4003,14,4679,19 +371636,Wildtails: A Pirate Legacy,4003,14,4679,19 +399374,For One: Kniffel,4003,14,4679,19 +315,Bagh Chal,4003,14,5069,18 +853,...und tschüss!,4003,14,5069,18 +1943,This Game is Bonkers!,4003,14,5069,18 +4492,Trivial Pursuit: 20th Anniversary Edition,4003,14,5069,18 +9852,Clue Jr.: The Case of the Missing Cake,4003,14,5069,18 +10496,Camelot Legends,4003,14,5069,18 +13551,Oltre Mare,4003,14,5069,18 +24318,UNO Spin,4003,14,5069,18 +35173,Pop the Pig,4003,14,5069,18 +38992,Royal Palace,4003,14,5069,18 +40209,RAF: The Battle of Britain 1940,4003,14,5069,18 +68182,Isla Dorada,4003,14,5069,18 +72225,CO₂,4003,14,5069,18 +76247,Eaten by Zombies!,4003,14,5069,18 +84088,Fauna Junior,4003,14,5069,18 +92319,Olympos,4003,14,5069,18 +99081,Bears!,4003,14,5069,18 +109801,Sticky Stickz,4003,14,5069,18 +114871,For The Win,4003,14,5069,18 +129469,Card of the Dead,4003,14,5069,18 +136416,Mountain 53,4003,14,5069,18 +139991,Fresco: Big Box,4003,14,5069,18 +154003,Pagoda,4003,14,5069,18 +154259,Province,4003,14,5069,18 +156878,tummple!,4003,14,5069,18 +159209,Bucket King 3D,4003,14,5069,18 +165662,Haru Ichiban,4003,14,5069,18 +168609,"Artifacts, Inc.",4003,14,5069,18 +171479,Commissioned,4003,14,5069,18 +172662,Seven7s,4003,14,5069,18 +180179,Siggil,4003,14,5069,18 +184824,Gaslands: Post-Apocalyptic Vehicular Combat,4003,14,5069,18 +185196,Rising 5: Runes of Asteros,4003,14,5069,18 +194028,Rabbit Rally,4003,14,5069,18 +198287,Legends of Andor: The Last Hope,4003,14,5069,18 +200057,Pioneer Days,4003,14,5069,18 +206844,Fold-it,4003,14,5069,18 +207207,Glüx,4003,14,5069,18 +207687,Endangered Orphans of Condyle Cove,4003,14,5069,18 +211534,Bears vs Babies,4003,14,5069,18 +214032,Founders of Gloomhaven,4003,14,5069,18 +214234,Tank Duel: Enemy in the Crosshairs,4003,14,5069,18 +214484,HEXplore It: The Valley of the Dead King,4003,14,5069,18 +221769,Bios: Megafauna (Second Edition),4003,14,5069,18 +230262,Time's Up! Party Edition,4003,14,5069,18 +234396,Muse,4003,14,5069,18 +238360,El Castillo del Terror,4003,14,5069,18 +240855,Lockup: A Roll Player Tale,4003,14,5069,18 +242343,Siege Storm,4003,14,5069,18 +245444,Holding On: The Troubled Life of Billy Kerr,4003,14,5069,18 +254088,Gravity Superstar,4003,14,5069,18 +255594,Ship Shape: It's a Smuggler's Bounty!,4003,14,5069,18 +256918,Cerberus,4003,14,5069,18 +271528,Bees: The Secret Kingdom,4003,14,5069,18 +274533,Throw Throw Burrito,4003,14,5069,18 +277017,Color Brain: Disney Edition,4003,14,5069,18 +280480,Crystal Palace,4003,14,5069,18 +286109,Hierarchy,4003,14,5069,18 +288424,Blue Banana,4003,14,5069,18 +292564,Back to the Future: Dice Through Time,4003,14,5069,18 +300993,¡Extinción!,4003,14,5069,18 +322696,An Otter Won,4003,14,5069,18 +324467,Hey Yo,4003,14,5069,18 +341519,The Light in the Mist,4003,14,5069,18 +347112,Secret Identity,4003,14,5069,18 +347521,Blitzkrieg!: World War Two in 20 Minutes,4003,14,5069,18 +347900,Tin Helm,4003,14,5069,18 +358816,Rear Window,4003,14,5069,18 +359318,Foxy,4003,14,5069,18 +366023,Marvel Zombies: Heroes' Resistance,4003,14,5069,18 +373167,20 Strong,4003,14,5069,18 +122,Quo Vadis?,4003,14,5525,17 +247,Gloria Picktoria,4003,14,5525,17 +300,Tutankhamen,4003,14,5525,17 +554,La Città,4003,14,5525,17 +1376,Serengeti,4003,14,5525,17 +38032,Byzanz,4003,14,5525,17 +39217,Fighting Formations: Grossdeutschland Motorized Infantry Division,4003,14,5525,17 +60579,Poo: The Card Game,4003,14,5525,17 +96749,Fading Glory,4003,14,5525,17 +127518,A Distant Plain,4003,14,5525,17 +129320,Castle Dice,4003,14,5525,17 +142197,The Phantom Society,4003,14,5525,17 +145203,Prosperity,4003,14,5525,17 +157789,Pandemic: Contagion,4003,14,5525,17 +161882,Irish Gauge,4003,14,5525,17 +162041,Ninja Taisen,4003,14,5525,17 +180771,Teenage Mutant Ninja Turtles: Shadows of the Past,4003,14,5525,17 +183264,Spookies,4003,14,5525,17 +187653,Covert,4003,14,5525,17 +189294,Yeti,4003,14,5525,17 +189848,Munchkin Marvel,4003,14,5525,17 +191982,Knit Wit,4003,14,5525,17 +193651,Bohemian Villages,4003,14,5525,17 +195560,Wasteland Express Delivery Service,4003,14,5525,17 +203828,"13 Minutes: The Cuban Missile Crisis, 1962",4003,14,5525,17 +209222,Drachenturm,4003,14,5525,17 +215613,Tao Long: The Way of the Dragon,4003,14,5525,17 +217780,Gentes,4003,14,5525,17 +225818,Mini Rails,4003,14,5525,17 +232829,The Wizard Always Wins,4003,14,5525,17 +234105,Hippo,4003,14,5525,17 +242324,Stew,4003,14,5525,17 +246816,Tales of Glory,4003,14,5525,17 +251723,Zombicide: Dark Side,4003,14,5525,17 +254386,Raccoon Tycoon,4003,14,5525,17 +260298,The Table Is Lava,4003,14,5525,17 +264806,We're Doomed!,4003,14,5525,17 +271088,Ishtar: Gardens of Babylon,4003,14,5525,17 +277699,A Fistful of Meeples,4003,14,5525,17 +279014,Teenage Mutant Ninja Turtles: Turtle Power Card Game,4003,14,5525,17 +281258,Sub Terra II: Inferno's Edge,4003,14,5525,17 +302917,King of 12,4003,14,5525,17 +304987,Sock Monsters,4003,14,5525,17 +324639,The Road,4003,14,5525,17 +329551,Mosaic: A Story of Civilization,4003,14,5525,17 +331259,Sleeping Gods: Kickstarter Edition,4003,14,5525,17 +332321,ALIEN: Fate of the Nostromo,4003,14,5525,17 +342135,É Top!?: Variedades,4003,14,5525,17 +344338,Cuphead: Fast Rolling Dice Game,4003,14,5525,17 +351810,Viking See-Saw,4003,14,5525,17 +354729,Wonder Woods,4003,14,5525,17 +356133,Quirky Circuits: Penny & Gizmo's Snow Day!,4003,14,5525,17 +140603,Francis Drake,4003,14,6010,16 +153425,North Wind,4003,14,6010,16 +157917,The Lord of the Ice Garden,4003,14,6010,16 +180899,Ponzi Scheme,4003,14,6010,16 +193557,Android: Mainframe,4003,14,6010,16 +213492,Pyramids,4003,14,6010,16 +217398,Path of Light and Shadow,4003,14,6010,16 +224031,Cartagena,4003,14,6010,16 +258309,First Contact,4003,14,6010,16 +262733,Reichbusters: Projekt Vril,4003,14,6010,16 +318983,Faiyum,4003,14,6010,16 +337787,Summer Camp,4003,14,6010,16 +65087,Beyblade,4436,13,840,56 +34943,Double Shutter,4436,13,1012,51 +23010,Risk: 40th Anniversary Collector's Edition,4436,13,1431,41 +16499,Architekton,4436,13,1549,39 +182694,Watson & Holmes,4436,13,1615,38 +267370,Cities: Skylines – The Board Game,4436,13,1615,38 +276830,Sanctum,4436,13,1615,38 +9855,Strat-O-Matic Pro Basketball,4436,13,1696,37 +4564,Blue & Gray: Four American Civil War Battles,4436,13,1867,35 +756,Black Vienna,4436,13,1953,34 +18103,Tien Len,4436,13,2156,32 +22664,Phase 10 Masters Edition,4436,13,2156,32 +18699,EinStein würfelt nicht!,4436,13,2261,31 +149746,My Little Pony: Collectible Card Game,4436,13,2261,31 +159633,Start Player Express,4436,13,2261,31 +205072,Disney Eye Found It!: Hidden Picture Card Game,4436,13,2261,31 +287693,Anubixx,4436,13,2261,31 +31575,The Eye of Judgment,4436,13,2387,30 +40550,Star Trek Customizable Card Game (Second Edition),4436,13,2387,30 +42929,Martian Rails,4436,13,2387,30 +17181,Stad - Land - Rivier,4436,13,2512,29 +42498,Ambagibus,4436,13,2512,29 +123587,Triominos Challenge,4436,13,2512,29 +193122,Stir Fry Eighteen,4436,13,2512,29 +369,5ive Straight,4436,13,2647,28 +205961,Travelin',4436,13,2647,28 +8553,Cannon,4436,13,2807,27 +61470,Phase 10 Master,4436,13,2807,27 +69851,Aliens: This Time It's War,4436,13,2807,27 +96152,Nightfall: Martial Law,4436,13,2807,27 +497,Vampire,4436,13,2967,26 +1982,Black Spy,4436,13,2967,26 +2557,Castle Risk,4436,13,2967,26 +4386,Fanorona,4436,13,2967,26 +30179,Inside,4436,13,2967,26 +127839,"Mage Tower, A Tower Defense Card Game",4436,13,2967,26 +210065,SLAPZI,4436,13,2967,26 +334644,Nicodemus,4436,13,2967,26 +2581,Kismet,4436,13,3155,25 +4454,Statis Pro Football,4436,13,3155,25 +7989,Spooks,4436,13,3155,25 +8128,Atta Ants,4436,13,3155,25 +10815,Craps,4436,13,3155,25 +22244,Toppo,4436,13,3155,25 +100795,Micro Monsters,4436,13,3155,25 +259061,Skytear,4436,13,3155,25 +313262,Shamans,4436,13,3155,25 +332393,Bridge City Poker,4436,13,3155,25 +351113,KeyForge: Winds of Exchange,4436,13,3155,25 +2938,Zatre,4436,13,3361,24 +13164,Mastermind for Kids,4436,13,3361,24 +25196,Rummikub Six Player,4436,13,3361,24 +29663,Star Fleet Battles: Captain's Edition Basic Set,4436,13,3361,24 +41123,Pirate Versus Pirate,4436,13,3361,24 +46007,A Brief History of the World,4436,13,3361,24 +66896,American Carrom,4436,13,3361,24 +186995,Doctor Who: Time of the Daleks,4436,13,3361,24 +187353,Marvel Dice Masters: Civil War,4436,13,3361,24 +191095,Scoundrel,4436,13,3361,24 +256701,Fluff,4436,13,3361,24 +271518,Disney Villainous: Wicked to the Core,4436,13,3361,24 +327392,Gnoming A Round,4436,13,3361,24 +720,Fast Food Franchise,4436,13,3592,23 +2259,Afrika Korps,4436,13,3592,23 +3348,Santa Fe Rails,4436,13,3592,23 +5082,Rush Hour,4436,13,3592,23 +14940,Figure It,4436,13,3592,23 +18460,Lock 'n Load: Band of Heroes,4436,13,3592,23 +69318,Perpetual-Motion Machine,4436,13,3592,23 +135812,Knot Dice,4436,13,3592,23 +165967,Great War Commander,4436,13,3592,23 +173294,DC Comics Dice Masters: War of Light,4436,13,3592,23 +173460,Dark Dealings,4436,13,3592,23 +205907,Runewars Miniatures Game,4436,13,3592,23 +207330,Hellas,4436,13,3592,23 +225569,Geek Out! Masters,4436,13,3592,23 +280041,Rolled West,4436,13,3592,23 +283073,Zoo Run,4436,13,3592,23 +285047,SilenZe: Zombie City,4436,13,3592,23 +301480,Binho Classic: Pro Series,4436,13,3592,23 +308500,Clash of Deck,4436,13,3592,23 +313,Big Boss,4436,13,3819,22 +831,Schrille Stille,4436,13,3819,22 +1439,Penguin Pile-Up,4436,13,3819,22 +4746,Dungeons & Dragons Computer Labyrinth Game,4436,13,3819,22 +7803,O'NO 99,4436,13,3819,22 +10140,The Scrambled States of America: Deluxe Edition,4436,13,3819,22 +17003,Snap,4436,13,3819,22 +17274,Attacktix Battle Figure Game: Star Wars,4436,13,3819,22 +57163,Gonzaga,4436,13,3819,22 +79131,Star Trek: Expeditions,4436,13,3819,22 +145371,Three Kingdoms Redux,4436,13,3819,22 +183572,Dungeons & Dragons Dice Masters: Faerûn Under Siege,4436,13,3819,22 +200430,Elevenses for One,4436,13,3819,22 +212027,Balloon Pop!,4436,13,3819,22 +216725,Villages of Valeria: Deluxe Kickstarter Edition,4436,13,3819,22 +283211,Harry Potter: Death Eaters Rising,4436,13,3819,22 +283521,Are You A Robot?,4436,13,3819,22 +318985,Puerto Rico,4436,13,3819,22 +325038,The Brambles: A Solo Card Game,4436,13,3819,22 +377068,Battle Card: Market Garden,4436,13,3819,22 +194,Groo: The Game,4436,13,4078,21 +458,Sherlock Holmes: The Card Game,4436,13,4078,21 +655,Castle,4436,13,4078,21 +730,Breakout: Normandy,4436,13,4078,21 +3270,Lamarckian Poker,4436,13,4078,21 +8017,Feurio!,4436,13,4078,21 +12071,Second Season Pro Football Game,4436,13,4078,21 +13017,Animal Olympics,4436,13,4078,21 +13223,The Best of Chronology,4436,13,4078,21 +22465,On the Dot,4436,13,4078,21 +39710,Tien Zi Que,4436,13,4078,21 +41372,Zombie in My Pocket,4436,13,4078,21 +89918,Mount Drago,4436,13,4078,21 +117992,Shrimp,4436,13,4078,21 +125061,Super Tooth,4436,13,4078,21 +136279,Kreuzwort,4436,13,4078,21 +161849,Land 6,4436,13,4078,21 +162263,Temporum,4436,13,4078,21 +165628,HINT,4436,13,4078,21 +175222,Lost Legacy: Third Chronicle – Sacred Grail & Staff of Dragons,4436,13,4078,21 +194032,Dragon Rapid Fire,4436,13,4078,21 +199793,Dokmus,4436,13,4078,21 +223952,Boast or Nothing,4436,13,4078,21 +252985,"Legendary: A Marvel Deck Building Game – Marvel Studios, Phase 1",4436,13,4078,21 +254127,Europa Universalis: The Price of Power,4436,13,4078,21 +264566,Card Capture,4436,13,4078,21 +281515,Company of Heroes,4436,13,4078,21 +287671,Mauwi,4436,13,4078,21 +289397,Crazy Taco,4436,13,4078,21 +303676,Oh My Brain,4436,13,4078,21 +329151,Draconic Dice,4436,13,4078,21 +349992,Tiger & Dragon,4436,13,4078,21 +355199,Star Realms,4436,13,4078,21 +358790,Farm Club,4436,13,4078,21 +378983,Tipperary,4436,13,4078,21 +124,Primordial Soup,4436,13,4352,20 +147,Crude: The Oil Game,4436,13,4352,20 +310,Wizard's Quest,4436,13,4352,20 +364,Samarkand,4436,13,4352,20 +637,The Stock Car Championship Racing Card Game,4436,13,4352,20 +1330,Savannah Café,4436,13,4352,20 +3931,Mare Nostrum,4436,13,4352,20 +3986,Battle for Germany,4436,13,4352,20 +4991,Apples to Apples Kids,4436,13,4352,20 +6191,Xe Queo!,4436,13,4352,20 +6205,Europe Engulfed: WWII European Theatre Block Game,4436,13,4352,20 +11730,Diam,4436,13,4352,20 +20966,Queen of the Cupcakes,4436,13,4352,20 +21293,Celtica,4436,13,4352,20 +25204,UNO: Cars,4436,13,4352,20 +27938,Tortuga,4436,13,4352,20 +29602,Okko: Era of the Asagiri,4436,13,4352,20 +32928,Mü and Lots More,4436,13,4352,20 +59753,Priests of Ra,4436,13,4352,20 +80933,Sandwich,4436,13,4352,20 +87904,Trivial Pursuit: Master Edition,4436,13,4352,20 +114228,Little Circuit,4436,13,4352,20 +124954,Color Addict,4436,13,4352,20 +128063,Uchronia,4436,13,4352,20 +131788,Game Over,4436,13,4352,20 +136587,Ninja Dice,4436,13,4352,20 +144955,Murder in Greenrock Village: Theatre,4436,13,4352,20 +156175,Championship Formula Racing,4436,13,4352,20 +159910,The King of Frontier,4436,13,4352,20 +161943,Chosŏn,4436,13,4352,20 +166972,Bubble Bath Bunny,4436,13,4352,20 +172162,Da Luigi,4436,13,4352,20 +173634,The Red Dragon Inn 5: The Character Trove,4436,13,4352,20 +189504,Звёздные войны: Тайное вторжение (Star Wars: Secret Invasion),4436,13,4352,20 +198110,Kreus,4436,13,4352,20 +217362,Frogriders,4436,13,4352,20 +224894,Michael Strogoff,4436,13,4352,20 +234834,Apocalypse au Zoo de Carson City,4436,13,4352,20 +259393,Lunes,4436,13,4352,20 +259571,Quarriors! Qultimate Quedition,4436,13,4352,20 +259708,Diced Tomatoes,4436,13,4352,20 +260332,Hokkaido,4436,13,4352,20 +262540,Freshwater Fly,4436,13,4352,20 +287691,Qwixx On Board,4436,13,4352,20 +308621,Twisted Fables,4436,13,4352,20 +328211,Vegetable Stock,4436,13,4352,20 +331401,Dog Park,4436,13,4352,20 +369880,Beer & Bread,4436,13,4352,20 +379,Express,4436,13,4679,19 +1444,SPQR,4436,13,4679,19 +1744,Monster Mash,4436,13,4679,19 +3972,Catan: Portable Edition,4436,13,4679,19 +4031,Jungle,4436,13,4679,19 +4257,Elephant's Trunk,4436,13,4679,19 +8804,Stoner Fluxx,4436,13,4679,19 +13089,Wie ich die Welt sehe...,4436,13,4679,19 +15033,Australia,4436,13,4679,19 +15121,Exago,4436,13,4679,19 +15953,Wings of War: Burning Drachens,4436,13,4679,19 +30804,Song of Blades and Heroes: Revised Edition,4436,13,4679,19 +31483,Constantinopolis,4436,13,4679,19 +31759,BattleTech: Introductory Box Set,4436,13,4679,19 +39383,Frontline: D-Day,4436,13,4679,19 +42006,Glücks-Piraten,4436,13,4679,19 +51197,Hippos & Crocodiles,4436,13,4679,19 +67239,Catan Histories: Settlers of America – Trails to Rails,4436,13,4679,19 +71655,Wok Star,4436,13,4679,19 +76203,RRR,4436,13,4679,19 +86156,Reverse Charades,4436,13,4679,19 +99358,Stonewall Jackson's Way II: Battles of Bull Run,4436,13,4679,19 +101930,Carnival,4436,13,4679,19 +104376,Bonbons,4436,13,4679,19 +108157,Kalimambo,4436,13,4679,19 +113324,Dungeon Delver,4436,13,4679,19 +123536,GOSU 2: Tactics,4436,13,4679,19 +127981,Dungeon Heroes,4436,13,4679,19 +129904,Shadows over Camelot: The Card Game,4436,13,4679,19 +143484,Florenza: The Card Game,4436,13,4679,19 +147614,Crazy Time,4436,13,4679,19 +147883,Lost Legacy: Hyakunen Senso to Ryu no Miko,4436,13,4679,19 +155460,The Hobbit: An Unexpected Journey Deck-Building Game,4436,13,4679,19 +164158,SHH,4436,13,4679,19 +164917,Bananagrams WildTiles,4436,13,4679,19 +172480,Roar! Catch the Monster,4436,13,4679,19 +173003,Brix,4436,13,4679,19 +177802,Smash Up: It's Your Fault!,4436,13,4679,19 +188164,B-17 Flying Fortress Leader,4436,13,4679,19 +188181,Avignon: A Clash of Popes,4436,13,4679,19 +188614,Simon's Cat Card Game,4436,13,4679,19 +191177,Space Race: The Card Game,4436,13,4679,19 +194194,Pędzące Ślimaki,4436,13,4679,19 +194923,Techno Bowl: Arcade Football Unplugged,4436,13,4679,19 +197786,Say my Name,4436,13,4679,19 +198832,Legends Untold: Weeping Caves Novice Set,4436,13,4679,19 +207310,Infected,4436,13,4679,19 +216578,Half-Pint Heroes,4436,13,4679,19 +218376,Direwild,4436,13,4679,19 +224794,Carreau,4436,13,4679,19 +232437,Schollen Rollen,4436,13,4679,19 +236248,Small Islands,4436,13,4679,19 +246150,Arraial,4436,13,4679,19 +255293,One Night Ultimate Super Villains,4436,13,4679,19 +256839,VektoRace,4436,13,4679,19 +263360,Shy Monsters,4436,13,4679,19 +301255,Whistle Mountain,4436,13,4679,19 +309408,Arcana Rising,4436,13,4679,19 +319910,Pagan: Fate of Roanoke,4436,13,4679,19 +329450,Equinox,4436,13,4679,19 +336936,L.A.M.A.: 3 Gry w 1,4436,13,4679,19 +339905,Love Letter: Princess Princess Ever After,4436,13,4679,19 +339906,The Hunger,4436,13,4679,19 +342372,The Elder Scrolls V: Skyrim – The Adventure Game,4436,13,4679,19 +353150,FYFE,4436,13,4679,19 +361598,At the Helm,4436,13,4679,19 +378758,Imperial Miners,4436,13,4679,19 +392023,Mycelia,4436,13,4679,19 +2,Dragonmaster,4436,13,5069,18 +782,"Win, Place & Show",4436,13,5069,18 +1150,Lionheart,4436,13,5069,18 +4610,Lord of the Rings: The Duel,4436,13,5069,18 +5195,The Farming Game,4436,13,5069,18 +7480,"Sword of Rome: Conquest of Italy, 362-272 BC",4436,13,5069,18 +8045,Princes of the Renaissance,4436,13,5069,18 +12194,Munchkin Bites!,4436,13,5069,18 +12318,Typo,4436,13,5069,18 +17465,Cowboys: The Way of the Gun,4436,13,5069,18 +19918,No Stress Chess,4436,13,5069,18 +23679,"Warriors of God: The Wars of England & France, 1135-1453",4436,13,5069,18 +23757,NHL Ice Breaker: The Card Hockey Board Game,4436,13,5069,18 +25584,If Wishes Were Fishes!,4436,13,5069,18 +27389,Smart Ass,4436,13,5069,18 +32666,Wealth of Nations,4436,13,5069,18 +35572,Strozzi,4436,13,5069,18 +38718,Normandy '44,4436,13,5069,18 +65334,Flash Duel,4436,13,5069,18 +66047,Fast Lane,4436,13,5069,18 +66798,Heckmeck Barbecue,4436,13,5069,18 +67181,PIX,4436,13,5069,18 +75165,De Vulgari Eloquentia,4436,13,5069,18 +84772,"Sun, Sea & Sand",4436,13,5069,18 +99808,Pizza Theory,4436,13,5069,18 +104377,TSCHAK!,4436,13,5069,18 +111732,Kings of Air and Steam,4436,13,5069,18 +117707,Wanzen tanzen,4436,13,5069,18 +128568,(Your Name Here) and the Argonauts,4436,13,5069,18 +128666,BANG! 10th Anniversary,4436,13,5069,18 +129122,Band of Brothers: Ghost Panzer,4436,13,5069,18 +134157,Guilds of London,4436,13,5069,18 +137933,Dicht dran,4436,13,5069,18 +139131,Hoplomachus: Rise of Rome,4436,13,5069,18 +144579,Pizza Party,4436,13,5069,18 +146221,Forge War,4436,13,5069,18 +149241,Assault on Doomrock,4436,13,5069,18 +154902,Diner,4436,13,5069,18 +156091,Sons of Anarchy: Men of Mayhem,4436,13,5069,18 +156442,Asking for Trobils,4436,13,5069,18 +162093,I Hate Zombies,4436,13,5069,18 +163154,Falling Sky: The Gallic Revolt Against Caesar,4436,13,5069,18 +165872,Liberty or Death: The American Insurrection,4436,13,5069,18 +172310,Kakerlaloop,4436,13,5069,18 +177499,WWE Superstar Showdown,4436,13,5069,18 +179933,Agility,4436,13,5069,18 +181761,Plums,4436,13,5069,18 +181797,Inhabit the Earth,4436,13,5069,18 +183949,Aloha Pioha,4436,13,5069,18 +188178,Draconis Invasion,4436,13,5069,18 +194723,Mask of Anubis,4436,13,5069,18 +195137,Catacombs (Third Edition),4436,13,5069,18 +197409,The Heroes of Kaskaria,4436,13,5069,18 +200058,Harvest,4436,13,5069,18 +202564,Cookie Box,4436,13,5069,18 +218479,Cerebria: The Inside World,4436,13,5069,18 +218804,Imaginarium,4436,13,5069,18 +219621,Walk the Plank: Deluxe Edition,4436,13,5069,18 +221155,Donning the Purple,4436,13,5069,18 +223360,¡Cobardes!,4436,13,5069,18 +226312,Button Men: Beat People Up,4436,13,5069,18 +226454,Miaui,4436,13,5069,18 +230751,Carcassonne für 2,4436,13,5069,18 +230765,Side Effects,4436,13,5069,18 +231197,Raxxon,4436,13,5069,18 +238638,Castell,4436,13,5069,18 +245271,Forbidden Sky,4436,13,5069,18 +249233,Filler,4436,13,5069,18 +254683,Dodos Riding Dinos,4436,13,5069,18 +255658,Talisman: Legendary Tales,4436,13,5069,18 +258244,Discover: Lands Unknown,4436,13,5069,18 +260757,Lift Off,4436,13,5069,18 +272538,1828,4436,13,5069,18 +272542,Jumanji Fluxx,4436,13,5069,18 +286735,Muffin Time,4436,13,5069,18 +288284,Flash 8,4436,13,5069,18 +306656,Coup + Reforma,4436,13,5069,18 +307997,Insider Black,4436,13,5069,18 +317321,Darkest Dungeon: The Board Game,4436,13,5069,18 +317981,Coyote,4436,13,5069,18 +320538,Escape Advent Calendar: The Sunken Submarine,4436,13,5069,18 +330532,Hashi,4436,13,5069,18 +332075,Warhammer Quest: Cursed City,4436,13,5069,18 +338434,Hoplomachus: Remastered,4436,13,5069,18 +351155,Recto Verso,4436,13,5069,18 +352593,River Wild,4436,13,5069,18 +353411,Wreckland Run,4436,13,5069,18 +359764,Shake That City,4436,13,5069,18 +361214,Order Overload: Cafe,4436,13,5069,18 +84,Rommel in the Desert,4436,13,5525,17 +404,Worm Up!,4436,13,5525,17 +941,Turbo Taxi,4436,13,5525,17 +963,The Gardens of the Alhambra,4436,13,5525,17 +1017,Fresh Fish,4436,13,5525,17 +2094,4 First Games,4436,13,5525,17 +2612,18AL,4436,13,5525,17 +2629,Ramses II,4436,13,5525,17 +2968,Ka-Ching!,4436,13,5525,17 +6778,The Settlers of Zarahemla,4436,13,5525,17 +12477,Bootleggers,4436,13,5525,17 +12761,Ys,4436,13,5525,17 +15954,Conquest of Paradise,4436,13,5525,17 +16142,Geisterwäldchen,4436,13,5525,17 +19947,Ark,4436,13,5525,17 +22038,Warrior Knights,4436,13,5525,17 +22287,Buccaneer,4436,13,5525,17 +22303,Celebrities,4436,13,5525,17 +22399,MixUp,4436,13,5525,17 +24568,Rumis+,4436,13,5525,17 +27766,Die Siedler von Catan: Junior,4436,13,5525,17 +29017,Dschungelschatz,4436,13,5525,17 +30932,Lascaux,4436,13,5525,17 +31971,Burgoo,4436,13,5525,17 +34001,Burgen Land,4436,13,5525,17 +35350,Field Commander: Alexander,4436,13,5525,17 +40491,Verflixxt! kompakt,4436,13,5525,17 +40769,Valdora,4436,13,5525,17 +41833,Creationary,4436,13,5525,17 +42892,The Isle of Doctor Necreaux,4436,13,5525,17 +63897,Shave a Sheep,4436,13,5525,17 +92190,Super Dungeon Explore,4436,13,5525,17 +94365,Sultans of Karaya,4436,13,5525,17 +96704,Fealty,4436,13,5525,17 +130999,Diavolo,4436,13,5525,17 +131493,Secret Code 13+4,4436,13,5525,17 +133632,Mythotopia,4436,13,5525,17 +137744,Tessen,4436,13,5525,17 +139992,Kaosball: The Fantasy Sport of Total Domination,4436,13,5525,17 +141430,Geek Out!,4436,13,5525,17 +156138,Happy Pigs,4436,13,5525,17 +167698,Magic: The Gathering – Arena of the Planeswalkers,4436,13,5525,17 +169794,Haspelknecht: The Story of Early Coal Mining,4436,13,5525,17 +171419,My First Bohnanza,4436,13,5525,17 +171964,The Order of Vampire Hunters,4436,13,5525,17 +176262,Fleet Wharfside,4436,13,5525,17 +176544,Automania,4436,13,5525,17 +177197,Ekö,4436,13,5525,17 +177875,The Last Spike,4436,13,5525,17 +179217,Wonky,4436,13,5525,17 +180592,Steam Time,4436,13,5525,17 +186701,Burger Up,4436,13,5525,17 +189067,Cavern Tavern,4436,13,5525,17 +191972,Dynasties: Heirate & Herrsche,4436,13,5525,17 +200726,Rocky Road à la Mode,4436,13,5525,17 +202755,Guildhall Fantasy: Fellowship,4436,13,5525,17 +203759,The Walking Dead: No Sanctuary,4436,13,5525,17 +204734,Stick Stack,4436,13,5525,17 +205185,Einstein: His Amazing Life and Incomparable Science,4436,13,5525,17 +205317,DOOM: The Board Game,4436,13,5525,17 +207338,Dungeon Rush,4436,13,5525,17 +207991,Quodd Heroes,4436,13,5525,17 +210274,Petrichor,4436,13,5525,17 +215463,Tokyo Highway,4436,13,5525,17 +228328,Rurik: Dawn of Kiev,4436,13,5525,17 +229240,Ancestree,4436,13,5525,17 +229741,Shadows in Kyoto,4436,13,5525,17 +231038,Dreamscape,4436,13,5525,17 +233262,Tidal Blades: Heroes of the Reef,4436,13,5525,17 +233973,Huns,4436,13,5525,17 +235555,Bios: Origins (Second Edition),4436,13,5525,17 +236484,Facecards,4436,13,5525,17 +242684,Reavers of Midgard,4436,13,5525,17 +253652,Combat!,4436,13,5525,17 +256802,Fool!,4436,13,5525,17 +272599,Deadly Doodles,4436,13,5525,17 +275973,Curios,4436,13,5525,17 +278373,Twisty Little Passages,4436,13,5525,17 +279720,Streets,4436,13,5525,17 +280132,Robin of Locksley,4436,13,5525,17 +286537,Burgle Bros 2: The Casino Capers,4436,13,5525,17 +287638,Roméo & Juliette,4436,13,5525,17 +295293,The Thing: The Boardgame,4436,13,5525,17 +296626,Sonora,4436,13,5525,17 +299171,The Key: Theft at Cliffrock Villa,4436,13,5525,17 +302477,Kittin,4436,13,5525,17 +306709,The Night Cage,4436,13,5525,17 +309630,Small World of Warcraft,4436,13,5525,17 +312463,Duck,4436,13,5525,17 +312786,Poetry for Neanderthals,4436,13,5525,17 +314009,Pirate Legends,4436,13,5525,17 +315631,Santorini: New York,4436,13,5525,17 +315937,X-Men: Mutant Insurrection,4436,13,5525,17 +319529,Spukstaben,4436,13,5525,17 +322561,Dice Throne: Season One ReRolled – Barbarian v. Moon Elf,4436,13,5525,17 +326908,La Morada Maldita,4436,13,5525,17 +329204,Escape from Stalingrad Z,4436,13,5525,17 +333539,The Siege of Runedar,4436,13,5525,17 +338476,Lorenzo il Magnifico: Big Box,4436,13,5525,17 +342848,World of Warcraft: Wrath of the Lich King,4436,13,5525,17 +356226,Exploding Kittens: 2-Player Version,4436,13,5525,17 +393352,Perfect Words,4436,13,5525,17 +363,Cat Blues,4436,13,6010,16 +827,Attila,4436,13,6010,16 +2781,My Word!,4436,13,6010,16 +6420,Cranium Cadoo,4436,13,6010,16 +17166,Clout Fantasy,4436,13,6010,16 +20082,Pecunia non olet: Geld stinkt nicht,4436,13,6010,16 +21920,Leonardo da Vinci,4436,13,6010,16 +23094,Planet Steam,4436,13,6010,16 +24770,Quietville,4436,13,6010,16 +28218,Cash-a-Catch,4436,13,6010,16 +35812,Wild Vikings,4436,13,6010,16 +39339,Android,4436,13,6010,16 +40935,Zoowaboo,4436,13,6010,16 +42898,Pocket Battles: Celts vs. Romans,4436,13,6010,16 +66193,It Happens..,4436,13,6010,16 +67038,Charly,4436,13,6010,16 +73316,Magnum Sal,4436,13,6010,16 +92643,Artus,4436,13,6010,16 +96792,The Road to Canterbury,4436,13,6010,16 +109291,Sails of Glory,4436,13,6010,16 +118568,Ubongo! Junior,4436,13,6010,16 +124668,The Dwarves,4436,13,6010,16 +127312,Enigma,4436,13,6010,16 +143176,Steam Works,4436,13,6010,16 +144041,Patchistory,4436,13,6010,16 +145842,Monopoly Empire,4436,13,6010,16 +147170,El Grande Decennial Edition,4436,13,6010,16 +154825,Arkwright,4436,13,6010,16 +158572,Waggle Dance,4436,13,6010,16 +160784,Fidelitas,4436,13,6010,16 +162009,The U.S. Civil War,4436,13,6010,16 +180937,Nut Job,4436,13,6010,16 +181796,The Prodigals Club,4436,13,6010,16 +186265,Minecraft Card Game?,4436,13,6010,16 +186323,Tavarua,4436,13,6010,16 +186721,Healthy Heart Hospital,4436,13,6010,16 +192297,America,4436,13,6010,16 +199383,Calimala,4436,13,6010,16 +202982,Scrawl,4436,13,6010,16 +210908,Rail Pass,4436,13,6010,16 +216632,Tournament at Camelot,4436,13,6010,16 +218995,Santo Domingo,4436,13,6010,16 +219708,Professor Evil and The Citadel of Time,4436,13,6010,16 +220203,Purrrlock Holmes: Furriarty's Trail,4436,13,6010,16 +220784,The Legend of the Cherry Tree that Blossoms Every Ten Years,4436,13,6010,16 +223278,The Palace of Mad King Ludwig,4436,13,6010,16 +228660,Betrayal at Baldur's Gate,4436,13,6010,16 +229370,Rescue Polar Bears: Data & Temperature,4436,13,6010,16 +230085,Agra,4436,13,6010,16 +231962,Krazy Wordz,4436,13,6010,16 +241488,Where's Mr. Wolf?,4436,13,6010,16 +245994,The Dead Eye,4436,13,6010,16 +247236,Duelosaur Island,4436,13,6010,16 +261720,Finca,4436,13,6010,16 +262114,Rival Restaurants,4436,13,6010,16 +280203,Chicken Chicken,4436,13,6010,16 +287322,Mystic Market,4436,13,6010,16 +293275,Flyin' Goblin,4436,13,6010,16 +296345,Sherlock Holmes Consulting Detective: The Baker Street Irregulars,4436,13,6010,16 +302520,Hues and Cues,4436,13,6010,16 +303830,Mass Transit,4436,13,6010,16 +308989,Bristol 1350,4436,13,6010,16 +319592,Micro Dojo,4436,13,6010,16 +324711,Schadenfreude,4436,13,6010,16 +334379,Doodle Dash,4436,13,6010,16 +337329,Canvas: Deluxe Edition,4436,13,6010,16 +337765,Brian Boru: High King of Ireland,4436,13,6010,16 +338628,Trails,4436,13,6010,16 +351526,Encyclopedia,4436,13,6010,16 +352418,Fliptown,4436,13,6010,16 +364186,Terra Nova,4436,13,6010,16 +365104,Planted: A Game of Nature & Nurture,4436,13,6010,16 +374562,Star Wars: Shatterpoint,4436,13,6010,16 +249,Lifeboats,4436,13,6574,15 +499,Arbos,4436,13,6574,15 +1036,Speculation,4436,13,6574,15 +1042,Dragon's Gold,4436,13,6574,15 +4324,Risk: The Lord of the Rings,4436,13,6574,15 +26859,Kragmortha,4436,13,6574,15 +27848,Age of Conan: The Strategy Board Game,4436,13,6574,15 +34227,Blox,4436,13,6574,15 +39332,Tasso,4436,13,6574,15 +43530,Party Alias,4436,13,6574,15 +66437,Souvlaki Wars,4436,13,6574,15 +114031,Copycat,4436,13,6574,15 +129351,The Cave,4436,13,6574,15 +181523,Snowblind: Race for the Pole,4436,13,6574,15 +184522,Dead Last,4436,13,6574,15 +185589,Islebound,4436,13,6574,15 +192185,Matryoshka,4436,13,6574,15 +192945,Coal Baron: The Great Card Game,4436,13,6574,15 +227515,Riverboat,4436,13,6574,15 +261901,Tokyo Highway,4436,13,6574,15 +265381,DANY,4436,13,6574,15 +275284,Arkeis,4436,13,6574,15 +276502,Roads & Boats: 20th Anniversary Edition,4436,13,6574,15 +283294,Yukon Airways,4436,13,6574,15 +283387,Rocketmen,4436,13,6574,15 +285036,Shadow Kingdoms of Valeria,4436,13,6574,15 +298102,Roll Camera!: The Filmmaking Board Game,4436,13,6574,15 +298638,Sheriff of Nottingham: 2nd Edition,4436,13,6574,15 +312318,Century: Golem Edition – An Endless World,4436,13,6574,15 +313919,Aliens: Bug Hunt,4436,13,6574,15 +327056,Unlock! Kids: Detective Stories,4436,13,6574,15 +333553,For the King (and Me),4436,13,6574,15 +342070,Thunder Road: Vendetta,4436,13,6574,15 +342810,Marrakesh,4436,13,6574,15 +363369,Starship Captains,4436,13,6574,15 +388329,Waypoints,4436,13,6574,15 +398162,MicroMacro: Crime City – Showdown,4436,13,6574,15 +96713,Deadwood,4436,13,7272,14 +126100,Mythos Tales,4436,13,7272,14 +279135,Cat Café,4436,13,7272,14 +300751,Mini Express,4436,13,7272,14 +361850,Nimalia,4436,13,7272,14 +366752,The Great Split,4436,13,7272,14 +352567,Jurassic World: The Legacy of Isla Nublar,4436,13,8014,13 +4014,Dawn Patrol: Role Playing Game of WW I Air Combat,4996,12,929,53 +15000,Word Basket,4996,12,1118,48 +3279,Magi-Nation Duel,4996,12,1285,44 +3464,Melee,4996,12,1549,39 +242227,"Nightfighter Ace: Air Defense Over Germany, 1943-44",4996,12,1549,39 +88900,Yaniv,4996,12,1867,35 +3487,BattleTech TCG,4996,12,2048,33 +5546,Marbles,4996,12,2048,33 +19,Wacky Wacky West,4996,12,2261,31 +2553,Bali,4996,12,2261,31 +195237,Leaders of Euphoria: Choose a Better Oppressor,4996,12,2261,31 +281657,Malifaux (Third Edition),4996,12,2261,31 +1161,Perquackey,4996,12,2387,30 +8495,De Bellis Multitudinis: Wargames Rules for Ancient and Medieval Battles – 3000 BC to 1500 AD,4996,12,2387,30 +112694,Hockey Blast Pro Hockey Game,4996,12,2387,30 +27190,Battleships,4996,12,2512,29 +158947,Fantasy Dice Battles,4996,12,2512,29 +184170,DiceWar: Light of Dragons,4996,12,2512,29 +308385,Nytelyfe Solitaire,4996,12,2512,29 +309341,5x15,4996,12,2512,29 +321713,Quest Calendar: The Dragon Staff of Maladoria,4996,12,2512,29 +280,Neue Spiele im alten Rom,4996,12,2647,28 +5369,Hordes of the Things,4996,12,2647,28 +16387,3D Tic Tac Toe,4996,12,2647,28 +39976,Volta,4996,12,2647,28 +75957,Slither,4996,12,2647,28 +302238,Crazy Farmers and the Clôtures Électriques,4996,12,2647,28 +310888,Bobail,4996,12,2647,28 +369993,FUSE Countdown,4996,12,2647,28 +31770,Joker Marbles,4996,12,2807,27 +67631,Scrabble Flash,4996,12,2807,27 +88301,Biljard,4996,12,2807,27 +160524,Soccer Blast Pro Soccer Game,4996,12,2807,27 +446,Avalanche,4996,12,2967,26 +3063,March Madness,4996,12,2967,26 +6663,Lunar Rails,4996,12,2967,26 +21358,Savage Worlds,4996,12,2967,26 +25182,24/7: The Game,4996,12,3155,25 +27451,Activity 2,4996,12,3155,25 +182770,DC Comics Dice Masters: World's Finest,4996,12,3155,25 +352,Trumpet,4996,12,3361,24 +549,Aerodrome,4996,12,3361,24 +935,Australian Rails,4996,12,3361,24 +3608,Air Force,4996,12,3361,24 +9211,Screwball Scramble,4996,12,3361,24 +15832,Cheat,4996,12,3361,24 +39080,IGOR: The Monster Making Game,4996,12,3361,24 +40182,Telepathy,4996,12,3361,24 +101786,Dust Tactics: Revised Core Set,4996,12,3361,24 +176980,Helionox: The Last Sunset,4996,12,3361,24 +189663,Dungeon Solitaire: Labyrinth of Souls,4996,12,3361,24 +380134,Orion Duel,4996,12,3361,24 +77,"EastFront: The War in Russia, 1941-45",4996,12,3592,23 +1126,Car Wars: The Card Game,4996,12,3592,23 +2759,Havannah,4996,12,3592,23 +4556,Patton's Best,4996,12,3592,23 +26353,Scum,4996,12,3592,23 +33924,Nightfighter,4996,12,3592,23 +118177,Connections,4996,12,3592,23 +144526,Glastonbury,4996,12,3592,23 +283474,Star Wars: Legion – Clone Wars Core Set,4996,12,3592,23 +354201,Tuned,4996,12,3592,23 +1800,Mythos,4996,12,3819,22 +4077,Who Wants to Be a Millionaire,4996,12,3819,22 +4792,Tiddledy Winks,4996,12,3819,22 +11456,Zilch,4996,12,3819,22 +27970,Star Wars PocketModel TCG,4996,12,3819,22 +38429,Cornerstone,4996,12,3819,22 +54221,Push Fight,4996,12,3819,22 +87288,Cinco,4996,12,3819,22 +102897,Farmageddon,4996,12,3819,22 +131246,Siberia: The Card Game,4996,12,3819,22 +140960,Raccoon Rumpus,4996,12,3819,22 +184145,Flash Duel: Revised Second Edition,4996,12,3819,22 +202819,Gnomopolis,4996,12,3819,22 +210418,Tavern Masters,4996,12,3819,22 +251722,Triad,4996,12,3819,22 +255689,UNO Pocket,4996,12,3819,22 +267979,Tiwanaku,4996,12,3819,22 +269766,Soulaween,4996,12,3819,22 +387866,Star Wars: Unlimited – Spark of Rebellion,4996,12,3819,22 +97,Conquest of the Empire,4996,12,4078,21 +264,Enemy in Sight,4996,12,4078,21 +316,Chase,4996,12,4078,21 +1730,Trap the Cap,4996,12,4078,21 +1992,Stop Thief,4996,12,4078,21 +3341,Burn Rate,4996,12,4078,21 +5775,Electronic Whac-a-Mole,4996,12,4078,21 +25617,Korona,4996,12,4078,21 +37349,Cthulhu Rising,4996,12,4078,21 +53317,Pictureka! Card Game,4996,12,4078,21 +118515,Piranhas,4996,12,4078,21 +129976,Game of Thrones: The Card Game,4996,12,4078,21 +140951,Thunderstone: Starter Set,4996,12,4078,21 +146725,Golem Arcana,4996,12,4078,21 +147681,Black Stories: Shit Happens Edition,4996,12,4078,21 +159570,SOS: Sheep in Trouble,4996,12,4078,21 +171447,Bad Bunnies,4996,12,4078,21 +178591,Lunarchitects,4996,12,4078,21 +184207,Het Koninkrijk Dominion,4996,12,4078,21 +198775,Yesss!,4996,12,4078,21 +204498,Match Madness,4996,12,4078,21 +246530,Star Trek: The Next Generation Fluxx,4996,12,4078,21 +250822,Title Bout II,4996,12,4078,21 +275972,Star Trek: Alliance – Dominion War Campaign,4996,12,4078,21 +325409,Fantasy Fluxx,4996,12,4078,21 +334207,Homeworlds,4996,12,4078,21 +368119,Gosu X,4996,12,4078,21 +436,Canyon,4996,12,4352,20 +440,Zoff in Buffalo,4996,12,4352,20 +449,The Great Balloon Race,4996,12,4352,20 +1254,Crack the Case,4996,12,4352,20 +1830,Nippon Rails,4996,12,4352,20 +1875,Isolation,4996,12,4352,20 +10293,En busca del Imperio Cobra,4996,12,4352,20 +14102,Toss Up!,4996,12,4352,20 +15110,Partners,4996,12,4352,20 +76322,Double Bananagrams,4996,12,4352,20 +82424,Bangkok Klongs,4996,12,4352,20 +99459,Banjooli Xeet,4996,12,4352,20 +162388,BattleCON: Fate of Indines,4996,12,4352,20 +164698,Fresh Fish,4996,12,4352,20 +175224,Rumpelstiltskin,4996,12,4352,20 +191999,Uglydoll Loonacy,4996,12,4352,20 +204592,The Mysterious Forest,4996,12,4352,20 +224149,Deadball,4996,12,4352,20 +227422,Whoosh: Bounty Hunters,4996,12,4352,20 +229742,Zoo Ball,4996,12,4352,20 +236475,The Werewolves of Miller's Hollow: Best Of,4996,12,4352,20 +242569,Penny Papers Adventures: The Valley of Wiraqocha,4996,12,4352,20 +247106,Space Marine Adventures: Labyrinth of the Necrons,4996,12,4352,20 +249095,Blooms,4996,12,4352,20 +271270,12 Patrols,4996,12,4352,20 +292917,Mosquito Show,4996,12,4352,20 +308755,Ascension: Eternal,4996,12,4352,20 +354342,Marvel Mayhem,4996,12,4352,20 +225,Icehouse,4996,12,4679,19 +1835,Scrutineyes,4996,12,4679,19 +1877,Pig Pile,4996,12,4679,19 +2667,What Were You Thinking?,4996,12,4679,19 +2876,Mage Knight Dungeons,4996,12,4679,19 +3977,Strong Stuff!,4996,12,4679,19 +5065,Fubi,4996,12,4679,19 +5684,18EU,4996,12,4679,19 +8829,Nobody Is Perfect,4996,12,4679,19 +9386,IceTowers,4996,12,4679,19 +15386,Eye to Eye,4996,12,4679,19 +17710,Conquest of the Empire,4996,12,4679,19 +17988,Die Dolmengötter,4996,12,4679,19 +18880,Daddy Cool,4996,12,4679,19 +19046,Ruckus,4996,12,4679,19 +20675,King's Blood,4996,12,4679,19 +32471,Mafia,4996,12,4679,19 +39290,Jacynth,4996,12,4679,19 +39704,Emu Ranchers,4996,12,4679,19 +42111,Fzzzt!,4996,12,4679,19 +42685,Connect 4x4,4996,12,4679,19 +67148,Ultimate Werewolf: Compact Edition,4996,12,4679,19 +85652,Dystopian Wars: Core Rulebook,4996,12,4679,19 +104555,The Blue Lion,4996,12,4679,19 +119193,Crazy Creatures of Dr. Gloom,4996,12,4679,19 +142961,Thunderstone Advance: Numenera,4996,12,4679,19 +152053,Lagoon: Land of Druids,4996,12,4679,19 +156108,Regular Show Fluxx,4996,12,4679,19 +170477,Dino Dude Ranch,4996,12,4679,19 +178688,Dicetopia,4996,12,4679,19 +181245,OMG,4996,12,4679,19 +181819,Sorcerer,4996,12,4679,19 +191624,Bear Valley,4996,12,4679,19 +213421,Monster Kit,4996,12,4679,19 +246754,Zoinx!,4996,12,4679,19 +256980,The Color Monster,4996,12,4679,19 +257706,Zoo-ography,4996,12,4679,19 +265031,Ice Team,4996,12,4679,19 +283619,Century: Golem Edition – Eastern Mountains,4996,12,4679,19 +288828,Opale,4996,12,4679,19 +298477,Tellstones: King's Gambit,4996,12,4679,19 +302417,Mia London and the Case of the 625 Scoundrels,4996,12,4679,19 +314349,Claim Pocket,4996,12,4679,19 +326933,Unmatched: Redemption Row,4996,12,4679,19 +330602,Inspektor Nase,4996,12,4679,19 +342343,Birdwatcher,4996,12,4679,19 +352238,Turncoats,4996,12,4679,19 +352997,UNO: All Wild!,4996,12,4679,19 +360206,Discordia,4996,12,4679,19 +365186,The Crimson Scales,4996,12,4679,19 +370444,Hard to Get,4996,12,4679,19 +375852,My Lil' Everdell,4996,12,4679,19 +450,Octi,4996,12,5069,18 +793,Yahtzee Deluxe Poker,4996,12,5069,18 +1002,Cosmic Eidex,4996,12,5069,18 +1552,Illuminati: New World Order,4996,12,5069,18 +2047,Up the Creek,4996,12,5069,18 +3040,Star Trek: Starship Tactical Combat Simulator,4996,12,5069,18 +5178,Marrakesh,4996,12,5069,18 +6978,Neutron,4996,12,5069,18 +9617,Russian Rails,4996,12,5069,18 +13373,Choco,4996,12,5069,18 +13530,Sole Mio!,4996,12,5069,18 +13972,Party & Co,4996,12,5069,18 +14036,Jok-R-ummy,4996,12,5069,18 +17484,Silent War,4996,12,5069,18 +19651,Angkor,4996,12,5069,18 +23550,WordSpot,4996,12,5069,18 +26472,Dragon Parade,4996,12,5069,18 +29687,Leaping Lemmings,4996,12,5069,18 +30328,Battleground: Crossbows & Catapults,4996,12,5069,18 +32129,Taktika,4996,12,5069,18 +32165,Darjeeling,4996,12,5069,18 +32405,Alles Tomate!,4996,12,5069,18 +35935,Day & Night,4996,12,5069,18 +36599,Level Up,4996,12,5069,18 +38797,Uruk: Wiege der Zivilisation,4996,12,5069,18 +65134,Sorry! Revenge Card Game,4996,12,5069,18 +71906,Castaways,4996,12,5069,18 +75547,Shipwrights of the North Sea,4996,12,5069,18 +85769,Panzer: The Game of Small Unit Actions and Combined Arms Operations on the Eastern Front 1943-45,4996,12,5069,18 +89668,BITS,4996,12,5069,18 +94732,Heroica: Draida,4996,12,5069,18 +123370,Nox,4996,12,5069,18 +123576,Sheepland,4996,12,5069,18 +124047,Pirate Dice: Voyage on the Rolling Seas,4996,12,5069,18 +127095,Origin,4996,12,5069,18 +142432,Continental Express,4996,12,5069,18 +146735,Munchkin Adventure Time,4996,12,5069,18 +167604,Rollet,4996,12,5069,18 +175496,Cauldron Quest,4996,12,5069,18 +175763,Behind the Throne,4996,12,5069,18 +178147,Gwent: Monsters and Scoia'tael,4996,12,5069,18 +182047,Austerity,4996,12,5069,18 +184424,Mega Civilization,4996,12,5069,18 +186475,Tofu Kingdom,4996,12,5069,18 +191681,Lagoonies,4996,12,5069,18 +191710,Catan: Big Box,4996,12,5069,18 +193670,Darkest Night: Second Edition,4996,12,5069,18 +196202,Rum & Bones: Second Tide,4996,12,5069,18 +199611,Shiftago,4996,12,5069,18 +200511,After the Empire,4996,12,5069,18 +228959,Alubari: A Nice Cup of Tea,4996,12,5069,18 +233868,HATE,4996,12,5069,18 +233955,Montana,4996,12,5069,18 +245197,Deadwood 1876,4996,12,5069,18 +245824,Cat Rescue,4996,12,5069,18 +251441,Antinomy,4996,12,5069,18 +251830,Alhambra: Mega Box,4996,12,5069,18 +253372,Minerals,4996,12,5069,18 +255013,Fairy Tale Fluxx,4996,12,5069,18 +258818,Connect 4: Shots,4996,12,5069,18 +278971,Why I Otter,4996,12,5069,18 +285773,Arkham Horror: Final Hour,4996,12,5069,18 +287589,Red Outpost,4996,12,5069,18 +299028,Dream Catcher,4996,12,5069,18 +300509,Kiitos,4996,12,5069,18 +300727,The Coldest Night,4996,12,5069,18 +304821,Animal Upon Animal: Christmas Edition,4996,12,5069,18 +318183,Prehistories,4996,12,5069,18 +324246,Journey to the Center of the Earth,4996,12,5069,18 +329670,Pandemic: Hot Zone – Europe,4996,12,5069,18 +346742,Fishing Lessons,4996,12,5069,18 +359406,Ecosystem: Coral Reef,4996,12,5069,18 +379290,Timeline Twist,4996,12,5069,18 +381297,Unmatched Adventures: Tales to Amaze,4996,12,5069,18 +200,Entdecker,4996,12,5525,17 +684,Monopoly: The Card Game,4996,12,5525,17 +766,Regatta,4996,12,5525,17 +788,Tales of the Arabian Nights,4996,12,5525,17 +1163,"Ciao, Ciao...",4996,12,5525,17 +2179,Musketeers,4996,12,5525,17 +3086,The Omega Virus,4996,12,5525,17 +3321,Die Pyramiden des Jaguar,4996,12,5525,17 +4107,Hang in There!,4996,12,5525,17 +5157,King's Court,4996,12,5525,17 +5232,Gnip Gnop,4996,12,5525,17 +6549,Pretty Pretty Princess,4996,12,5525,17 +7479,WarCraft: The Board Game,4996,12,5525,17 +7576,Thingamajig,4996,12,5525,17 +9284,Treasure Falls,4996,12,5525,17 +9829,Runebound,4996,12,5525,17 +10819,Navia Dratp,4996,12,5525,17 +11412,Wallamoppi,4996,12,5525,17 +12283,Manifest Destiny,4996,12,5525,17 +15157,Amazonas,4996,12,5525,17 +20133,FAB: The Bulge,4996,12,5525,17 +21704,Fiji,4996,12,5525,17 +25738,The Big Taboo,4996,12,5525,17 +27298,Owner's Choice,4996,12,5525,17 +29839,Key Harvest,4996,12,5525,17 +30381,Hamburgum,4996,12,5525,17 +32424,1848: Australia,4996,12,5525,17 +34958,Six,4996,12,5525,17 +36783,Jishaku,4996,12,5525,17 +40654,This Big!,4996,12,5525,17 +42244,Martinique,4996,12,5525,17 +55863,The Three Musketeers: The Queen's Pendants,4996,12,5525,17 +67910,Mini FITS,4996,12,5525,17 +88016,Briefcase,4996,12,5525,17 +92852,Say Anything Family Edition,4996,12,5525,17 +96188,Nuts!,4996,12,5525,17 +112192,Sugar Gliders,4996,12,5525,17 +122588,Dungeon Command: Sting of Lolth,4996,12,5525,17 +140709,Alhambra: Family Box,4996,12,5525,17 +142124,Tsukiji,4996,12,5525,17 +144567,For the Crown (Second Edition),4996,12,5525,17 +147190,Yggdrasil (Second Edition with Asgard Expansion),4996,12,5525,17 +152470,Fief: France 1429,4996,12,5525,17 +156453,Tutti Frutti,4996,12,5525,17 +161757,New Salem,4996,12,5525,17 +178044,Small Star Empires,4996,12,5525,17 +178839,Foodfighters,4996,12,5525,17 +180199,"Colonial Twilight: The French-Algerian War, 1954-62",4996,12,5525,17 +191387,Star Trek: The Dice Game,4996,12,5525,17 +196306,Guildhall Fantasy: Coalition,4996,12,5525,17 +200171,Legendary: Big Trouble in Little China,4996,12,5525,17 +203780,Power Grid: The Card Game,4996,12,5525,17 +217176,Crazy Race,4996,12,5525,17 +217423,Cosmic Run: Rapid Fire,4996,12,5525,17 +218179,Princess Jing,4996,12,5525,17 +220199,Snappy Dressers,4996,12,5525,17 +221643,Strawberry Ninja,4996,12,5525,17 +234468,Minute Realms,4996,12,5525,17 +235927,Dino World,4996,12,5525,17 +242482,Blight Chronicles: Agent Decker,4996,12,5525,17 +242667,Dark Souls: The Card Game,4996,12,5525,17 +245931,Neta-Tanka: Deluxe Edition,4996,12,5525,17 +247143,Senshi,4996,12,5525,17 +253215,Jetpack Joyride,4996,12,5525,17 +253635,Ragusa,4996,12,5525,17 +257411,This Game Goes to Eleven,4996,12,5525,17 +271038,Snowman Dice,4996,12,5525,17 +271264,The Liberation of Rietburg,4996,12,5525,17 +273993,Tonari,4996,12,5525,17 +283649,Deep Blue,4996,12,5525,17 +286081,Herrlof,4996,12,5525,17 +288533,Fish 'n' Flip,4996,12,5525,17 +289566,Hunted: Kobayashi Tower,4996,12,5525,17 +294652,By Stealth and Sea,4996,12,5525,17 +300700,Quetzal,4996,12,5525,17 +309208,Doudou,4996,12,5525,17 +309752,The Field of the Cloth of Gold,4996,12,5525,17 +315060,Unmatched: Buffy the Vampire Slayer,4996,12,5525,17 +324320,Planet etuC,4996,12,5525,17 +327062,Popcorn Dice,4996,12,5525,17 +333373,Tacocat Spelled Backwards,4996,12,5525,17 +335427,Wild: Serengeti,4996,12,5525,17 +340466,Unfathomable,4996,12,5525,17 +357028,Dungeon Fighter: Second Edition,4996,12,5525,17 +365983,Mada,4996,12,5525,17 +371356,Aventura Z: Vol 2 Heroes,4996,12,5525,17 +229,King of the Elves,4996,12,6010,16 +232,Serenissima,4996,12,6010,16 +290,Gold Digger,4996,12,6010,16 +492,Aladdin's Dragons,4996,12,6010,16 +620,We the People,4996,12,6010,16 +626,War and Peace,4996,12,6010,16 +805,Buffy the Vampire Slayer: The Game,4996,12,6010,16 +2652,Wise and Otherwise,4996,12,6010,16 +4090,2nd Fleet: Modern Naval Combat in the North Atlantic,4996,12,6010,16 +6535,Don't Wake Daddy,4996,12,6010,16 +6548,Heartthrob,4996,12,6010,16 +8730,Flying Colors,4996,12,6010,16 +9341,Lost Valley,4996,12,6010,16 +11057,The Great Battles of Alexander: Deluxe Edition,4996,12,6010,16 +13301,Caribbean,4996,12,6010,16 +15390,ハーベスト (Harvest),4996,12,6010,16 +21380,Conquest of the Fallen Lands,4996,12,6010,16 +23451,Space Dealer,4996,12,6010,16 +24762,Medici vs Strozzi,4996,12,6010,16 +25760,Zoff im Hühnerhof,4996,12,6010,16 +29294,World of Warcraft: The Adventure Game,4996,12,6010,16 +29972,El Capitán,4996,12,6010,16 +30356,Heartland,4996,12,6010,16 +31624,League of Six,4996,12,6010,16 +31790,"Crusade and Revolution: The Spanish Civil War, 1936-1939",4996,12,6010,16 +34599,Toledo,4996,12,6010,16 +38194,Cheaty Mages!,4996,12,6010,16 +38749,Catan Geographies: Germany,4996,12,6010,16 +40561,Curling Table Game,4996,12,6010,16 +41875,Trader,4996,12,6010,16 +43264,Pocket Rockets,4996,12,6010,16 +46746,Monster 4,4996,12,6010,16 +56690,Multiplayer Pentago,4996,12,6010,16 +60131,Ugg-Tect,4996,12,6010,16 +67453,Caveman Curling,4996,12,6010,16 +75223,Utopia Engine,4996,12,6010,16 +92876,Jurassik,4996,12,6010,16 +96260,Dominant Species: The Card Game,4996,12,6010,16 +96342,Black Stories: Holiday Edition,4996,12,6010,16 +99219,Swish,4996,12,6010,16 +101929,Sergeants Miniatures Game: Day of Days,4996,12,6010,16 +125977,Cataclysm: A Second World War,4996,12,6010,16 +128114,Hooyah: Navy Seals Card Game,4996,12,6010,16 +129710,Card City,4996,12,6010,16 +129820,Salmon Run,4996,12,6010,16 +140795,Say Bye to the Villains,4996,12,6010,16 +143843,Spot it! Party,4996,12,6010,16 +144388,Elevenses,4996,12,6010,16 +147474,8 Masters' Revenge,4996,12,6010,16 +148764,Feuerdrachen,4996,12,6010,16 +156853,Pirate Den,4996,12,6010,16 +159143,HUE,4996,12,6010,16 +160012,In a Bind,4996,12,6010,16 +161617,Dungeon Lords: Happy Anniversary,4996,12,6010,16 +162191,Look!,4996,12,6010,16 +163841,18CZ,4996,12,6010,16 +164686,Epic Monster Tea Party,4996,12,6010,16 +166317,Time of Soccer,4996,12,6010,16 +166372,Artificium,4996,12,6010,16 +171136,Pingo Pingo,4996,12,6010,16 +171665,Scotland Yard Junior,4996,12,6010,16 +172540,Dragoon,4996,12,6010,16 +172542,Push a Monster,4996,12,6010,16 +172596,Monster My Neighbor,4996,12,6010,16 +174802,VENOM Assault,4996,12,6010,16 +175324,Fog of Love,4996,12,6010,16 +176803,Overseers,4996,12,6010,16 +177697,Bang! The Dice Game: The Walking Dead,4996,12,6010,16 +188314,Topoum,4996,12,6010,16 +191067,Zock 'n' Roll,4996,12,6010,16 +197065,Valley of the Kings: Last Rites,4996,12,6010,16 +198985,Day Night Z,4996,12,6010,16 +200454,Planetarium,4996,12,6010,16 +203102,Buffy the Vampire Slayer: The Board Game,4996,12,6010,16 +210152,Bushido,4996,12,6010,16 +211716,John Company,4996,12,6010,16 +212516,Keyper,4996,12,6010,16 +216864,Card City XL,4996,12,6010,16 +220367,Empyreal: Spells & Steam,4996,12,6010,16 +220774,Codenames: Marvel,4996,12,6010,16 +221318,Whistle Stop,4996,12,6010,16 +232045,Shaky Manor,4996,12,6010,16 +241025,Penny Papers Adventures: Skull Island,4996,12,6010,16 +244333,Once Upon a Castle,4996,12,6010,16 +244795,Lost Cities: To Go,4996,12,6010,16 +244817,Farmini,4996,12,6010,16 +246742,Château Aventure,4996,12,6010,16 +250881,Dominations: Road to Civilization,4996,12,6010,16 +255708,Trekking the National Parks: Second Edition,4996,12,6010,16 +256065,Carcassonne: Safari,4996,12,6010,16 +257839,Arkham Noir: Case #2 – Called Forth By Thunder,4996,12,6010,16 +258308,Fuji,4996,12,6010,16 +261262,Blöde Kuh,4996,12,6010,16 +272738,Jaws,4996,12,6010,16 +279307,1942 USS Yorktown,4996,12,6010,16 +280986,Star Wars: Dark Side Rising,4996,12,6010,16 +282171,Trial by Trolley,4996,12,6010,16 +282765,Mint Cooperative,4996,12,6010,16 +283542,Latice Hawai'i,4996,12,6010,16 +291847,Mantis Falls,4996,12,6010,16 +292811,American Bookshop,4996,12,6010,16 +293309,Kraken Attack!,4996,12,6010,16 +296164,Yura Yura Penguin,4996,12,6010,16 +299172,The Key: Murder at the Oakdale Club,4996,12,6010,16 +300428,Terminator: Dark Fate – The Card Game,4996,12,6010,16 +300523,Biblios: Quill and Parchment,4996,12,6010,16 +300731,Valknut,4996,12,6010,16 +303554,Winter Kingdom,4996,12,6010,16 +305761,Whale Riders,4996,12,6010,16 +315059,Dream Crush,4996,12,6010,16 +322421,Aqua Garden,4996,12,6010,16 +323156,Stroganov,4996,12,6010,16 +325889,Valor & Villainy: Lludwik's Labyrinth,4996,12,6010,16 +334137,Top Ten 18+,4996,12,6010,16 +339302,Winterhaven Woods,4996,12,6010,16 +348220,Deep Rock Galactic: The Board Game,4996,12,6010,16 +348450,Lacrimosa,4996,12,6010,16 +364008,Maudit Mot Dit,4996,12,6010,16 +381278,Dracula vs Van Helsing,4996,12,6010,16 +101,Detroit-Cleveland Grand Prix,4996,12,6574,15 +511,Silverton,4996,12,6574,15 +639,American Megafauna,4996,12,6574,15 +855,Java,4996,12,6574,15 +1307,Haunted Castle,4996,12,6574,15 +2555,Vom Kap bis Kairo,4996,12,6574,15 +3267,Pizarro & Co.,4996,12,6574,15 +3828,Locomotive Werks,4996,12,6574,15 +4475,Unexpected Treasures,4996,12,6574,15 +5406,New England,4996,12,6574,15 +8190,The Bridges of Shangri-La,4996,12,6574,15 +10081,Axis & Allies: D-Day,4996,12,6574,15 +10383,Risk: Godstorm,4996,12,6574,15 +10908,Minotaur Lords,4996,12,6574,15 +17835,Monsters Menace America,4996,12,6574,15 +20080,Aqua Romana,4996,12,6574,15 +21892,Augsburg 1520,4996,12,6574,15 +23049,Hedbanz for Kids,4996,12,6574,15 +29410,Municipium,4996,12,6574,15 +35488,The Name of the Rose,4996,12,6574,15 +40831,The Pillars of the Earth: Builders Duel,4996,12,6574,15 +41541,Are You the Traitor?,4996,12,6574,15 +42444,Batt'l Kha'os,4996,12,6574,15 +54433,Nanuk,4996,12,6574,15 +63167,Undermining,4996,12,6574,15 +63778,Word on the Street Junior,4996,12,6574,15 +76674,String Railway,4996,12,6574,15 +81640,Florenza,4996,12,6574,15 +85036,20th Century,4996,12,6574,15 +91984,Québec,4996,12,6574,15 +94733,Heroica: Waldurk,4996,12,6574,15 +97357,Sunrise City,4996,12,6574,15 +104363,Rex: Final Days of an Empire,4996,12,6574,15 +104627,Feudalia,4996,12,6574,15 +109779,Garden Dice,4996,12,6574,15 +113636,Edo,4996,12,6574,15 +114903,Castellan,4996,12,6574,15 +122943,Scripts and Scribes: The Dice Game,4996,12,6574,15 +123499,City of Iron,4996,12,6574,15 +132544,Tesla vs. Edison: War of Currents,4996,12,6574,15 +137649,Level 7 [Omega Protocol],4996,12,6574,15 +138104,Warmachine: High Command,4996,12,6574,15 +141932,The Agents,4996,12,6574,15 +145012,Sultaniya,4996,12,6574,15 +157096,Historia,4996,12,6574,15 +158851,Play Me: Alice in Wonderdice,4996,12,6574,15 +161762,Wakanda,4996,12,6574,15 +162823,El Gaucho,4996,12,6574,15 +168839,Die Kutschfahrt zur Teufelsburg,4996,12,6574,15 +172381,My Village,4996,12,6574,15 +172837,Dead Man's Chest,4996,12,6574,15 +175636,Dragon Keepers,4996,12,6574,15 +178302,Welcome to Centerville,4996,12,6574,15 +184383,Disney Eye Found It!,4996,12,6574,15 +186864,Tiefe Taschen,4996,12,6574,15 +192830,ORC,4996,12,6574,15 +193728,Pendragon: The Fall of Roman Britain,4996,12,6574,15 +198455,Mystic ScROLLS,4996,12,6574,15 +203219,Rivals for Catan: Deluxe,4996,12,6574,15 +204574,The Flow of History,4996,12,6574,15 +207062,Dungeons & Dragons: Rock Paper Wizard,4996,12,6574,15 +207572,Holland '44: Operation Market-Garden,4996,12,6574,15 +209284,Hamster Clan,4996,12,6574,15 +209671,Zona: The Secret of Chernobyl,4996,12,6574,15 +209696,Star Saga,4996,12,6574,15 +216234,Pocket Ops,4996,12,6574,15 +223931,Sherlock Holmes Consulting Detective: Carlton House & Queen's Park,4996,12,6574,15 +226213,Cursed Court,4996,12,6574,15 +226631,War of the Worlds: The New Wave,4996,12,6574,15 +228101,Pajarracos,4996,12,6574,15 +229265,Wendake,4996,12,6574,15 +230265,Chronicles of Frost,4996,12,6574,15 +230266,Scare It!,4996,12,6574,15 +231027,Bye-Bye Black Sheep,4996,12,6574,15 +232417,Druids,4996,12,6574,15 +232661,Ada Lovelace: Consulting Mathematician,4996,12,6574,15 +234450,Ruthless,4996,12,6574,15 +235982,RWBY: Combat Ready,4996,12,6574,15 +242639,Treasure Island,4996,12,6574,15 +242742,Keys to the Castle,4996,12,6574,15 +244584,Kartel,4996,12,6574,15 +245085,Troll & Dragon,4996,12,6574,15 +248002,TAGS,4996,12,6574,15 +255805,Honga,4996,12,6574,15 +255907,Trogdor!!: The Board Game,4996,12,6574,15 +256478,Flotsam Fight,4996,12,6574,15 +256883,Comanauts,4996,12,6574,15 +257193,Starcadia Quest,4996,12,6574,15 +259809,Sonar Family,4996,12,6574,15 +261683,Cloomba,4996,12,6574,15 +269160,Colors of Paris,4996,12,6574,15 +274428,Gaslands: Refuelled,4996,12,6574,15 +277597,Fast Sloths,4996,12,6574,15 +282391,Stockpile: Epic Edition,4996,12,6574,15 +284291,Bloom Town,4996,12,6574,15 +284818,Caylus 1303,4996,12,6574,15 +292748,Trophies,4996,12,6574,15 +297894,Roller Ghoster,4996,12,6574,15 +300085,Cupcake Academy,4996,12,6574,15 +312804,Pendulum,4996,12,6574,15 +313730,Harsh Shadows,4996,12,6574,15 +318079,Mars Operation,4996,12,6574,15 +319579,Crash Octopus,4996,12,6574,15 +321756,Hammer Time,4996,12,6574,15 +322282,Momiji,4996,12,6574,15 +323613,LUNA Capital,4996,12,6574,15 +324242,Sheepy Time,4996,12,6574,15 +326869,The Quacks of Quedlinburg: Big Box,4996,12,6574,15 +327778,ito,4996,12,6574,15 +327890,Creature Comforts: Kickstarter Edition,4996,12,6574,15 +330038,Llamaland,4996,12,6574,15 +359029,Nekojima,4996,12,6574,15 +360265,Sabika,4996,12,6574,15 +362860,Dice Hunters of Therion,4996,12,6574,15 +366495,Undaunted: Battle of Britain,4996,12,6574,15 +367041,Scholars of the South Tigris,4996,12,6574,15 +368058,The Wolves,4996,12,6574,15 +376893,Cyberion,4996,12,6574,15 +550,Barbarossa,4996,12,7272,14 +621,25 Words or Less,4996,12,7272,14 +1334,Entdecker: Exploring New Horizons,4996,12,7272,14 +1533,Ghost Chase,4996,12,7272,14 +9048,Cinq-O,4996,12,7272,14 +15209,Linja,4996,12,7272,14 +17161,Tempus,4996,12,7272,14 +19995,Canal Mania,4996,12,7272,14 +31133,Ice Flow,4996,12,7272,14 +35761,Sylla,4996,12,7272,14 +40770,The Golden City,4996,12,7272,14 +58110,Horse Fever,4996,12,7272,14 +70519,Cruel Necessity: The English Civil Wars 1640-1653,4996,12,7272,14 +78733,Key Market,4996,12,7272,14 +114991,The Metagame,4996,12,7272,14 +128698,Vampire Empire,4996,12,7272,14 +128898,New Amsterdam,4996,12,7272,14 +130486,Small City,4996,12,7272,14 +141736,Sail to India,4996,12,7272,14 +144734,Arcane Academy,4996,12,7272,14 +145186,Pick-a-Polar Bear,4996,12,7272,14 +145601,Deadline,4996,12,7272,14 +148601,1944: Race to the Rhine,4996,12,7272,14 +177515,SEAL Team Flix,4996,12,7272,14 +178007,Apocalypse Chaos,4996,12,7272,14 +186904,The Champion of the Wild,4996,12,7272,14 +187289,"Here, Kitty, Kitty!",4996,12,7272,14 +192947,Camel Up Cards,4996,12,7272,14 +198609,Fate of the Elder Gods,4996,12,7272,14 +199223,Bad Bones,4996,12,7272,14 +207753,Arena: For the Gods!,4996,12,7272,14 +209324,The World of SMOG: Rise of Moloch,4996,12,7272,14 +221669,Dawn of Peacemakers,4996,12,7272,14 +229892,Container: 10th Anniversary Jumbo Edition!,4996,12,7272,14 +231819,Sonar,4996,12,7272,14 +240957,Judge Dredd: The Cursed Earth,4996,12,7272,14 +244946,Brook City,4996,12,7272,14 +250561,Kick-Ass: The Board Game,4996,12,7272,14 +252877,Wreck Raiders,4996,12,7272,14 +257283,Tiny Epic Mechs,4996,12,7272,14 +261165,Flip Over Frog,4996,12,7272,14 +262273,Big Dig,4996,12,7272,14 +265524,Ramen Fury,4996,12,7272,14 +275840,Dungeon Academy,4996,12,7272,14 +294693,Nokosu Dice,4996,12,7272,14 +294702,Tenpenny Parks,4996,12,7272,14 +297562,Kemet: Blood and Sand,4996,12,7272,14 +302281,Candy Lab,4996,12,7272,14 +303954,Pax Viking,4996,12,7272,14 +307971,Fairy Tale Inn,4996,12,7272,14 +317457,Dinosaur World,4996,12,7272,14 +341779,Kim-Joy's Magic Bakery,4996,12,7272,14 +376747,Deep Dive,4996,12,7272,14 +386937,Lacuna,4996,12,7272,14 +76417,Poseidon,4996,12,8014,13 +147194,Linkee!,4996,12,8014,13 +172546,Parfum,4996,12,8014,13 +173115,Monarch,4996,12,8014,13 +222219,Kero,4996,12,8014,13 +242804,Lowlands,4996,12,8014,13 +289081,The Grand Carnival,4996,12,8014,13 +299592,Beez,4996,12,8014,13 +301262,Dicycle Race,4996,12,8014,13 +316786,Tabannusi: Builders of Ur,4996,12,8014,13 +352574,Fit to Print,4996,12,8014,13 +369751,Sagrada Artisans,4996,12,8014,13 +172385,Porta Nigra,5647,11,791,58 +618,MLB Showdown,5647,11,1396,42 +4657,Replay Baseball,5647,11,1396,42 +3071,Blood Bowl,5647,11,1615,38 +17073,Watten,5647,11,1696,37 +33701,Wahoo,5647,11,1696,37 +232520,Pioneers,5647,11,1696,37 +2129,Crossbows and Catapults,5647,11,2261,31 +249047,The Abandons,5647,11,2261,31 +257836,Narabi,5647,11,2261,31 +27,Supremacy: The Game of the Superpowers,5647,11,2387,30 +366322,Skoventyr,5647,11,2512,29 +23950,Viktory II,5647,11,2647,28 +42057,Utopian Rummy,5647,11,2647,28 +282278,Drachensachen,5647,11,2647,28 +343121,Fast Drive Football,5647,11,2807,27 +3319,Neutreeko,5647,11,2967,26 +4985,Warmaster,5647,11,2967,26 +56835,Train of Thought,5647,11,2967,26 +382035,Cursed!?,5647,11,2967,26 +10323,Saga,5647,11,3155,25 +10431,Epic Armageddon,5647,11,3155,25 +1511,Outdoor Survival,5647,11,3361,24 +2201,Redemption,5647,11,3361,24 +4230,Napoleon's Last Battles,5647,11,3361,24 +41186,Monopoly City,5647,11,3361,24 +296557,Zen Garden,5647,11,3361,24 +334100,American Tank Ace: 1944-1945,5647,11,3361,24 +7451,Jarnac,5647,11,3592,23 +25453,Balance Duels,5647,11,3592,23 +95710,Bop It!,5647,11,3592,23 +130202,Cock & Bull,5647,11,3592,23 +203710,Cake Duel,5647,11,3592,23 +3887,Stock Market Game,5647,11,3819,22 +6121,Tablut,5647,11,3819,22 +20269,Pikemen,5647,11,3819,22 +20525,Knock Out Whist,5647,11,3819,22 +22035,Travel Sequence,5647,11,3819,22 +29146,Okey,5647,11,3819,22 +37099,Bharg,5647,11,3819,22 +38462,Palago,5647,11,3819,22 +144790,Angry Dice,5647,11,3819,22 +150005,Lock 'n Load Tactical: Heroes of Normandy,5647,11,3819,22 +171226,Starfighter,5647,11,3819,22 +203715,The Shooting Party,5647,11,3819,22 +258636,Looterz: Rigor Mortis,5647,11,3819,22 +313822,Tic Tac Match,5647,11,3819,22 +789,Focus,5647,11,4078,21 +7838,Emmerlaüs Duel of Mages,5647,11,4078,21 +20253,Diaballik,5647,11,4078,21 +33020,Bata-Waf,5647,11,4078,21 +41247,Mia,5647,11,4078,21 +67878,Dungeon Crawler,5647,11,4078,21 +81698,Total Rumble,5647,11,4078,21 +102792,Zero,5647,11,4078,21 +114562,Hokito,5647,11,4078,21 +143323,Stak Bots,5647,11,4078,21 +179661,KINMO,5647,11,4078,21 +181956,Römisch Pokern,5647,11,4078,21 +194230,Attack on Titan: Deck-Building Game,5647,11,4078,21 +246531,Star Trek Fluxx,5647,11,4078,21 +342638,Biotopia,5647,11,4078,21 +944,Mag·Blast,5647,11,4352,20 +1836,Solarquest,5647,11,4352,20 +1923,MindTrap,5647,11,4352,20 +2043,Shogun,5647,11,4352,20 +2472,Grave Robbers from Outer Space,5647,11,4352,20 +2705,Blazing Aces!: A Fistful of Family Card Games,5647,11,4352,20 +5878,Loteria,5647,11,4352,20 +6284,Shark Attack!,5647,11,4352,20 +63091,Space Hulk (Second Edition),5647,11,4352,20 +69120,Cadwallon: City of Thieves,5647,11,4352,20 +122690,Star Trek Deck Building Game: The Original Series,5647,11,4352,20 +126021,Dropzone Commander: Core Rulebook,5647,11,4352,20 +140480,Pyramid,5647,11,4352,20 +179280,Trivial Pursuit: Harry Potter – Volume 1,5647,11,4352,20 +181867,3 sind eine zu viel!,5647,11,4352,20 +217428,Rory's Story Cubes: Fantasia,5647,11,4352,20 +220341,Secrets of the Lost Station,5647,11,4352,20 +229006,Shadow Blades,5647,11,4352,20 +230064,Ninjitsu!,5647,11,4352,20 +240744,Fire in the Library,5647,11,4352,20 +252323,The Incredibles: Save the Day Game,5647,11,4352,20 +258131,1759 Siege of Quebec,5647,11,4352,20 +296694,BattleTech: A Game of Armored Combat,5647,11,4352,20 +307862,Dollars to Donuts,5647,11,4352,20 +350205,Horseless Carriage,5647,11,4352,20 +350759,Vault: A Solitaire Dice Game,5647,11,4352,20 +355850,UNO Ultimate,5647,11,4352,20 +369270,Astra,5647,11,4352,20 +541,Das Motorsportspiel,5647,11,4679,19 +764,Mad Gab,5647,11,4679,19 +2816,Crossfire,5647,11,4679,19 +2981,Breaking Away,5647,11,4679,19 +4519,Yum,5647,11,4679,19 +7008,Preference,5647,11,4679,19 +13347,Plunder,5647,11,4679,19 +14186,Bao,5647,11,4679,19 +20731,Capes & Cowls: The Superhero Board Game,5647,11,4679,19 +22766,Die Siedler von Catan: Das Kartenspiel – 10th Anniversary Special Edition Tin Box,5647,11,4679,19 +27613,Code Cracker,5647,11,4679,19 +28907,B-29 Superfortress,5647,11,4679,19 +30248,Mini Chuck-it Chicken!,5647,11,4679,19 +31920,Munchkin Booty,5647,11,4679,19 +36325,Down in Flames: Aces High,5647,11,4679,19 +40446,Indian Chief,5647,11,4679,19 +41573,Schweinebammel,5647,11,4679,19 +66510,The Red Dragon Inn 3,5647,11,4679,19 +84913,Caminos,5647,11,4679,19 +90972,Mermaid Beach,5647,11,4679,19 +94891,Kabaleo,5647,11,4679,19 +133405,Island Siege,5647,11,4679,19 +154519,Time Barons,5647,11,4679,19 +173504,"The Greatest Day: Sword, Juno, and Gold Beaches",5647,11,4679,19 +191374,Telepathy: Magic Minds,5647,11,4679,19 +204728,BattleCON: Trials of Indines,5647,11,4679,19 +210113,Tank Chess,5647,11,4679,19 +215565,Roads to Gettysburg II: Lee Strikes North,5647,11,4679,19 +229218,A Game of Thrones: Catan – Brotherhood of the Watch,5647,11,4679,19 +235867,Unicorn Glitterluck: A Party for Rosalie,5647,11,4679,19 +244082,Outback,5647,11,4679,19 +245389,Word Slam Family,5647,11,4679,19 +247730,Poc!,5647,11,4679,19 +249768,My First Adventure: Finding the Dragon,5647,11,4679,19 +267144,Banana Joe,5647,11,4679,19 +269456,"Interceptor Ace: Daylight Air Defense Over Germany, 1943-44",5647,11,4679,19 +271774,Sherlock Express,5647,11,4679,19 +291549,Go Slow!,5647,11,4679,19 +309430,Tiny Epic Pirates,5647,11,4679,19 +310957,SlingPuck,5647,11,4679,19 +332386,Brew,5647,11,4679,19 +343133,Dictopia,5647,11,4679,19 +362541,Ticket to Ride: San Francisco,5647,11,4679,19 +399376,For One: Number Up,5647,11,4679,19 +486,Barnyard Buddies,5647,11,5069,18 +820,Axiom,5647,11,5069,18 +1668,Modern Naval Battles,5647,11,5069,18 +2166,Wyvern,5647,11,5069,18 +2350,Eureka,5647,11,5069,18 +2484,Explore Europe,5647,11,5069,18 +3218,The Arab-Israeli Wars: Tank Battles in the Mideast,5647,11,5069,18 +3262,The Powerpuff Girls: Villains at Large Game,5647,11,5069,18 +4168,Blitzkrieg,5647,11,5069,18 +6400,Boccerball,5647,11,5069,18 +6542,Lock 'n Load: Forgotten Heroes – Vietnam,5647,11,5069,18 +6657,Such a Thing?,5647,11,5069,18 +7104,Ace of Aces: Powerhouse Series,5647,11,5069,18 +9910,Wings of War: Watch Your Back!,5647,11,5069,18 +10320,Lucky Ducks,5647,11,5069,18 +12166,Funkenschlag,5647,11,5069,18 +13260,Clown,5647,11,5069,18 +17235,Mago Magino,5647,11,5069,18 +17526,Hecatomb,5647,11,5069,18 +19505,Catchphrase,5647,11,5069,18 +22733,Uglydoll Card Game,5647,11,5069,18 +25142,Tal der Abenteuer: Die Schatzsuche im Himalaja,5647,11,5069,18 +32236,Grzybobranie,5647,11,5069,18 +35877,Piston Cup,5647,11,5069,18 +38765,Ground Floor,5647,11,5069,18 +43136,Chunky Fighters,5647,11,5069,18 +58099,Granada,5647,11,5069,18 +60158,Fast Food,5647,11,5069,18 +86165,Neos,5647,11,5069,18 +86955,Munchkin Zombies,5647,11,5069,18 +90004,Kniffel Extreme,5647,11,5069,18 +91512,Bella Blümchen,5647,11,5069,18 +92044,Dungeons & Dragons: Conquest of Nerath Board Game,5647,11,5069,18 +99479,Mare Balticum,5647,11,5069,18 +118703,20th Century Limited,5647,11,5069,18 +131199,Soluna,5647,11,5069,18 +140675,Enchanted Cupcake Party Game,5647,11,5069,18 +146922,Chain of Command,5647,11,5069,18 +159375,Prime Climb,5647,11,5069,18 +170146,Dark Seas,5647,11,5069,18 +171431,The Maiden in the Forest,5647,11,5069,18 +175023,Crows Overkill,5647,11,5069,18 +179835,Stellar Conflict,5647,11,5069,18 +189160,Top That!,5647,11,5069,18 +201557,Odyseja,5647,11,5069,18 +206925,Black DOG,5647,11,5069,18 +215469,The Pyramid's Deadline,5647,11,5069,18 +216974,King's Road,5647,11,5069,18 +227888,"Warhammer 40,000: Dark Imperium",5647,11,5069,18 +228409,Lusitania,5647,11,5069,18 +244948,Brains Family: Burgen & Drachen,5647,11,5069,18 +246812,Brothers,5647,11,5069,18 +247182,Flashpoint: South China Sea,5647,11,5069,18 +272692,Medieval Pong,5647,11,5069,18 +282033,Wing Leader: Victories 1940-1942 (Second Edition),5647,11,5069,18 +287198,Ka Pai,5647,11,5069,18 +294294,Letterpress,5647,11,5069,18 +299960,Alma Mater,5647,11,5069,18 +304450,Detective Charlie,5647,11,5069,18 +313129,18MS: The Railroads Come to Mississippi,5647,11,5069,18 +313807,Oros,5647,11,5069,18 +319402,Silencio,5647,11,5069,18 +330950,Age of Galaxy,5647,11,5069,18 +337864,Five Parsecs From Home: Solo Adventure Wargaming,5647,11,5069,18 +346747,Pier 18,5647,11,5069,18 +351666,Vidrasso,5647,11,5069,18 +356381,Fish Tank,5647,11,5069,18 +1152,The Mystic Wood,5647,11,5525,17 +1253,Limits,5647,11,5525,17 +1964,Campaign,5647,11,5525,17 +1986,Spy Alley,5647,11,5525,17 +2025,Frag,5647,11,5525,17 +2516,Man O' War,5647,11,5525,17 +3041,Panzergruppe Guderian,5647,11,5525,17 +3427,Blockhead!,5647,11,5525,17 +3725,Qwitch,5647,11,5525,17 +4123,Gambler,5647,11,5525,17 +9092,Avalam,5647,11,5525,17 +9388,Halloween Party,5647,11,5525,17 +10925,Tumbling Tower,5647,11,5525,17 +11790,Leapin' Lily Pads,5647,11,5525,17 +15911,San Ta Si,5647,11,5525,17 +22485,Terra Prime,5647,11,5525,17 +23657,Ahoy Treasures!,5647,11,5525,17 +24082,Voltage,5647,11,5525,17 +25537,Trötofant,5647,11,5525,17 +28306,Inversé,5647,11,5525,17 +34948,All Queens Chess,5647,11,5525,17 +35003,Zark City,5647,11,5525,17 +38918,Hooop!,5647,11,5525,17 +39336,Mégawatts,5647,11,5525,17 +39635,Prolix,5647,11,5525,17 +41305,Orchard: The Card Game,5647,11,5525,17 +59309,Orchard: Memo Game,5647,11,5525,17 +60245,Mummy's Treasure,5647,11,5525,17 +61269,Drakon (Second Edition),5647,11,5525,17 +83325,Lost Battles: Forty Battles & Campaigns of the Ancient World,5647,11,5525,17 +85000,We Must Tell the Emperor,5647,11,5525,17 +95364,Cubulus,5647,11,5525,17 +101420,Ninety-Nine,5647,11,5525,17 +102144,Perplexus Epic,5647,11,5525,17 +126443,The Lord of the Rings: The Battle for Middle-Earth,5647,11,5525,17 +130603,Start 11! The Board Game,5647,11,5525,17 +131581,Soccero (Second Edition),5647,11,5525,17 +136558,Expedition: Famous Explorers,5647,11,5525,17 +136910,Roll & Play,5647,11,5525,17 +142555,The Lord of the Rings: The Two Towers Deck-Building Game,5647,11,5525,17 +144587,Atacama,5647,11,5525,17 +147021,Hollywood,5647,11,5525,17 +147241,Oaxaca: Crafts of a Culture,5647,11,5525,17 +152510,The Lord of the Rings: The Return of the King Deck-Building Game,5647,11,5525,17 +171356,Argonauts,5647,11,5525,17 +177541,Terrible Monster,5647,11,5525,17 +181955,Sarkophag,5647,11,5525,17 +183400,Silly Shenanigans,5647,11,5525,17 +186212,Win/Lose Revolution,5647,11,5525,17 +187959,Senseï,5647,11,5525,17 +193953,Mistfall: Heart of the Mists,5647,11,5525,17 +194986,Deep Future,5647,11,5525,17 +205477,Vengeance,5647,11,5525,17 +217015,Level 8 Master,5647,11,5525,17 +218957,Café Fatal,5647,11,5525,17 +230191,The Island of El Dorado,5647,11,5525,17 +233960,Ali Baba,5647,11,5525,17 +241490,Pool Party,5647,11,5525,17 +246535,DC Deck-Building Game: Rebirth,5647,11,5525,17 +253368,Kingswood,5647,11,5525,17 +271064,Ascension: Skulls & Sails,5647,11,5525,17 +302933,Kodama Forest,5647,11,5525,17 +326767,Infinity N4: Core Rules,5647,11,5525,17 +328624,Block Ness,5647,11,5525,17 +340722,Smart10: Family,5647,11,5525,17 +341974,Power Plants,5647,11,5525,17 +344841,All Is Bomb,5647,11,5525,17 +354544,Unmatched: Houdini vs. The Genie,5647,11,5525,17 +365453,Look at the Stars,5647,11,5525,17 +368109,Armadillo,5647,11,5525,17 +379343,Unfinished Business,5647,11,5525,17 +382960,Line-it,5647,11,5525,17 +396655,Quicksand,5647,11,5525,17 +204,Stephenson's Rocket,5647,11,6010,16 +979,The Powerpuff Girls: Saving the World Before Bedtime,5647,11,6010,16 +1188,Chaos Marauders,5647,11,6010,16 +1447,1841: Railways in Northern Italy,5647,11,6010,16 +1702,Klondike,5647,11,6010,16 +1711,Richthofen's War,5647,11,6010,16 +2268,Lost Patrol,5647,11,6010,16 +2294,Flinch,5647,11,6010,16 +2296,Bermuda Triangle,5647,11,6010,16 +2316,X-Bugs,5647,11,6010,16 +3294,Dumm gelaufen!,5647,11,6010,16 +4062,Swap!,5647,11,6010,16 +5772,What's It to Ya?,5647,11,6010,16 +8130,Die Fugger,5647,11,6010,16 +8671,Terra,5647,11,6010,16 +9606,Cluzzle,5647,11,6010,16 +10802,Somethin' Fishy,5647,11,6010,16 +14860,Clash for a Continent: Battles of the American Revolution and French & Indian War,5647,11,6010,16 +15311,Halli Galli Extreme,5647,11,6010,16 +18881,Schildi Schildkröte,5647,11,6010,16 +29256,Origins: How We Became Human,5647,11,6010,16 +33140,Hyper Slide,5647,11,6010,16 +36708,Leader 1,5647,11,6010,16 +37615,Looting London,5647,11,6010,16 +38950,Halma,5647,11,6010,16 +40958,6 nimmt! Junior,5647,11,6010,16 +59429,Dark Darker Darkest,5647,11,6010,16 +60056,Igel Ärgern + Tante Tarantel,5647,11,6010,16 +63743,The World Cup Card Game 2010,5647,11,6010,16 +65590,Bumbesi,5647,11,6010,16 +68228,Railways of the World: The Card Game,5647,11,6010,16 +79282,Era of Inventions,5647,11,6010,16 +85800,Octopus' Garden,5647,11,6010,16 +86415,Cornerstone Essential,5647,11,6010,16 +94481,Count Your Chickens!,5647,11,6010,16 +94949,A Blood-Red Banner: The Alamo,5647,11,6010,16 +99698,Micro Space Empire,5647,11,6010,16 +100169,Hero of Weehawken,5647,11,6010,16 +114387,Thebes: The Tomb Raiders,5647,11,6010,16 +125658,Level 7 [Escape],5647,11,6010,16 +129735,Boom Boom Balloon,5647,11,6010,16 +142980,Nanahoshi,5647,11,6010,16 +147623,Friese's Landlord,5647,11,6010,16 +150294,COGZ,5647,11,6010,16 +151446,La Fallera Calavera,5647,11,6010,16 +153103,Mensch ärgere Dich nicht: Das Kartenspiel,5647,11,6010,16 +154515,Vampir Mau Mau,5647,11,6010,16 +162152,Ciúb,5647,11,6010,16 +165797,Der unendliche Fluss,5647,11,6010,16 +173200,Epic Spell Wars of the Battle Wizards: Rumble at Castle Tentakill,5647,11,6010,16 +174093,Maze Racers,5647,11,6010,16 +179259,Garbage Day!,5647,11,6010,16 +181959,Gipfelkraxler,5647,11,6010,16 +183685,"Mr. President: The American Presidency, 2001-2020",5647,11,6010,16 +187104,4 Gods,5647,11,6010,16 +190333,Fire of Eidolon,5647,11,6010,16 +191895,Toddles-Bobbles,5647,11,6010,16 +194196,Kharnage,5647,11,6010,16 +195242,Tanks: Panther vs Sherman,5647,11,6010,16 +209450,Länder toppen!,5647,11,6010,16 +217447,Tembo,5647,11,6010,16 +220778,Sticky Chameleons,5647,11,6010,16 +232134,Wander: The Cult of Barnacle Bay,5647,11,6010,16 +233033,Snowbirds,5647,11,6010,16 +235591,History of the World,5647,11,6010,16 +237174,"So Long, My World",5647,11,6010,16 +241796,Nut So Fast,5647,11,6010,16 +249658,Burger Party,5647,11,6010,16 +250463,Stadt Land Vollpfosten: Classic Edition,5647,11,6010,16 +251538,Star Wars: Han Solo Card Game,5647,11,6010,16 +256067,Cupcake Empire,5647,11,6010,16 +256509,The One Hundred Torii,5647,11,6010,16 +257349,Bugs on Rugs,5647,11,6010,16 +260710,Amul,5647,11,6010,16 +265912,Selfish: Space Edition,5647,11,6010,16 +276386,Caesar: Rome vs. Gaul,5647,11,6010,16 +282776,Tumble Town,5647,11,6010,16 +284778,Unmatched: Jurassic Park – Dr. Sattler vs. T. Rex,5647,11,6010,16 +293264,Monsters on Board,5647,11,6010,16 +293458,Ligretto Kids,5647,11,6010,16 +298164,Volle Weide,5647,11,6010,16 +298624,Imagician,5647,11,6010,16 +303648,Disney Hocus Pocus: The Game,5647,11,6010,16 +307450,The Number,5647,11,6010,16 +308565,Roll n Cook,5647,11,6010,16 +309698,Roar and Write!,5647,11,6010,16 +310636,Drakborgen,5647,11,6010,16 +311330,P for Pizza,5647,11,6010,16 +313241,Micons,5647,11,6010,16 +325545,Drone Home,5647,11,6010,16 +325829,Let's Summon Demons,5647,11,6010,16 +329227,Betta,5647,11,6010,16 +342019,60 Second City,5647,11,6010,16 +343566,TRICKTAKERs,5647,11,6010,16 +343745,Deckula!,5647,11,6010,16 +345266,Tales from the Red Dragon Inn,5647,11,6010,16 +349490,Sabacc,5647,11,6010,16 +350469,Nine-minute Kingdom,5647,11,6010,16 +353921,Legends of Hellas,5647,11,6010,16 +356238,Terra Mystica: Big Box,5647,11,6010,16 +363039,13 Words,5647,11,6010,16 +364405,Carcassonne Big Box 7,5647,11,6010,16 +365455,Colossus,5647,11,6010,16 +380607,Great Western Trail: New Zealand,5647,11,6010,16 +386136,"Warhammer 40,000 (Tenth Edition)",5647,11,6010,16 +397598,Dune: Imperium – Uprising,5647,11,6010,16 +398947,Battle Card: Series 1,5647,11,6010,16 +58,Kings & Things,5647,11,6574,15 +85,Quebec 1759,5647,11,6574,15 +164,"Before I Kill You, Mister Spy...",5647,11,6574,15 +286,Machiavelli,5647,11,6574,15 +612,Kippit,5647,11,6574,15 +1576,Gettysburg (125th Anniversary Edition),5647,11,6574,15 +1579,Wrasslin',5647,11,6574,15 +2363,Orient Express,5647,11,6574,15 +3137,Anno Domini: Erfindungen,5647,11,6574,15 +3242,Clash of the Gladiators,5647,11,6574,15 +3422,Fantasy,5647,11,6574,15 +3825,Breakthrough,5647,11,6574,15 +5086,Electronic Mall Madness,5647,11,6574,15 +5478,Crazy Circus,5647,11,6574,15 +6272,Junior Stratego,5647,11,6574,15 +7719,Arena Maximus,5647,11,6574,15 +8818,Gopher It!,5647,11,6574,15 +11949,Shifting Sands: The Campaign for North Africa 1940-1943,5647,11,6574,15 +13077,Wizard's Garden,5647,11,6574,15 +13886,The Princess and the Pea,5647,11,6574,15 +16373,Techno Witches,5647,11,6574,15 +16933,Super Munchkin,5647,11,6574,15 +18289,Key Largo,5647,11,6574,15 +18755,Pie Face,5647,11,6574,15 +19301,Mesopotamia,5647,11,6574,15 +21457,Cover Up,5647,11,6574,15 +21572,ChickenFoot,5647,11,6574,15 +22266,Zig-Zag,5647,11,6574,15 +23576,CooCoo the Rocking Clown!,5647,11,6574,15 +23935,Oshi,5647,11,6574,15 +28723,Before the Wind,5647,11,6574,15 +29581,Tomb,5647,11,6574,15 +29678,Munchkin Quest,5647,11,6574,15 +31612,Sultan,5647,11,6574,15 +34696,Drachen Wurf,5647,11,6574,15 +34701,Thor,5647,11,6574,15 +35964,duck! duck! Go!,5647,11,6574,15 +38026,Clue: Harry Potter Edition,5647,11,6574,15 +38862,Giants,5647,11,6574,15 +65200,Asteroyds,5647,11,6574,15 +65559,Take the Cake,5647,11,6574,15 +66190,New York,5647,11,6574,15 +66424,Dungeon Run,5647,11,6574,15 +69234,"Operation Dauntless: The Battles for Fontenay and Rauray, France, June 1944",5647,11,6574,15 +69278,Nuklear Winter '68,5647,11,6574,15 +73863,Grimoire,5647,11,6574,15 +88464,Repello,5647,11,6574,15 +104287,Batanimo,5647,11,6574,15 +104655,Lemonade Stand,5647,11,6574,15 +112869,Munchkin Apocalypse,5647,11,6574,15 +122240,Last Night on Earth: Timber Peak,5647,11,6574,15 +126000,Letnisko,5647,11,6574,15 +127134,Baobab,5647,11,6574,15 +130907,Jungle Brunch,5647,11,6574,15 +131891,Lost Legends,5647,11,6574,15 +134711,Guilds of Cadwallon,5647,11,6574,15 +138748,Flash!,5647,11,6574,15 +139433,Fields of Fire 2,5647,11,6574,15 +140125,Fallen,5647,11,6574,15 +142262,Draco Magi,5647,11,6574,15 +142296,Funemployed,5647,11,6574,15 +142924,Mayday!Mayday!,5647,11,6574,15 +145722,Eat Me If You Can!,5647,11,6574,15 +148381,Ikonikus,5647,11,6574,15 +148531,Barrel Dice,5647,11,6574,15 +154428,Trekking the National Parks,5647,11,6574,15 +154880,Voodoo,5647,11,6574,15 +156007,Mound Builders,5647,11,6574,15 +156457,Gloobz,5647,11,6574,15 +156501,Greenland,5647,11,6574,15 +159868,Sellswords,5647,11,6574,15 +161297,Paradox,5647,11,6574,15 +163354,Cypher,5647,11,6574,15 +164354,Kryptos,5647,11,6574,15 +164589,Roar-a-Saurus,5647,11,6574,15 +165469,Council of Verona (Second Edition),5647,11,6574,15 +170415,Dungeon of Fortune,5647,11,6574,15 +172064,Rally Up!,5647,11,6574,15 +173574,1836Jr,5647,11,6574,15 +180761,Dreamwell,5647,11,6574,15 +184371,Justice League: Hero Dice – Batman,5647,11,6574,15 +184372,Justice League: Hero Dice – Superman,5647,11,6574,15 +184866,Wings for the Baron (Second Edition),5647,11,6574,15 +189030,De Slimste Mens ter Wereld: Het Bordspel,5647,11,6574,15 +189603,Flower Fairy,5647,11,6574,15 +191065,Castle Flutterstone,5647,11,6574,15 +192508,The Goonies: Adventure Card Game,5647,11,6574,15 +193164,Macroscope,5647,11,6574,15 +193328,Blanc-Manger Coco,5647,11,6574,15 +194523,HMS Dolores,5647,11,6574,15 +195503,City of Iron: Second Edition,5647,11,6574,15 +196217,18Ireland,5647,11,6574,15 +198611,Mondrian: The Dice Game,5647,11,6574,15 +198836,3 Wishes,5647,11,6574,15 +199790,Encantados,5647,11,6574,15 +201812,Mageling,5647,11,6574,15 +209280,Family Plot,5647,11,6574,15 +210663,Tribes: Early Civilization,5647,11,6574,15 +211533,Veggie Garden,5647,11,6574,15 +212873,Level 8: Das Kartenspiel,5647,11,6574,15 +214996,"Silver Bayonet: The First Team in Vietnam, 1965 (25th Anniversary Edition)",5647,11,6574,15 +215614,Khan of Khans,5647,11,6574,15 +220598,Ladder 29,5647,11,6574,15 +223312,Little Big Fish,5647,11,6574,15 +224751,ROBiTs,5647,11,6574,15 +227029,Sakura,5647,11,6574,15 +227273,Cosmogenesis,5647,11,6574,15 +230769,Who Goes There?,5647,11,6574,15 +246094,PJ Masks: Team of Heroes,5647,11,6574,15 +246201,Lincoln,5647,11,6574,15 +252399,Vast: The Mysterious Manor,5647,11,6574,15 +252752,Genotype: A Mendelian Genetics Game,5647,11,6574,15 +254189,Snow White and the Seven Dwarfs: A Gemstone Mining Game,5647,11,6574,15 +256623,Realm of Sand,5647,11,6574,15 +256877,Hail Hydra,5647,11,6574,15 +259298,The Ancient World (Second Edition),5647,11,6574,15 +266448,Imperium: The Contention,5647,11,6574,15 +268191,Dice Throne: Season Two – Battle Chest Champion Edition,5647,11,6574,15 +268665,Suzume-Jong,5647,11,6574,15 +272666,Psychic Pizza Deliverers Go to the Ghost Town,5647,11,6574,15 +274124,Northgard: Uncharted Lands,5647,11,6574,15 +277538,1822MX,5647,11,6574,15 +283289,ClipCut Parks,5647,11,6574,15 +284446,Wonder Tales,5647,11,6574,15 +285536,Cloaked Cats,5647,11,6574,15 +286358,Commands & Colors Tricorne: Jacobite Rising,5647,11,6574,15 +287222,Juices,5647,11,6574,15 +287732,Solar Draft,5647,11,6574,15 +300765,Quiz Club,5647,11,6574,15 +301665,DC Deck-Building Game: Dark Nights – Metal,5647,11,6574,15 +306257,18 Los Angeles,5647,11,6574,15 +307844,Atheneum: Mystic Library,5647,11,6574,15 +322564,Fjords,5647,11,6574,15 +322697,Revolver Noir,5647,11,6574,15 +324657,Core Space: First Born,5647,11,6574,15 +327797,Monopoly Bid,5647,11,6574,15 +328866,My Father's Work,5647,11,6574,15 +331635,Kameloot,5647,11,6574,15 +335116,Motor City,5647,11,6574,15 +340288,Kids Chronicles: Quest for the Moon Stones,5647,11,6574,15 +340899,Gasha,5647,11,6574,15 +341512,En Las Cenizas,5647,11,6574,15 +342921,The British Way: Counterinsurgency at the End of Empire,5647,11,6574,15 +347604,Exit Adventskalender pro: Das verrückte Zeitreise-Museum,5647,11,6574,15 +352591,The Royal Limited,5647,11,6574,15 +354866,Dice Conquest,5647,11,6574,15 +356909,Hand-to-Hand Wombat,5647,11,6574,15 +359175,It's a Bomb!,5647,11,6574,15 +359438,Skymines,5647,11,6574,15 +363481,Fancy Feathers,5647,11,6574,15 +364641,Joan of Arc: Orléans Draw & Write,5647,11,6574,15 +373284,Crack List,5647,11,6574,15 +377793,Jekyll & Hyde vs Scotland Yard,5647,11,6574,15 +383499,Witchcraft!,5647,11,6574,15 +400314,Apiary,5647,11,6574,15 +141,Andromeda,5647,11,7272,14 +644,Shipwrecked,5647,11,7272,14 +816,2038: Tycoons of the Asteroid Belt,5647,11,7272,14 +1356,Hexen Rennen,5647,11,7272,14 +1463,Girl Genius: The Works,5647,11,7272,14 +1933,Key to the Kingdom,5647,11,7272,14 +2750,Imaginiff,5647,11,7272,14 +2819,Trivial Pursuit: Genus 5,5647,11,7272,14 +3385,Stratego: Star Wars,5647,11,7272,14 +7641,Three of a Crime,5647,11,7272,14 +7858,Ardennes '44: The Battle of the Bulge,5647,11,7272,14 +8139,The Lord of the Rings: Combat Hex Tradeable Miniatures Game,5647,11,7272,14 +8207,Dungeoneer: Vault of the Fiends,5647,11,7272,14 +9615,Station Master,5647,11,7272,14 +10788,Hellenes: Campaigns of the Peloponnesian War,5647,11,7272,14 +13286,Gloria Mundi,5647,11,7272,14 +16415,Monstertorte,5647,11,7272,14 +18498,Zimbbos!,5647,11,7272,14 +19370,Quelf,5647,11,7272,14 +19989,Robber Knights,5647,11,7272,14 +22532,Wings of War: The Dawn of World War II,5647,11,7272,14 +23418,Pursuit of Glory,5647,11,7272,14 +24416,Santy Anno,5647,11,7272,14 +24985,Mouse Trap,5647,11,7272,14 +25224,Hermagor,5647,11,7272,14 +26457,Successors (Third Edition),5647,11,7272,14 +27739,Hearts and Minds: Vietnam 1965-1975,5647,11,7272,14 +35400,Nations at War: White Star Rising,5647,11,7272,14 +35472,Triovision,5647,11,7272,14 +37387,Steel Driver,5647,11,7272,14 +38334,Logan Stones,5647,11,7272,14 +39232,Nemo's War,5647,11,7272,14 +46614,Nonaga,5647,11,7272,14 +54507,Savannah Tails,5647,11,7272,14 +57368,The King Commands,5647,11,7272,14 +63543,Horus Heresy,5647,11,7272,14 +67180,Tikal II: The Lost Temple,5647,11,7272,14 +79068,Wrong Chemistry,5647,11,7272,14 +82948,Konexi,5647,11,7272,14 +87893,Take It or Leave It,5647,11,7272,14 +90009,Eselsbrücke,5647,11,7272,14 +91430,None of a Kind,5647,11,7272,14 +100734,My Happy Farm,5647,11,7272,14 +103092,Helvetia,5647,11,7272,14 +104573,Spectaculum,5647,11,7272,14 +113293,Article 27: The UN Security Council Game,5647,11,7272,14 +119012,The Capitals,5647,11,7272,14 +119391,Il Vecchio,5647,11,7272,14 +120447,Get Lucky,5647,11,7272,14 +121195,Grandpa Beck's Golf,5647,11,7272,14 +142889,Enemy Coast Ahead: Operation Chastise – The Dambuster Raid,5647,11,7272,14 +144492,Packet Row,5647,11,7272,14 +149119,Spirits of the Rice Paddy,5647,11,7272,14 +150010,Tiger Leader,5647,11,7272,14 +151771,La Cosa Nostra,5647,11,7272,14 +153480,Scharfe Schoten,5647,11,7272,14 +153481,Cherry Picking,5647,11,7272,14 +153497,This Town Ain't Big Enough for the 2-4 of Us,5647,11,7272,14 +154510,Shadows of Malice,5647,11,7272,14 +166988,Wizards of the Wild,5647,11,7272,14 +169675,L'osti d'jeu,5647,11,7272,14 +171663,Attila,5647,11,7272,14 +174192,Daxu,5647,11,7272,14 +175334,The Undercity: An Iron Kingdoms Adventure Board Game,5647,11,7272,14 +178134,London Dread,5647,11,7272,14 +180901,Joraku,5647,11,7272,14 +183346,My Very First Games: Little Garden,5647,11,7272,14 +188021,Doughnut Drive-Thru,5647,11,7272,14 +189453,Victorian Masterminds,5647,11,7272,14 +193212,Chariot Race,5647,11,7272,14 +193483,Dwar7s Fall,5647,11,7272,14 +195515,The Chosin Few,5647,11,7272,14 +197178,DIG,5647,11,7272,14 +198487,Smash Up: Cease and Desist,5647,11,7272,14 +199904,Pericles: The Peloponnesian Wars,5647,11,7272,14 +201478,Problem Picnic: Attack of the Ants,5647,11,7272,14 +203420,Exit: The Game – The Abandoned Cabin,5647,11,7272,14 +205308,Jolly & Roger,5647,11,7272,14 +206805,"Agricola, Master of Britain",5647,11,7272,14 +207783,POW!,5647,11,7272,14 +218509,Empires of the Void II,5647,11,7272,14 +220588,"Gandhi: The Decolonization of British India, 1917 – 1947",5647,11,7272,14 +220632,Monster Slaughter,5647,11,7272,14 +222821,Powerships,5647,11,7272,14 +226146,Tower of Madness,5647,11,7272,14 +226610,What Do You Meme?,5647,11,7272,14 +226634,The Thing: Infection at Outpost 31,5647,11,7272,14 +232473,Ratland,5647,11,7272,14 +232666,Robin Hood and the Merry Men,5647,11,7272,14 +233502,Katarenga,5647,11,7272,14 +234477,Battle for Rokugan,5647,11,7272,14 +234948,Prehistory,5647,11,7272,14 +237023,Era of Kingdoms,5647,11,7272,14 +238164,The Faceless,5647,11,7272,14 +239472,Abomination: The Heir of Frankenstein,5647,11,7272,14 +248900,Ceylon,5647,11,7272,14 +253398,Lost Cities: Rivals,5647,11,7272,14 +257987,The Towers of Arkhanos,5647,11,7272,14 +258135,Wild Assent,5647,11,7272,14 +261342,Old West Empresario,5647,11,7272,14 +264141,Kodachi,5647,11,7272,14 +266447,Greenland (Third Edition),5647,11,7272,14 +266504,Dig Your Way Out,5647,11,7272,14 +267271,Egizia: Shifting Sands,5647,11,7272,14 +268952,Crazy Tower,5647,11,7272,14 +272409,Tiny Epic Tactics,5647,11,7272,14 +273779,Under Falling Skies: A 9-Card Print-and-Play Game,5647,11,7272,14 +276633,Rossio,5647,11,7272,14 +276924,Time Chase,5647,11,7272,14 +283212,MonsDRAWsity,5647,11,7272,14 +284982,Drako: Knights & Trolls,5647,11,7272,14 +286788,Gift of Tulips,5647,11,7272,14 +291431,Share it!,5647,11,7272,14 +292187,1861: Railways of the Russian Empire & 1867: Railways of Canada,5647,11,7272,14 +294230,Remember Our Trip,5647,11,7272,14 +296238,Sea of Legends,5647,11,7272,14 +303551,Polis,5647,11,7272,14 +306321,Night of the Ninja,5647,11,7272,14 +311475,Masters of the Universe: The Board Game – Clash for Eternia,5647,11,7272,14 +314589,Night Parade of a Hundred Yokai,5647,11,7272,14 +317983,Anansi,5647,11,7272,14 +319263,One Card Dungeon,5647,11,7272,14 +322039,The Key: Sabotage at Lucky Llama Land,5647,11,7272,14 +328124,Bot Factory,5647,11,7272,14 +328289,Roll 'em Fold 'em,5647,11,7272,14 +329812,The Genius Star,5647,11,7272,14 +341284,Dungeon Lite: Orcs and Knights,5647,11,7272,14 +341963,Tides,5647,11,7272,14 +342073,Berried Treasure,5647,11,7272,14 +345887,Dice Kingdoms of Valeria,5647,11,7272,14 +345888,Siege of Valeria,5647,11,7272,14 +358085,Village Rails,5647,11,7272,14 +358504,Betrayal at House on the Hill: 3rd Edition,5647,11,7272,14 +359838,Almost Innocent,5647,11,7272,14 +377420,Mind Space,5647,11,7272,14 +396790,Nucleum,5647,11,7272,14 +66,Löwenherz,5647,11,8014,13 +216,Atlanteon,5647,11,8014,13 +235,Blackbeard,5647,11,8014,13 +531,Merchants of Amsterdam,5647,11,8014,13 +1070,Shadows in the Forest,5647,11,8014,13 +4370,Fische Fluppen Frikadellen,5647,11,8014,13 +5704,Capt'n Clever,5647,11,8014,13 +6281,Eketorp,5647,11,8014,13 +8069,Clue FX,5647,11,8014,13 +8124,Industria,5647,11,8014,13 +8147,Maka Bana,5647,11,8014,13 +9675,La Strada,5647,11,8014,13 +12538,Clocktowers,5647,11,8014,13 +28121,Fluxx en Español,5647,11,8014,13 +30658,Rise of Empires,5647,11,8014,13 +33911,Bacchus' Banquet,5647,11,8014,13 +38499,22 Pommes,5647,11,8014,13 +40629,Bakong,5647,11,8014,13 +114438,"But Wait, There's More!",5647,11,8014,13 +120217,City of Horror,5647,11,8014,13 +120523,Nothing Personal,5647,11,8014,13 +122891,Courtier,5647,11,8014,13 +128475,Murder of Crows,5647,11,8014,13 +135648,Tales & Games: Baba Yaga,5647,11,8014,13 +143981,VOLT: Robot Battle Arena,5647,11,8014,13 +144270,Relic Runners,5647,11,8014,13 +144761,"Going, Going, GONE!",5647,11,8014,13 +146408,Sentinel Tactics: The Flame of Freedom,5647,11,8014,13 +153225,Pick-a-Seal,5647,11,8014,13 +161383,LIE,5647,11,8014,13 +163937,World of Yo-Ho,5647,11,8014,13 +164159,BUS,5647,11,8014,13 +164506,Biblios Dice,5647,11,8014,13 +164865,B-Sieged: Sons of the Abyss,5647,11,8014,13 +168788,Rum & Bones,5647,11,8014,13 +169464,Defenders of the Last Stand,5647,11,8014,13 +171492,Vienna,5647,11,8014,13 +172600,Dungeon Busters,5647,11,8014,13 +173018,Grimslingers,5647,11,8014,13 +179182,Dojo Kun,5647,11,8014,13 +182218,Hoax (Second Edition),5647,11,8014,13 +188390,Enemy Coast Ahead: The Doolittle Raid,5647,11,8014,13 +194690,Viral,5647,11,8014,13 +204184,Risk: Europe,5647,11,8014,13 +207487,Freak Shop,5647,11,8014,13 +217554,Dr. Microbe,5647,11,8014,13 +217609,The Wars of Marcus Aurelius,5647,11,8014,13 +223151,Entropy: Worlds Collide,5647,11,8014,13 +230342,InBetween,5647,11,8014,13 +230667,Itchy Feet: The Travel Game,5647,11,8014,13 +234511,My First Stone Age: The Card Game,5647,11,8014,13 +235467,"Boom, Bang, Gold",5647,11,8014,13 +236781,Cerebria: The Inside World – Origin Box,5647,11,8014,13 +247360,Junk Orbit,5647,11,8014,13 +247585,Waste Knights: Second Edition,5647,11,8014,13 +249833,Monopoly Gamer: Mario Kart,5647,11,8014,13 +251442,Liberation,5647,11,8014,13 +253499,A War of Whispers,5647,11,8014,13 +253807,The Few and Cursed,5647,11,8014,13 +256513,Animal Kingdoms,5647,11,8014,13 +257066,Sierra West,5647,11,8014,13 +262941,Dominant Species: Marine,5647,11,8014,13 +267009,Rome & Roll,5647,11,8014,13 +267475,Stay Cool,5647,11,8014,13 +270443,Misty,5647,11,8014,13 +270636,My Farm Shop,5647,11,8014,13 +274090,Lanterns Dice: Lights in the Sky,5647,11,8014,13 +276296,Finger Guns at High Noon,5647,11,8014,13 +284842,"So, You've Been Eaten",5647,11,8014,13 +288254,Simplicity,5647,11,8014,13 +297486,Ride the Rails,5647,11,8014,13 +299908,Squire for Hire: Mystic Runes,5647,11,8014,13 +299963,Picture Perfect,5647,11,8014,13 +300099,Animix,5647,11,8014,13 +311930,Block and Key,5647,11,8014,13 +313718,Hibachi,5647,11,8014,13 +319107,Sebastian Fitzek Killercruise,5647,11,8014,13 +319320,Wok and Roll,5647,11,8014,13 +325555,Cantaloop: Book 1 – Breaking into Prison,5647,11,8014,13 +337961,Transformers Deck-Building Game,5647,11,8014,13 +338760,Imperial Steam,5647,11,8014,13 +339924,Hot Lead,5647,11,8014,13 +339958,Gutenberg,5647,11,8014,13 +341496,Caesar's Empire,5647,11,8014,13 +341945,La Granja: Deluxe Master Set,5647,11,8014,13 +346950,Into the Blue,5647,11,8014,13 +350689,Wormholes,5647,11,8014,13 +353546,Museum Suspects,5647,11,8014,13 +354031,Smart10: Harry Potter,5647,11,8014,13 +355997,Thunder Road: Vendetta – Maximum Chrome,5647,11,8014,13 +356742,KuZOOkA,5647,11,8014,13 +357991,Dobro,5647,11,8014,13 +359857,Winter,5647,11,8014,13 +370597,Fugitive (Second Edition),5647,11,8014,13 +383607,Barcelona,5647,11,8014,13 +400205,5 Towers,5647,11,8014,13 +312,Landlord!,5647,11,8885,12 +35285,Prussian Rails,5647,11,8885,12 +36986,All Things Zombie: The Boardgame,5647,11,8885,12 +43307,Baltimore & Ohio,5647,11,8885,12 +171542,Gum Gum Machine,5647,11,8885,12 +179794,Me Want Cookies!,5647,11,8885,12 +181327,Die holde Isolde,5647,11,8885,12 +183720,Cargolino Valentino,5647,11,8885,12 +229414,Tulip Bubble,5647,11,8885,12 +248584,Pantone: The Game,5647,11,8885,12 +249816,Taco vs. Burrito,5647,11,8885,12 +280032,Fossilis,5647,11,8885,12 +304324,Dive,5647,11,8885,12 +328636,Chai (Deluxe Edition),5647,11,8885,12 +334216,Thunder Rolls,5647,11,8885,12 +376472,Noobs in Space,5647,11,8885,12 +281514,Escape from the Asylum,5647,11,9839,11 +314745,Now or Never,5647,11,9839,11 +336552,Mystic Paths,5647,11,9839,11 +9202,Saga,6434,10,1339,43 +12608,Chess960,6434,10,1339,43 +1891,Portal,6434,10,1549,39 +33112,War,6434,10,1782,36 +172547,Queen's Architect,6434,10,1782,36 +19544,Berserk: Trading Card Game,6434,10,1867,35 +144479,Myths at War,6434,10,2048,33 +26947,Italian Checkers,6434,10,2261,31 +84889,Cave Evil,6434,10,2261,31 +141035,Space Sheep!,6434,10,2387,30 +20801,Sudoku,6434,10,2512,29 +145344,San Guo Sha: Kingdom Wars,6434,10,2512,29 +147144,Whacky Wit,6434,10,2512,29 +2602,Solitaire for Two,6434,10,2647,28 +80833,Michigan Rummy,6434,10,2647,28 +11821,Jotto,6434,10,2807,27 +120000,Shadow Era,6434,10,2807,27 +231229,Jokeren,6434,10,2807,27 +281429,Mammalath,6434,10,2807,27 +43693,Delve the Card Game,6434,10,2967,26 +20182,Maxi Yatzy,6434,10,3155,25 +25727,Lock 'n Load Tactical: Day of Heroes,6434,10,3155,25 +64431,Buraco,6434,10,3155,25 +268159,Warhammer: The Game of Fantasy Battles (6th Edition),6434,10,3155,25 +270138,Terror Below,6434,10,3155,25 +951,Football Strategy,6434,10,3361,24 +5316,"Warhammer Epic 40,000",6434,10,3361,24 +202204,Munchkin Collectible Card Game,6434,10,3361,24 +9251,Whot,6434,10,3592,23 +12747,Scarabeo,6434,10,3592,23 +14001,Speed,6434,10,3592,23 +27658,Warhammer: Battle For Skull Pass,6434,10,3592,23 +34444,Misterio,6434,10,3592,23 +106560,American Mah Jongg,6434,10,3592,23 +160814,Cartoon Network Fluxx,6434,10,3592,23 +261490,Ringo,6434,10,3592,23 +270133,Sumo Slam!,6434,10,3592,23 +285789,Polyhedral Park Planner,6434,10,3592,23 +298528,BattleCON Fighting System,6434,10,3592,23 +8784,Po-Ke-No,6434,10,3819,22 +23919,China Rails,6434,10,3819,22 +24264,Button Soccer,6434,10,3819,22 +34450,Bluff,6434,10,3819,22 +155042,Steam Donkey,6434,10,3819,22 +163081,Galaxy of Trian,6434,10,3819,22 +255570,Brotherhood & Unity,6434,10,3819,22 +373084,Warhammer Underworlds: Gnarlwood,6434,10,3819,22 +669,Plague & Pestilence,6434,10,4078,21 +990,90 Grad,6434,10,4078,21 +2421,Tell Me: The Grand Quiz Game,6434,10,4078,21 +11182,Super Scrabble,6434,10,4078,21 +16804,Eastern Front: A Panzer Grenadier Game,6434,10,4078,21 +34390,Bakugan Battle Brawlers,6434,10,4078,21 +137685,Muses,6434,10,4078,21 +148205,Penny Press,6434,10,4078,21 +153498,Kamisado Max,6434,10,4078,21 +185244,Autumn,6434,10,4078,21 +198414,Dwarven Smithy,6434,10,4078,21 +243568,My Very First Games: To Market!,6434,10,4078,21 +254193,Fantastic Beasts: Perilous Pursuit,6434,10,4078,21 +297864,Экивоки,6434,10,4078,21 +299047,Disney Villainous: Perfectly Wretched,6434,10,4078,21 +312633,French Toast,6434,10,4078,21 +316407,Allegra,6434,10,4078,21 +365626,Qwixx: 10 Jahre Limited-Edition,6434,10,4078,21 +2229,Spiel,6434,10,4352,20 +2412,Wordthief,6434,10,4352,20 +14423,Husker Du?,6434,10,4352,20 +31117,Sudoku Moyo,6434,10,4352,20 +31542,Field of Glory: Ancient and Medieval Wargaming Rules,6434,10,4352,20 +35652,Log Jam,6434,10,4352,20 +89951,Offboard,6434,10,4352,20 +103061,Carnac,6434,10,4352,20 +154526,Payoff Pitch Baseball,6434,10,4352,20 +171835,Posthuman,6434,10,4352,20 +173389,Rush Hour Shift,6434,10,4352,20 +206591,Green Box of Games,6434,10,4352,20 +263,Manitou,6434,10,4679,19 +4385,A Gamut of Games,6434,10,4679,19 +4401,Canal Grande,6434,10,4679,19 +5205,G.E.V.,6434,10,4679,19 +11385,Stratego: Lord of the Rings Trilogy Edition,6434,10,4679,19 +11863,Rock Paper Scissors,6434,10,4679,19 +13115,Taki,6434,10,4679,19 +13464,Alfapet,6434,10,4679,19 +13512,Imagem & Ação 2,6434,10,4679,19 +25674,Khronos,6434,10,4679,19 +26696,Monopoly: Star Wars Limited Collector's Edition,6434,10,4679,19 +27682,Ultimate Werewolf: Whitebox Edition,6434,10,4679,19 +28739,Garibaldi: The Escape,6434,10,4679,19 +72751,Fleeting Foxes,6434,10,4679,19 +108155,Fox's Party,6434,10,4679,19 +124965,Dungeon Command: Heart of Cormyr,6434,10,4679,19 +171261,Hocus,6434,10,4679,19 +171489,Qwirkle Cards,6434,10,4679,19 +189678,Berserk: Heroes,6434,10,4679,19 +193512,Kingdom Defenders,6434,10,4679,19 +206851,Kivi,6434,10,4679,19 +233070,Aikamatka: Suomi,6434,10,4679,19 +262479,Pucket,6434,10,4679,19 +283466,Tanuki Market,6434,10,4679,19 +287952,Unstable Unicorns: NSFW Base Game,6434,10,4679,19 +338095,Taĉmento,6434,10,4679,19 +357746,Disney Sorcerer's Arena: Epic Alliances Core Set,6434,10,4679,19 +31,Dark World,6434,10,5069,18 +2156,Arch Rival,6434,10,5069,18 +3084,Buccaneer,6434,10,5069,18 +3553,Close Action: The Age of Fighting Sail Vol. 1,6434,10,5069,18 +3613,Air Superiority,6434,10,5069,18 +3705,Contraband,6434,10,5069,18 +4393,Elevator Eddie,6434,10,5069,18 +5791,Maelstrom,6434,10,5069,18 +6974,Barbu,6434,10,5069,18 +10575,Lightning Reaction,6434,10,5069,18 +16196,Sword and Sail,6434,10,5069,18 +16369,Das Kleine Gespenst,6434,10,5069,18 +19399,Socken zocken,6434,10,5069,18 +21849,UNO H2O Splash,6434,10,5069,18 +25999,Hus,6434,10,5069,18 +27306,Venedig,6434,10,5069,18 +31021,Shuffleboard Game,6434,10,5069,18 +31711,Twin Win,6434,10,5069,18 +32429,Mouse Match,6434,10,5069,18 +33964,Shokoba,6434,10,5069,18 +36985,Logger,6434,10,5069,18 +38873,Cambria,6434,10,5069,18 +41149,Linkage,6434,10,5069,18 +49276,"Battle for Moscow: Operation Typhoon, 1941",6434,10,5069,18 +59335,Wherewolf,6434,10,5069,18 +65565,Flicochet,6434,10,5069,18 +75668,Whist 22,6434,10,5069,18 +88960,Godzilla: Stomp!,6434,10,5069,18 +99392,Colonial: Europe's Empires Overseas,6434,10,5069,18 +104809,Kleiner Obstgarten,6434,10,5069,18 +120579,Spuzzle,6434,10,5069,18 +122913,Samurai Battles,6434,10,5069,18 +124969,Dungeon Command: Curse of Undeath,6434,10,5069,18 +137789,Office 21,6434,10,5069,18 +140612,The Hobbit: An Unexpected Journey,6434,10,5069,18 +142557,Rory's Story Cubes: Enchanted,6434,10,5069,18 +162315,Mouse Guard: Swords & Strongholds,6434,10,5069,18 +173536,2GM Tactics,6434,10,5069,18 +191916,Cubeo,6434,10,5069,18 +204504,Outlaws: Last Man Standing,6434,10,5069,18 +214343,Fantastic Gymnastics,6434,10,5069,18 +217990,Stellar Horizons,6434,10,5069,18 +220975,History Maker Golf,6434,10,5069,18 +230050,The Legend of Korra: Pro-Bending Arena,6434,10,5069,18 +234860,Hack Trick: It's Hacking Time,6434,10,5069,18 +251731,Lemonade Shake Up,6434,10,5069,18 +261624,Warfighter Shadow War: The Modern Night Combat Card Game,6434,10,5069,18 +280730,Monster! Monster!,6434,10,5069,18 +314413,Fluxx,6434,10,5069,18 +320559,Emboscados,6434,10,5069,18 +321711,My Very First Games: Rhino Hero Junior,6434,10,5069,18 +350,Hattrick,6434,10,5525,17 +484,Stratego Legends,6434,10,5525,17 +697,Conspiracy,6434,10,5525,17 +718,Galaxy: The Dark Ages,6434,10,5525,17 +1298,Monopoly: Star Wars,6434,10,5525,17 +1551,Sub Search,6434,10,5525,17 +2740,Jumbo Jet,6434,10,5525,17 +2794,Spinball,6434,10,5525,17 +2879,Encore,6434,10,5525,17 +3394,Monopoly: The Simpsons,6434,10,5525,17 +3435,Zwergen Ziehen,6434,10,5525,17 +3563,The Lord of the Rings: The Fellowship of the Ring,6434,10,5525,17 +5455,Tobruk: Tank Battles in North Africa 1942,6434,10,5525,17 +7400,LEGO Creator,6434,10,5525,17 +8490,Age of Napoleon,6434,10,5525,17 +9017,Rummikub Rummy Dice Game,6434,10,5525,17 +11106,"Warhammer 40,000: Rogue Trader",6434,10,5525,17 +15045,Risk: Star Wars – Clone Wars Edition,6434,10,5525,17 +15369,The Devil's Cauldron: The Battles for Arnhem and Nijmegen,6434,10,5525,17 +17623,Inferno,6434,10,5525,17 +18297,Experiment,6434,10,5525,17 +19811,Mix-Max,6434,10,5525,17 +19978,Maunz Maunz,6434,10,5525,17 +20122,Bunte Runde,6434,10,5525,17 +28944,Harzbahn 1873,6434,10,5525,17 +29030,Chicago Poker,6434,10,5525,17 +29096,Letter of Marque,6434,10,5525,17 +30958,Check Your 6!,6434,10,5525,17 +31968,Abalone Quattro,6434,10,5525,17 +35311,Sixis,6434,10,5525,17 +35674,Arktia,6434,10,5525,17 +37477,Osaki ni Shitsurei Shima-su!!,6434,10,5525,17 +41311,Black Stories 4,6434,10,5525,17 +68188,Levee En Masse,6434,10,5525,17 +72285,Totemo,6434,10,5525,17 +81850,Trigger!,6434,10,5525,17 +89972,15,6434,10,5525,17 +97990,UNO Roboto,6434,10,5525,17 +124622,In Magnificent Style: Pickett's Charge at Gettysburg,6434,10,5525,17 +130556,Shark Attacks!,6434,10,5525,17 +131484,Hoppa Galoppa,6434,10,5525,17 +137423,Pixel Tactics 2,6434,10,5525,17 +142558,Rory's Story Cubes: Prehistoria,6434,10,5525,17 +145478,HeartSwitch,6434,10,5525,17 +149051,Surprise Slides Game,6434,10,5525,17 +162559,Smash Up: Munchkin,6434,10,5525,17 +168834,Rocca Rails,6434,10,5525,17 +189869,The Butterfly Garden,6434,10,5525,17 +202375,Race,6434,10,5525,17 +209872,Keltis,6434,10,5525,17 +215521,Diceborn Heroes,6434,10,5525,17 +226643,Christmas Lights: A Card Game,6434,10,5525,17 +238935,Stool Pigeon,6434,10,5525,17 +247029,Sojourn,6434,10,5525,17 +258665,Get Packing,6434,10,5525,17 +260799,Trans Europa & Trans Amerika,6434,10,5525,17 +265226,Mint Tin Mini Skulduggery,6434,10,5525,17 +271554,Bounce Battle,6434,10,5525,17 +280501,Three-Dragon Ante: Legendary Edition,6434,10,5525,17 +282853,CATAN: Starfarers,6434,10,5525,17 +287410,Red Light Green Light: A Press Your Luck Racing Game,6434,10,5525,17 +298173,Honey Moon,6434,10,5525,17 +298619,15 Days,6434,10,5525,17 +326243,BUILDZI,6434,10,5525,17 +329293,Loading,6434,10,5525,17 +331573,Pusheen Purrfect Pick,6434,10,5525,17 +339647,One Night Ultimate Werewolf: Epic Battle,6434,10,5525,17 +367396,Avalon: Big Box,6434,10,5525,17 +633,Elixir,6434,10,6010,16 +936,The Fury of Dracula,6434,10,6010,16 +1211,Race Through Space,6434,10,6010,16 +1213,Nuclear Escalation,6434,10,6010,16 +1244,Meander,6434,10,6010,16 +1423,Storm over Arnhem,6434,10,6010,16 +1631,Barbarian Prince,6434,10,6010,16 +2081,The Civil War 1861-1865,6434,10,6010,16 +2301,The New Dungeon!,6434,10,6010,16 +2598,Tank Battle,6434,10,6010,16 +2640,Babylon 5 Collectible Card Game,6434,10,6010,16 +2792,Coco Crazy,6434,10,6010,16 +2884,Pathfinder,6434,10,6010,16 +3202,RAF,6434,10,6010,16 +3208,Dragonland,6434,10,6010,16 +3269,Clue: The Card Game,6434,10,6010,16 +3945,Forbidden Bridge,6434,10,6010,16 +4001,Space Marine,6434,10,6010,16 +4388,"Rome: Imperium, Circus Maximus, Hannibal vs Rome",6434,10,6010,16 +4789,Trivial Pursuit: Genus III,6434,10,6010,16 +4907,PAC-MAN Game,6434,10,6010,16 +5622,Pacific War: The Struggle Against Japan 1941-1945,6434,10,6010,16 +6613,"Downtown: Air War Over Hanoi, 1965-1972",6434,10,6010,16 +8487,Ants in the Pants,6434,10,6010,16 +9792,Oriente,6434,10,6010,16 +9825,Early American Chrononauts,6434,10,6010,16 +10687,Tipsy Tower,6434,10,6010,16 +11265,Wellington: The Peninsular War 1812-1814,6434,10,6010,16 +15830,Scene It? Disney,6434,10,6010,16 +17250,Monopoly: London,6434,10,6010,16 +18464,White Rabbit,6434,10,6010,16 +23779,Enemy Chocolatier,6434,10,6010,16 +23981,Genesis,6434,10,6010,16 +25695,Chopstick Dexterity MegaChallenge 3000,6434,10,6010,16 +26205,Monopoly: Euro,6434,10,6010,16 +28185,The Kaiser's Pirates,6434,10,6010,16 +29285,Case Blue,6434,10,6010,16 +30505,Apples to Apples: British Isles Edition,6434,10,6010,16 +31274,Zacrobates,6434,10,6010,16 +33801,UNO: The Simpsons – Special Edition Card Game,6434,10,6010,16 +34381,Käseklau!,6434,10,6010,16 +34639,The Dungeon of D,6434,10,6010,16 +35599,Witchcraft,6434,10,6010,16 +40531,Cosmic Encounter,6434,10,6010,16 +55131,Murus Gallicus,6434,10,6010,16 +55697,Power Struggle,6434,10,6010,16 +64735,Splut!,6434,10,6010,16 +71676,Back to the Future: The Card Game,6434,10,6010,16 +86128,Barons,6434,10,6010,16 +86169,King's Valley,6434,10,6010,16 +88521,Pharaoh,6434,10,6010,16 +90942,Mixtour,6434,10,6010,16 +102631,Tinco,6434,10,6010,16 +103368,Epigo,6434,10,6010,16 +119316,United Square,6434,10,6010,16 +123045,Uncharted: The Board Game,6434,10,6010,16 +127333,Schnipp & Weg,6434,10,6010,16 +135794,Méchanlou,6434,10,6010,16 +136240,Ignis,6434,10,6010,16 +140638,The Walking Dead Board Game: The Best Defense,6434,10,6010,16 +142063,Deadzone,6434,10,6010,16 +142691,World Series of Yahtzee,6434,10,6010,16 +143255,Goblins vs Zombies,6434,10,6010,16 +144464,Werwölfe Deluxe,6434,10,6010,16 +146207,Dead Man's Hand,6434,10,6010,16 +147423,Jumping Jack,6434,10,6010,16 +152245,Cards vs Dice: Strategically Lucky,6434,10,6010,16 +163040,Det dårlige selskab,6434,10,6010,16 +165552,Shark Mania,6434,10,6010,16 +168232,Project Dreamscape,6434,10,6010,16 +177976,Cunning Folk,6434,10,6010,16 +178154,One Hit Kill,6434,10,6010,16 +178494,Dutch Blitz: Blue Expansion Pack,6434,10,6010,16 +180845,Wibbell++,6434,10,6010,16 +181120,Pocket Invaders,6434,10,6010,16 +184917,Dicey Goblins,6434,10,6010,16 +196712,Battlestations: Second Edition,6434,10,6010,16 +198548,Color Wheel,6434,10,6010,16 +208663,Godforsaken Scavengers,6434,10,6010,16 +209530,Gwent: Nilfgaard and Northern Realms,6434,10,6010,16 +213788,Ascension: Year Three Collector's Edition,6434,10,6010,16 +222798,Pencil Park,6434,10,6010,16 +232201,Planetoid,6434,10,6010,16 +240463,Tournament Fishing: The Deckbuilding Game,6434,10,6010,16 +245700,Party Bugs,6434,10,6010,16 +249670,Fae,6434,10,6010,16 +253214,Escape Tales: The Awakening,6434,10,6010,16 +254394,Banned Books,6434,10,6010,16 +255072,Rainbow Bunny Bop,6434,10,6010,16 +256964,Dark Rituals: Malleus Maleficarum,6434,10,6010,16 +258466,The Great City of Rome,6434,10,6010,16 +259394,Storm Above the Reich,6434,10,6010,16 +263351,Abstratus,6434,10,6010,16 +269418,On the Rocks,6434,10,6010,16 +276169,For What Remains: Streets of Ruin,6434,10,6010,16 +284665,Board Royale: The Island,6434,10,6010,16 +286344,Conflict of Heroes: Storms of Steel – Kursk 1943 (Third Edition),6434,10,6010,16 +292126,Excavation Earth,6434,10,6010,16 +298764,The Great Barrier Reef Card Game,6434,10,6010,16 +299309,Nomids,6434,10,6010,16 +301616,"Hood Strikes North: The Tennessee Campaign, Fall 1864",6434,10,6010,16 +316972,Monster Soup,6434,10,6010,16 +317519,Frostgrave: Second Edition,6434,10,6010,16 +318559,Twinkle,6434,10,6010,16 +328365,Zumos: On the Rocks,6434,10,6010,16 +330664,Varuna,6434,10,6010,16 +334278,Black Hole: Kyrum,6434,10,6010,16 +339532,Battlecrest: Fellwoods Base Game,6434,10,6010,16 +341178,Bubble Stories,6434,10,6010,16 +354258,Aetherya,6434,10,6010,16 +362692,Handy Brawl,6434,10,6010,16 +367642,Copperdale,6434,10,6010,16 +374212,Nuts a GoGo!,6434,10,6010,16 +379153,Pacifica,6434,10,6010,16 +380439,Fiction,6434,10,6010,16 +382419,Spot it! Disney 100 Years of Wonder,6434,10,6010,16 +416,A to Z,6434,10,6574,15 +607,Honor of the Samurai,6434,10,6574,15 +716,Pizza Party,6434,10,6574,15 +723,The Uncanny X-Men Alert Adventure Game,6434,10,6574,15 +765,Space Walk,6434,10,6574,15 +840,Corsairs,6434,10,6574,15 +861,Weapons & Warriors: Castle Combat Set,6434,10,6574,15 +909,Saturn,6434,10,6574,15 +983,Tangoes,6434,10,6574,15 +1155,Capitol,6434,10,6574,15 +1370,The Classic Dungeon,6434,10,6574,15 +1426,Lord of the Rings: The Search,6434,10,6574,15 +1464,Duo,6434,10,6574,15 +1920,The Business Game,6434,10,6574,15 +2135,On the Edge,6434,10,6574,15 +2368,Battlecars,6434,10,6574,15 +2748,"Thirty Years War: Europe in Agony, 1618-1648",6434,10,6574,15 +2857,Jungle Jam,6434,10,6574,15 +3370,Connections,6434,10,6574,15 +3517,Tornado Rex,6434,10,6574,15 +3806,UNO: Star Trek,6434,10,6574,15 +3893,Full Thrust,6434,10,6574,15 +4427,Super Cluedo Challenge,6434,10,6574,15 +4845,Star Wars: Escape from Death Star Game,6434,10,6574,15 +4864,Scene It?: The DVD Movie Game,6434,10,6574,15 +5002,Pro Golf,6434,10,6574,15 +5014,Hands Up,6434,10,6574,15 +5312,Family Feud,6434,10,6574,15 +6581,Korea: The Forgotten War,6434,10,6574,15 +7514,Zombie Plague,6434,10,6574,15 +8983,I.Q. 2000,6434,10,6574,15 +9139,Marco Polo Expedition,6434,10,6574,15 +9794,Rummoli,6434,10,6574,15 +11628,Trivial Pursuit: Young Players Edition Master Game,6434,10,6574,15 +12205,In a Pickle,6434,10,6574,15 +12488,WARS Trading Card Game,6434,10,6574,15 +14054,Akaba,6434,10,6574,15 +14953,Backpacker,6434,10,6574,15 +16985,Gelb gewinnt!,6434,10,6574,15 +17285,Alfredo's Food Fight,6434,10,6574,15 +18975,Hunting Party,6434,10,6574,15 +19484,Wiochmen Rejser,6434,10,6574,15 +23249,Game of Games,6434,10,6574,15 +23959,Piranha Panic,6434,10,6574,15 +23964,The Game of Life (40th Anniversary Edition),6434,10,6574,15 +23985,Midgard,6434,10,6574,15 +25823,Cartagena 2. The Pirate's Nest,6434,10,6574,15 +28574,Magiczny Miecz,6434,10,6574,15 +30166,"The Good, the Bad, and the Munchkin",6434,10,6574,15 +31897,Anno 1701: Das Brettspiel,6434,10,6574,15 +32743,Black Stories: Mystery Edition,6434,10,6574,15 +32820,Strut!,6434,10,6574,15 +33359,Weilong,6434,10,6574,15 +33665,Battle Above the Clouds,6434,10,6574,15 +34010,Journey to the Center of the Earth,6434,10,6574,15 +35035,World at War: Blood and Bridges,6434,10,6574,15 +36616,Qyshinsu: Mystery of the Way,6434,10,6574,15 +39699,Einfach Genial: Das Kartenspiel,6434,10,6574,15 +40603,Incursion,6434,10,6574,15 +50458,Billy Biber,6434,10,6574,15 +55597,Chaos Marauders (Second Edition),6434,10,6574,15 +61902,Disney Apples to Apples,6434,10,6574,15 +64897,Formule Dé,6434,10,6574,15 +66088,Q•bitz,6434,10,6574,15 +67285,Armorica,6434,10,6574,15 +67309,Hey Waiter!,6434,10,6574,15 +67486,Bubble Talk,6434,10,6574,15 +69602,Phase 10: Das Brettspiel,6434,10,6574,15 +70096,Woolfy,6434,10,6574,15 +75448,Tanto Cuore: Romantic Vacation,6434,10,6574,15 +84159,Junta: Viva el Presidente!,6434,10,6574,15 +86542,Taiga,6434,10,6574,15 +91653,Zicke Zacke,6434,10,6574,15 +92499,Djam,6434,10,6574,15 +98203,Redakai,6434,10,6574,15 +99630,Rolling Stock,6434,10,6574,15 +101463,Paletto,6434,10,6574,15 +103670,Dust Warfare: Core Rulebook,6434,10,6574,15 +105024,Israeli Air Force Leader,6434,10,6574,15 +117914,Milestones,6434,10,6574,15 +119464,Tier auf Tier: Jetzt geht's rund!,6434,10,6574,15 +122399,Bloqs,6434,10,6574,15 +123923,Super Hero Squad Card Game,6434,10,6574,15 +127920,Kanzume Goddess,6434,10,6574,15 +129945,HomeStretch,6434,10,6574,15 +130242,Spice Merchant,6434,10,6574,15 +130295,Spellbound,6434,10,6574,15 +133956,Axis & Allies: WWI 1914,6434,10,6574,15 +151367,Heads Up!: Party Game,6434,10,6574,15 +153113,Slaughterball,6434,10,6574,15 +153639,Zeppelin Attack!,6434,10,6574,15 +154006,Time's Up! Family 2,6434,10,6574,15 +160419,Long Live the Queen,6434,10,6574,15 +163047,Yomi: Round 1,6434,10,6574,15 +163163,Grand Prix,6434,10,6574,15 +166859,Web of Spies,6434,10,6574,15 +170430,12 Days of Christmas,6434,10,6574,15 +172033,Crab Stack,6434,10,6574,15 +175495,Titan Race,6434,10,6574,15 +177147,Survive: Space Attack!,6434,10,6574,15 +178153,100 Swords: The Red Dragon's Dungeon,6434,10,6574,15 +180616,Ascension: Year Two Collector's Edition,6434,10,6574,15 +181328,Cornwall,6434,10,6574,15 +184730,Circle of Life,6434,10,6574,15 +186141,Tong,6434,10,6574,15 +187679,The Horus Heresy: Betrayal at Calth,6434,10,6574,15 +188204,De 7 geitjes,6434,10,6574,15 +189351,Virus,6434,10,6574,15 +191296,RUMBLESLAM,6434,10,6574,15 +191998,Lost Legacy: Fourth Chronicle – The Werewolf & Undying Heart,6434,10,6574,15 +206802,Spaghetti,6434,10,6574,15 +216357,Kiwetin,6434,10,6574,15 +216640,The Banishing,6434,10,6574,15 +217322,Caramba,6434,10,6574,15 +218161,Pit Crew,6434,10,6574,15 +226445,The Big Score,6434,10,6574,15 +227212,For Glory,6434,10,6574,15 +228051,"Warhammer 40,000: Heroes of Black Reach",6434,10,6574,15 +231215,Merchants of Muziris,6434,10,6574,15 +232822,Stratego,6434,10,6574,15 +236178,Mini DiverCity,6434,10,6574,15 +236905,Castles of Caleira,6434,10,6574,15 +237719,Meine ersten Spiele: Wir räumen auf,6434,10,6574,15 +246146,Most Wanted,6434,10,6574,15 +247778,Count of Nine,6434,10,6574,15 +249730,Fast Shot,6434,10,6574,15 +250664,Godtear,6434,10,6574,15 +251987,Rainbow Knights,6434,10,6574,15 +252163,Shardhunters,6434,10,6574,15 +253719,Getaway Driver,6434,10,6574,15 +254894,Catalyst,6434,10,6574,15 +255393,"Stalingrad '42: Southern Russia, June-December, 1942",6434,10,6574,15 +265430,Elekt,6434,10,6574,15 +268962,Encantados (Second/Third Edition),6434,10,6574,15 +274128,Epic Spell Wars of the Battle Wizards: Annihilageddon Deck-Building Game,6434,10,6574,15 +275034,Judge Dredd: Helter Skelter,6434,10,6574,15 +277662,Coralia,6434,10,6574,15 +279204,The North,6434,10,6574,15 +280475,Element: Silver,6434,10,6574,15 +280979,Turtle Race Mini,6434,10,6574,15 +285110,Valiant Wars,6434,10,6574,15 +286927,One Night Ultimate Super Heroes,6434,10,6574,15 +289467,Hour of Need,6434,10,6574,15 +302510,Mining Colony,6434,10,6574,15 +308386,LANTERN,6434,10,6574,15 +312859,Townsfolk Tussle,6434,10,6574,15 +314577,"Pacific War: The Struggle Against Japan, 1941-1945 (Second Edition)",6434,10,6574,15 +315048,Survive: Escape from Atlantis!,6434,10,6574,15 +317312,Kombo Klash!,6434,10,6574,15 +321506,Fröccs,6434,10,6574,15 +321537,Soviet Dawn: The Russian Civil War 1918-1921 – Deluxe Edition,6434,10,6574,15 +321720,Twisted Fables: Deluxe Edition,6434,10,6574,15 +322522,Rainbow Pirates,6434,10,6574,15 +323841,Spook Manor,6434,10,6574,15 +324930,I am a banana,6434,10,6574,15 +329084,Space Dragons,6434,10,6574,15 +331979,Quartermaster General WW2: 2nd Edition,6434,10,6574,15 +332943,Archduke,6434,10,6574,15 +334694,My Very First Games: Animal Upon Animal Junior,6434,10,6574,15 +347146,St Patrick,6434,10,6574,15 +347218,Dickory,6434,10,6574,15 +351077,Call to Adventure: Epic Origins,6434,10,6574,15 +355200,Marvel Zombies: X-Men Resistance,6434,10,6574,15 +372197,Snakes of Wrath,6434,10,6574,15 +381726,The Lucky Seven,6434,10,6574,15 +16,MarraCash,6434,10,7272,14 +59,Giganten,6434,10,7272,14 +72,Verräter,6434,10,7272,14 +296,Medieval Merchant,6434,10,7272,14 +359,Bucket Brigade,6434,10,7272,14 +1149,Dragon Strike,6434,10,7272,14 +1190,Continuo,6434,10,7272,14 +1212,Nuclear Proliferation,6434,10,7272,14 +1496,Imperium Romanum II,6434,10,7272,14 +1506,Conquistador: The Age of Exploration,6434,10,7272,14 +1901,Star Fleet Battle Force,6434,10,7272,14 +1962,Tribond,6434,10,7272,14 +2087,Magic Dance,6434,10,7272,14 +2250,Midway,6434,10,7272,14 +2543,Pompeji,6434,10,7272,14 +2573,"Rivers, Roads & Rails",6434,10,7272,14 +2607,Totopoly,6434,10,7272,14 +2872,Terrace,6434,10,7272,14 +3057,Warp 6,6434,10,7272,14 +3914,Splat!,6434,10,7272,14 +4753,King's Gate,6434,10,7272,14 +5242,The Game of Y,6434,10,7272,14 +5491,Time is Money,6434,10,7272,14 +5869,Mordred,6434,10,7272,14 +6719,Liberty: The American Revolution 1775-83,6434,10,7272,14 +8273,Alexandros,6434,10,7272,14 +8308,3D Labyrinth,6434,10,7272,14 +9354,Privacy,6434,10,7272,14 +9589,Dog Dice,6434,10,7272,14 +9629,Gnostica,6434,10,7272,14 +12996,Quips,6434,10,7272,14 +13676,The Perfect 10,6434,10,7272,14 +14992,Sword & Skull,6434,10,7272,14 +15196,Flunkern,6434,10,7272,14 +16232,Flying Hats,6434,10,7272,14 +16807,Swipe,6434,10,7272,14 +17517,Clue Mysteries,6434,10,7272,14 +18500,Sator Arepo Tenet Opera Rotas,6434,10,7272,14 +18905,Slap Jack,6434,10,7272,14 +18963,En Garde!,6434,10,7272,14 +19349,Zahlemann und Söhne,6434,10,7272,14 +19464,Soccer Tactics World,6434,10,7272,14 +19878,Lucca Città,6434,10,7272,14 +21022,Was'n das?,6434,10,7272,14 +21072,Santoska,6434,10,7272,14 +21287,Bison: Thunder on the Prairie,6434,10,7272,14 +22551,Risk: Star Wars – Original Trilogy Edition,6434,10,7272,14 +23348,Easter Island,6434,10,7272,14 +24935,Anima: Shadow of Omega,6434,10,7272,14 +25900,Kingdom of Heaven: The Crusader States 1097-1291,6434,10,7272,14 +31722,Steam over Holland,6434,10,7272,14 +32678,Hero: Immortal King – The Lair of the Lich,6434,10,7272,14 +35614,Where There Is Discord: War in the South Atlantic,6434,10,7272,14 +36400,The Guns of Gettysburg,6434,10,7272,14 +36560,Click Clack,6434,10,7272,14 +38786,"Red Winter: The Soviet Attack at Tolvajärvi, Finland – 8-12 December 1939",6434,10,7272,14 +40961,Topas,6434,10,7272,14 +41291,Ubongo Extreme: Fun-Size Edition,6434,10,7272,14 +42132,Scary Tales: Little Red vs. Pinocchio,6434,10,7272,14 +42702,Jackal,6434,10,7272,14 +58253,Appletters,6434,10,7272,14 +58936,Wars of the Roses: Lancaster vs. York,6434,10,7272,14 +66081,Pocket Battles: Elves vs. Orcs,6434,10,7272,14 +72809,Barbarossa,6434,10,7272,14 +78954,Mousquetaires du Roy,6434,10,7272,14 +80979,Fortuna,6434,10,7272,14 +89976,Bugs & Co,6434,10,7272,14 +92120,Atlantis Rising,6434,10,7272,14 +95234,Cthulhu Gloom,6434,10,7272,14 +99120,The Walking Dead: The Board Game,6434,10,7272,14 +102690,Villagers & Villains,6434,10,7272,14 +103236,Fusion,6434,10,7272,14 +103660,VivaJava: The Coffee Game,6434,10,7272,14 +106929,Top-A-Top,6434,10,7272,14 +109125,Wallenstein (Second Edition),6434,10,7272,14 +110160,Old Men of the Forest,6434,10,7272,14 +111999,Pharaoh Code,6434,10,7272,14 +114912,Starship Merchants,6434,10,7272,14 +119407,Dixit Jinx,6434,10,7272,14 +120268,Monsters & Maidens,6434,10,7272,14 +123185,Axis & Allies: 1941,6434,10,7272,14 +127432,Columba,6434,10,7272,14 +127721,Airborne In Your Pocket,6434,10,7272,14 +128938,Pack of Heroes,6434,10,7272,14 +129322,Kaijudo,6434,10,7272,14 +130723,Banana Matcho,6434,10,7272,14 +132019,Blood & Roses,6434,10,7272,14 +136245,Ka-Boom,6434,10,7272,14 +136494,Jake and the Never Land Pirates: Who Shook Hook?,6434,10,7272,14 +140796,Fluxx: The Board Game,6434,10,7272,14 +141653,Disc Duelers,6434,10,7272,14 +142364,Palmyra,6434,10,7272,14 +142687,oddball Äeronauts,6434,10,7272,14 +145599,Journey: Wrath of Demons,6434,10,7272,14 +154498,Till Dawn,6434,10,7272,14 +155157,Baby Blues,6434,10,7272,14 +155258,Guess the Mess!,6434,10,7272,14 +157322,Dice Brewing,6434,10,7272,14 +158109,Onward to Venus,6434,10,7272,14 +158168,NHL Power Play Team-Building Card Game,6434,10,7272,14 +159500,We Didn't Playtest This Either with Blue Deck and Dice Are Fun Expansions,6434,10,7272,14 +161578,[redacted],6434,10,7272,14 +164590,GYÜMI,6434,10,7272,14 +165346,Mint Tin Pirates,6434,10,7272,14 +166026,Munchkin Treasure Hunt,6434,10,7272,14 +169274,Pixel Tactics Deluxe,6434,10,7272,14 +170199,Solarius Mission,6434,10,7272,14 +171424,Kakerlakak,6434,10,7272,14 +171620,Thieves!,6434,10,7272,14 +172866,Dragon Punch,6434,10,7272,14 +177727,Haleakala,6434,10,7272,14 +178939,Dalek Dice,6434,10,7272,14 +179071,The Great Dinosaur Rush,6434,10,7272,14 +179460,Stronghold: 2nd edition,6434,10,7272,14 +181319,Familiar's Trouble,6434,10,7272,14 +181393,Brass Empire,6434,10,7272,14 +182635,Mr Lister's Quiz Shootout,6434,10,7272,14 +191579,Teenage Mutant Ninja Turtles Dice Masters,6434,10,7272,14 +193831,ColorFox,6434,10,7272,14 +195981,BEEEEES!,6434,10,7272,14 +196257,Castle Itter: The Strangest Battle of WWII,6434,10,7272,14 +197072,High Treason: The Trial of Louis Riel,6434,10,7272,14 +202207,Virulence: An Infectious Card Game,6434,10,7272,14 +203265,Braintopia Kids,6434,10,7272,14 +205819,Black Hills,6434,10,7272,14 +206757,Glory: A Game of Knights,6434,10,7272,14 +207910,Subatomic: An Atom Building Game,6434,10,7272,14 +208411,Unreal Estate,6434,10,7272,14 +209136,Q.E.,6434,10,7272,14 +209893,"Go, Go Little Penguin",6434,10,7272,14 +214213,Light & Dark,6434,10,7272,14 +216658,Smash Up: What Were We Thinking?,6434,10,7272,14 +216865,Sherman Leader,6434,10,7272,14 +219232,Ilôs,6434,10,7272,14 +225000,Pirate 21,6434,10,7272,14 +227127,Europe in Turmoil: Prelude to the Great War,6434,10,7272,14 +228580,Gearworks,6434,10,7272,14 +228740,Kitten Klash,6434,10,7272,14 +229453,CV Pocket,6434,10,7272,14 +230898,¡Adiós Calavera!,6434,10,7272,14 +238700,Lanzeloth,6434,10,7272,14 +239883,Bear Went Over the Mountain,6434,10,7272,14 +242722,Here I Stand: 500th Anniversary Edition,6434,10,7272,14 +244702,Geistesblitz Junior,6434,10,7272,14 +244794,Mercado,6434,10,7272,14 +246532,Rick and Morty: The Pickle Rick Game,6434,10,7272,14 +248125,Monumental,6434,10,7272,14 +249421,Warfighter: The WWII Pacific Combat Card Game,6434,10,7272,14 +253379,Cosmic Factory,6434,10,7272,14 +254923,That's Not Lemonade,6434,10,7272,14 +254994,Extraordinary Adventures: Pirates!,6434,10,7272,14 +255659,Ground Floor (Second Edition),6434,10,7272,14 +257006,Homebrewers,6434,10,7272,14 +257668,1906 San Francisco,6434,10,7272,14 +264326,K'uh Nah,6434,10,7272,14 +266219,Tiny Epic Zombies: Deluxe Edition,6434,10,7272,14 +268276,Star Trek Chrono-Trek,6434,10,7272,14 +268469,Pulp Invasion,6434,10,7272,14 +275215,Namiji,6434,10,7272,14 +283095,Cosmic Colonies,6434,10,7272,14 +284825,Florenza Dice Game,6434,10,7272,14 +286533,6 nimmt! Brettspiel,6434,10,7272,14 +286547,Wizard Würfelspiel,6434,10,7272,14 +290028,Codenames: The Simpsons,6434,10,7272,14 +293959,"Men of Iron Battles Tri-pack: Men of Iron, Infidel, Blood & Roses",6434,10,7272,14 +306687,Get Out of Colditz: The Card Game,6434,10,7272,14 +309003,The Detective Society,6434,10,7272,14 +313543,Something Wild!,6434,10,7272,14 +315953,Tiny Epic Dinosaurs: Deluxe Edition,6434,10,7272,14 +319807,Shogun no Katana,6434,10,7272,14 +322451,RisiKo!,6434,10,7272,14 +325941,Nemo's War: The Ultimate Edition,6434,10,7272,14 +331056,Mozzaroller,6434,10,7272,14 +333136,Football Highlights: The Dice Game,6434,10,7272,14 +335240,Vengeance: Roll & Fight – Episode 1,6434,10,7272,14 +341048,Free Ride,6434,10,7272,14 +341504,Colt Express: BIG BOX,6434,10,7272,14 +342016,Tetris,6434,10,7272,14 +349703,Race! Formula 90: 2nd Edition,6434,10,7272,14 +349805,Bismarck Solitaire,6434,10,7272,14 +350637,Regroup! Chicken Army,6434,10,7272,14 +350755,King of Monster Island,6434,10,7272,14 +352596,Ancient Realm,6434,10,7272,14 +352963,Waterloo Solitaire,6434,10,7272,14 +358981,"Air, Land, & Sea: Spies, Lies, & Supplies",6434,10,7272,14 +363183,Tokaido Duo,6434,10,7272,14 +365593,Old Town Road,6434,10,7272,14 +366488,Ticket to Ride: Ghost Train,6434,10,7272,14 +366753,Disney Villains: The Card Game,6434,10,7272,14 +367047,Caldera Park,6434,10,7272,14 +373621,Lone Sherman: A Solitaire Wargame,6434,10,7272,14 +146,Buy Low Sell High,6434,10,8014,13 +414,Around the World in 80 Days,6434,10,8014,13 +459,Ausgebremst,6434,10,8014,13 +828,Wizards,6434,10,8014,13 +1262,Axis & Allies: Pacific,6434,10,8014,13 +1297,Trivial Pursuit: Star Wars Classic Trilogy Collector's Edition,6434,10,8014,13 +1323,Cry Havoc,6434,10,8014,13 +1590,Stocks & Bonds,6434,10,8014,13 +1645,War of 1812,6434,10,8014,13 +2073,Sixth Fleet: Modern Naval Combat in the Mediterranean,6434,10,8014,13 +2314,Off to the Tower,6434,10,8014,13 +2318,Scrabble Junior,6434,10,8014,13 +2456,The Hobbit: The Defeat of Smaug,6434,10,8014,13 +2542,Gargon,6434,10,8014,13 +2833,Wanted!,6434,10,8014,13 +2947,Broker,6434,10,8014,13 +3263,Ukraine '43,6434,10,8014,13 +3921,Street Illegal,6434,10,8014,13 +4394,The Settlers of the Stone Age,6434,10,8014,13 +4953,1313 Dead End Drive,6434,10,8014,13 +6387,Mr. Mouth,6434,10,8014,13 +6627,Scream Machine,6434,10,8014,13 +6837,Electronic Battleship Advanced Mission,6434,10,8014,13 +8522,Ninja Burger,6434,10,8014,13 +8690,Buzzword,6434,10,8014,13 +9201,Spy,6434,10,8014,13 +13751,Under the Shadow of the Dragon,6434,10,8014,13 +14076,The Ladybug Game,6434,10,8014,13 +14683,Men of Iron,6434,10,8014,13 +15261,"Trump, Tricks, Game!",6434,10,8014,13 +15271,Contrario,6434,10,8014,13 +17705,Faces,6434,10,8014,13 +17962,Cranium Bumparena,6434,10,8014,13 +18246,Island Of D,6434,10,8014,13 +18400,Battle Beyond Space,6434,10,8014,13 +19622,A Victory Lost: Crisis in Ukraine 1942-1943,6434,10,8014,13 +19877,Beetlez,6434,10,8014,13 +21613,Diabolo,6434,10,8014,13 +21854,Los Mampfos,6434,10,8014,13 +21954,Perikles,6434,10,8014,13 +24028,Rukshuk,6434,10,8014,13 +24771,Null & Nichtig,6434,10,8014,13 +26156,Ausgerechnet Uppsala,6434,10,8014,13 +26840,Von 0 auf 100,6434,10,8014,13 +26946,Ladybohn: Manche mögen's heiss!,6434,10,8014,13 +28037,Wool Rules,6434,10,8014,13 +29736,Little Italy,6434,10,8014,13 +30057,Burger Joint,6434,10,8014,13 +30706,Make 'n' Break Extreme,6434,10,8014,13 +32032,Monopoly: Electronic Banking,6434,10,8014,13 +35556,Mini Make 'n' Break,6434,10,8014,13 +35661,Pick a Paint,6434,10,8014,13 +37755,Scallywags,6434,10,8014,13 +38981,Bobby Sitter,6434,10,8014,13 +39927,Last Train to Wensleydale,6434,10,8014,13 +40964,Unikato,6434,10,8014,13 +46748,Robo Champ,6434,10,8014,13 +49261,Kraby,6434,10,8014,13 +56707,Colonia,6434,10,8014,13 +56786,Kuhhandel Master,6434,10,8014,13 +60126,Take it Higher!,6434,10,8014,13 +60342,Kleine Magier,6434,10,8014,13 +64583,SWAT!,6434,10,8014,13 +65568,Jäger und Sammler,6434,10,8014,13 +65673,Masques,6434,10,8014,13 +69582,Buzz It!,6434,10,8014,13 +72478,Trollhalla,6434,10,8014,13 +73312,4 Seasons,6434,10,8014,13 +83667,First Train to Nuremberg,6434,10,8014,13 +89695,RoboDerby: Express,6434,10,8014,13 +94734,Heroica: Nathuz,6434,10,8014,13 +96026,18OE: On the Rails of the Orient Express,6434,10,8014,13 +100670,Défis Nature,6434,10,8014,13 +107680,Broomsticks and Backflips,6434,10,8014,13 +110868,Locke & Key: The Game,6434,10,8014,13 +111119,Perplexus Rookie,6434,10,8014,13 +117987,Einfach Genial: Das Würfelspiel,6434,10,8014,13 +118025,Waka Waka,6434,10,8014,13 +119781,Legacy: Gears of Time,6434,10,8014,13 +122889,Dominare,6434,10,8014,13 +126912,Lady Alice,6434,10,8014,13 +132322,Snug as a Bug in a Rug,6434,10,8014,13 +133528,City of Remnants,6434,10,8014,13 +138166,Huida de Silver City,6434,10,8014,13 +140172,Pelican Bay,6434,10,8014,13 +140271,Maximum Throwdown,6434,10,8014,13 +143882,HUND,6434,10,8014,13 +144150,Four Tribes,6434,10,8014,13 +144325,Munchkin Legends,6434,10,8014,13 +146910,Wildcatters,6434,10,8014,13 +147451,Field of Glory: The Card Game,6434,10,8014,13 +148443,Talo,6434,10,8014,13 +148586,Chicago Stock Exchange,6434,10,8014,13 +150539,Big Picture Apples to Apples,6434,10,8014,13 +151224,Veletas,6434,10,8014,13 +152847,Shinobi WAT-AAH!,6434,10,8014,13 +154343,Sorry! with Fire & Ice Power-ups,6434,10,8014,13 +154509,Kingsport Festival,6434,10,8014,13 +154602,Night of the Grand Octopus,6434,10,8014,13 +155822,Krosmaster Junior,6434,10,8014,13 +160559,Simurgh,6434,10,8014,13 +162591,Heroes,6434,10,8014,13 +164702,Glorantha: The Gods War,6434,10,8014,13 +166931,Ghost Blaster,6434,10,8014,13 +171037,Doctor Panic,6434,10,8014,13 +172207,Unspeakable Words: Deluxe Edition,6434,10,8014,13 +173441,Bring Your Own Book,6434,10,8014,13 +173805,Lobotomy,6434,10,8014,13 +175458,Bad Beets,6434,10,8014,13 +180867,Kitty Paw,6434,10,8014,13 +181476,Nuts about Mutts,6434,10,8014,13 +183643,Jeju Island,6434,10,8014,13 +185817,Metropolia,6434,10,8014,13 +187700,GKR: Heavy Hitters,6434,10,8014,13 +192673,Martians: A Story of Civilization,6434,10,8014,13 +193486,Neolithic,6434,10,8014,13 +193739,Jórvík,6434,10,8014,13 +201037,Ghostbusters: Protect the Barrier Game,6434,10,8014,13 +201186,Summit: The Board Game,6434,10,8014,13 +205873,Freaky,6434,10,8014,13 +209737,The Fairy Game,6434,10,8014,13 +215308,Indulgence,6434,10,8014,13 +216381,Hand of Fate: Ordeals,6434,10,8014,13 +218824,Game of Quotes: Verrückte Zitate,6434,10,8014,13 +220792,The Expanse Board Game,6434,10,8014,13 +223538,Fast Food Fear!,6434,10,8014,13 +224011,Gold Armada,6434,10,8014,13 +224133,The Cousins' War,6434,10,8014,13 +231554,Herbalism,6434,10,8014,13 +234337,Senators,6434,10,8014,13 +234429,Raids,6434,10,8014,13 +234828,Xi'an,6434,10,8014,13 +235511,Team UP!,6434,10,8014,13 +235902,Natives,6434,10,8014,13 +237009,Urbino,6434,10,8014,13 +237251,Biosphere,6434,10,8014,13 +238916,Shadows of Kilforth: A Fantasy Quest Game,6434,10,8014,13 +240822,Troika,6434,10,8014,13 +244212,Railroad Rivals,6434,10,8014,13 +245658,Unicorn Fever,6434,10,8014,13 +249414,Backyard Builders Treehouse,6434,10,8014,13 +250621,18Lilliput,6434,10,8014,13 +251481,Braintopia Beyond,6434,10,8014,13 +252212,Tales of Evil,6434,10,8014,13 +252265,Passtally,6434,10,8014,13 +252556,Bosk,6434,10,8014,13 +256713,One Deck Galaxy,6434,10,8014,13 +257321,Gen7: A Crossroads Game,6434,10,8014,13 +260322,Potions Class,6434,10,8014,13 +260410,Horizon Zero Dawn: The Board Game,6434,10,8014,13 +265684,Subtext,6434,10,8014,13 +266964,Dice Throne: Season Two – Seraph v. Vampire Lord,6434,10,8014,13 +271762,Oh My Gold!,6434,10,8014,13 +272240,Rakieta imprezowa,6434,10,8014,13 +272438,Blockbuster,6434,10,8014,13 +272993,Dragonrealm,6434,10,8014,13 +275913,Bruxelles 1897,6434,10,8014,13 +276497,La Viña,6434,10,8014,13 +276499,Ratzzia,6434,10,8014,13 +279649,Balk,6434,10,8014,13 +282954,Paris,6434,10,8014,13 +285183,Secret Operation,6434,10,8014,13 +286343,Conflict of Heroes: Awakening the Bear – Operation Barbarossa 1941 (Third Edition),6434,10,8014,13 +289565,Hunted: Mining Colony 415,6434,10,8014,13 +296576,There's Been A Murder,6434,10,8014,13 +297666,Jurassic Brunch,6434,10,8014,13 +297673,Pocket Paragons,6434,10,8014,13 +300521,Rush Out!,6434,10,8014,13 +302270,Marshmallow Test,6434,10,8014,13 +302882,The Dwarves: Big Box,6434,10,8014,13 +311465,Roll & Raid,6434,10,8014,13 +311920,Ultimate Werewolf: Extreme,6434,10,8014,13 +313065,Transmissions,6434,10,8014,13 +314019,Solar Storm: Deluxe Edition,6434,10,8014,13 +315670,Animal Upon Animal: Dinos,6434,10,8014,13 +317231,Monasterium,6434,10,8014,13 +320855,Sakura Arms: Yurina Box,6434,10,8014,13 +321699,Camisa 12,6434,10,8014,13 +322589,Zapotec,6434,10,8014,13 +322616,Comic Hunters,6434,10,8014,13 +322739,Platypus,6434,10,8014,13 +324090,Scarface 1920,6434,10,8014,13 +324345,Cat in the box,6434,10,8014,13 +331820,Rolling Heights,6434,10,8014,13 +338069,Spire's End: Hildegard,6434,10,8014,13 +341245,Garden Nation,6434,10,8014,13 +341753,Tholos,6434,10,8014,13 +347157,RabbitZ & Robots,6434,10,8014,13 +347311,Delicious,6434,10,8014,13 +351488,Six Second Scribbles,6434,10,8014,13 +355876,Les Gardiens de Havresac,6434,10,8014,13 +358805,Infernal Wagon,6434,10,8014,13 +360503,Downtown Farmers Market,6434,10,8014,13 +360951,Catherine: The Cities of the Tsarina,6434,10,8014,13 +362366,Junk Drawer,6434,10,8014,13 +362418,Grove,6434,10,8014,13 +362700,Biomos,6434,10,8014,13 +365103,Voll auf die 18,6434,10,8014,13 +365258,World Wonders,6434,10,8014,13 +366194,A Wayfarer's Tale,6434,10,8014,13 +366397,Colorado,6434,10,8014,13 +370130,GAP,6434,10,8014,13 +265,Intrigue,6434,10,8885,12 +279,The Very Clever Pipe Game,6434,10,8885,12 +389,Die Mauer,6434,10,8885,12 +534,N.Y. Chase,6434,10,8885,12 +1144,The Warlock of Firetop Mountain,6434,10,8885,12 +1216,Mystery Garden,6434,10,8885,12 +1520,Monad,6434,10,8885,12 +2535,Valley of the Mammoths,6434,10,8885,12 +2940,A Dog's Life,6434,10,8885,12 +3119,Haste Worte?,6434,10,8885,12 +3139,Goldland,6434,10,8885,12 +3595,Squint,6434,10,8885,12 +4219,Goal,6434,10,8885,12 +5015,Don't Spill the Beans,6434,10,8885,12 +5960,Strike Force One: The Cold War Heats Up – 1975,6434,10,8885,12 +6927,Hornet Leader,6434,10,8885,12 +8041,Monopoly: The Lord of the Rings Trilogy Edition,6434,10,8885,12 +9021,Sunken City,6434,10,8885,12 +9293,Turbulent Top,6434,10,8885,12 +10559,Why Did the Chicken...?,6434,10,8885,12 +13271,Frantic Frankfurt,6434,10,8885,12 +17997,Anno Domini: Sex & Crime,6434,10,8885,12 +20134,The End of the Triumvirate,6434,10,8885,12 +21463,John Silver,6434,10,8885,12 +22237,Hart an der Grenze,6434,10,8885,12 +25234,Catan Histories: Struggle for Rome,6434,10,8885,12 +28609,The Game of Life: Twists & Turns,6434,10,8885,12 +30951,Nanu?,6434,10,8885,12 +34284,Graffiti,6434,10,8885,12 +36659,Free Trader,6434,10,8885,12 +40238,Order Up,6434,10,8885,12 +41749,American Rails,6434,10,8885,12 +42743,Opera,6434,10,8885,12 +44558,Beer & Pretzels,6434,10,8885,12 +62225,Infidel,6434,10,8885,12 +65907,Mystery Express,6434,10,8885,12 +66982,Boomerang,6434,10,8885,12 +68247,The Mines of Zavandor,6434,10,8885,12 +68606,12 Realms,6434,10,8885,12 +71973,Crows,6434,10,8885,12 +84469,Fürstenfeld,6434,10,8885,12 +114261,Malta Besieged: 1940-1942,6434,10,8885,12 +116981,Star Wars: Battle of Hoth,6434,10,8885,12 +123096,Space Cadets,6434,10,8885,12 +126025,Rise of the Zombies!,6434,10,8885,12 +130229,Out of Gears,6434,10,8885,12 +140279,Clacks: A Discworld Board Game,6434,10,8885,12 +140343,Carnival Zombie,6434,10,8885,12 +146158,New Haven,6434,10,8885,12 +147707,Mush! Mush!: Snow Tails 2,6434,10,8885,12 +147747,Super Fantasy: Ugly Snouts Assault,6434,10,8885,12 +148744,City of Zombies,6434,10,8885,12 +153625,Han,6434,10,8885,12 +153912,Mystery of the Abbey with The Pilgrims' Chronicles,6434,10,8885,12 +154443,Madame Ching,6434,10,8885,12 +155081,POOP: The Game,6434,10,8885,12 +166776,Skull Tales,6434,10,8885,12 +166857,Antike II,6434,10,8885,12 +169530,Resistor_,6434,10,8885,12 +171090,Monopoly Junior: Disney Frozen,6434,10,8885,12 +172932,Flashlights & Fireflies,6434,10,8885,12 +174524,Saloon Tycoon,6434,10,8885,12 +179719,Risk: Game of Thrones,6434,10,8885,12 +180785,Mighty Monsters,6434,10,8885,12 +182351,Thief's Market,6434,10,8885,12 +189341,Timeline: Québec,6434,10,8885,12 +191877,Touria,6434,10,8885,12 +192274,Bethel Woods,6434,10,8885,12 +192345,Monkey Business,6434,10,8885,12 +193213,Millions of Dollars,6434,10,8885,12 +194088,Fast Flip,6434,10,8885,12 +196354,Era of Tribes,6434,10,8885,12 +200924,Order of the Gilded Compass,6434,10,8885,12 +201006,Bumúntú,6434,10,8885,12 +202732,Raise Your Goblets,6434,10,8885,12 +202977,Cytosis: A Cell Biology Board Game,6434,10,8885,12 +204286,Big Trouble in Little China: The Game,6434,10,8885,12 +213661,Food Truck Champion,6434,10,8885,12 +214293,Mountains of Madness,6434,10,8885,12 +222407,Lignum (Second Edition),6434,10,8885,12 +228867,Unlock!: Mystery Adventures,6434,10,8885,12 +231991,Firefly Adventures: Brigands and Browncoats,6434,10,8885,12 +232079,How to Rob a Bank,6434,10,8885,12 +233006,Carthago: Merchants & Guilds,6434,10,8885,12 +233015,Imperius,6434,10,8885,12 +233206,Werebeasts,6434,10,8885,12 +235342,Stalingrad: Inferno on the Volga,6434,10,8885,12 +237629,Cortex Challenge 2,6434,10,8885,12 +242149,Vadoran Gardens,6434,10,8885,12 +243797,Mezo,6434,10,8885,12 +247191,Ya Blew It!,6434,10,8885,12 +247980,Walls of York,6434,10,8885,12 +250725,Thrive,6434,10,8885,12 +255363,ArchRavels,6434,10,8885,12 +255615,GoodCritters,6434,10,8885,12 +257380,Counterfeiters,6434,10,8885,12 +257834,Ramen,6434,10,8885,12 +257966,Passing Through Petra,6434,10,8885,12 +264295,Fabulantica,6434,10,8885,12 +264982,Coloma,6434,10,8885,12 +277448,Coloma: Deluxe Edition,6434,10,8885,12 +281132,Cover Your Kingdom,6434,10,8885,12 +281455,Shelfie Stacker,6434,10,8885,12 +281549,Beast,6434,10,8885,12 +285535,5er Finden,6434,10,8885,12 +286431,Electropolis,6434,10,8885,12 +286770,Rosetta: The Lost Language,6434,10,8885,12 +290025,Astronomy Fluxx,6434,10,8885,12 +290756,Sirvam o Rei,6434,10,8885,12 +296043,Four Gardens,6434,10,8885,12 +298229,Steampunk Rally Fusion,6434,10,8885,12 +303733,Space Lunch,6434,10,8885,12 +303961,La Spedizione Perduta,6434,10,8885,12 +305984,GPS,6434,10,8885,12 +309129,Disney: The Haunted Mansion – Call of the Spirits Game,6434,10,8885,12 +310203,Tiny Epic Pirates: Deluxe Edition,6434,10,8885,12 +316857,Plantopia: The Card Game,6434,10,8885,12 +318450,Bios: Mesofauna,6434,10,8885,12 +319196,Gùgōng: Deluxe Big Box,6434,10,8885,12 +321277,Tinners' Trail,6434,10,8885,12 +322563,Dice Throne: Season One ReRolled – Pyromancer v. Shadow Thief,6434,10,8885,12 +322588,Origins: First Builders,6434,10,8885,12 +324885,Das NEINhorn,6434,10,8885,12 +325022,Coffee Traders,6434,10,8885,12 +331647,Mazescape: Labýrinthos,6434,10,8885,12 +338678,Taco Hat Cake Gift Pizza,6434,10,8885,12 +339614,Shinkansen: Zero Kei,6434,10,8885,12 +340237,Wonder Book,6434,10,8885,12 +341315,Olé Guacamole,6434,10,8885,12 +341510,Rainbow,6434,10,8885,12 +343362,Oak,6434,10,8885,12 +345868,Federation,6434,10,8885,12 +346057,Don't Go In There,6434,10,8885,12 +347811,Too Many Bones: Unbreakable,6434,10,8885,12 +351735,Newton & Great Discoveries,6434,10,8885,12 +354669,Break the Cube,6434,10,8885,12 +356754,Tamashii: Chronicle of Ascend,6434,10,8885,12 +358800,Star Wars Villainous: Power of the Dark Side,6434,10,8885,12 +359999,Agricola 15,6434,10,8885,12 +362020,Cosmoctopus,6434,10,8885,12 +362121,Sunshine City,6434,10,8885,12 +368305,Life of the Amazonia,6434,10,8885,12 +374502,Stranger Things: Upside Down,6434,10,8885,12 +380938,Archeos Society,6434,10,8885,12 +383579,BOOoop.,6434,10,8885,12 +391834,SpellBook,6434,10,8885,12 +20,Full Metal Planète,6434,10,9839,11 +1143,Warrior Knights,6434,10,9839,11 +2962,Inner Circle,6434,10,9839,11 +3154,Nautilus,6434,10,9839,11 +3702,Topple,6434,10,9839,11 +8569,The Haunting House,6434,10,9839,11 +9408,Dos Rios,6434,10,9839,11 +20436,Stonehenge: An Anthology Board Game,6434,10,9839,11 +38309,God's Playground,6434,10,9839,11 +40761,Montego Bay,6434,10,9839,11 +53840,Adventure of D,6434,10,9839,11 +104581,Panic on Wall Street!,6434,10,9839,11 +138016,WordARound,6434,10,9839,11 +148047,Boom: Runaway,6434,10,9839,11 +156548,Super Dungeon Explore: Forgotten King,6434,10,9839,11 +161530,Jäger und Späher,6434,10,9839,11 +166202,Bomb Squad Academy,6434,10,9839,11 +169704,Vault Wars,6434,10,9839,11 +174155,Lignum,6434,10,9839,11 +176589,Cat Box,6434,10,9839,11 +192120,Meeple War,6434,10,9839,11 +193840,The Dragon & Flagon,6434,10,9839,11 +193927,Vanuatu (Second Edition),6434,10,9839,11 +194286,Catacombs & Castles,6434,10,9839,11 +206490,An Infamous Traffic,6434,10,9839,11 +207898,Captive,6434,10,9839,11 +209664,Skyward,6434,10,9839,11 +228452,Adamastor,6434,10,9839,11 +251420,Choose Your Own Adventure: House of Danger,6434,10,9839,11 +251890,Gunkimono,6434,10,9839,11 +266967,Dice Throne: Season Two – Cursed Pirate v. Artificer,6434,10,9839,11 +268936,Llamas Unleashed,6434,10,9839,11 +272427,Terramara,6434,10,9839,11 +274432,Kauchuk,6434,10,9839,11 +278120,God of War: The Card Game,6434,10,9839,11 +281664,No Return,6434,10,9839,11 +289018,On a Scale of One to T-Rex,6434,10,9839,11 +292032,Funkoverse Strategy Game: Harry Potter 100,6434,10,9839,11 +295905,Cosmic Frog,6434,10,9839,11 +302926,Silver Coin,6434,10,9839,11 +306169,MATCH 5,6434,10,9839,11 +313261,Oriflamme: Ablaze,6434,10,9839,11 +330403,Moon Adventure,6434,10,9839,11 +330608,Cryo,6434,10,9839,11 +339031,The Goonies: Never Say Die,6434,10,9839,11 +358320,Sleeping Gods: Distant Skies,6434,10,9839,11 +362986,Tribes of the Wind,6434,10,9839,11 diff --git a/experiments/g_index/players.csv b/experiments/g_index/players.csv new file mode 100644 index 0000000000000000000000000000000000000000..683e5903f74585d358e4f4bd3a975e8fbce9a8f3 --- /dev/null +++ b/experiments/g_index/players.csv @@ -0,0 +1,41630 @@ +rank_h_index,h_index,rank_g_index,g_index,bgg_user_name +1,92,136,98,blackpharaoh +2,84,16,184,danissimus +3,82,39,137,russ +4,80,23,168,sa266 +4,80,47,128,tr0llet +6,78,42,135,smiley7172015 +7,75,44,131,ljourneymanl +8,71,13,197,neiln99 +9,70,27,160,rseater +10,67,9,222,yzemaze +10,67,24,164,skifreak737 +10,67,150,96,plush +13,66,36,142,lauro +13,66,47,128,jgoyes +15,65,18,178,mr mjeh +15,65,131,99,bgdigger +15,65,242,86,gregburbidge +18,64,50,126,hylsberg +18,64,209,89,betsychuck +20,63,17,179,gnomekin +20,63,54,120,lajr +22,62,54,120,nishikawa-collector +23,61,37,141,ruffalo +23,61,75,112,hilkman +23,61,242,86,olavf +23,61,493,72,jphillipson +27,60,22,169,tiagovip +27,60,64,115,andrepor +27,60,94,107,clemenswb +27,60,216,88,forlorn110 +31,59,61,117,wilcoxdave +31,59,196,90,timon of athens +31,59,413,75,heavyd +34,58,79,110,miksuleppis +34,58,113,102,captncavern +34,58,147,97,jumatake +34,58,161,94,bnordeng +34,58,180,92,quartzgamer +39,57,180,92,chrizlutz +39,57,252,85,dgbg +41,56,78,111,nap16 +41,56,85,109,gurth +41,56,252,85,akapastorguy +41,56,1362,56,rabesandratana +45,55,85,109,jcarvin +45,55,94,107,fnord23 +45,55,94,107,nightmare +45,55,100,106,stormknight +45,55,113,102,patchwerq +45,55,161,94,barteus +45,55,252,85,aernoutmjc +52,54,29,153,joerockehf +52,54,64,115,birdman284 +52,54,106,104,bubbaxis +52,54,113,102,pikkusiili2000 +52,54,196,90,gregrice23 +52,54,209,89,gaulamos +58,53,106,104,markmcmulti +58,53,120,101,rubeus +58,53,136,98,orphebus +58,53,150,96,dkirchert +58,53,180,92,werbaer +58,53,230,87,r56ygf +58,53,298,81,team_bonnie +65,52,85,109,sintonic +65,52,230,87,jtakagi +65,52,652,67,slevin678 +65,52,843,63,sefrite +69,51,40,136,jim_p +69,51,46,129,dam the man +69,51,56,119,fazermozg +69,51,196,90,jimzik +69,51,196,90,pzvie +69,51,216,88,1mmirg +69,51,589,69,mr penguin +76,50,15,187,benron +76,50,33,149,neil thomson +76,50,79,110,gamesnight +76,50,79,110,shizzane +76,50,120,101,tom-le-termite +76,50,216,88,cdevos +76,50,230,87,marnak +76,50,266,84,timmierz +76,50,438,74,sebert +76,50,493,72,jjc552 +76,50,589,69,msaari +76,50,589,69,saldagon +76,50,1034,60,agn1964 +89,49,21,172,senorcoo +89,49,216,88,snoozefest +89,49,361,77,agricolafarm +89,49,438,74,sir yuru +89,49,473,73,dblayton +89,49,493,72,miinin +89,49,559,70,matmo +96,48,18,178,xnardnkita +96,48,75,112,maxvigne +96,48,85,109,ny518 +96,48,110,103,geeken +96,48,131,99,krwoods1 +96,48,190,91,1point21gigawatts +96,48,196,90,dancingdanslc +96,48,289,82,lilian +96,48,361,77,bobby4th +96,48,361,77,dsmeyer +96,48,390,76,artmark +96,48,413,75,gerarddeg +96,48,413,75,kataclysm +96,48,589,69,dd68 +96,48,623,68,kungfuhippie +111,47,47,128,familywontplay +111,47,93,108,irwinbuijs +111,47,131,99,megamau +111,47,161,94,gibmaatsuki +111,47,170,93,larryjrice +111,47,180,92,malorick +111,47,216,88,mikehulsebus +111,47,252,85,panotxa +111,47,273,83,dchamp +111,47,326,79,tapanote +111,47,361,77,baron frog +111,47,361,77,boromir1983 +111,47,361,77,sheylon +111,47,413,75,jayboy +111,47,559,70,manellii +111,47,787,64,b0ardgamer +111,47,787,64,michiel +128,46,32,150,gmg159 +128,46,147,97,pola +128,46,170,93,hendal +128,46,190,91,woodnoggin +128,46,209,89,lovelace +128,46,209,89,saccenti +128,46,230,87,sqar +128,46,252,85,dubbelnisse +128,46,252,85,islander +128,46,252,85,valon12 +128,46,273,83,betote +128,46,273,83,jhauser42 +128,46,318,80,eric brosius +128,46,318,80,katielou +128,46,326,79,spiderrunnertim +128,46,390,76,kristobald +128,46,413,75,mmihaela +128,46,493,72,jaskier +128,46,522,71,kcandmythreesons +128,46,522,71,syr99 +128,46,589,69,jmdsplotter +128,46,696,66,craigd74 +128,46,696,66,kerstinee +128,46,741,65,popebrain +128,46,843,63,stratonifler +128,46,914,62,lacxox +128,46,914,62,tamn +128,46,970,61,zenfun +128,46,1202,58,arumata +128,46,1276,57,spacealien +158,45,64,115,ranior +158,45,136,98,meeplemaven +158,45,155,95,critical mass +158,45,161,94,alterno +158,45,170,93,decebo +158,45,242,86,spellengek +158,45,289,82,ironmoss +158,45,298,81,jwml +158,45,318,80,roninn +158,45,361,77,avron +158,45,413,75,cookehj +158,45,413,75,raile +158,45,438,74,carthoris +158,45,438,74,jugular +158,45,493,72,saracv +158,45,522,71,ellstar +158,45,559,70,jlukac +158,45,559,70,peter the rat +158,45,623,68,sahrinoa +158,45,787,64,tallboy +158,45,914,62,lolcese +158,45,1034,60,kerbster76 +180,44,45,130,tradenmyr +180,44,63,116,pfluftl +180,44,94,107,ryoga121 +180,44,113,102,cybrmage13 +180,44,170,93,mitcharf +180,44,216,88,vidaldo +180,44,230,87,will98683 +180,44,289,82,grildensnork +180,44,298,81,beru +180,44,318,80,elrond3737 +180,44,318,80,skrabi +180,44,326,79,taliaisabelle +180,44,340,78,gamer dc +180,44,340,78,hawk-x- +180,44,361,77,seanxor +180,44,361,77,tropicana55 +180,44,390,76,maiknovember +180,44,390,76,mark taylor +180,44,438,74,captainjax +180,44,438,74,jhaimowitz +180,44,438,74,toc13 +180,44,473,73,baltu_kobalts +180,44,559,70,boltongeordie +180,44,559,70,mixo +180,44,623,68,vadgil +180,44,741,65,vica8081 +180,44,843,63,elbobo +180,44,970,61,exoow +180,44,1276,57,druvey +180,44,1362,56,olafslomp +210,43,58,118,marble911 +210,43,266,84,orlando_wordsmith +210,43,289,82,amassgames +210,43,298,81,itiswon +210,43,340,78,kardos16 +210,43,340,78,matthewjhoskins +210,43,361,77,jetimmerman +210,43,390,76,leroy43 +210,43,438,74,d bo +210,43,438,74,diabolus +210,43,438,74,simon craddock +210,43,493,72,sgtcantamal +210,43,623,68,nobuaki +210,43,623,68,twood1972 +210,43,652,67,kontrabas +210,43,696,66,dazeysan +210,43,696,66,lausus +210,43,741,65,wostok +210,43,843,63,kaichi +210,43,914,62,rynelf +210,43,970,61,yourloveonly +210,43,1109,59,theoclarke +210,43,1362,56,enibas642 +210,43,1362,56,thebosun +210,43,1906,51,kevinruns262 +235,42,11,210,eeeville +235,42,180,92,markus_mzh +235,42,196,90,lothrain +235,42,196,90,spacie81 +235,42,298,81,bart plasman +235,42,326,79,irishblacksheep +235,42,326,79,jrb259 +235,42,326,79,lambo89 +235,42,390,76,iklinck +235,42,493,72,geef +235,42,522,71,achherrje +235,42,522,71,jamzuks +235,42,559,70,aciosek +235,42,559,70,bagherra +235,42,559,70,geki +235,42,559,70,gregrich +235,42,559,70,shaddy +235,42,589,69,jiacomino +235,42,589,69,ogrusshood +235,42,652,67,maloma +235,42,696,66,indigopotter +235,42,787,64,geneze_cb +235,42,787,64,momov +235,42,787,64,msaya +235,42,787,64,pedrog +235,42,843,63,ralphnanco +235,42,843,63,vincentdarlage +235,42,914,62,rgtft +235,42,1034,60,frothy brew +235,42,1034,60,ousgg +235,42,1109,59,jojo 96 +235,42,1568,54,schwarzspecht +235,42,1792,52,celtic77 +268,41,30,151,ekted +268,41,52,124,alpacino11 +268,41,64,115,pmatheus +268,41,136,98,computer82 +268,41,161,94,vorpalgens +268,41,180,92,cerulean +268,41,180,92,gische +268,41,242,86,carlcorey +268,41,242,86,jade_alarm +268,41,273,83,mimem +268,41,298,81,mitnachtkaubo-i +268,41,361,77,666lordevil666 +268,41,413,75,glsonn +268,41,473,73,crimescene +268,41,473,73,seneca29 +268,41,522,71,cypar7 +268,41,522,71,m0rlo +268,41,589,69,kladan +268,41,623,68,qeester +268,41,652,67,ericlosiewicz +268,41,652,67,pura_vida +268,41,787,64,cotteux +268,41,843,63,camax +268,41,843,63,hiko seijuro +268,41,843,63,jappie2005 +268,41,970,61,chrb +268,41,970,61,pyr-shep +268,41,1034,60,jharper921 +268,41,1109,59,juandalf +268,41,1109,59,rmartinc +268,41,1276,57,tiggers +268,41,1362,56,chuie +268,41,1362,56,entwife +268,41,1362,56,stebourd +268,41,1459,55,coplosylvain +268,41,1568,54,adamdi5 +304,40,34,143,pendragon714 +304,40,155,95,alduc +304,40,161,94,manucube +304,40,170,93,pottaway +304,40,242,86,sarsenlintel +304,40,273,83,hyde85 +304,40,298,81,islanddave2 +304,40,361,77,herald selenay +304,40,390,76,markus shepherd +304,40,390,76,povertidonki +304,40,413,75,katmunchkinmad +304,40,438,74,klydefrog +304,40,473,73,greengow +304,40,493,72,xobxela +304,40,522,71,cerberus777 +304,40,522,71,doooot +304,40,522,71,kankra +304,40,522,71,mortenmdk +304,40,559,70,ciggie +304,40,559,70,jodokast4 +304,40,652,67,caralvepe +304,40,652,67,clivej +304,40,652,67,terrencetheturtle +304,40,652,67,thomsoda +304,40,696,66,djali2015 +304,40,696,66,droppecho +304,40,696,66,pedrator +304,40,741,65,blivet +304,40,741,65,bneffer +304,40,741,65,jer3my +304,40,741,65,shortwave +304,40,787,64,qwertymartin +304,40,787,64,rlangewi +304,40,843,63,sineadk +304,40,914,62,goatcabin +304,40,914,62,lillebror666 +304,40,914,62,sebsring +304,40,970,61,bumpusth +304,40,970,61,flashshadow69 +304,40,970,61,poor yorick +304,40,970,61,sander sijssens +304,40,970,61,squeezel +304,40,1034,60,dragonster +304,40,1034,60,meyesme +304,40,1109,59,daleygamer +304,40,1109,59,gevati +304,40,1202,58,brettspielhelden dd +304,40,1202,58,tommynomad +304,40,1202,58,wojtkielewicz67 +304,40,1276,57,mintroll +304,40,1362,56,europaexpress +304,40,1362,56,hammerken +304,40,1459,55,abelombo78 +304,40,1459,55,barnetto +304,40,1568,54,bjoerneberhard +304,40,1568,54,grim_tidings +304,40,2053,50,gibbo +304,40,3216,44,ne0nsw0rd +362,39,26,163,rexkow +362,39,28,157,timewellspent +362,39,58,118,adamolanna +362,39,113,102,mastergabber05 +362,39,131,99,amuk +362,39,170,93,arnest_r +362,39,209,89,aldaron +362,39,216,88,littleweb +362,39,298,81,dziubelas +362,39,318,80,germarish +362,39,340,78,slonk +362,39,390,76,chris.larue +362,39,438,74,britchey +362,39,438,74,wc poland +362,39,522,71,canucklehead +362,39,522,71,malakizedek +362,39,559,70,albertotower +362,39,589,69,pratchettfan +362,39,589,69,sbauer9 +362,39,652,67,kytty +362,39,696,66,buskapeyann +362,39,696,66,jamlight +362,39,696,66,vitriool +362,39,741,65,andural69 +362,39,741,65,eriksdunens +362,39,741,65,microjoint +362,39,741,65,tevildo +362,39,787,64,brettspieletreff +362,39,787,64,moffnathan +362,39,787,64,phil68 +362,39,787,64,zaki +362,39,843,63,bebbs +362,39,843,63,junesen +362,39,843,63,kldonnelly +362,39,843,63,marcosimona +362,39,843,63,tvrnutter +362,39,914,62,danwojciechowski +362,39,914,62,mistefire +362,39,914,62,no_where_dense +362,39,914,62,thehunter +362,39,970,61,kamaitatchi +362,39,1034,60,raffertya +362,39,1109,59,chelseasquare +362,39,1109,59,ingenes +362,39,1109,59,mattnmanda +362,39,1202,58,brettspielhabicht +362,39,1202,58,jonbob +362,39,1276,57,asta +362,39,1276,57,fender1499 +362,39,1276,57,joshstar +362,39,1276,57,kayfree31 +362,39,1276,57,sammysnijbonen +362,39,1276,57,sixstrings4one +362,39,1362,56,herebebooks +362,39,1362,56,psson73 +362,39,1459,55,cherksken +362,39,1459,55,crowchaser +362,39,1568,54,klaun86 +362,39,1906,51,kristabelle +362,39,2204,49,joergboerg +422,38,12,205,knapicrllr +422,38,68,114,buhaj +422,38,127,100,surfitch +422,38,136,98,bretai70 +422,38,161,94,mkwg +422,38,273,83,ooogene +422,38,326,79,shobi6669 +422,38,326,79,tubarush +422,38,340,78,pgrande +422,38,390,76,darkfinale +422,38,390,76,hebus +422,38,390,76,pilgrim152 +422,38,438,74,ardacho +422,38,438,74,dawgfish +422,38,493,72,kalchio +422,38,522,71,stuclifford +422,38,559,70,ummmon +422,38,623,68,nimble123jack +422,38,696,66,friendless +422,38,696,66,stevek2 +422,38,696,66,topheth +422,38,741,65,bigmac33070 +422,38,741,65,cardboard conundrum +422,38,741,65,mycophagous +422,38,787,64,4rch3r +422,38,787,64,morinio +422,38,787,64,scottcoody +422,38,787,64,sphere +422,38,787,64,weishaupt +422,38,843,63,artb +422,38,843,63,fritz morgan +422,38,843,63,spiderman_ +422,38,843,63,xelforp +422,38,914,62,mikemcdasl +422,38,970,61,himmelvis +422,38,970,61,nkerensky +422,38,1034,60,esparver73 +422,38,1034,60,marticabre +422,38,1034,60,verdelak +422,38,1109,59,b1sti +422,38,1276,57,madcapmartini +422,38,1362,56,boardgamemamasaurus +422,38,1362,56,jeroen14014 +422,38,1362,56,kesulin +422,38,1459,55,theimp +422,38,1459,55,torsten +422,38,1568,54,saremie +422,38,2053,50,fehrmeister +422,38,2053,50,shingj +422,38,2969,45,erfuga +472,37,110,103,dooz +472,37,155,95,hecose +472,37,273,83,taoteo +472,37,298,81,airzonk1 +472,37,298,81,machiavelli +472,37,326,79,ralpheous +472,37,340,78,bankler +472,37,361,77,cooking_meeple +472,37,390,76,cthsbg +472,37,413,75,carltonwayne +472,37,413,75,ct5150 +472,37,413,75,doogie58 +472,37,413,75,goblinjester +472,37,413,75,rocksnrolls +472,37,493,72,moppersmurf +472,37,493,72,the duke bgg +472,37,493,72,wargamer55 +472,37,522,71,fedspaz +472,37,522,71,mcphisto1 +472,37,623,68,auricle +472,37,623,68,iamjacksusername +472,37,696,66,regine +472,37,696,66,simonocles +472,37,741,65,general hoth +472,37,741,65,karmicjustice +472,37,741,65,mickwood +472,37,787,64,ukraineboo +472,37,843,63,carnage994 +472,37,843,63,ktprymus +472,37,843,63,minneem +472,37,914,62,hartyfarty +472,37,914,62,phil4477 +472,37,970,61,flpii +472,37,970,61,jaimeocampo +472,37,970,61,kinga1965 +472,37,970,61,legendary +472,37,970,61,mlaust10 +472,37,1034,60,butterfly0038 +472,37,1034,60,kdsz +472,37,1034,60,matar9000 +472,37,1034,60,randomguykyle +472,37,1034,60,styates +472,37,1034,60,wwwebb +472,37,1109,59,atos25 +472,37,1109,59,bashmore53 +472,37,1109,59,lorand83 +472,37,1109,59,mathiou28 +472,37,1109,59,ripleyjm +472,37,1109,59,sgclouthier +472,37,1109,59,sologamingdad +472,37,1202,58,shigeno21 +472,37,1202,58,thdizzy +472,37,1276,57,eric ridley +472,37,1362,56,doomturtle +472,37,1362,56,historysteph +472,37,1362,56,ryszkins +472,37,1362,56,wyldeoak +472,37,1459,55,gsreis +472,37,1459,55,woelf +472,37,1568,54,chpiil +472,37,1568,54,defdamesdompi +472,37,1568,54,ksaarto +472,37,1674,53,jaxsnop +472,37,1674,53,radagast14 +472,37,1792,52,quayde +472,37,1792,52,remmievets +472,37,1792,52,seanjan +472,37,1906,51,adularia25 +472,37,1906,51,aiken drum +472,37,1906,51,ccmonter +472,37,2053,50,meselfr +472,37,2053,50,sagi +472,37,2204,49,fustero +472,37,2351,48,toche34 +546,36,71,113,stormparkiet +546,36,85,109,dbucak +546,36,150,96,scifi66 +546,36,161,94,ludesfactor +546,36,196,90,robrun +546,36,216,88,ternal2 +546,36,230,87,bayushi sezaru +546,36,230,87,stephan valkyser +546,36,266,84,shadowdale +546,36,266,84,svanhildur +546,36,266,84,wentu +546,36,390,76,originaldibbler +546,36,413,75,nadjbalint +546,36,413,75,spearjr +546,36,438,74,ldohrebl +546,36,522,71,gamethyme +546,36,522,71,monkeyrobot +546,36,589,69,grimwold +546,36,589,69,rhinoceritis +546,36,623,68,cirdan +546,36,623,68,earl of dukes +546,36,623,68,jhimbob +546,36,623,68,oi_you_nutter +546,36,623,68,ultreia +546,36,652,67,angryquark +546,36,652,67,henryct +546,36,652,67,rustylantern +546,36,652,67,tommy5446 +546,36,696,66,arkeo +546,36,741,65,nycavri +546,36,843,63,cyol +546,36,843,63,jeffwolfe +546,36,914,62,ludomania +546,36,914,62,neutrinos +546,36,970,61,austinhaws +546,36,970,61,ludosophicus +546,36,970,61,uglywithglasses +546,36,1034,60,count von luckner +546,36,1034,60,darkbanan +546,36,1034,60,supergls +546,36,1034,60,visard +546,36,1109,59,aleksi_ahtiainen +546,36,1109,59,da pyrate +546,36,1202,58,ef__ +546,36,1202,58,ronster0 +546,36,1202,58,sardonic wolf +546,36,1276,57,hc productions +546,36,1276,57,kazoober +546,36,1276,57,mikeg99 +546,36,1276,57,moramis +546,36,1362,56,gomer +546,36,1362,56,nyteglori +546,36,1362,56,rabidrabbit +546,36,1362,56,snailslung +546,36,1459,55,joshdl +546,36,1568,54,balrogest +546,36,1568,54,davebo +546,36,1568,54,gremlinmaster +546,36,1568,54,hairry +546,36,1568,54,herendil66 +546,36,1568,54,rkircher +546,36,1568,54,zennla +546,36,1674,53,pandah2o +546,36,1674,53,purplewurple +546,36,1792,52,brother abe +546,36,1792,52,lucaleoncavallo +546,36,1792,52,nieva +546,36,1792,52,pgusia +546,36,1792,52,pipo777 +546,36,1792,52,zombone +546,36,1906,51,me_be_spartacus +546,36,1906,51,sbrillant +546,36,2053,50,apecage +546,36,2053,50,rsj77 +546,36,2204,49,halbower +546,36,2351,48,imbram +546,36,2351,48,nilorac +546,36,2555,47,gubirobi +546,36,2555,47,igiullari +546,36,2555,47,kristopherjwolff +546,36,2969,45,yairdoza +546,36,3815,42,mitspieler +628,35,14,193,turtler7 +628,35,24,164,whsvin +628,35,40,136,jarmoaulu +628,35,85,109,kubigaruma +628,35,127,100,hockeyking9 +628,35,155,95,zombiegod +628,35,216,88,milhouse46 +628,35,298,81,charliewonka +628,35,326,79,katchoo +628,35,326,79,sunfall +628,35,340,78,tribefan07 +628,35,361,77,xaldin +628,35,438,74,pmagnus +628,35,438,74,red eye +628,35,493,72,gameteacher +628,35,493,72,latindog +628,35,493,72,viktula +628,35,522,71,dannabben +628,35,522,71,kragonn +628,35,522,71,mundane +628,35,522,71,shaftbigscore2002 +628,35,522,71,wolfgang dostmann +628,35,589,69,artax +628,35,589,69,elroyguess +628,35,589,69,monkeyboy157 +628,35,589,69,mugs +628,35,623,68,tmcgrady +628,35,652,67,dekerstman +628,35,652,67,kamekkusu +628,35,652,67,kerpow +628,35,652,67,lemem +628,35,652,67,marioymia +628,35,696,66,horusz +628,35,696,66,kbx12 +628,35,696,66,sigtaulefty +628,35,741,65,fruiko +628,35,741,65,l-hansen +628,35,741,65,lankelote +628,35,741,65,lordnoumenon +628,35,741,65,xssassin +628,35,787,64,nezade +628,35,843,63,bixby +628,35,843,63,bresandor +628,35,843,63,eluvitar +628,35,843,63,happyjosiah +628,35,843,63,partino +628,35,843,63,princeofparsnips +628,35,843,63,zefquaavius +628,35,914,62,arah +628,35,914,62,birdbolter +628,35,914,62,corylovec14 +628,35,914,62,csibu +628,35,914,62,nickster1970 +628,35,914,62,stonecutter13 +628,35,970,61,kingofthegrill +628,35,970,61,molmo +628,35,970,61,rygel +628,35,970,61,w eric martin +628,35,1034,60,bigdaddy88 +628,35,1034,60,jer29thirteen +628,35,1034,60,maltmanj +628,35,1034,60,normandywept +628,35,1109,59,abhaan +628,35,1109,59,boardgamejeff +628,35,1109,59,k____ +628,35,1109,59,kika80_litwa +628,35,1109,59,ludom +628,35,1109,59,madrusch +628,35,1109,59,seriensieger +628,35,1202,58,calamar +628,35,1202,58,chaps357 +628,35,1202,58,pegp +628,35,1202,58,theokester +628,35,1202,58,tsuk +628,35,1276,57,heppydie +628,35,1276,57,joker2 +628,35,1276,57,missiloon +628,35,1276,57,shiftymruzik +628,35,1276,57,smile10089 +628,35,1362,56,al1-f78 +628,35,1362,56,purple +628,35,1362,56,toadfrog +628,35,1362,56,youvebeennamed +628,35,1459,55,amethyst246 +628,35,1459,55,corruptparty +628,35,1459,55,derfu +628,35,1459,55,ninjabob +628,35,1459,55,nistrale +628,35,1459,55,qwadrat +628,35,1459,55,storyboardgamer +628,35,1568,54,bkunes +628,35,1568,54,ditterio +628,35,1568,54,g_dy +628,35,1568,54,logos32 +628,35,1568,54,permagoof +628,35,1568,54,todi +628,35,1674,53,antoineg +628,35,1674,53,ccarlet1 +628,35,1674,53,edubabu +628,35,1674,53,odysseus3 +628,35,1674,53,stephenrowlands2 +628,35,1792,52,douce_peter +628,35,1792,52,murr +628,35,1792,52,pihalbe +628,35,1792,52,william walker +628,35,1906,51,bloodlord +628,35,1906,51,cgarvie +628,35,1906,51,fbinder +628,35,2053,50,keisus +628,35,2053,50,pugthemagician +628,35,2204,49,bobondi +628,35,2204,49,korwyn +628,35,2204,49,musunu +628,35,2351,48,ayhansaygili +628,35,2351,48,maitreya +628,35,2351,48,penguinised +628,35,2351,48,proscott88 +628,35,2555,47,debelbot +628,35,2555,47,hollender +628,35,2969,45,bombadillo +628,35,3216,44,happy meeple +628,35,3216,44,thejadeape +628,35,4092,41,hierogal +751,34,71,113,bowie47 +751,34,120,101,gibbon27 +751,34,136,98,holy smoker +751,34,196,90,kompanjon83 +751,34,216,88,canales +751,34,242,86,chris coyote +751,34,298,81,johncraven +751,34,340,78,collins_m +751,34,361,77,pleechu +751,34,473,73,dafair +751,34,493,72,atkinsst +751,34,493,72,pompoli +751,34,522,71,salt-man z +751,34,589,69,barloy +751,34,589,69,darkor +751,34,623,68,asdrubaelv +751,34,652,67,frogmind +751,34,652,67,madhattersneverland +751,34,652,67,timonator85 +751,34,696,66,killerpower +751,34,741,65,c5_blake +751,34,741,65,tharkad +751,34,787,64,isandlwana +751,34,843,63,charlymorgoth +751,34,843,63,lachendr0 +751,34,843,63,ljtrigirl +751,34,843,63,szutek +751,34,843,63,yokiboy +751,34,914,62,boxoftricks_13 +751,34,914,62,dasdimmo +751,34,914,62,settlerdave +751,34,970,61,celiborn +751,34,970,61,chizcw +751,34,970,61,neolithium +751,34,1034,60,ckruns624 +751,34,1034,60,dd gamer +751,34,1034,60,progknight +751,34,1034,60,thezooz +751,34,1109,59,aaandrew152 +751,34,1109,59,balint77 +751,34,1109,59,fredrik83 +751,34,1109,59,gryfon +751,34,1109,59,gulgothica +751,34,1109,59,pendragon13uk +751,34,1109,59,woolridges +751,34,1202,58,broken toaster +751,34,1202,58,sweetsweetdoughnuts +751,34,1276,57,aldanra +751,34,1276,57,anemelos +751,34,1276,57,annagee +751,34,1276,57,cb droege +751,34,1276,57,dima3103 +751,34,1276,57,drewcooter +751,34,1276,57,malacandra +751,34,1276,57,rob in richmond +751,34,1276,57,spazz451 +751,34,1276,57,stormybriggs +751,34,1362,56,howitzer_120mm +751,34,1362,56,invisiblesimmer +751,34,1362,56,sorcretic +751,34,1459,55,aldebarane +751,34,1459,55,antidisbalans +751,34,1459,55,jcarnehl +751,34,1459,55,munny +751,34,1459,55,speshul +751,34,1459,55,twity27 +751,34,1459,55,virurenu +751,34,1568,54,blind reality +751,34,1568,54,galar +751,34,1568,54,garry_rice +751,34,1568,54,justtobenice +751,34,1568,54,lewk1700 +751,34,1568,54,pabloab +751,34,1568,54,scod101 +751,34,1568,54,siddgames +751,34,1568,54,slimy_asparagus +751,34,1568,54,spiritraw +751,34,1568,54,zenithsplendor +751,34,1674,53,bergbau +751,34,1674,53,clericid +751,34,1674,53,iskreemman +751,34,1674,53,kfbunny +751,34,1674,53,miky_10 +751,34,1674,53,ronczi +751,34,1792,52,berentski +751,34,1792,52,diatros +751,34,1792,52,dmk11 +751,34,1792,52,garrylloyd +751,34,1792,52,maertenl +751,34,1792,52,the_ka +751,34,1906,51,charmlessman77 +751,34,1906,51,tmgd +751,34,1906,51,wrecktangled +751,34,1906,51,zombieboard +751,34,2053,50,alexandertlq +751,34,2053,50,bkirbit +751,34,2053,50,davideca +751,34,2053,50,edbob411 +751,34,2053,50,esed +751,34,2053,50,jarllangdon +751,34,2053,50,kowalskie +751,34,2053,50,mayhemoid +751,34,2053,50,sammo hoi +751,34,2053,50,sharkboy666 +751,34,2053,50,spielfreak +751,34,2053,50,tonyfung1205 +751,34,2204,49,gimli043 +751,34,2204,49,htivante23 +751,34,2204,49,kobex +751,34,2204,49,meisterjugads +751,34,2204,49,nelud +751,34,2351,48,edmil +751,34,2351,48,gaz72uk +751,34,2351,48,jonas.mann +751,34,2351,48,phoenix010 +751,34,2555,47,bert1965 +751,34,2555,47,deadeyes84 +751,34,2555,47,lippifi +751,34,2555,47,mccedi +751,34,2555,47,mobo63 +751,34,2555,47,robthecramer +751,34,2758,46,makouru +751,34,2969,45,acidrulez +751,34,2969,45,kubalib +751,34,3216,44,zachcarter +751,34,3514,43,vespree +751,34,4092,41,derekbturner +751,34,4092,41,max_ra +879,33,61,117,legofanfamily +879,33,85,109,breve maltese +879,33,127,100,houjix +879,33,161,94,fiend138 +879,33,289,82,cokasaki +879,33,340,78,fffulmicotone +879,33,340,78,solat +879,33,361,77,menhunlahun +879,33,413,75,de bergho +879,33,438,74,oicalyptus +879,33,473,73,phil bordelon +879,33,493,72,rubia +879,33,522,71,b5dorsai +879,33,522,71,deinos +879,33,559,70,andes_v +879,33,589,69,marctimmins89 +879,33,589,69,yantheo +879,33,623,68,redward +879,33,623,68,styren +879,33,652,67,bobborobbo +879,33,696,66,lostphd +879,33,696,66,per42 +879,33,787,64,pizzachip +879,33,787,64,quilzar +879,33,787,64,sdrewthomson +879,33,787,64,wtultc +879,33,843,63,magic_erwt +879,33,843,63,ravensson +879,33,843,63,tacox01 +879,33,843,63,zioombel +879,33,914,62,howez92 +879,33,914,62,katarakt +879,33,914,62,pericles1958 +879,33,970,61,harveth +879,33,970,61,rapires +879,33,970,61,willymagic +879,33,1034,60,afaroca +879,33,1034,60,cameronwlucas +879,33,1034,60,hamsteroffury +879,33,1034,60,mamadallama +879,33,1109,59,canadianwytewolf +879,33,1109,59,fish34777 +879,33,1109,59,haschim +879,33,1109,59,skate +879,33,1109,59,supersausagedog +879,33,1202,58,schkff +879,33,1202,58,thenamewastaken +879,33,1276,57,chearns +879,33,1276,57,dmillar71 +879,33,1276,57,finrondfelagund +879,33,1362,56,ajax013 +879,33,1362,56,swedelad +879,33,1459,55,danco0917 +879,33,1459,55,garg +879,33,1459,55,ianne +879,33,1459,55,rednar +879,33,1459,55,sirei +879,33,1459,55,xhaereticusx +879,33,1568,54,jagdfrosch +879,33,1568,54,papachango +879,33,1568,54,trademarc +879,33,1568,54,xitoliv +879,33,1568,54,yosoyfro +879,33,1674,53,amethystjewel +879,33,1674,53,ankeszu +879,33,1674,53,carrion +879,33,1674,53,f022y +879,33,1674,53,ivan111 +879,33,1674,53,jentinma +879,33,1674,53,maghd +879,33,1674,53,marclemagnifique +879,33,1674,53,muzfish4 +879,33,1674,53,pghmedia +879,33,1674,53,pollux1969 +879,33,1792,52,basl +879,33,1792,52,brougnouff +879,33,1792,52,claudio turri +879,33,1792,52,cortolaw +879,33,1792,52,elpete +879,33,1792,52,formersd +879,33,1792,52,jazzbeaux +879,33,1792,52,kilanthas +879,33,1792,52,snowman882 +879,33,1792,52,turbo gg +879,33,1792,52,zadokzadok +879,33,1906,51,47029 +879,33,1906,51,broggi +879,33,1906,51,dhamilton85 +879,33,1906,51,fillypej +879,33,1906,51,slush_ +879,33,1906,51,solove +879,33,1906,51,someball23 +879,33,2053,50,gonzo104 +879,33,2053,50,lucinda2020 +879,33,2053,50,mogust +879,33,2053,50,thecat +879,33,2204,49,heiko doubleu +879,33,2204,49,izobretenik +879,33,2204,49,patrice_jps +879,33,2204,49,verseboy +879,33,2351,48,acbmml +879,33,2351,48,aschuetter +879,33,2351,48,botticus +879,33,2351,48,d0nk1j0t3 +879,33,2351,48,gaudium +879,33,2351,48,keighleyrob +879,33,2351,48,krapnik +879,33,2351,48,lehmming +879,33,2351,48,leodagan +879,33,2351,48,pauloantunes +879,33,2351,48,popncoffee +879,33,2351,48,shadow_bushido +879,33,2351,48,usanachris +879,33,2555,47,dave316 +879,33,2555,47,eimative +879,33,2555,47,jonathanw +879,33,2555,47,lectus +879,33,2555,47,netes +879,33,2555,47,qwirk +879,33,2555,47,shakkah +879,33,2758,46,arvama +879,33,2758,46,blott +879,33,2758,46,boes +879,33,2758,46,gabriel_kuriata +879,33,2758,46,industrial strength +879,33,2758,46,jerival +879,33,2758,46,julica +879,33,2758,46,leo228 +879,33,2758,46,pgestwicki +879,33,2758,46,sebastbobajones +879,33,2758,46,stephaniepa +879,33,2969,45,astridbeatrix +879,33,2969,45,dinnyepasztor +879,33,2969,45,filipgavril +879,33,2969,45,grzesznik +879,33,2969,45,igorfernandespi +879,33,2969,45,rainier_wolfcastle +879,33,2969,45,sysyphuss +879,33,2969,45,xandercm +879,33,2969,45,z10n x +879,33,2969,45,zorkmids +879,33,3216,44,amandadesignsgames +879,33,3216,44,bado +879,33,3216,44,charlygeek +879,33,3216,44,weyhing +879,33,3514,43,angeloc +879,33,3514,43,mxever7 +879,33,4092,41,arhpositive +1027,32,5,250,great dane +1027,32,252,85,eldar1986 +1027,32,252,85,stevejuggler +1027,32,326,79,steve perkins +1027,32,340,78,king hrothbeort +1027,32,390,76,dormammu +1027,32,390,76,hatfielder +1027,32,438,74,bazyn +1027,32,438,74,neonfire +1027,32,438,74,shix52 +1027,32,493,72,mnemonicuz +1027,32,493,72,professorinc +1027,32,522,71,glookose +1027,32,559,70,a1bert +1027,32,559,70,madofar +1027,32,589,69,hulk2 +1027,32,589,69,torak +1027,32,623,68,jbmoby +1027,32,623,68,yvainlionknight +1027,32,652,67,petevasi +1027,32,696,66,bigspoon816 +1027,32,696,66,cyberkev63 +1027,32,696,66,flowman +1027,32,696,66,gregbigler +1027,32,696,66,mundungus +1027,32,696,66,redcooper +1027,32,696,66,wmshub +1027,32,741,65,jdkimble +1027,32,741,65,joncassie +1027,32,741,65,satarash +1027,32,787,64,carcolo +1027,32,787,64,thunkd +1027,32,787,64,twiznessasusual +1027,32,843,63,dominionfamily +1027,32,843,63,sternenfahrer-muc +1027,32,914,62,grasa_total +1027,32,914,62,pisecobabe +1027,32,914,62,qzhdad +1027,32,970,61,janms +1027,32,1034,60,gamerforgod +1027,32,1034,60,milan2014 +1027,32,1034,60,molnar +1027,32,1034,60,sicktag +1027,32,1034,60,snowhive +1027,32,1109,59,bbatl77 +1027,32,1109,59,chahta +1027,32,1109,59,daccic +1027,32,1109,59,davidallves +1027,32,1109,59,johnpnewman +1027,32,1109,59,josseroo +1027,32,1109,59,lina688 +1027,32,1109,59,manofsorrows +1027,32,1109,59,teach101 +1027,32,1202,58,eggles +1027,32,1202,58,hessu68 +1027,32,1202,58,kalendrys +1027,32,1202,58,sirroke +1027,32,1202,58,zweken +1027,32,1276,57,arcturian +1027,32,1276,57,authentic +1027,32,1276,57,blekk42 +1027,32,1276,57,godfatherpts +1027,32,1276,57,godurmyall +1027,32,1276,57,gyges +1027,32,1276,57,jimok +1027,32,1276,57,pkufahl +1027,32,1276,57,rosemelnab +1027,32,1276,57,tavlas +1027,32,1276,57,the pale grin +1027,32,1276,57,tyndal +1027,32,1276,57,wolfhe4rt +1027,32,1362,56,burkhomg +1027,32,1362,56,cabbagekingaf +1027,32,1362,56,jjacjackson +1027,32,1362,56,paigew +1027,32,1362,56,s3ntinel +1027,32,1362,56,shmickwahoo +1027,32,1362,56,sonicquack +1027,32,1362,56,spike1979 +1027,32,1362,56,thorwolf +1027,32,1459,55,beevoli +1027,32,1459,55,casulo +1027,32,1459,55,djaliriot +1027,32,1459,55,fede__ +1027,32,1459,55,gregarius +1027,32,1459,55,inano78 +1027,32,1459,55,johnbogey +1027,32,1459,55,mrteacherusa +1027,32,1459,55,razoupaf +1027,32,1459,55,scubadawg1 +1027,32,1568,54,marronigus +1027,32,1568,54,mtz1910 +1027,32,1568,54,scorsese fan +1027,32,1674,53,framz_pl +1027,32,1674,53,lsutigers +1027,32,1674,53,ngwilliam +1027,32,1674,53,ptm_junk +1027,32,1674,53,rouks +1027,32,1674,53,the chaz +1027,32,1674,53,vaughn +1027,32,1674,53,wes makin +1027,32,1792,52,baartoszz +1027,32,1792,52,guszty +1027,32,1792,52,hiko bunta +1027,32,1792,52,jarr416 +1027,32,1792,52,styro +1027,32,1906,51,darbjustic +1027,32,1906,51,davidblubb +1027,32,1906,51,janasik +1027,32,1906,51,jerichotop +1027,32,1906,51,pickboy87 +1027,32,1906,51,roberious +1027,32,1906,51,salamon +1027,32,1906,51,tacud +1027,32,1906,51,valianttimdjango +1027,32,2053,50,beri2 +1027,32,2053,50,d_a_d_o +1027,32,2053,50,hongkongfoufou +1027,32,2053,50,hosszutortenet +1027,32,2053,50,lvampa +1027,32,2053,50,mattias persson +1027,32,2053,50,secondofthenew +1027,32,2053,50,shakar +1027,32,2053,50,stutzmdl +1027,32,2204,49,agner +1027,32,2204,49,franzk +1027,32,2204,49,girldaddy +1027,32,2204,49,jriesenb1 +1027,32,2204,49,pwearing +1027,32,2204,49,schweinebub +1027,32,2351,48,belash +1027,32,2351,48,codygarfield +1027,32,2351,48,damon brooks +1027,32,2351,48,ehrensing +1027,32,2351,48,geminiweb +1027,32,2351,48,janselmo +1027,32,2351,48,kim7gary +1027,32,2351,48,nifdgad +1027,32,2351,48,por666 +1027,32,2351,48,ravinck +1027,32,2351,48,stealer666 +1027,32,2555,47,berto1978 +1027,32,2555,47,bouzen +1027,32,2555,47,cgardner13 +1027,32,2555,47,darkskies +1027,32,2555,47,debby79 +1027,32,2555,47,djboss +1027,32,2555,47,irishdomer08 +1027,32,2555,47,joha +1027,32,2555,47,mattintheweb +1027,32,2555,47,mrwoodyman +1027,32,2555,47,stoffelke2006 +1027,32,2758,46,benjaminviking +1027,32,2758,46,brattle +1027,32,2758,46,gargapod +1027,32,2758,46,nildopl +1027,32,2758,46,rundy +1027,32,2758,46,starsunsky +1027,32,2969,45,daisymoomoo +1027,32,2969,45,ebobo +1027,32,2969,45,ender37 +1027,32,2969,45,fresh73 +1027,32,2969,45,gcazier +1027,32,2969,45,huzo2 +1027,32,2969,45,nebresh +1027,32,2969,45,rustybaker +1027,32,2969,45,tanavanderpal +1027,32,3216,44,camocoffey +1027,32,3216,44,jobillo +1027,32,3216,44,lumbi686 +1027,32,3216,44,mikebwithoutadot +1027,32,3514,43,gillesdr +1027,32,3514,43,jootje75 +1027,32,3514,43,martis08 +1027,32,3514,43,murzim +1027,32,3514,43,pangur ban +1027,32,3514,43,wildog +1027,32,3815,42,godzirrrraaa +1027,32,4092,41,firenflux +1027,32,4092,41,frozennova +1027,32,4092,41,spellenclub st +1027,32,4782,39,ejch80 +1209,31,104,105,konstantinossofistis +1209,31,106,104,glyfair +1209,31,120,101,mith +1209,31,136,98,dasbaerchen +1209,31,136,98,jgbaxter +1209,31,136,98,theboardgamefamily +1209,31,147,97,errosen +1209,31,150,96,alobunko +1209,31,170,93,sstair +1209,31,190,91,danief +1209,31,190,91,wolfbane333 +1209,31,216,88,jonah42 +1209,31,298,81,ludopoly +1209,31,318,80,jose-san +1209,31,340,78,horstderadler +1209,31,340,78,malachi +1209,31,361,77,cavalier281 +1209,31,361,77,ellephai +1209,31,438,74,jyoder +1209,31,438,74,skeil +1209,31,473,73,profecia91 +1209,31,589,69,2d20 +1209,31,589,69,kakiri +1209,31,589,69,mdiep +1209,31,589,69,pijll +1209,31,589,69,tstanley +1209,31,623,68,manutd03 +1209,31,652,67,flavien +1209,31,741,65,droppy84 +1209,31,741,65,ltoft +1209,31,741,65,onicage +1209,31,787,64,cheeseviking +1209,31,787,64,ciderbandit +1209,31,787,64,onesones +1209,31,843,63,bigred92 +1209,31,843,63,diox28010 +1209,31,843,63,hyperbolegrant +1209,31,843,63,thorphas +1209,31,914,62,hgtonight +1209,31,914,62,mrlew507 +1209,31,914,62,robc186 +1209,31,914,62,twinge +1209,31,970,61,crimsondawn +1209,31,970,61,emperorhand +1209,31,1034,60,benzebub +1209,31,1034,60,challahback252 +1209,31,1034,60,mantheron +1209,31,1034,60,muscatgummy +1209,31,1034,60,pasvik +1209,31,1109,59,boy_314 +1209,31,1109,59,inmarg +1209,31,1109,59,valiant64 +1209,31,1202,58,boardgameambassador +1209,31,1202,58,ceti +1209,31,1202,58,dion +1209,31,1202,58,jbsiena +1209,31,1202,58,johnyokurka +1209,31,1202,58,moameat +1209,31,1202,58,mrquackers +1209,31,1202,58,pcraven18 +1209,31,1202,58,re4isnumber1 +1209,31,1202,58,stephenm +1209,31,1276,57,daanenine +1209,31,1276,57,e_nichols +1209,31,1276,57,juriel1 +1209,31,1276,57,nastycleavage +1209,31,1276,57,ndirksen +1209,31,1276,57,tmjjs +1209,31,1362,56,alexradoi +1209,31,1362,56,cobyhectic +1209,31,1362,56,guthwine3 +1209,31,1362,56,lonnie913 +1209,31,1362,56,vadorojo +1209,31,1362,56,venez77 +1209,31,1459,55,bobgabriels1 +1209,31,1459,55,eddiemun +1209,31,1459,55,gatherey +1209,31,1459,55,mikunis +1209,31,1459,55,peakhope +1209,31,1459,55,rogue4 +1209,31,1459,55,sardo93 +1209,31,1459,55,sebchjo +1209,31,1459,55,silvashado +1209,31,1568,54,jahz +1209,31,1568,54,martynking3 +1209,31,1568,54,optimalbraindmg +1209,31,1568,54,paulius +1209,31,1568,54,polychrotid +1209,31,1568,54,tempus42 +1209,31,1674,53,cherneydh +1209,31,1674,53,declanw +1209,31,1674,53,demiss +1209,31,1674,53,dr. fu +1209,31,1674,53,jazzfish +1209,31,1674,53,jedichrism +1209,31,1674,53,jonben +1209,31,1674,53,larry welborn +1209,31,1674,53,loofish +1209,31,1674,53,monsoonx +1209,31,1674,53,monti7 +1209,31,1674,53,xenir +1209,31,1792,52,boolbar +1209,31,1792,52,gamov +1209,31,1792,52,guidovanhorn +1209,31,1792,52,insect83 +1209,31,1792,52,lakerchief67 +1209,31,1792,52,pferdina +1209,31,1792,52,scdoster +1209,31,1906,51,fregonar +1209,31,1906,51,ilavloki +1209,31,1906,51,jawaswag +1209,31,1906,51,kashmir1975 +1209,31,1906,51,kyellan +1209,31,1906,51,primtim34 +1209,31,1906,51,raphaell7 +1209,31,1906,51,travandallie +1209,31,1906,51,ugbash +1209,31,1906,51,vxl119 +1209,31,1906,51,zackstack +1209,31,1906,51,zafin +1209,31,2053,50,domostie +1209,31,2053,50,emarcolex +1209,31,2053,50,furriebarry +1209,31,2053,50,gnl_zod +1209,31,2053,50,jrachfal +1209,31,2053,50,mincewind +1209,31,2053,50,mkgray +1209,31,2053,50,omegaridleyxp +1209,31,2053,50,panglott +1209,31,2053,50,ryan keane +1209,31,2053,50,vangamer1578 +1209,31,2053,50,zfundamental +1209,31,2204,49,billharr +1209,31,2204,49,blipblop +1209,31,2204,49,chrissmith4773 +1209,31,2204,49,falcon0815 +1209,31,2204,49,familygaming +1209,31,2204,49,genesteeler +1209,31,2204,49,jmiguel +1209,31,2204,49,mac_s_1 +1209,31,2204,49,merwin tonnel +1209,31,2204,49,murksofus +1209,31,2204,49,nidodejuegos +1209,31,2204,49,paka +1209,31,2204,49,rhreiss +1209,31,2204,49,rodan +1209,31,2204,49,yonger +1209,31,2204,49,zargonddg +1209,31,2351,48,billiboj +1209,31,2351,48,darmion +1209,31,2351,48,deathstroke +1209,31,2351,48,kayvon +1209,31,2351,48,mo7189 +1209,31,2351,48,puzzlingenigma +1209,31,2351,48,red turtle +1209,31,2351,48,spout +1209,31,2351,48,stefanvm1 +1209,31,2351,48,the pete +1209,31,2555,47,bartenderms +1209,31,2555,47,bilben04 +1209,31,2555,47,czochrun +1209,31,2555,47,hoje +1209,31,2555,47,molotail +1209,31,2555,47,semkdinho +1209,31,2555,47,ssmooth +1209,31,2555,47,tom_dm +1209,31,2555,47,zhiwiller +1209,31,2758,46,boltana +1209,31,2758,46,corqan +1209,31,2758,46,dalor +1209,31,2758,46,kegz +1209,31,2758,46,rew b slippers +1209,31,2758,46,simhenk +1209,31,2758,46,sirrexgoliath +1209,31,2758,46,woolvey +1209,31,2969,45,calamarkez +1209,31,2969,45,calvo +1209,31,2969,45,chaoticgemini +1209,31,2969,45,donks2k10 +1209,31,2969,45,fizzle +1209,31,2969,45,hipopotam +1209,31,2969,45,kmclean01 +1209,31,2969,45,patilian +1209,31,2969,45,poeppelhoppers +1209,31,2969,45,ryanmcmanus +1209,31,2969,45,secret squirrel +1209,31,2969,45,teenwolfdude +1209,31,2969,45,tkhammill +1209,31,2969,45,vicoro +1209,31,2969,45,wassernickel +1209,31,3216,44,basiadec +1209,31,3216,44,der ubermolch +1209,31,3216,44,ecargo +1209,31,3216,44,ej3ae +1209,31,3216,44,eqopucela +1209,31,3216,44,hbglover +1209,31,3216,44,humske +1209,31,3216,44,ianrickards +1209,31,3216,44,knil +1209,31,3216,44,lgs3998 +1209,31,3216,44,mawjohns +1209,31,3216,44,moviebuffs +1209,31,3216,44,nikomakhos +1209,31,3216,44,sandrian +1209,31,3216,44,wallus +1209,31,3514,43,cucojordan +1209,31,3514,43,marianoth +1209,31,3514,43,oranssioranki +1209,31,3514,43,pingispajas +1209,31,3514,43,regblank +1209,31,3514,43,stickdood +1209,31,3514,43,taceoagrotis +1209,31,3815,42,cssmith623 +1209,31,3815,42,liquid9000 +1209,31,3815,42,takong +1209,31,4092,41,cucuzza91 +1209,31,4092,41,faziee +1209,31,4092,41,lilhack +1209,31,4426,40,mlodi +1209,31,4782,39,dvdreamer +1209,31,4782,39,nnf1 +1209,31,4782,39,sugarplum +1209,31,5150,38,pozman +1209,31,5150,38,the marshaluk +1209,31,5624,37,detti76 +1209,31,5624,37,lgould +1435,30,43,133,invervegas +1435,30,71,113,moriarty 101 +1435,30,100,106,rarce +1435,30,252,85,ikarami +1435,30,273,83,byfed +1435,30,273,83,captainossum +1435,30,273,83,rafal100 +1435,30,273,83,shano13 +1435,30,298,81,balijan2 +1435,30,473,73,grimthunderbrew +1435,30,473,73,santafelis +1435,30,473,73,shotokanguy +1435,30,473,73,virtualalex +1435,30,522,71,yesbryn +1435,30,559,70,aeroguru1978 +1435,30,559,70,andrewr405 +1435,30,623,68,feelingducky +1435,30,623,68,poptasticboy +1435,30,623,68,zenitin +1435,30,652,67,hvg3akaek +1435,30,696,66,alki +1435,30,741,65,citilogic +1435,30,741,65,lidlesseye +1435,30,787,64,blowncover +1435,30,787,64,mdr69 +1435,30,787,64,ringworm +1435,30,787,64,seramanda +1435,30,787,64,thip +1435,30,843,63,jbkennedy +1435,30,843,63,rainydaysteve +1435,30,914,62,boardmathias +1435,30,914,62,jacksbrains +1435,30,914,62,repna +1435,30,914,62,tempestblade +1435,30,970,61,dorakeen +1435,30,970,61,greglios +1435,30,970,61,pcacavas +1435,30,1034,60,arod324 +1435,30,1034,60,cjharris30 +1435,30,1109,59,40thann +1435,30,1109,59,emmdizzle24 +1435,30,1109,59,grandtheftx +1435,30,1109,59,quartelmestre +1435,30,1109,59,serkelion +1435,30,1109,59,socialsnacker +1435,30,1202,58,beer4dad +1435,30,1202,58,mezmorki +1435,30,1202,58,mindastray +1435,30,1202,58,monkefied9 +1435,30,1202,58,tetheria +1435,30,1202,58,themackern +1435,30,1202,58,zgabor +1435,30,1276,57,bjcott +1435,30,1276,57,cadavaca +1435,30,1276,57,crsluggo +1435,30,1276,57,markbesada +1435,30,1362,56,adamdynris +1435,30,1362,56,carolineellen +1435,30,1362,56,coxy5 +1435,30,1362,56,erinthered +1435,30,1362,56,moremonkeys138 +1435,30,1362,56,robb +1435,30,1362,56,t0rres +1435,30,1362,56,tankbard +1435,30,1362,56,zebu_alex +1435,30,1362,56,zunnesteke +1435,30,1459,55,6legsci +1435,30,1459,55,bayerbube +1435,30,1459,55,celtiberosaran +1435,30,1459,55,coen098 +1435,30,1459,55,doxalogos +1435,30,1459,55,greatwolf +1435,30,1459,55,hoosudaddy +1435,30,1459,55,igorken +1435,30,1459,55,l0bban +1435,30,1459,55,mrsmudd4 +1435,30,1459,55,pinoeppel +1435,30,1459,55,rafa_str +1435,30,1459,55,stoichi +1435,30,1568,54,alexandervanhulsel +1435,30,1568,54,deviantmagick +1435,30,1568,54,griemel +1435,30,1568,54,hedonisticnihil +1435,30,1568,54,juuzzom +1435,30,1568,54,malayet2 +1435,30,1674,53,13obscur +1435,30,1674,53,ctp_9 +1435,30,1674,53,korppu +1435,30,1674,53,mr_nuts +1435,30,1674,53,radiantdawn93 +1435,30,1674,53,revsavage +1435,30,1674,53,samlamiam +1435,30,1674,53,wellevorkanagawa +1435,30,1674,53,wismerhill +1435,30,1792,52,dancerindc +1435,30,1792,52,docteur cheux +1435,30,1792,52,extatix +1435,30,1792,52,harrygomez10 +1435,30,1792,52,leemc13 +1435,30,1792,52,magicmarshall +1435,30,1792,52,mildiou +1435,30,1792,52,pabloirurzun +1435,30,1792,52,sedoom +1435,30,1792,52,stonecrusher +1435,30,1792,52,travellerne +1435,30,1906,51,drez +1435,30,1906,51,feldfan2014 +1435,30,1906,51,granadino_aleman +1435,30,1906,51,harlequin1 +1435,30,1906,51,jrtolf +1435,30,1906,51,lord forkland +1435,30,1906,51,phytoman +1435,30,1906,51,shingoi +1435,30,1906,51,sugarschnitte +1435,30,1906,51,swoosl +1435,30,2053,50,alcatraz13 +1435,30,2053,50,bossietj +1435,30,2053,50,chrisgmay +1435,30,2053,50,earlofbronze +1435,30,2053,50,goldenboat +1435,30,2053,50,gregor1863 +1435,30,2053,50,redhawk +1435,30,2053,50,rush2112 +1435,30,2053,50,stanley gardner +1435,30,2053,50,tobytoast +1435,30,2204,49,agius1520 +1435,30,2204,49,bchlax944 +1435,30,2204,49,burker +1435,30,2204,49,faldum +1435,30,2204,49,gimmster +1435,30,2204,49,joenacho +1435,30,2204,49,kierkegaard555 +1435,30,2204,49,kwerve_supper +1435,30,2204,49,mavrovic +1435,30,2204,49,mil05006 +1435,30,2204,49,mrozgunner +1435,30,2204,49,nykandrusiak +1435,30,2204,49,robroy +1435,30,2204,49,schirafamily +1435,30,2204,49,smaug007 +1435,30,2351,48,b0rg1r +1435,30,2351,48,bagpipedan +1435,30,2351,48,beppsta +1435,30,2351,48,big_buddha +1435,30,2351,48,chrismalenurse +1435,30,2351,48,dmwmpr +1435,30,2351,48,doug5984 +1435,30,2351,48,filipes +1435,30,2351,48,kerskine +1435,30,2351,48,molomucho +1435,30,2351,48,neilhora +1435,30,2351,48,qwheeler +1435,30,2351,48,sandokan +1435,30,2351,48,schoolmarm5 +1435,30,2351,48,trapeze +1435,30,2555,47,afjb +1435,30,2555,47,alataraufderjagd +1435,30,2555,47,beuckie115 +1435,30,2555,47,brillowski +1435,30,2555,47,chappy_sinclair +1435,30,2555,47,chriswildes +1435,30,2555,47,dingbat meeplepusher +1435,30,2555,47,duch +1435,30,2555,47,hanjel +1435,30,2555,47,huge squash +1435,30,2555,47,larshall +1435,30,2555,47,nathaneverett +1435,30,2555,47,nerdygametalkz +1435,30,2555,47,roter_meeple +1435,30,2555,47,siguazcampos +1435,30,2555,47,spielguy +1435,30,2555,47,timme314 +1435,30,2555,47,tumblesteak +1435,30,2555,47,weevol +1435,30,2758,46,bennygui +1435,30,2758,46,boardgamelosers +1435,30,2758,46,caradoc +1435,30,2758,46,cthulhudreams +1435,30,2758,46,darasu +1435,30,2758,46,dark_dar +1435,30,2758,46,dexdouglas +1435,30,2758,46,eldub +1435,30,2758,46,greenarmyman +1435,30,2758,46,james25182 +1435,30,2758,46,jolienwinkler +1435,30,2758,46,kingbee +1435,30,2758,46,kylep3483 +1435,30,2758,46,rynet +1435,30,2758,46,steven oliver +1435,30,2758,46,themore5@earthlink +1435,30,2758,46,unknownsoldier +1435,30,2758,46,villanelle88 +1435,30,2758,46,windmillfighter +1435,30,2758,46,xipuloxx +1435,30,2969,45,baschleicher +1435,30,2969,45,dave41fan +1435,30,2969,45,dedcap +1435,30,2969,45,frogstar24 +1435,30,2969,45,gsilva +1435,30,2969,45,hivegod +1435,30,2969,45,hoeskuldr +1435,30,2969,45,iipeglegii +1435,30,2969,45,jennym +1435,30,2969,45,karlfast +1435,30,2969,45,robert_huang +1435,30,2969,45,smoak511 +1435,30,2969,45,teleklos +1435,30,2969,45,tenebyss225 +1435,30,2969,45,timothyp +1435,30,2969,45,tomol +1435,30,2969,45,vandini_p +1435,30,2969,45,vonhippo +1435,30,3216,44,allgaeudiver +1435,30,3216,44,badgeroonie +1435,30,3216,44,bootty +1435,30,3216,44,catsteph +1435,30,3216,44,ebailey +1435,30,3216,44,elderak +1435,30,3216,44,felix_mateo +1435,30,3216,44,gamefool +1435,30,3216,44,gentle +1435,30,3216,44,heissepost +1435,30,3216,44,ilya16v +1435,30,3216,44,joebelanger +1435,30,3216,44,johnbandettini +1435,30,3216,44,kanoe +1435,30,3216,44,leto2626 +1435,30,3216,44,mrspecial +1435,30,3216,44,oliwin +1435,30,3216,44,skrebs +1435,30,3216,44,viveee +1435,30,3216,44,weatherfrog +1435,30,3514,43,alfa7 +1435,30,3514,43,archystorm +1435,30,3514,43,beren87 +1435,30,3514,43,blake33 +1435,30,3514,43,bshazel +1435,30,3514,43,cazi +1435,30,3514,43,chriswray84 +1435,30,3514,43,corrino22 +1435,30,3514,43,craigus69 +1435,30,3514,43,darinvg +1435,30,3514,43,drawntogames +1435,30,3514,43,fishgordon +1435,30,3514,43,khedron +1435,30,3514,43,octopusmountain +1435,30,3514,43,paulkessels +1435,30,3514,43,redbloke +1435,30,3514,43,rheidan +1435,30,3514,43,soleia +1435,30,3514,43,tom78 +1435,30,3815,42,bol2ry +1435,30,3815,42,doghinp +1435,30,3815,42,eric haas +1435,30,3815,42,johnny opie +1435,30,3815,42,lordmatcab +1435,30,3815,42,mmaartijn +1435,30,3815,42,niespetha +1435,30,3815,42,notdaveng +1435,30,3815,42,reverend teeth +1435,30,3815,42,slikkrikk +1435,30,3815,42,spelgalen100 +1435,30,3815,42,stev4uth +1435,30,3815,42,tundrathunder +1435,30,3815,42,van00uber +1435,30,3815,42,"young, rich and sexy" +1435,30,4092,41,diguno +1435,30,4092,41,krotok +1435,30,4092,41,lordjunon +1435,30,4092,41,rmiczek +1435,30,4092,41,skrebl +1435,30,4092,41,szunyi +1435,30,4426,40,anneke +1435,30,4426,40,boymeetsworld +1435,30,4426,40,crusherr +1435,30,4426,40,lacm +1435,30,4426,40,language gamer +1435,30,4426,40,monkeyburp +1435,30,4426,40,nicor +1435,30,4426,40,osodani +1435,30,4426,40,rbsn +1435,30,4426,40,rizzzy +1435,30,4426,40,surya +1435,30,4782,39,rscott213 +1435,30,5150,38,bulsara +1435,30,5150,38,chucklinus +1435,30,5624,37,admi99 +1435,30,5624,37,fjelfras +1435,30,6573,35,jesusers +1724,29,170,93,trimchris +1724,29,196,90,manchuwok +1724,29,216,88,pintsizepete +1724,29,273,83,zastrygon +1724,29,326,79,r1c4 +1724,29,340,78,erastusdudley +1724,29,413,75,fundakave +1724,29,413,75,thomassabourin +1724,29,473,73,rathje +1724,29,493,72,susuqie +1724,29,493,72,toerck +1724,29,522,71,steffenb +1724,29,623,68,pstrpete +1724,29,623,68,tphon +1724,29,652,67,absbelii +1724,29,652,67,arolfe +1724,29,652,67,pete100 +1724,29,652,67,stoneart69 +1724,29,741,65,gavilan +1724,29,787,64,kr4mp3 +1724,29,787,64,peacmyer +1724,29,843,63,ethy21 +1724,29,843,63,infamousdiplomat +1724,29,914,62,adamp +1724,29,914,62,gos314 +1724,29,970,61,bitforbit +1724,29,970,61,bryantdean +1724,29,970,61,farmeriusz +1724,29,970,61,gregoriusvg +1724,29,970,61,mapleleafbc +1724,29,970,61,ottobre31 +1724,29,970,61,rukus77 +1724,29,1034,60,johnclark +1724,29,1034,60,kbkuno +1724,29,1034,60,kocos +1724,29,1034,60,octavian +1724,29,1034,60,papasmerv +1724,29,1034,60,tinweasel +1724,29,1109,59,geocaller +1724,29,1109,59,laerfan +1724,29,1109,59,nemesispg +1724,29,1109,59,sylwuniu +1724,29,1109,59,tpholt +1724,29,1202,58,abravenewgeek +1724,29,1202,58,armada01 +1724,29,1202,58,paulclarke339 +1724,29,1202,58,wolfox +1724,29,1202,58,zugli +1724,29,1276,57,7ofann +1724,29,1276,57,jeremiah_lee +1724,29,1276,57,paul10liao +1724,29,1276,57,switza +1724,29,1362,56,fwing +1724,29,1362,56,kyralia +1724,29,1362,56,newsh +1724,29,1362,56,sierra0_74 +1724,29,1459,55,davidg55311 +1724,29,1459,55,esok +1724,29,1459,55,fogus +1724,29,1459,55,new_zealand_neil +1724,29,1568,54,dagibbs +1724,29,1568,54,emodiu5 +1724,29,1568,54,idfpower +1724,29,1568,54,kiliky +1724,29,1568,54,merricb +1724,29,1568,54,rizkar +1724,29,1568,54,soamazinglybad +1724,29,1674,53,evenhope +1724,29,1674,53,jajtugores +1724,29,1674,53,karlsen +1724,29,1674,53,kvenosdel +1724,29,1792,52,captainkat +1724,29,1792,52,gragatrim +1724,29,1792,52,jabooty3 +1724,29,1792,52,jeffwiles +1724,29,1792,52,loki2896 +1724,29,1792,52,quikhands28 +1724,29,1792,52,ralph hyde +1724,29,1792,52,zbylut +1724,29,1906,51,alasdemigod +1724,29,1906,51,damonh +1724,29,1906,51,dwskoog +1724,29,1906,51,hopea +1724,29,1906,51,immyboy +1724,29,1906,51,lrdars +1724,29,1906,51,ludique +1724,29,1906,51,mesenius +1724,29,1906,51,michalbara +1724,29,1906,51,mortosmortos +1724,29,1906,51,psychobob99 +1724,29,1906,51,rimjack +1724,29,1906,51,sajrainwater +1724,29,1906,51,truffeauvent +1724,29,2053,50,ashanddi +1724,29,2053,50,bonzillou +1724,29,2053,50,chivvo +1724,29,2053,50,cradleofmilk +1724,29,2053,50,daw65 +1724,29,2053,50,djdano +1724,29,2053,50,ideenlos +1724,29,2053,50,lwu86 +1724,29,2053,50,marcdam +1724,29,2053,50,necroblaster3000 +1724,29,2053,50,pithagoras +1724,29,2053,50,sjonnie +1724,29,2053,50,tinang +1724,29,2053,50,tinyblackcap +1724,29,2053,50,tolding +1724,29,2053,50,wombat929 +1724,29,2053,50,xicones +1724,29,2204,49,baz1313 +1724,29,2204,49,dr_moe +1724,29,2204,49,fitzgma +1724,29,2204,49,johoohno +1724,29,2204,49,kobietje +1724,29,2204,49,le gro joueur +1724,29,2204,49,lottysnake +1724,29,2204,49,malek +1724,29,2204,49,mbuckingham +1724,29,2204,49,pacman777 +1724,29,2204,49,pilot +1724,29,2204,49,rbynaker +1724,29,2204,49,superanimatore +1724,29,2204,49,titan21 +1724,29,2204,49,uglyramone +1724,29,2204,49,yannibus +1724,29,2351,48,advocator +1724,29,2351,48,basari +1724,29,2351,48,byte +1724,29,2351,48,carthage +1724,29,2351,48,dbezzant +1724,29,2351,48,ell131 +1724,29,2351,48,farsol +1724,29,2351,48,frouvne +1724,29,2351,48,hairydogwalker +1724,29,2351,48,howea +1724,29,2351,48,jnordmoe +1724,29,2351,48,jpratz +1724,29,2351,48,king gary +1724,29,2351,48,maacleod +1724,29,2351,48,nogser +1724,29,2351,48,socal tim +1724,29,2351,48,statsig +1724,29,2351,48,talzaroff +1724,29,2351,48,zeppi +1724,29,2351,48,zeusman +1724,29,2555,47,afafard +1724,29,2555,47,bartinpc +1724,29,2555,47,cactusse +1724,29,2555,47,coralouwho +1724,29,2555,47,dragonrelic +1724,29,2555,47,flamezofgamez +1724,29,2555,47,fortheloveofdice +1724,29,2555,47,gawain +1724,29,2555,47,harry86 +1724,29,2555,47,itsmenon +1724,29,2555,47,jax900 +1724,29,2555,47,nanokae +1724,29,2555,47,respinete +1724,29,2555,47,river911 +1724,29,2555,47,thies +1724,29,2555,47,tomcat1304 +1724,29,2555,47,vexman +1724,29,2758,46,kengi +1724,29,2758,46,kljlgard +1724,29,2758,46,koto1sa +1724,29,2758,46,nifer +1724,29,2758,46,nipernaadi +1724,29,2758,46,poisonivy +1724,29,2758,46,scribal +1724,29,2758,46,stormshadow +1724,29,2758,46,tdeery +1724,29,2758,46,willythesnitch +1724,29,2758,46,wizzy parkerir +1724,29,2969,45,cobame +1724,29,2969,45,dellas tallamar +1724,29,2969,45,erik2point0 +1724,29,2969,45,hegiton +1724,29,2969,45,itsme97405 +1724,29,2969,45,khumbanigash +1724,29,2969,45,lankyb +1724,29,2969,45,lisaabbott78 +1724,29,2969,45,mithrahir +1724,29,2969,45,ninja_karl +1724,29,2969,45,orph +1724,29,2969,45,paulspo +1724,29,2969,45,petegrey +1724,29,2969,45,raouldukehst +1724,29,2969,45,rollotommasi +1724,29,2969,45,semajiwho +1724,29,2969,45,ssheasby +1724,29,2969,45,tazz +1724,29,2969,45,todd alexander +1724,29,2969,45,tziotas +1724,29,2969,45,uberbrass +1724,29,2969,45,zakwas +1724,29,3216,44,blinks +1724,29,3216,44,byturn +1724,29,3216,44,cava85 +1724,29,3216,44,ejclason +1724,29,3216,44,elivi +1724,29,3216,44,magowes +1724,29,3216,44,randomgerbil +1724,29,3216,44,ravensburg24 +1724,29,3216,44,shaveandahaircut +1724,29,3216,44,sirevan +1724,29,3216,44,slavek +1724,29,3216,44,trevorandlinda +1724,29,3216,44,wiley1za +1724,29,3514,43,albarc +1724,29,3514,43,alphalor +1724,29,3514,43,blacx +1724,29,3514,43,dagreenmachine +1724,29,3514,43,darth headbutt +1724,29,3514,43,derek long +1724,29,3514,43,dugy +1724,29,3514,43,ercusharita +1724,29,3514,43,gianniss +1724,29,3514,43,hawkeye77 +1724,29,3514,43,ianotoole +1724,29,3514,43,jacktorrance +1724,29,3514,43,keithrapley +1724,29,3514,43,kennigo +1724,29,3514,43,kevin_whitmore +1724,29,3514,43,mrboon +1724,29,3514,43,mwmwgaming +1724,29,3514,43,phunlvr +1724,29,3514,43,pinto +1724,29,3514,43,shawcio +1724,29,3514,43,sprysialdo +1724,29,3514,43,tgmcduff +1724,29,3514,43,whataboutki +1724,29,3514,43,zacciep +1724,29,3815,42,amberaleman +1724,29,3815,42,gamesdaemon +1724,29,3815,42,kanalenman +1724,29,3815,42,opticode +1724,29,3815,42,randougall +1724,29,3815,42,slyqc +1724,29,3815,42,themaz +1724,29,3815,42,vvanasten +1724,29,3815,42,zveroboy +1724,29,4092,41,aquir +1724,29,4092,41,arte havenaar +1724,29,4092,41,bewl +1724,29,4092,41,gwegg +1724,29,4092,41,jbetz45453 +1724,29,4092,41,kaelistus +1724,29,4092,41,kanito8a +1724,29,4092,41,kathleenie +1724,29,4092,41,lordyazos +1724,29,4092,41,luk van baelen +1724,29,4092,41,meecrob goheels +1724,29,4092,41,mocarnym +1724,29,4092,41,paulosantoro +1724,29,4092,41,thatach +1724,29,4092,41,tigrillo +1724,29,4092,41,yoyo497 +1724,29,4426,40,celtic joker +1724,29,4426,40,cm randall +1724,29,4426,40,darkdolphin +1724,29,4426,40,jkglife +1724,29,4426,40,maucoin +1724,29,4426,40,mechjayti +1724,29,4426,40,morelju +1724,29,4426,40,otterdance +1724,29,4426,40,p3te +1724,29,4426,40,rebles123 +1724,29,4426,40,rudi_dutschke +1724,29,4426,40,scrotos +1724,29,4782,39,benjilb +1724,29,4782,39,captain pedantic +1724,29,4782,39,cashliam +1724,29,4782,39,gaffercat +1724,29,4782,39,keroak +1724,29,4782,39,mics +1724,29,4782,39,normcutts +1724,29,4782,39,renato martins +1724,29,4782,39,silcabad +1724,29,4782,39,sillyw +1724,29,4782,39,thegordonshow +1724,29,4782,39,tiggerlein +1724,29,4782,39,ycequeen77 +1724,29,5150,38,amilu +1724,29,5150,38,cichlidhead +1724,29,5150,38,imot90 +1724,29,5150,38,la rouquine +1724,29,5150,38,marioaguila +1724,29,5150,38,romycat +1724,29,5150,38,scoobysnacker +1724,29,5150,38,xkhamulx +1724,29,5624,37,killoqpasa +1724,29,6063,36,larsbutnotleast +1724,29,6063,36,rwclayton74 +1724,29,6573,35,gravy bob +1724,29,6573,35,hedwigeerkens +1724,29,7679,33,jurgens schneider +1724,29,8351,32,messier104 +1724,29,9910,30,arnott +2023,28,3,286,michieltummers +2023,28,20,173,catosulla +2023,28,68,114,iansbach +2023,28,120,101,bobby tweaks +2023,28,266,84,big head dave +2023,28,340,78,caramon75 +2023,28,361,77,rvdh83 +2023,28,390,76,leifr +2023,28,390,76,meng +2023,28,473,73,fateswanderer +2023,28,559,70,crosshaven +2023,28,559,70,hounddogs +2023,28,559,70,jokeres +2023,28,589,69,albia +2023,28,589,69,darklaw90 +2023,28,589,69,josephsibleybridges +2023,28,623,68,negroscuro +2023,28,652,67,duanewulf +2023,28,652,67,eldring +2023,28,652,67,lordt +2023,28,696,66,wolfpack95 +2023,28,741,65,fd2fd2 +2023,28,741,65,stakon +2023,28,787,64,iskarioth44 +2023,28,787,64,nocturnalallen +2023,28,843,63,arseny_vasily +2023,28,843,63,grantf +2023,28,843,63,msmilder +2023,28,843,63,ostry +2023,28,914,62,bryanldoughty +2023,28,914,62,goodaman +2023,28,914,62,hiperlink +2023,28,914,62,iglesias +2023,28,970,61,darthnice +2023,28,970,61,gamerl3 +2023,28,970,61,mabby +2023,28,970,61,stoffey +2023,28,1034,60,ljde70 +2023,28,1034,60,songlian +2023,28,1109,59,100pcblade +2023,28,1109,59,blurrblur +2023,28,1109,59,konwacht +2023,28,1202,58,dreadnaut +2023,28,1202,58,nicknelson +2023,28,1202,58,sonofachung +2023,28,1202,58,the_lifetamer +2023,28,1276,57,colorfulpockets +2023,28,1276,57,jedirahl +2023,28,1276,57,mylittlepwny +2023,28,1362,56,chrisdh +2023,28,1362,56,czarny2501 +2023,28,1362,56,es69 +2023,28,1362,56,faust45 +2023,28,1362,56,jnharr +2023,28,1362,56,nwright +2023,28,1362,56,randy cox +2023,28,1362,56,rcpick +2023,28,1459,55,ades +2023,28,1459,55,terwox +2023,28,1459,55,unshod +2023,28,1568,54,agataka +2023,28,1568,54,charlest +2023,28,1568,54,heavymetalboardgamer +2023,28,1568,54,tfj383 +2023,28,1674,53,aaarg_ink +2023,28,1674,53,blademaster777 +2023,28,1674,53,boredbeyondbelief +2023,28,1674,53,jjahner +2023,28,1674,53,ratherdashingil +2023,28,1674,53,sethvanorden +2023,28,1674,53,the_fish +2023,28,1792,52,michael becker +2023,28,1792,52,pvt1863 +2023,28,1906,51,briatharen +2023,28,1906,51,deacondavid +2023,28,1906,51,eggers +2023,28,1906,51,joakim589 +2023,28,1906,51,raulfr +2023,28,1906,51,sagikun +2023,28,1906,51,salvagedbylove +2023,28,1906,51,scottwildcatman +2023,28,1906,51,taisun +2023,28,1906,51,toynan +2023,28,2053,50,alkemist +2023,28,2053,50,bongoherman +2023,28,2053,50,casey nedry +2023,28,2053,50,comsta +2023,28,2053,50,crocko33 +2023,28,2053,50,ctalbot +2023,28,2053,50,greamejohnston +2023,28,2053,50,jbaxter9867 +2023,28,2053,50,john1212 +2023,28,2053,50,paaaulinaaaaa +2023,28,2053,50,robotm +2023,28,2053,50,umbratus +2023,28,2053,50,xmaster05 +2023,28,2053,50,youmin +2023,28,2053,50,zappa19 +2023,28,2204,49,butlerwo +2023,28,2204,49,dschleicher +2023,28,2204,49,el_shaddai +2023,28,2204,49,melissa0366 +2023,28,2204,49,nuuq +2023,28,2204,49,rampaging gnomes +2023,28,2204,49,shnik +2023,28,2204,49,siredofk +2023,28,2351,48,belthus +2023,28,2351,48,bennyd +2023,28,2351,48,bootleby +2023,28,2351,48,caltexn +2023,28,2351,48,coneys +2023,28,2351,48,crazyd191 +2023,28,2351,48,drugo +2023,28,2351,48,gruven_reuven +2023,28,2351,48,hairyarsenal +2023,28,2351,48,jcpmcdonald +2023,28,2351,48,jimicapone +2023,28,2351,48,kmgc2013 +2023,28,2351,48,msstandart +2023,28,2351,48,ncfcrulz +2023,28,2351,48,oobecks +2023,28,2351,48,pezpimp +2023,28,2351,48,planbee +2023,28,2351,48,remybach +2023,28,2351,48,scribes +2023,28,2555,47,andipants +2023,28,2555,47,askjensholm +2023,28,2555,47,bop517 +2023,28,2555,47,dalo03 +2023,28,2555,47,emptyset +2023,28,2555,47,enzo622 +2023,28,2555,47,keltonian +2023,28,2555,47,logandee +2023,28,2555,47,madmartigan1 +2023,28,2555,47,mentalguy +2023,28,2555,47,migelius +2023,28,2555,47,mikeyash +2023,28,2555,47,piskal +2023,28,2555,47,robinsoncrusoe +2023,28,2555,47,the gidget +2023,28,2555,47,thecrazyscotsman +2023,28,2555,47,wallwaster +2023,28,2555,47,ziilch +2023,28,2758,46,akaadam +2023,28,2758,46,alecincr +2023,28,2758,46,anttit +2023,28,2758,46,chicagometh +2023,28,2758,46,corsopato +2023,28,2758,46,dbailey +2023,28,2758,46,espen +2023,28,2758,46,historianteacher +2023,28,2758,46,indy500sr +2023,28,2758,46,light7 +2023,28,2758,46,lorddillon +2023,28,2758,46,luisjoey +2023,28,2758,46,metelo +2023,28,2758,46,mikekoro +2023,28,2758,46,mjdart +2023,28,2758,46,moonerium_boardgame +2023,28,2758,46,oopsiak +2023,28,2758,46,ritzelbertus +2023,28,2758,46,uhrli +2023,28,2758,46,umpire +2023,28,2969,45,alunna +2023,28,2969,45,andreasss +2023,28,2969,45,aristotlemate +2023,28,2969,45,brutusbear +2023,28,2969,45,catanimalia +2023,28,2969,45,chris0zz +2023,28,2969,45,dougadamsau +2023,28,2969,45,dwacker +2023,28,2969,45,eh48035 +2023,28,2969,45,emilizz1 +2023,28,2969,45,firelander +2023,28,2969,45,janvisbech +2023,28,2969,45,jedijawa74 +2023,28,2969,45,licotto +2023,28,2969,45,mantuanwar +2023,28,2969,45,melx +2023,28,2969,45,nesbet +2023,28,2969,45,olfenw +2023,28,2969,45,polgara21 +2023,28,2969,45,randomguy132 +2023,28,2969,45,rc_catracho +2023,28,2969,45,recall237 +2023,28,2969,45,stachu772 +2023,28,2969,45,wcordewiner +2023,28,3216,44,decmoon +2023,28,3216,44,eddu +2023,28,3216,44,fransdesc +2023,28,3216,44,grimnir +2023,28,3216,44,grzechoo104 +2023,28,3216,44,horak +2023,28,3216,44,janenglund +2023,28,3216,44,jmsmith2434 +2023,28,3216,44,kbsquiggle +2023,28,3216,44,m3tabolic +2023,28,3216,44,m_r_tyler +2023,28,3216,44,maglinkinpark +2023,28,3216,44,matthulgan +2023,28,3216,44,mccrispy +2023,28,3216,44,mephisto42560 +2023,28,3216,44,microfono2es +2023,28,3216,44,naro +2023,28,3216,44,ninfadora1986 +2023,28,3216,44,psychonaut +2023,28,3216,44,rokkr +2023,28,3216,44,rusty567 +2023,28,3216,44,smorange +2023,28,3216,44,spart02 +2023,28,3216,44,wchheu +2023,28,3216,44,yankeezulu +2023,28,3216,44,zeus_ +2023,28,3216,44,zeusz70 +2023,28,3514,43,actuaryesquire +2023,28,3514,43,albertobevi +2023,28,3514,43,bimbobo123 +2023,28,3514,43,blakbyf +2023,28,3514,43,cermailu +2023,28,3514,43,drainout +2023,28,3514,43,duirin +2023,28,3514,43,erwinkle +2023,28,3514,43,farmergiles +2023,28,3514,43,fazeorange +2023,28,3514,43,garbagerunner +2023,28,3514,43,hansiepansie +2023,28,3514,43,holsdergeier +2023,28,3514,43,huffa2 +2023,28,3514,43,joboo +2023,28,3514,43,joe casadonte +2023,28,3514,43,jonnyutah +2023,28,3514,43,kastrologos +2023,28,3514,43,kylepjams +2023,28,3514,43,lil red head +2023,28,3514,43,magnus1515 +2023,28,3514,43,mhaseman +2023,28,3514,43,musashidaryl +2023,28,3514,43,neale2006 +2023,28,3514,43,neonatus +2023,28,3514,43,pelexoi +2023,28,3514,43,philipneri +2023,28,3514,43,ricardomagana +2023,28,3514,43,rossum +2023,28,3514,43,sangwizz +2023,28,3514,43,shammois +2023,28,3514,43,steeveleo +2023,28,3514,43,tony kan +2023,28,3514,43,zaphod +2023,28,3815,42,ameberly1 +2023,28,3815,42,christopher_preston +2023,28,3815,42,diablotm +2023,28,3815,42,elebenty +2023,28,3815,42,fedow +2023,28,3815,42,gandon +2023,28,3815,42,giulie +2023,28,3815,42,gobo1572 +2023,28,3815,42,head_rat +2023,28,3815,42,jesse custer +2023,28,3815,42,jirikone +2023,28,3815,42,jwjensen38 +2023,28,3815,42,kingengine1 +2023,28,3815,42,kosmoko +2023,28,3815,42,mgreen02 +2023,28,3815,42,naarnold +2023,28,3815,42,oilerfan +2023,28,3815,42,onidzuka7 +2023,28,3815,42,raveair +2023,28,3815,42,rbelikov +2023,28,3815,42,ryansdavis +2023,28,3815,42,simon donkers +2023,28,3815,42,technik +2023,28,3815,42,toothpickman +2023,28,3815,42,wannsindwirda +2023,28,3815,42,wedgybaby +2023,28,4092,41,crito13 +2023,28,4092,41,derekyoung330 +2023,28,4092,41,flowerus +2023,28,4092,41,garau +2023,28,4092,41,giantcoyotebird +2023,28,4092,41,ivanho +2023,28,4092,41,jcgilliams +2023,28,4092,41,maartendp +2023,28,4092,41,maivel +2023,28,4092,41,mallgur +2023,28,4092,41,matthias_k +2023,28,4092,41,meeshpod +2023,28,4092,41,miked1921 +2023,28,4092,41,mrb3303 +2023,28,4092,41,narcis +2023,28,4092,41,nielsvanoch +2023,28,4092,41,nkcbones +2023,28,4092,41,realnewton +2023,28,4092,41,redheaded pharmacist +2023,28,4092,41,rober +2023,28,4092,41,thesinators +2023,28,4092,41,tpollex +2023,28,4092,41,wildyapok +2023,28,4092,41,zepheus +2023,28,4426,40,apple_pies +2023,28,4426,40,blarz311 +2023,28,4426,40,danielwahlen +2023,28,4426,40,deadmarlowe +2023,28,4426,40,flannc +2023,28,4426,40,foolinjected101 +2023,28,4426,40,geocosmogon +2023,28,4426,40,kalvisk +2023,28,4426,40,lobotnik +2023,28,4426,40,madmanw +2023,28,4426,40,maldrak +2023,28,4426,40,mguethler +2023,28,4426,40,mnowaczy +2023,28,4426,40,moon knight +2023,28,4426,40,moorwild +2023,28,4426,40,nooa42 +2023,28,4426,40,patal354 +2023,28,4426,40,ravenpolar +2023,28,4426,40,rspacey +2023,28,4426,40,touchstonethefool +2023,28,4782,39,alisonarantes +2023,28,4782,39,bjosephlyon +2023,28,4782,39,enriquexanchez +2023,28,4782,39,eraelan +2023,28,4782,39,fortiche50 +2023,28,4782,39,jmhulme +2023,28,4782,39,kikaytete +2023,28,4782,39,legolias +2023,28,4782,39,sivesgaard +2023,28,5150,38,aleka80 +2023,28,5150,38,archive77 +2023,28,5150,38,asiok +2023,28,5150,38,azalea +2023,28,5150,38,drumphil +2023,28,5150,38,fluidspace +2023,28,5150,38,funkodrom +2023,28,5150,38,gilderrules13 +2023,28,5150,38,jonesjaeger +2023,28,5150,38,lerefuseur +2023,28,5150,38,macmcmurry +2023,28,5150,38,mandreke +2023,28,5150,38,maxim108 +2023,28,5150,38,mexican_moon_bgg +2023,28,5150,38,mickski +2023,28,5150,38,missbaybee +2023,28,5150,38,naftalino +2023,28,5150,38,raldake +2023,28,5624,37,aszalyn +2023,28,5624,37,bart +2023,28,5624,37,blicko +2023,28,5624,37,dubious bryn +2023,28,5624,37,grunwald +2023,28,5624,37,lericson20 +2023,28,5624,37,lopura +2023,28,5624,37,papaver +2023,28,5624,37,shamragnar +2023,28,5624,37,wymanic +2023,28,6063,36,curiousg +2023,28,6063,36,mario mayr +2023,28,6063,36,pattersonclan +2023,28,6063,36,richy81 +2023,28,6063,36,thebeelzebuth +2023,28,6063,36,weah44 +2023,28,7100,34,21kellie08 +2023,28,7100,34,hamka793 +2023,28,7100,34,ruelgaviola +2023,28,8351,32,gattolardo +2388,27,34,143,chrisw +2388,27,242,86,blackdice23 +2388,27,273,83,japara +2388,27,289,82,sharamis87 +2388,27,413,75,dracandross +2388,27,413,75,program2game +2388,27,438,74,geofvb7 +2388,27,473,73,pyjam +2388,27,522,71,cartwright +2388,27,522,71,kai96 +2388,27,787,64,nexus roy +2388,27,843,63,marisa_cherry +2388,27,843,63,rahmich +2388,27,914,62,painter3331 +2388,27,970,61,elbek +2388,27,970,61,fitzyfitz +2388,27,1034,60,lamarquise +2388,27,1034,60,rabk +2388,27,1034,60,takada +2388,27,1034,60,tawnos76 +2388,27,1034,60,waltzingfox +2388,27,1109,59,b factor +2388,27,1109,59,drenus +2388,27,1109,59,gabrielcohn +2388,27,1109,59,larahall424 +2388,27,1109,59,roadrunner1919 +2388,27,1109,59,victorem +2388,27,1109,59,ziggyzambo +2388,27,1202,58,hoskdona +2388,27,1276,57,jiistme +2388,27,1276,57,thulir +2388,27,1362,56,amadannabriona +2388,27,1362,56,apple paul +2388,27,1362,56,bigchocolate69 +2388,27,1362,56,combatwombat81 +2388,27,1362,56,gustavmahler +2388,27,1362,56,lotsa_muffins +2388,27,1459,55,_tk_ +2388,27,1459,55,davidwoodford +2388,27,1459,55,energythief +2388,27,1459,55,ibn_ul_khattab +2388,27,1459,55,kmontanari +2388,27,1459,55,lemec78 +2388,27,1459,55,pieman +2388,27,1459,55,rhodesylad +2388,27,1568,54,bramadan +2388,27,1568,54,justin hendry +2388,27,1568,54,necrobutcher +2388,27,1568,54,olmstemd +2388,27,1568,54,shamurai +2388,27,1568,54,shepwrists +2388,27,1568,54,spieltroll +2388,27,1674,53,benthedean +2388,27,1674,53,kovajatka +2388,27,1674,53,rodenbeckb +2388,27,1792,52,harrycover +2388,27,1792,52,nachotay +2388,27,1792,52,play2times +2388,27,1792,52,trindel +2388,27,1906,51,andren +2388,27,1906,51,firenski +2388,27,1906,51,mizio66 +2388,27,1906,51,mjf71 +2388,27,1906,51,mothertruckin +2388,27,1906,51,pdubb12 +2388,27,1906,51,pence +2388,27,1906,51,punchizzle +2388,27,1906,51,quietcorn +2388,27,1906,51,sozonm7 +2388,27,1906,51,sq498 +2388,27,2053,50,anxelox +2388,27,2053,50,bazik123 +2388,27,2053,50,boardgamegeek42 +2388,27,2053,50,crazyyog +2388,27,2053,50,drlowdon +2388,27,2053,50,elisunza +2388,27,2053,50,ellencaroline +2388,27,2053,50,george_avramov +2388,27,2053,50,jouslare +2388,27,2053,50,keras_terune +2388,27,2053,50,knecht ruprecht +2388,27,2053,50,magnusson +2388,27,2053,50,sedjtroll +2388,27,2053,50,sociomatt +2388,27,2204,49,_ais_ +2388,27,2204,49,caligula8 +2388,27,2204,49,cheesebecky +2388,27,2204,49,doubtofbuddha +2388,27,2204,49,fluxx +2388,27,2204,49,jpauwels +2388,27,2204,49,lclaudius +2388,27,2351,48,anthonycos +2388,27,2351,48,bdm0610 +2388,27,2351,48,blairo44 +2388,27,2351,48,bnr33 +2388,27,2351,48,costello +2388,27,2351,48,dickb79 +2388,27,2351,48,dimitriosalexis +2388,27,2351,48,earthquake +2388,27,2351,48,lord_indûr +2388,27,2351,48,mathguy6189 +2388,27,2351,48,shadowchef +2388,27,2351,48,shiny blue robot +2388,27,2555,47,aaron blackstorm +2388,27,2555,47,arcthedad +2388,27,2555,47,caylott +2388,27,2555,47,daloser +2388,27,2555,47,echelon +2388,27,2555,47,evrenoz +2388,27,2555,47,fneup +2388,27,2555,47,kilroy_locke +2388,27,2555,47,kuhrusty +2388,27,2555,47,mardeck +2388,27,2555,47,oldmanmerton +2388,27,2555,47,olorin007 +2388,27,2555,47,prinny_dood +2388,27,2555,47,prosi +2388,27,2555,47,wnverhoef +2388,27,2555,47,wobbly_chairs +2388,27,2758,46,aris7oi +2388,27,2758,46,chefdevergue +2388,27,2758,46,clownfeet +2388,27,2758,46,cobberfootballer +2388,27,2758,46,dannte +2388,27,2758,46,dawholeenchilada +2388,27,2758,46,den glada elefanten +2388,27,2758,46,dukane82 +2388,27,2758,46,epanema +2388,27,2758,46,golbane +2388,27,2758,46,jere79 +2388,27,2758,46,jhagen1908 +2388,27,2758,46,kippkimelo +2388,27,2758,46,madchiotis +2388,27,2758,46,michdreck +2388,27,2758,46,mitzufuss +2388,27,2758,46,monga +2388,27,2758,46,ncatulle +2388,27,2758,46,redzombie +2388,27,2758,46,s1eep +2388,27,2758,46,scoutdad +2388,27,2758,46,shippert +2388,27,2758,46,simulacrum +2388,27,2758,46,stiffann +2388,27,2758,46,woodfire +2388,27,2758,46,zodball +2388,27,2969,45,albcann +2388,27,2969,45,benkyo +2388,27,2969,45,cartesius +2388,27,2969,45,corran horn +2388,27,2969,45,didiita +2388,27,2969,45,dnjbean +2388,27,2969,45,donglande +2388,27,2969,45,effervex +2388,27,2969,45,elas +2388,27,2969,45,elektro +2388,27,2969,45,galatolol +2388,27,2969,45,hannibalultor +2388,27,2969,45,hessen +2388,27,2969,45,horrorofthedark +2388,27,2969,45,icarus8028 +2388,27,2969,45,ilgoga +2388,27,2969,45,liorshapira +2388,27,2969,45,malloc +2388,27,2969,45,manflute +2388,27,2969,45,mcopinga +2388,27,2969,45,mr thijs +2388,27,2969,45,schuk +2388,27,2969,45,silentand +2388,27,2969,45,smurphy +2388,27,2969,45,sthforever +2388,27,2969,45,trevordeboer +2388,27,2969,45,ultralord +2388,27,2969,45,wiltchamberlain +2388,27,2969,45,zircce +2388,27,3216,44,amwiles +2388,27,3216,44,arrebimbomalho +2388,27,3216,44,belette +2388,27,3216,44,berry04 +2388,27,3216,44,butze +2388,27,3216,44,crunk004 +2388,27,3216,44,darth_metus +2388,27,3216,44,dasher47051 +2388,27,3216,44,demiesta +2388,27,3216,44,dimanche +2388,27,3216,44,fake +2388,27,3216,44,illotus +2388,27,3216,44,iorio +2388,27,3216,44,ipablete +2388,27,3216,44,jansy +2388,27,3216,44,john rogers +2388,27,3216,44,katlibrary +2388,27,3216,44,kubap +2388,27,3216,44,loxos +2388,27,3216,44,markey +2388,27,3216,44,mizar83 +2388,27,3216,44,mktoni +2388,27,3216,44,odinsday +2388,27,3216,44,pete mcpherson +2388,27,3216,44,pisquo +2388,27,3216,44,rclupes +2388,27,3216,44,rhelms +2388,27,3216,44,roadhouse +2388,27,3216,44,ryanespin +2388,27,3216,44,sgibson260 +2388,27,3216,44,starwarsgolfer +2388,27,3216,44,sturc69 +2388,27,3216,44,tabbysunlion +2388,27,3216,44,thesp +2388,27,3216,44,thrasymachus +2388,27,3216,44,twooffthetop +2388,27,3216,44,unknown ediology +2388,27,3216,44,vacekrae +2388,27,3216,44,voltenion +2388,27,3216,44,xphile +2388,27,3216,44,yencool +2388,27,3216,44,zkaufman +2388,27,3514,43,_battosai_ +2388,27,3514,43,bizarrowildcat +2388,27,3514,43,coolmagma +2388,27,3514,43,daniyel +2388,27,3514,43,dar13 +2388,27,3514,43,geirerik +2388,27,3514,43,gryzilepek +2388,27,3514,43,halbert82 +2388,27,3514,43,hiro57 +2388,27,3514,43,itzo28 +2388,27,3514,43,jasmin8r +2388,27,3514,43,notworthasking +2388,27,3514,43,panplayswe +2388,27,3514,43,psyven +2388,27,3514,43,smilingra +2388,27,3514,43,squishymann +2388,27,3514,43,stephh +2388,27,3514,43,stoldti +2388,27,3514,43,tony501x +2388,27,3514,43,william donks +2388,27,3815,42,beks23 +2388,27,3815,42,cova88 +2388,27,3815,42,eduart +2388,27,3815,42,erethakbe +2388,27,3815,42,flyingarrow +2388,27,3815,42,hawkfan +2388,27,3815,42,ichlouisa +2388,27,3815,42,ivan_ser_khlebnikov +2388,27,3815,42,jamest +2388,27,3815,42,kackarschen +2388,27,3815,42,legendaryvice +2388,27,3815,42,leungd +2388,27,3815,42,matrimcauthon +2388,27,3815,42,mikelloggs +2388,27,3815,42,nadjia +2388,27,3815,42,nickxvan1 +2388,27,3815,42,pennuto77 +2388,27,3815,42,psy5 +2388,27,3815,42,pyrest +2388,27,3815,42,richardolen2 +2388,27,3815,42,shockaday +2388,27,3815,42,templarmzn +2388,27,3815,42,thomasbefa +2388,27,3815,42,varianor +2388,27,4092,41,aisa_94 +2388,27,4092,41,albertistvan +2388,27,4092,41,allbaugh +2388,27,4092,41,aro246 +2388,27,4092,41,barad_the_dwarf +2388,27,4092,41,blackgold369 +2388,27,4092,41,capital_t +2388,27,4092,41,carolvg +2388,27,4092,41,chucky5 +2388,27,4092,41,djfranky +2388,27,4092,41,duckrabbit78 +2388,27,4092,41,ferq +2388,27,4092,41,fisha +2388,27,4092,41,godenyen +2388,27,4092,41,king knuffel +2388,27,4092,41,langsz +2388,27,4092,41,majzownik +2388,27,4092,41,mgaler +2388,27,4092,41,moonglow +2388,27,4092,41,night_trap +2388,27,4092,41,orzeh +2388,27,4092,41,ramssesmex +2388,27,4092,41,sobriquett +2388,27,4092,41,theelise +2388,27,4092,41,thor0298 +2388,27,4092,41,tjolmir +2388,27,4092,41,vukozec +2388,27,4426,40,allthatjazz +2388,27,4426,40,andstrauss +2388,27,4426,40,andy gheerardijn +2388,27,4426,40,aspishere +2388,27,4426,40,bert peinlich +2388,27,4426,40,connectmore +2388,27,4426,40,cornjob +2388,27,4426,40,cythrawl +2388,27,4426,40,daju2002 +2388,27,4426,40,derakht +2388,27,4426,40,dvega +2388,27,4426,40,hubajube +2388,27,4426,40,joehn +2388,27,4426,40,jumento +2388,27,4426,40,krolik +2388,27,4426,40,kruisemissile05 +2388,27,4426,40,lastcocoabean +2388,27,4426,40,littleraindrops +2388,27,4426,40,marthinoth +2388,27,4426,40,mindnektar +2388,27,4426,40,mindswap +2388,27,4426,40,mirax_rus +2388,27,4426,40,munkypants +2388,27,4426,40,nobigdeal +2388,27,4426,40,oked +2388,27,4426,40,pedrocaetano +2388,27,4426,40,relentless24 +2388,27,4426,40,summun +2388,27,4426,40,talldude +2388,27,4426,40,thewtm +2388,27,4426,40,thorphin +2388,27,4426,40,torre oscura +2388,27,4426,40,wolveriangtx +2388,27,4426,40,zenmazster +2388,27,4782,39,affenberg +2388,27,4782,39,argus panoptes +2388,27,4782,39,ariscris +2388,27,4782,39,bingopajama +2388,27,4782,39,chaddyboy_2000 +2388,27,4782,39,davidwooderson +2388,27,4782,39,ddpage +2388,27,4782,39,dlof +2388,27,4782,39,dweeb +2388,27,4782,39,eiskaltesfuesschen +2388,27,4782,39,flitzoni +2388,27,4782,39,gripnerd +2388,27,4782,39,ilmion +2388,27,4782,39,jk_w +2388,27,4782,39,leibgeber +2388,27,4782,39,luds +2388,27,4782,39,luisterpaul +2388,27,4782,39,miniben1 +2388,27,4782,39,neilturton +2388,27,4782,39,pagan99 +2388,27,4782,39,phrim +2388,27,4782,39,raceforthegalaxy +2388,27,4782,39,saisaysplaygo +2388,27,4782,39,shazinga186 +2388,27,4782,39,toolman123 +2388,27,4782,39,tulfa +2388,27,5150,38,abecker +2388,27,5150,38,brindelin +2388,27,5150,38,clootie +2388,27,5150,38,dancj +2388,27,5150,38,dogterom +2388,27,5150,38,donc72 +2388,27,5150,38,eldrion +2388,27,5150,38,fat google +2388,27,5150,38,feign +2388,27,5150,38,flindee +2388,27,5150,38,freddieyu +2388,27,5150,38,greetingsfrombergen +2388,27,5150,38,gryzli83 +2388,27,5150,38,guilty_light +2388,27,5150,38,justriley +2388,27,5150,38,klark78 +2388,27,5150,38,laminator +2388,27,5150,38,ldjarmin +2388,27,5150,38,melvit +2388,27,5150,38,ninebreaker2 +2388,27,5150,38,omenn +2388,27,5150,38,pjwfranken +2388,27,5150,38,posit +2388,27,5150,38,rainbow snake +2388,27,5150,38,the_rick +2388,27,5150,38,tmr100 +2388,27,5150,38,ufomar +2388,27,5150,38,wildcard six +2388,27,5624,37,baltruce +2388,27,5624,37,beerzinjsh +2388,27,5624,37,daveyb +2388,27,5624,37,dereklee9819 +2388,27,5624,37,elbafo +2388,27,5624,37,eugene256 +2388,27,5624,37,fbi_boy +2388,27,5624,37,froggy_steve +2388,27,5624,37,gravey +2388,27,5624,37,kalypto21 +2388,27,5624,37,ludicnic +2388,27,5624,37,mykero +2388,27,5624,37,painkiller +2388,27,5624,37,peter van der graaf +2388,27,5624,37,pouringraine +2388,27,5624,37,real tigris +2388,27,5624,37,seedleon +2388,27,5624,37,tibetgeek +2388,27,5624,37,tmatos2001 +2388,27,5624,37,twozsinapod +2388,27,5624,37,zeme1985 +2388,27,6063,36,cancelled +2388,27,6063,36,cedspectre1 +2388,27,6063,36,dearvienna +2388,27,6063,36,fatherdagon +2388,27,6063,36,icesphere +2388,27,6063,36,janthyge +2388,27,6063,36,jujulautre +2388,27,6063,36,mcpbap +2388,27,6063,36,mighty pope +2388,27,6063,36,mistergluck +2388,27,6063,36,morningwoodcutters +2388,27,6063,36,nicolas23 +2388,27,6063,36,peterm2158 +2388,27,6063,36,pinkus +2388,27,6063,36,podo +2388,27,6063,36,raffik_san +2388,27,6063,36,royaljayhawk +2388,27,6063,36,seth82 +2388,27,6063,36,sid_staddon +2388,27,6063,36,sorp222 +2388,27,6573,35,komix +2388,27,6573,35,patyipatyi +2388,27,6573,35,rosengald +2388,27,6573,35,ruben3 +2388,27,6573,35,tomlub +2388,27,6573,35,welta +2388,27,7100,34,beznuk +2388,27,7100,34,dawntreaders +2388,27,7100,34,migio +2388,27,7100,34,rmjordan +2388,27,7100,34,sithpenguin +2388,27,7100,34,tslupek +2388,27,7100,34,zepperulez +2388,27,7679,33,bob_albright +2388,27,7679,33,edbyu82 +2388,27,7679,33,necryl +2388,27,7679,33,thebruce77 +2388,27,9910,30,schmonkey +2822,26,79,110,-johnny- +2822,26,110,103,evilshoot +2822,26,120,101,carlos palomino +2822,26,127,100,niramas +2822,26,155,95,velazarius +2822,26,252,85,mkaks7 +2822,26,361,77,jdludlow +2822,26,361,77,pipboy101 +2822,26,390,76,dbuel +2822,26,438,74,kløve +2822,26,438,74,seermagic +2822,26,473,73,wuaghhhhxma +2822,26,559,70,tagar +2822,26,623,68,armourer84 +2822,26,623,68,ewandor +2822,26,696,66,reinore +2822,26,741,65,staszek +2822,26,843,63,fridleiffaehn +2822,26,843,63,galion +2822,26,843,63,jakinney +2822,26,843,63,khmelyok +2822,26,914,62,arges92 +2822,26,970,61,sobo +2822,26,970,61,warlock000 +2822,26,1034,60,andreman +2822,26,1034,60,hairypotter +2822,26,1034,60,magicsam +2822,26,1202,58,gwen +2822,26,1202,58,martinwin +2822,26,1202,58,michael poplawski +2822,26,1276,57,drgtr71 +2822,26,1276,57,fslocalking +2822,26,1276,57,vladdswrath +2822,26,1276,57,willshaw67 +2822,26,1459,55,cdp85 +2822,26,1459,55,vetinari +2822,26,1568,54,der das +2822,26,1568,54,dessmond +2822,26,1568,54,tomzaq +2822,26,1674,53,bernsen +2822,26,1674,53,brianmbe +2822,26,1674,53,gareth +2822,26,1674,53,gee3po +2822,26,1674,53,haruki81 +2822,26,1792,52,cassiusclay +2822,26,1792,52,juzam +2822,26,1792,52,konp64 +2822,26,1906,51,bartmerckx +2822,26,1906,51,bdegroot +2822,26,1906,51,benjamindn +2822,26,1906,51,cdrodeffer +2822,26,1906,51,jerryyeti +2822,26,1906,51,mrpretty +2822,26,1906,51,rotilio +2822,26,1906,51,shanerpoint +2822,26,1906,51,thecasualgamer +2822,26,2053,50,araeth +2822,26,2053,50,chester steve +2822,26,2053,50,dafees +2822,26,2053,50,fargus9 +2822,26,2053,50,minershiner +2822,26,2053,50,siromrof +2822,26,2053,50,strategos +2822,26,2204,49,ejohnson7 +2822,26,2204,49,gatchaman +2822,26,2204,49,gendedwend +2822,26,2204,49,jake11simon +2822,26,2204,49,ktovh8 +2822,26,2204,49,legendno6 +2822,26,2204,49,monkeygoose +2822,26,2204,49,nb0000 +2822,26,2204,49,romain +2822,26,2204,49,spiritreacher +2822,26,2204,49,the highwayman +2822,26,2351,48,aberlanas +2822,26,2351,48,acekiller +2822,26,2351,48,burdisho +2822,26,2351,48,bvongunten +2822,26,2351,48,ccface +2822,26,2351,48,chiffre +2822,26,2351,48,eagleeye42 +2822,26,2351,48,elclarkey +2822,26,2351,48,goonzo +2822,26,2351,48,griffin09 +2822,26,2351,48,gutterspud +2822,26,2351,48,istvanffy +2822,26,2351,48,kenra +2822,26,2351,48,leeds55 +2822,26,2351,48,roids +2822,26,2351,48,talloniv +2822,26,2351,48,tentcity +2822,26,2351,48,zen postman +2822,26,2555,47,browndesign +2822,26,2555,47,demuur +2822,26,2555,47,imis +2822,26,2555,47,iulius12 +2822,26,2555,47,jayahre +2822,26,2555,47,jeroenp +2822,26,2555,47,johnwaffles +2822,26,2555,47,keekohmygod +2822,26,2555,47,larsnl +2822,26,2555,47,mozart78 +2822,26,2555,47,mrwoodrow +2822,26,2555,47,mzepter +2822,26,2555,47,oberjt +2822,26,2555,47,paoloraciti +2822,26,2555,47,powellmark +2822,26,2555,47,scooperman +2822,26,2555,47,snarcis +2822,26,2555,47,tayloredtowrite +2822,26,2555,47,thestoryguy +2822,26,2555,47,yegor +2822,26,2758,46,andy pain +2822,26,2758,46,crisscross1197 +2822,26,2758,46,cubsfan31 +2822,26,2758,46,edgev +2822,26,2758,46,gamesgrandpa +2822,26,2758,46,ginn5j +2822,26,2758,46,jpylus +2822,26,2758,46,kayteacat +2822,26,2758,46,lucasgentry +2822,26,2758,46,macurvello +2822,26,2758,46,mrudolf +2822,26,2758,46,rschmucker +2822,26,2758,46,spllr +2822,26,2758,46,zabt +2822,26,2969,45,caedmus +2822,26,2969,45,d erasmus +2822,26,2969,45,dante_dark +2822,26,2969,45,dexter11 +2822,26,2969,45,gifforddale +2822,26,2969,45,igorknop +2822,26,2969,45,james-be +2822,26,2969,45,luxlivery +2822,26,2969,45,mikestoi +2822,26,2969,45,nater1045 +2822,26,2969,45,nectar +2822,26,2969,45,order +2822,26,2969,45,tanek +2822,26,2969,45,veenickz +2822,26,2969,45,zeroichi +2822,26,3216,44,akhveldrin +2822,26,3216,44,andurilwildfire +2822,26,3216,44,anganatyr +2822,26,3216,44,bisforblindy +2822,26,3216,44,biswut +2822,26,3216,44,buttmunch +2822,26,3216,44,carbone xiv +2822,26,3216,44,death lee +2822,26,3216,44,dimack +2822,26,3216,44,fastattaq +2822,26,3216,44,grgo +2822,26,3216,44,jeffrey henning +2822,26,3216,44,jmenctthey +2822,26,3216,44,juxtatype +2822,26,3216,44,lrm7015 +2822,26,3216,44,madslaust +2822,26,3216,44,markejohnson +2822,26,3216,44,mkrajew +2822,26,3216,44,nikita +2822,26,3216,44,phoenix071 +2822,26,3216,44,rooboomr +2822,26,3216,44,slider +2822,26,3216,44,squashfactory +2822,26,3216,44,squiddly +2822,26,3216,44,sturba +2822,26,3216,44,teriyaki donuts +2822,26,3216,44,trylor24 +2822,26,3216,44,tzarofpoland +2822,26,3216,44,venser +2822,26,3216,44,walbertosmith +2822,26,3514,43,angusbull +2822,26,3514,43,avlawn +2822,26,3514,43,barbate +2822,26,3514,43,bgeipel +2822,26,3514,43,brala +2822,26,3514,43,david gardner +2822,26,3514,43,dragon1ord +2822,26,3514,43,eastyanggu +2822,26,3514,43,ffascout3 +2822,26,3514,43,gamegrunt +2822,26,3514,43,getareaction +2822,26,3514,43,gorbak +2822,26,3514,43,homey_badger88 +2822,26,3514,43,humeral +2822,26,3514,43,innercitysumo +2822,26,3514,43,javierclaveria +2822,26,3514,43,jortmungandr +2822,26,3514,43,kap42 +2822,26,3514,43,kristopherhickman +2822,26,3514,43,kuhnk +2822,26,3514,43,lcs213 +2822,26,3514,43,louisgara +2822,26,3514,43,mal17 +2822,26,3514,43,mekane +2822,26,3514,43,myparadox +2822,26,3514,43,omahavice +2822,26,3514,43,pagames +2822,26,3514,43,paweln +2822,26,3514,43,pinkyman +2822,26,3514,43,realyoda +2822,26,3514,43,remus +2822,26,3514,43,rhora12 +2822,26,3514,43,romanbode +2822,26,3514,43,runehardt +2822,26,3514,43,superjero +2822,26,3514,43,toliveischrist77 +2822,26,3514,43,tommih +2822,26,3514,43,travis1978suzuki +2822,26,3514,43,xxshazamxx +2822,26,3514,43,ychor +2822,26,3815,42,casem +2822,26,3815,42,deev42 +2822,26,3815,42,delinquent +2822,26,3815,42,dengue +2822,26,3815,42,fossball +2822,26,3815,42,greenbeehive +2822,26,3815,42,helloween85 +2822,26,3815,42,huntter +2822,26,3815,42,larrykruger +2822,26,3815,42,marciusfabiani +2822,26,3815,42,mrcoolranch +2822,26,3815,42,nikkapo +2822,26,3815,42,psychowolf +2822,26,3815,42,ridigroll +2822,26,3815,42,rog. +2822,26,3815,42,rosieb2 +2822,26,3815,42,rsa1 +2822,26,3815,42,sislar +2822,26,3815,42,stinkoid +2822,26,3815,42,technowc +2822,26,3815,42,texasjdl +2822,26,3815,42,thedacker +2822,26,3815,42,thornets +2822,26,3815,42,trawlerman +2822,26,3815,42,vaelern +2822,26,3815,42,windrant +2822,26,3815,42,zaphiel +2822,26,4092,41,aaronsibley +2822,26,4092,41,bluetorch +2822,26,4092,41,bobdole04126623 +2822,26,4092,41,brian asklev aursen +2822,26,4092,41,codewizpt +2822,26,4092,41,danielmleitao +2822,26,4092,41,doribrud +2822,26,4092,41,dwgteach +2822,26,4092,41,dziadko +2822,26,4092,41,edrenlimon +2822,26,4092,41,elbryk +2822,26,4092,41,elmoftw +2822,26,4092,41,georgeofjungle3 +2822,26,4092,41,grinspy +2822,26,4092,41,grishny +2822,26,4092,41,insaneplatypus +2822,26,4092,41,jarviskj3 +2822,26,4092,41,jorrit +2822,26,4092,41,katja +2822,26,4092,41,kifty +2822,26,4092,41,limones +2822,26,4092,41,mr jummy +2822,26,4092,41,phija +2822,26,4092,41,qbaza +2822,26,4092,41,romendil +2822,26,4092,41,sgathan_ +2822,26,4092,41,shijuro +2822,26,4092,41,sigon +2822,26,4092,41,spalaczky +2822,26,4092,41,teddz +2822,26,4092,41,warlikepoet +2822,26,4092,41,warpedlord +2822,26,4426,40,andrewflansburg +2822,26,4426,40,aquillo +2822,26,4426,40,ashrael +2822,26,4426,40,bafusilier +2822,26,4426,40,balley40 +2822,26,4426,40,belisarius88 +2822,26,4426,40,benjamin bretey +2822,26,4426,40,btanchel +2822,26,4426,40,bwridge +2822,26,4426,40,candio +2822,26,4426,40,coriales +2822,26,4426,40,dimarco70 +2822,26,4426,40,dpkmc +2822,26,4426,40,edkofuzz +2822,26,4426,40,elzappo +2822,26,4426,40,euler fan +2822,26,4426,40,family_gamer +2822,26,4426,40,flying penguin +2822,26,4426,40,fury00 +2822,26,4426,40,gth762c +2822,26,4426,40,idman +2822,26,4426,40,kreseks +2822,26,4426,40,liken@xtra.co.nz +2822,26,4426,40,logan59 +2822,26,4426,40,minshark +2822,26,4426,40,neutralgnome +2822,26,4426,40,nextphase +2822,26,4426,40,nomeachantare +2822,26,4426,40,odgregg +2822,26,4426,40,pmduguay +2822,26,4426,40,ravenone +2822,26,4426,40,romair +2822,26,4426,40,scarletjester +2822,26,4426,40,shich +2822,26,4426,40,srich93 +2822,26,4426,40,st_loomis +2822,26,4426,40,tjdrake719 +2822,26,4426,40,tophat9 +2822,26,4426,40,whiskeybane +2822,26,4426,40,zorgwest +2822,26,4782,39,aaj94 +2822,26,4782,39,alberto_mena +2822,26,4782,39,bankofdracula +2822,26,4782,39,basvdboom +2822,26,4782,39,bremic +2822,26,4782,39,brianeikunst +2822,26,4782,39,david546 +2822,26,4782,39,drmark64 +2822,26,4782,39,drmashirito +2822,26,4782,39,eadred +2822,26,4782,39,gatekeeper86 +2822,26,4782,39,gertvanthienen +2822,26,4782,39,green heron +2822,26,4782,39,greyowl2000 +2822,26,4782,39,hinidu +2822,26,4782,39,jt19 +2822,26,4782,39,justrag +2822,26,4782,39,k_nudde +2822,26,4782,39,kirkwood ryans +2822,26,4782,39,krysoh +2822,26,4782,39,midasiam +2822,26,4782,39,mrinternet1975 +2822,26,4782,39,nobi +2822,26,4782,39,oil3938 +2822,26,4782,39,paxe +2822,26,4782,39,pigoz +2822,26,4782,39,purri +2822,26,4782,39,shreyank +2822,26,4782,39,si1ver +2822,26,4782,39,soldag +2822,26,4782,39,t80u +2822,26,4782,39,takezo qc +2822,26,4782,39,troytbyrne +2822,26,4782,39,wedgell +2822,26,4782,39,whoolzyourdaddy +2822,26,5150,38,ateliersara +2822,26,5150,38,bagatech +2822,26,5150,38,breakaway11 +2822,26,5150,38,bumegg +2822,26,5150,38,cadderly1 +2822,26,5150,38,cbia +2822,26,5150,38,dannydriver87 +2822,26,5150,38,dreadfuzzy +2822,26,5150,38,gaiza5 +2822,26,5150,38,goatfarmer03 +2822,26,5150,38,gollum2 +2822,26,5150,38,gomesphumbertoa +2822,26,5150,38,guido brinkman +2822,26,5150,38,hwielinski +2822,26,5150,38,jefar +2822,26,5150,38,josundlo +2822,26,5150,38,juperdat +2822,26,5150,38,mad428 +2822,26,5150,38,madmatt7 +2822,26,5150,38,marcelodgt +2822,26,5150,38,mike35 +2822,26,5150,38,monikad +2822,26,5150,38,passinhas +2822,26,5150,38,patandrew +2822,26,5150,38,qumpelblase +2822,26,5150,38,r1zzo +2822,26,5150,38,ramdomstuffdotcom +2822,26,5150,38,rhodesn7 +2822,26,5150,38,robbus +2822,26,5150,38,szmoli +2822,26,5150,38,szymszym +2822,26,5150,38,teal +2822,26,5150,38,threhane +2822,26,5150,38,tsutsumi +2822,26,5150,38,vakili00 +2822,26,5150,38,vipissana +2822,26,5150,38,wilda +2822,26,5624,37,aldoojeda +2822,26,5624,37,anferny87 +2822,26,5624,37,barcalounger +2822,26,5624,37,chefarista +2822,26,5624,37,dandyy +2822,26,5624,37,darumah +2822,26,5624,37,demorcerf +2822,26,5624,37,esven +2822,26,5624,37,eugeniosaracino +2822,26,5624,37,gordianus +2822,26,5624,37,hatemachine +2822,26,5624,37,jblasco9 +2822,26,5624,37,jeroenklugt +2822,26,5624,37,johnrayjr +2822,26,5624,37,jon_athan_hall +2822,26,5624,37,jotaese +2822,26,5624,37,kavu +2822,26,5624,37,khonnor +2822,26,5624,37,kicbak +2822,26,5624,37,kochforprez +2822,26,5624,37,koen2602 +2822,26,5624,37,kriskhoo85 +2822,26,5624,37,lbmtbgame +2822,26,5624,37,lord mcduff +2822,26,5624,37,m_clou +2822,26,5624,37,ofloe +2822,26,5624,37,parkaboy +2822,26,5624,37,quietstorm +2822,26,5624,37,randywilburn +2822,26,5624,37,twwaterfalls +2822,26,5624,37,warren smash jr +2822,26,5624,37,zhukov3945 +2822,26,6063,36,cplhorne +2822,26,6063,36,darth servo +2822,26,6063,36,deadcowaroma +2822,26,6063,36,deeksworld +2822,26,6063,36,denverarch +2822,26,6063,36,drb1979 +2822,26,6063,36,flagdan +2822,26,6063,36,francobollus +2822,26,6063,36,garzabibbo +2822,26,6063,36,grunt778083 +2822,26,6063,36,haroldjiii +2822,26,6063,36,ifriz +2822,26,6063,36,ivan claeys +2822,26,6063,36,j2rm +2822,26,6063,36,janiera +2822,26,6063,36,jeromem +2822,26,6063,36,jimknopf +2822,26,6063,36,jtflynn +2822,26,6063,36,keahaw +2822,26,6063,36,lucb007 +2822,26,6063,36,mackgee +2822,26,6063,36,roshena +2822,26,6063,36,spelcarrousel +2822,26,6063,36,tboley +2822,26,6063,36,underdog +2822,26,6063,36,vladdie +2822,26,6063,36,whywhyzed +2822,26,6063,36,wosagan +2822,26,6063,36,wyrwis +2822,26,6063,36,zazhek +2822,26,6063,36,zebigboss +2822,26,6573,35,adamdudu +2822,26,6573,35,andrewkapish +2822,26,6573,35,anijsje +2822,26,6573,35,breyersfrom1979 +2822,26,6573,35,chaseemdown +2822,26,6573,35,dvhoofst +2822,26,6573,35,hunteria +2822,26,6573,35,jan van der laan +2822,26,6573,35,lorya +2822,26,6573,35,mikkeri +2822,26,6573,35,papayus +2822,26,6573,35,paschoal +2822,26,6573,35,poguelife +2822,26,6573,35,spazzfist +2822,26,6573,35,squalidsafe +2822,26,6573,35,teabo +2822,26,6573,35,xriskbreaker +2822,26,7100,34,andresg07 +2822,26,7100,34,badgerthebrave +2822,26,7100,34,benk +2822,26,7100,34,cj ellis +2822,26,7100,34,jhliu +2822,26,7100,34,jooorg +2822,26,7100,34,lego pirate +2822,26,7100,34,pastorarod +2822,26,7100,34,rcdragon +2822,26,7100,34,rindel +2822,26,7100,34,roubosga +2822,26,7100,34,sgtdoudou +2822,26,7100,34,texastoast +2822,26,7100,34,vinzgurvan +2822,26,7679,33,jorl +2822,26,7679,33,lisawyns +2822,26,7679,33,roswell +2822,26,7679,33,sugi +2822,26,7679,33,thegreatgomi +2822,26,7679,33,vikachoo +2822,26,8351,32,camdin +2822,26,8351,32,cowhollow +2822,26,8351,32,whimsicalwill +2822,26,9086,31,lehenry +2822,26,9086,31,redwoodcroft +2822,26,9086,31,vargr71 +2822,26,9910,30,chouzar +2822,26,9910,30,ristvan +3312,25,10,211,incredisteve +3312,25,136,98,iamnan +3312,25,150,96,seraphine82 +3312,25,170,93,randor +3312,25,196,90,aoverdorf +3312,25,209,89,balsawood +3312,25,216,88,monsieurb_ +3312,25,289,82,camy_1968 +3312,25,390,76,wghunter +3312,25,438,74,fcazzol +3312,25,438,74,jalustalla +3312,25,438,74,rjenulis +3312,25,438,74,trodat123 +3312,25,493,72,hobb3 +3312,25,493,72,tyoda +3312,25,559,70,mrraow +3312,25,652,67,elliam +3312,25,696,66,mlehr +3312,25,696,66,syvanis +3312,25,787,64,doctorgreco69 +3312,25,787,64,fscrazymouse +3312,25,787,64,ksuquix +3312,25,787,64,stfrantic +3312,25,843,63,ferret33 +3312,25,970,61,chambarj +3312,25,970,61,lilalaune +3312,25,1109,59,eduardpop +3312,25,1109,59,feraltetsuo +3312,25,1109,59,kazan +3312,25,1109,59,seraph77 +3312,25,1109,59,wapakguy +3312,25,1202,58,deroche +3312,25,1276,57,kevinspinti +3312,25,1276,57,keyloser +3312,25,1276,57,mmc chuck +3312,25,1362,56,fester1969 +3312,25,1362,56,jackwhispers +3312,25,1362,56,silent82 +3312,25,1362,56,smoox +3312,25,1362,56,zurn +3312,25,1459,55,crestfallen +3312,25,1459,55,doc_h +3312,25,1459,55,jimolideen +3312,25,1459,55,jmkinki +3312,25,1459,55,marduc +3312,25,1459,55,phasmtis +3312,25,1459,55,pinson69 +3312,25,1459,55,ptitepeluche05 +3312,25,1459,55,spotapen +3312,25,1459,55,theseb +3312,25,1568,54,arihan +3312,25,1568,54,jsmateusb +3312,25,1568,54,lessonisnevertry +3312,25,1568,54,mmcelsa +3312,25,1568,54,pr1celess +3312,25,1674,53,joec0 +3312,25,1674,53,sleepy_laughter +3312,25,1674,53,tonyboydell +3312,25,1674,53,wyckyd +3312,25,1792,52,anglotiger +3312,25,1792,52,dshortdesign +3312,25,1792,52,grombek +3312,25,1792,52,harblnger +3312,25,1792,52,iffka +3312,25,1792,52,malmostoso +3312,25,1792,52,mytty +3312,25,1792,52,out4blood +3312,25,1792,52,sloppydj +3312,25,1792,52,tintoretto +3312,25,1906,51,brutus1988 +3312,25,1906,51,chipchuck +3312,25,1906,51,dzevin +3312,25,1906,51,flaze +3312,25,1906,51,guillaume_lemaitre +3312,25,1906,51,madhatter +3312,25,1906,51,mysticum +3312,25,1906,51,naomania +3312,25,1906,51,natguel +3312,25,1906,51,pitonowie +3312,25,1906,51,randyo +3312,25,1906,51,rws2029 +3312,25,1906,51,skihorse4848 +3312,25,1906,51,summtgguy +3312,25,1906,51,superbgg +3312,25,2053,50,akhawkster +3312,25,2053,50,hxgame +3312,25,2053,50,ideonexus +3312,25,2053,50,jamfly7 +3312,25,2053,50,jawashwang +3312,25,2053,50,johnny awesome +3312,25,2053,50,kobold curry chef +3312,25,2204,49,ainvar75 +3312,25,2204,49,bluemountain +3312,25,2204,49,cosmocrator +3312,25,2204,49,dannyboy3344 +3312,25,2204,49,darthlord +3312,25,2204,49,fruitjoy +3312,25,2204,49,hildan +3312,25,2204,49,hollybells +3312,25,2204,49,sahib +3312,25,2204,49,sapo +3312,25,2351,48,apocalypse dude +3312,25,2351,48,asmoridin +3312,25,2351,48,campa33 +3312,25,2351,48,der_mandarin +3312,25,2351,48,easterncalculus +3312,25,2351,48,eldritch +3312,25,2351,48,flipperke +3312,25,2351,48,hector vortac +3312,25,2351,48,matt1990 +3312,25,2351,48,nerdvik +3312,25,2351,48,platerin +3312,25,2351,48,rootbeer +3312,25,2351,48,sdougla2 +3312,25,2351,48,sharoz +3312,25,2351,48,spyzou +3312,25,2351,48,superchutney +3312,25,2555,47,formfleisch +3312,25,2555,47,ofxofx +3312,25,2555,47,omegasun5 +3312,25,2555,47,pellepen +3312,25,2555,47,redd85 +3312,25,2555,47,sassycat +3312,25,2555,47,seanredenbaugh +3312,25,2555,47,shimmydave +3312,25,2555,47,thereelaristotle +3312,25,2555,47,w_mute +3312,25,2555,47,zigganoid +3312,25,2758,46,ambierona +3312,25,2758,46,andreeaflorea +3312,25,2758,46,barnacle boy +3312,25,2758,46,emperormark +3312,25,2758,46,jhawk6 +3312,25,2758,46,johnpf +3312,25,2758,46,lux1000 +3312,25,2758,46,malamber +3312,25,2758,46,meynach +3312,25,2758,46,sedenta +3312,25,2758,46,siefczyk +3312,25,2758,46,sirale +3312,25,2758,46,smobolob +3312,25,2758,46,stormseeker75 +3312,25,2758,46,surfindecoy +3312,25,2758,46,tactitles +3312,25,2758,46,vanderglav +3312,25,2758,46,yollege +3312,25,2969,45,andrew45 +3312,25,2969,45,ao_qc +3312,25,2969,45,arniepie +3312,25,2969,45,challst +3312,25,2969,45,daboom +3312,25,2969,45,exon9 +3312,25,2969,45,jonatronleaf +3312,25,2969,45,junglejon +3312,25,2969,45,narellish +3312,25,2969,45,pathological_rj +3312,25,2969,45,quozl +3312,25,2969,45,sandmanx82 +3312,25,2969,45,stefrtd +3312,25,2969,45,tmh95 +3312,25,2969,45,trantor42 +3312,25,2969,45,xia0dingdang +3312,25,3216,44,ahbadiane +3312,25,3216,44,arad70 +3312,25,3216,44,clarionx +3312,25,3216,44,darthmisster +3312,25,3216,44,escheriv +3312,25,3216,44,flifle +3312,25,3216,44,glweston +3312,25,3216,44,jockeeriksson +3312,25,3216,44,mwroskam +3312,25,3216,44,nyoka +3312,25,3216,44,polyobsessive +3312,25,3216,44,ralsar +3312,25,3216,44,rocket boy +3312,25,3216,44,sayguh +3312,25,3216,44,skyrios +3312,25,3216,44,sorrellbo +3312,25,3216,44,susumu +3312,25,3216,44,thlayli +3312,25,3216,44,torpederito +3312,25,3216,44,vendmr +3312,25,3216,44,wejejeei +3312,25,3216,44,wzdan +3312,25,3216,44,zambo +3312,25,3514,43,actuarially +3312,25,3514,43,aquariankate +3312,25,3514,43,baragos +3312,25,3514,43,blue giant +3312,25,3514,43,canardzarb +3312,25,3514,43,crovendianking +3312,25,3514,43,czarofsarcasm6 +3312,25,3514,43,galin54 +3312,25,3514,43,gamermd +3312,25,3514,43,goosarino +3312,25,3514,43,hewson +3312,25,3514,43,icegubs +3312,25,3514,43,jiayaik +3312,25,3514,43,kniaziu +3312,25,3514,43,lordkharn +3312,25,3514,43,mattgrosso +3312,25,3514,43,metalitiousness +3312,25,3514,43,monkeyhorse +3312,25,3514,43,moses88 +3312,25,3514,43,npetiii +3312,25,3514,43,overexposed +3312,25,3514,43,sask_girl +3312,25,3514,43,savant +3312,25,3514,43,sjs1971 +3312,25,3514,43,theras2000 +3312,25,3514,43,timotheous +3312,25,3514,43,weluvbgs +3312,25,3514,43,yokenobi +3312,25,3514,43,zathraz +3312,25,3815,42,ackerman17 +3312,25,3815,42,artoro +3312,25,3815,42,btharveyku08 +3312,25,3815,42,calcapone +3312,25,3815,42,cptawesomepants +3312,25,3815,42,cyberian +3312,25,3815,42,hex_enduction_hour +3312,25,3815,42,jormigi +3312,25,3815,42,koalaguy4566 +3312,25,3815,42,kolirio +3312,25,3815,42,kydaria +3312,25,3815,42,langalore +3312,25,3815,42,madcow270 +3312,25,3815,42,magrill +3312,25,3815,42,masa +3312,25,3815,42,mattimo +3312,25,3815,42,nyuhase +3312,25,3815,42,spalkulus +3312,25,3815,42,thenn +3312,25,3815,42,thinbunny +3312,25,3815,42,vexatious +3312,25,3815,42,yvesvanherp +3312,25,4092,41,algernon88 +3312,25,4092,41,alx145 +3312,25,4092,41,beckeykevin +3312,25,4092,41,charly_petri +3312,25,4092,41,dbhitchcock +3312,25,4092,41,elkplots +3312,25,4092,41,flasflas +3312,25,4092,41,gamefish01 +3312,25,4092,41,ganska +3312,25,4092,41,hall0n +3312,25,4092,41,histeria +3312,25,4092,41,idoru +3312,25,4092,41,joekidd00 +3312,25,4092,41,jschroeder24 +3312,25,4092,41,katabrok +3312,25,4092,41,kusti0152 +3312,25,4092,41,londono +3312,25,4092,41,lugenstien +3312,25,4092,41,narl +3312,25,4092,41,paddy_stepk_k +3312,25,4092,41,pebrot +3312,25,4092,41,phr0st +3312,25,4092,41,schwazz +3312,25,4092,41,sderrick +3312,25,4092,41,seppo21 +3312,25,4092,41,silent117 +3312,25,4092,41,slathrop +3312,25,4092,41,sparticuse +3312,25,4092,41,tel999 +3312,25,4092,41,thofoer +3312,25,4092,41,wildjenna +3312,25,4426,40,abbywill +3312,25,4426,40,alwin +3312,25,4426,40,antiussentiment +3312,25,4426,40,ascus +3312,25,4426,40,brett mount +3312,25,4426,40,chiliarchos21 +3312,25,4426,40,ciccio_cento45 +3312,25,4426,40,coolscribe +3312,25,4426,40,enigmaprophet +3312,25,4426,40,farchamb +3312,25,4426,40,flyther +3312,25,4426,40,gixmo +3312,25,4426,40,gkbinger +3312,25,4426,40,jassad1 +3312,25,4426,40,jensg +3312,25,4426,40,josephmpeters +3312,25,4426,40,jyotipar +3312,25,4426,40,karmic_devil +3312,25,4426,40,kaworu17 +3312,25,4426,40,kimchiturtle +3312,25,4426,40,lealuna +3312,25,4426,40,markus_kt +3312,25,4426,40,monge +3312,25,4426,40,monobro +3312,25,4426,40,mpollockrph +3312,25,4426,40,roast +3312,25,4426,40,scotth +3312,25,4426,40,scozarin +3312,25,4426,40,skarsnich +3312,25,4426,40,slowmeyer +3312,25,4426,40,snakeking +3312,25,4426,40,staffi +3312,25,4426,40,suchar +3312,25,4426,40,thelimestonecowboy +3312,25,4426,40,thomaswalterfrede +3312,25,4426,40,togar1983 +3312,25,4426,40,triggeriv +3312,25,4426,40,tryforce +3312,25,4426,40,unmuddiedlake +3312,25,4426,40,william_assis +3312,25,4426,40,wizard999 +3312,25,4426,40,zedprotect +3312,25,4782,39,asur +3312,25,4782,39,bourne85 +3312,25,4782,39,cito88 +3312,25,4782,39,constelp +3312,25,4782,39,danielctull +3312,25,4782,39,epicgamer +3312,25,4782,39,ericbinnyc +3312,25,4782,39,fbsfbs +3312,25,4782,39,finzar +3312,25,4782,39,fitzchevalery +3312,25,4782,39,fortinm +3312,25,4782,39,francisgingras +3312,25,4782,39,fredovic +3312,25,4782,39,geekyguide +3312,25,4782,39,h2oo2 +3312,25,4782,39,hannibal518 +3312,25,4782,39,hylian_pirate +3312,25,4782,39,konyerd +3312,25,4782,39,liagalanodel +3312,25,4782,39,mac_kc +3312,25,4782,39,masu +3312,25,4782,39,noface409 +3312,25,4782,39,parmenione +3312,25,4782,39,polgara +3312,25,4782,39,pouvla +3312,25,4782,39,reverend pete +3312,25,4782,39,roberto74 +3312,25,4782,39,sakadangjambu +3312,25,4782,39,scratches +3312,25,4782,39,sergix +3312,25,4782,39,shannona +3312,25,4782,39,sherpadurka +3312,25,4782,39,sseicher007 +3312,25,4782,39,steerpike.instance +3312,25,4782,39,trolli +3312,25,4782,39,vader78 +3312,25,4782,39,whangdoodle +3312,25,4782,39,xldh +3312,25,5150,38,adamjthompson00 +3312,25,5150,38,amdon +3312,25,5150,38,ami_solger +3312,25,5150,38,andyogc +3312,25,5150,38,ashenhaze +3312,25,5150,38,bottle of port +3312,25,5150,38,brauerle +3312,25,5150,38,capichou +3312,25,5150,38,clearclaw +3312,25,5150,38,ed95005 +3312,25,5150,38,failtech +3312,25,5150,38,frangnavas +3312,25,5150,38,geese +3312,25,5150,38,golsat +3312,25,5150,38,hubador +3312,25,5150,38,igloo +3312,25,5150,38,imisut +3312,25,5150,38,itomarhernandez +3312,25,5150,38,jaromir88 +3312,25,5150,38,jay red eye +3312,25,5150,38,jaygress +3312,25,5150,38,jbbenlu +3312,25,5150,38,jischoler +3312,25,5150,38,johnmunsch +3312,25,5150,38,johnthemonster +3312,25,5150,38,jonny5 +3312,25,5150,38,kaszkiet +3312,25,5150,38,kmichaelis +3312,25,5150,38,kthvez +3312,25,5150,38,loopster70 +3312,25,5150,38,louiestfu +3312,25,5150,38,mado78 +3312,25,5150,38,malaki242 +3312,25,5150,38,mogwaibr +3312,25,5150,38,mootzu +3312,25,5150,38,mr pink +3312,25,5150,38,nefelia +3312,25,5150,38,nickwatt +3312,25,5150,38,njshaw2 +3312,25,5150,38,odditie +3312,25,5150,38,organiseddinosaur +3312,25,5150,38,pdnoona +3312,25,5150,38,pointmeatthedawn +3312,25,5150,38,proctor0609 +3312,25,5150,38,quatrimus +3312,25,5150,38,rowdyray +3312,25,5150,38,ryanmobile +3312,25,5150,38,sawyercat +3312,25,5150,38,sebib90 +3312,25,5150,38,sebik80 +3312,25,5150,38,solinete +3312,25,5150,38,susinin +3312,25,5150,38,teatabletopper +3312,25,5150,38,themilkcrate +3312,25,5150,38,thom4z +3312,25,5150,38,tibbarp +3312,25,5150,38,tim in saskatoon +3312,25,5150,38,tisseking +3312,25,5150,38,tonkinjo +3312,25,5150,38,tonymo +3312,25,5150,38,vibu +3312,25,5624,37,aaronseeber +3312,25,5624,37,aaronw92 +3312,25,5624,37,alchemist83 +3312,25,5624,37,ancestral hamster +3312,25,5624,37,andre1975 +3312,25,5624,37,arnaudrn0 +3312,25,5624,37,bard +3312,25,5624,37,benjaminwilliam +3312,25,5624,37,berix +3312,25,5624,37,bholaway +3312,25,5624,37,brendor82 +3312,25,5624,37,captainspock +3312,25,5624,37,chiplee +3312,25,5624,37,chockle +3312,25,5624,37,denga +3312,25,5624,37,eoin corrigan +3312,25,5624,37,fdubois +3312,25,5624,37,geekorok +3312,25,5624,37,janovich +3312,25,5624,37,jazzy22 +3312,25,5624,37,joannaw +3312,25,5624,37,jukke +3312,25,5624,37,la villa de j +3312,25,5624,37,lorddrake +3312,25,5624,37,mebririth +3312,25,5624,37,mickksgamer +3312,25,5624,37,myersd37 +3312,25,5624,37,norfolk +3312,25,5624,37,olimar +3312,25,5624,37,pahvenai +3312,25,5624,37,roel81 +3312,25,5624,37,sebur +3312,25,5624,37,shaggyng +3312,25,5624,37,spartanul91 +3312,25,5624,37,steinhauser +3312,25,5624,37,tanzeafa +3312,25,5624,37,tseedhouse +3312,25,5624,37,wilco50 +3312,25,5624,37,wiwiwam +3312,25,5624,37,wjrgamer +3312,25,5624,37,zordan1980 +3312,25,6063,36,33cb +3312,25,6063,36,aguillemard +3312,25,6063,36,apcrs +3312,25,6063,36,arqmage +3312,25,6063,36,belziet +3312,25,6063,36,boardgamegumbo +3312,25,6063,36,buddha007 +3312,25,6063,36,cgrice1 +3312,25,6063,36,chaaber +3312,25,6063,36,dbraga2000 +3312,25,6063,36,edebue +3312,25,6063,36,evlkeith +3312,25,6063,36,flaym +3312,25,6063,36,garyj +3312,25,6063,36,imurseev +3312,25,6063,36,jahwarrior624 +3312,25,6063,36,jeribeartx +3312,25,6063,36,jesterpoet +3312,25,6063,36,jordan1207 +3312,25,6063,36,louisj2016 +3312,25,6063,36,m4ldor0r +3312,25,6063,36,manuclaes +3312,25,6063,36,matreli +3312,25,6063,36,narfi +3312,25,6063,36,nieb +3312,25,6063,36,niiikkk +3312,25,6063,36,pray4wisdom +3312,25,6063,36,prometeo +3312,25,6063,36,ricekreem +3312,25,6063,36,sebbes +3312,25,6063,36,sjhallinan +3312,25,6063,36,szabola +3312,25,6063,36,tasajara +3312,25,6063,36,tobi_wan_kentobi +3312,25,6063,36,uberosenberg +3312,25,6063,36,valenox +3312,25,6063,36,varj +3312,25,6063,36,willo65 +3312,25,6063,36,xhax +3312,25,6573,35,aki1713 +3312,25,6573,35,ardala +3312,25,6573,35,bkwestman +3312,25,6573,35,brian collins +3312,25,6573,35,caesarbgg +3312,25,6573,35,caroah +3312,25,6573,35,dankora +3312,25,6573,35,demersadam +3312,25,6573,35,desiderata +3312,25,6573,35,e1deno +3312,25,6573,35,ezradenney +3312,25,6573,35,ferranbrianso +3312,25,6573,35,fwj_777 +3312,25,6573,35,gatodj +3312,25,6573,35,greldin +3312,25,6573,35,gtsip +3312,25,6573,35,heathbaratl +3312,25,6573,35,jarvis +3312,25,6573,35,jme198 +3312,25,6573,35,kevster +3312,25,6573,35,magnus the blue +3312,25,6573,35,nubro +3312,25,6573,35,operamang +3312,25,6573,35,ovis +3312,25,6573,35,paniceolan +3312,25,6573,35,paulj1404 +3312,25,6573,35,pcapella +3312,25,6573,35,pjandy +3312,25,6573,35,rdjanssen +3312,25,6573,35,ryan_c_byrd +3312,25,6573,35,ultimario +3312,25,6573,35,xxirongolemxx +3312,25,7100,34,acido +3312,25,7100,34,actionexpress +3312,25,7100,34,bazzer52 +3312,25,7100,34,beatrix +3312,25,7100,34,blenny01 +3312,25,7100,34,bzaugg +3312,25,7100,34,chyftaus +3312,25,7100,34,co eagle +3312,25,7100,34,cuzzle +3312,25,7100,34,daschu79 +3312,25,7100,34,dorsk82 +3312,25,7100,34,ducer +3312,25,7100,34,eli_snow +3312,25,7100,34,fred535 +3312,25,7100,34,grisuderspielteufel +3312,25,7100,34,grunt_spain +3312,25,7100,34,gwj prozac +3312,25,7100,34,igkomp +3312,25,7100,34,j41c +3312,25,7100,34,jeehess +3312,25,7100,34,jeremycoe +3312,25,7100,34,jfed01 +3312,25,7100,34,jsjules +3312,25,7100,34,lucy88 +3312,25,7100,34,marthom greatagain +3312,25,7100,34,mrspank +3312,25,7100,34,nwoninja +3312,25,7100,34,oyang +3312,25,7100,34,rgmiller +3312,25,7100,34,romanroadie +3312,25,7100,34,shred121569 +3312,25,7100,34,sinedia +3312,25,7100,34,youthguyingram +3312,25,7679,33,arthurcucumber +3312,25,7679,33,backlash27 +3312,25,7679,33,branstonoriginal +3312,25,7679,33,capriciousintent +3312,25,7679,33,cheezit1983 +3312,25,7679,33,crab27 +3312,25,7679,33,djmagma +3312,25,7679,33,feeble +3312,25,7679,33,felicur +3312,25,7679,33,jaywowzer +3312,25,7679,33,jeddy lee +3312,25,7679,33,jetep +3312,25,7679,33,jobby +3312,25,7679,33,kocmoc +3312,25,7679,33,liquidyoga +3312,25,7679,33,maderagamer +3312,25,7679,33,mario75 +3312,25,7679,33,mariov +3312,25,7679,33,oskarmonk +3312,25,7679,33,rpg1989 +3312,25,7679,33,sinocono +3312,25,7679,33,stefaan +3312,25,7679,33,sweety_liesje +3312,25,7679,33,tengchi +3312,25,7679,33,tinpot +3312,25,7679,33,vincent van brakel +3312,25,7679,33,zedeemia +3312,25,8351,32,asphodele +3312,25,8351,32,bastif2001 +3312,25,8351,32,genma1200 +3312,25,8351,32,hiimjosh +3312,25,8351,32,horacehonkyhorn +3312,25,8351,32,jerapa +3312,25,8351,32,jyothi +3312,25,8351,32,slimyblob +3312,25,8351,32,sneakypete21 +3312,25,8351,32,vonspike +3312,25,8351,32,xoopams +3312,25,9086,31,captaincoxy +3312,25,9086,31,clamshanks +3312,25,9086,31,flavigny +3312,25,9086,31,jinroh +3312,25,9086,31,jonathanc87 +3312,25,9910,30,brucki +3312,25,9910,30,cubemr21 +3312,25,9910,30,epacalypse +3312,25,9910,30,qasic +3312,25,9910,30,yanitzch +3312,25,10868,29,cheeky_minx +3312,25,10868,29,evilerik +3312,25,10868,29,turbodweeb +3312,25,10868,29,wvoigt +3312,25,14030,26,bradg +3312,25,15326,25,joerie +3919,24,230,87,brahman71 +3919,24,230,87,essejsllim +3919,24,252,85,squiz +3919,24,273,83,grievy +3919,24,340,78,vudujoie +3919,24,361,77,ggiersch +3919,24,361,77,tinajpk9 +3919,24,473,73,xerof +3919,24,493,72,dingleson +3919,24,493,72,wigrend +3919,24,522,71,iomio +3919,24,559,70,deactivision +3919,24,589,69,biturian_varosh +3919,24,652,67,normal +3919,24,696,66,arisep +3919,24,741,65,edgar badenes +3919,24,741,65,rogedavi +3919,24,741,65,steue +3919,24,787,64,murphzone +3919,24,787,64,xaif +3919,24,843,63,itus +3919,24,843,63,joelamer +3919,24,914,62,mrguitou +3919,24,970,61,sirhandsome +3919,24,1034,60,keys12345 +3919,24,1034,60,longhunter +3919,24,1034,60,yid0 +3919,24,1109,59,andarel +3919,24,1109,59,opotamus +3919,24,1109,59,owein77 +3919,24,1202,58,bowtechktm +3919,24,1202,58,l3mst0r +3919,24,1202,58,lordchanter +3919,24,1362,56,ravsitar +3919,24,1362,56,spawnish +3919,24,1459,55,cangelm1 +3919,24,1459,55,cuthbertgrau +3919,24,1568,54,black sea +3919,24,1568,54,candipool +3919,24,1568,54,lovetrain +3919,24,1568,54,sh0ck +3919,24,1674,53,abodi +3919,24,1674,53,mpsouza1980 +3919,24,1674,53,nizket +3919,24,1674,53,rulemonger +3919,24,1674,53,s_jared +3919,24,1792,52,2amp +3919,24,1792,52,biernath_john +3919,24,1792,52,dino25 +3919,24,1792,52,konowor +3919,24,1792,52,pitchewie +3919,24,1792,52,tibbles +3919,24,1792,52,tucutu +3919,24,1906,51,3villans +3919,24,1906,51,dodgygoth +3919,24,1906,51,hawke +3919,24,1906,51,kingheinrich +3919,24,1906,51,kirilloid +3919,24,1906,51,neliapina +3919,24,1906,51,rentxus +3919,24,1906,51,slawek_cz +3919,24,2053,50,dragu_pl +3919,24,2053,50,eduvigis +3919,24,2053,50,jeep +3919,24,2053,50,leafbreath +3919,24,2053,50,medison +3919,24,2053,50,pbpancho +3919,24,2053,50,tycho +3919,24,2204,49,archonium +3919,24,2204,49,donmakaron +3919,24,2204,49,ferik +3919,24,2204,49,haroldthesixth +3919,24,2204,49,kezerk +3919,24,2204,49,krzysiekneo +3919,24,2204,49,richmond +3919,24,2204,49,rnicholson95 +3919,24,2351,48,antilas +3919,24,2351,48,chaos243 +3919,24,2351,48,cotyp +3919,24,2351,48,cureless +3919,24,2351,48,frogdan +3919,24,2351,48,haze01 +3919,24,2351,48,jsindt +3919,24,2351,48,melusina +3919,24,2351,48,ray8808 +3919,24,2351,48,smic +3919,24,2351,48,zengoshugoju +3919,24,2555,47,alexgrant +3919,24,2555,47,angelcollector +3919,24,2555,47,arradelle +3919,24,2555,47,boomguy57 +3919,24,2555,47,borgemik +3919,24,2555,47,finnchowder +3919,24,2555,47,jcolville28 +3919,24,2555,47,pettzar +3919,24,2555,47,sybotcb +3919,24,2555,47,xaladass +3919,24,2758,46,binraix +3919,24,2758,46,debaser23 +3919,24,2758,46,drpaj +3919,24,2758,46,fromfield +3919,24,2758,46,kombat_wombat +3919,24,2758,46,manaelf +3919,24,2758,46,mightyjim +3919,24,2758,46,ravy +3919,24,2758,46,soloplaythroughs +3919,24,2758,46,stevepavey +3919,24,2758,46,wendigoat +3919,24,2758,46,wortsenawl +3919,24,2758,46,zekks +3919,24,2969,45,alexdrazen +3919,24,2969,45,asgard23 +3919,24,2969,45,batiatus +3919,24,2969,45,chsrocketman +3919,24,2969,45,clemouth +3919,24,2969,45,etherion +3919,24,2969,45,fabrossi +3919,24,2969,45,feijee +3919,24,2969,45,kingmeplease +3919,24,2969,45,lazydane +3919,24,2969,45,mluckner +3919,24,2969,45,nttran +3919,24,2969,45,petyuskadoom +3919,24,2969,45,planetm +3919,24,2969,45,rastazed +3919,24,2969,45,shadowedvaca +3919,24,2969,45,slahti +3919,24,2969,45,zdadrdem +3919,24,3216,44,bertus_caylus +3919,24,3216,44,cuj1976 +3919,24,3216,44,fede689 +3919,24,3216,44,gvconkel +3919,24,3216,44,jaimeib +3919,24,3216,44,jeff0 +3919,24,3216,44,johngw +3919,24,3216,44,ltcmdrjim +3919,24,3216,44,maxwell_finn +3919,24,3216,44,murks666 +3919,24,3216,44,nellatrebor +3919,24,3216,44,nyys +3919,24,3216,44,overhaul +3919,24,3216,44,piratevicki +3919,24,3216,44,snowyshasta +3919,24,3216,44,tapis_volant +3919,24,3216,44,tiagoaob +3919,24,3216,44,tripitongo +3919,24,3216,44,twhanks +3919,24,3514,43,akoes +3919,24,3514,43,billybob0101011 +3919,24,3514,43,bjergmose +3919,24,3514,43,boardgamist +3919,24,3514,43,darthval +3919,24,3514,43,dax1000 +3919,24,3514,43,dc85 +3919,24,3514,43,dead_reckoning +3919,24,3514,43,deepee +3919,24,3514,43,elucidarian +3919,24,3514,43,fronk +3919,24,3514,43,goldenr +3919,24,3514,43,hibner4 +3919,24,3514,43,hyann +3919,24,3514,43,madg0blin +3919,24,3514,43,marineair +3919,24,3514,43,myw85 +3919,24,3514,43,nomad001 +3919,24,3514,43,oscarpetermann +3919,24,3514,43,pkon +3919,24,3514,43,realanthillkit +3919,24,3514,43,stormrover +3919,24,3514,43,thefunder +3919,24,3514,43,xandre_bgg +3919,24,3514,43,yxvandoolu +3919,24,3514,43,zabdiel +3919,24,3815,42,axonar +3919,24,3815,42,banichi +3919,24,3815,42,bojan1983 +3919,24,3815,42,burrie +3919,24,3815,42,cirederf +3919,24,3815,42,cnayler +3919,24,3815,42,donalsligo +3919,24,3815,42,enricpdx +3919,24,3815,42,feanor2002 +3919,24,3815,42,foxy134257 +3919,24,3815,42,frodo_05 +3919,24,3815,42,kintarouji +3919,24,3815,42,lodan +3919,24,3815,42,maximnicov +3919,24,3815,42,nslikster +3919,24,3815,42,phildall +3919,24,3815,42,roy batty +3919,24,3815,42,rudais +3919,24,3815,42,rugged josh +3919,24,3815,42,slurp +3919,24,3815,42,steve56 +3919,24,3815,42,stevenschaaf +3919,24,3815,42,sweetslut +3919,24,3815,42,tatertot18 +3919,24,3815,42,thereaperexe +3919,24,3815,42,topgun709 +3919,24,3815,42,waterborg +3919,24,3815,42,zieloneszkielko +3919,24,4092,41,alaskaben +3919,24,4092,41,andrearaia71 +3919,24,4092,41,angrystaranarchy +3919,24,4092,41,arie307 +3919,24,4092,41,banedikt +3919,24,4092,41,candoo +3919,24,4092,41,cowplow +3919,24,4092,41,crayc30 +3919,24,4092,41,djsteffen +3919,24,4092,41,firepigeon +3919,24,4092,41,frankenfletch +3919,24,4092,41,grayskale +3919,24,4092,41,igotdvds +3919,24,4092,41,janfrywein +3919,24,4092,41,jeff horger +3919,24,4092,41,jimmydm90 +3919,24,4092,41,justintech +3919,24,4092,41,kilgore +3919,24,4092,41,koolkow +3919,24,4092,41,lionelbenezech +3919,24,4092,41,mercurialcc +3919,24,4092,41,notacmputr +3919,24,4092,41,nutsandvolts +3919,24,4092,41,philcampeau +3919,24,4092,41,porchpeople +3919,24,4092,41,rdc2 +3919,24,4092,41,roberthultsten +3919,24,4092,41,slanek +3919,24,4092,41,stocktondave +3919,24,4092,41,trenton +3919,24,4092,41,weinzey +3919,24,4426,40,bcbgg +3919,24,4426,40,beckyff +3919,24,4426,40,bobdan19 +3919,24,4426,40,breyana +3919,24,4426,40,bthermans +3919,24,4426,40,casualgod +3919,24,4426,40,chibeta +3919,24,4426,40,dilngr4 +3919,24,4426,40,dmillam +3919,24,4426,40,e_vandyck +3919,24,4426,40,emonika +3919,24,4426,40,fad23 +3919,24,4426,40,garretp2 +3919,24,4426,40,goldust66 +3919,24,4426,40,guitarded7xx +3919,24,4426,40,hatricvs +3919,24,4426,40,hreve +3919,24,4426,40,isthar13 +3919,24,4426,40,joshuaaaaaa +3919,24,4426,40,junier +3919,24,4426,40,kmeeks +3919,24,4426,40,luisesc +3919,24,4426,40,madnob +3919,24,4426,40,mandiiene +3919,24,4426,40,mpin +3919,24,4426,40,mrreset +3919,24,4426,40,narlgoth +3919,24,4426,40,noelandvoidski +3919,24,4426,40,oregondreaming +3919,24,4426,40,petabread +3919,24,4426,40,pietje +3919,24,4426,40,reddish22 +3919,24,4426,40,rust00 +3919,24,4426,40,saiful_imaan +3919,24,4426,40,scruffdog +3919,24,4426,40,sguerrero +3919,24,4426,40,supersiamesisk +3919,24,4426,40,tiptree +3919,24,4426,40,vivace01 +3919,24,4426,40,zsuidakra +3919,24,4782,39,benix +3919,24,4782,39,bulltaco +3919,24,4782,39,casikiller +3919,24,4782,39,chievo +3919,24,4782,39,chize +3919,24,4782,39,chundar +3919,24,4782,39,dark_mirror +3919,24,4782,39,darkrider231 +3919,24,4782,39,davekuhns +3919,24,4782,39,emiljonchere +3919,24,4782,39,engelstaub +3919,24,4782,39,glaurent +3919,24,4782,39,gordon +3919,24,4782,39,guziknr1 +3919,24,4782,39,hubbusy +3919,24,4782,39,iamstrauss +3919,24,4782,39,icecat88 +3919,24,4782,39,karjedon +3919,24,4782,39,katsulas +3919,24,4782,39,kmortis +3919,24,4782,39,lightningbolt1312 +3919,24,4782,39,lynnch +3919,24,4782,39,manuel_sm +3919,24,4782,39,mlanza +3919,24,4782,39,mouven +3919,24,4782,39,rfoth +3919,24,4782,39,richcharters +3919,24,4782,39,samandella +3919,24,4782,39,sobriquet +3919,24,4782,39,sonosaki +3919,24,4782,39,starvince +3919,24,4782,39,sunburn18 +3919,24,4782,39,thetba +3919,24,4782,39,trevin +3919,24,4782,39,wabout +3919,24,4782,39,warder57 +3919,24,4782,39,wharekumera +3919,24,5150,38,adamcatant +3919,24,5150,38,adikom5777 +3919,24,5150,38,akado +3919,24,5150,38,axbraga +3919,24,5150,38,balderteiker +3919,24,5150,38,baraym +3919,24,5150,38,bsungjong +3919,24,5150,38,canadude +3919,24,5150,38,dennislaumen +3919,24,5150,38,duckworp +3919,24,5150,38,elkar +3919,24,5150,38,fjoelkaldr +3919,24,5150,38,franthic3 +3919,24,5150,38,ghostpants +3919,24,5150,38,gnomeguy1138 +3919,24,5150,38,harrelson +3919,24,5150,38,jdelgom +3919,24,5150,38,jezonia +3919,24,5150,38,mad t +3919,24,5150,38,massche +3919,24,5150,38,mcglonec +3919,24,5150,38,mikeweeney +3919,24,5150,38,nafmi +3919,24,5150,38,negmon +3919,24,5150,38,niceguymike +3919,24,5150,38,noldor1998 +3919,24,5150,38,nussknackerz +3919,24,5150,38,nzsam +3919,24,5150,38,odo_ital +3919,24,5150,38,ohnoitsnathan +3919,24,5150,38,oldskoolsi +3919,24,5150,38,ontalexandr +3919,24,5150,38,peskyblowfish +3919,24,5150,38,philio37 +3919,24,5150,38,planetsmasher +3919,24,5150,38,radix1214 +3919,24,5150,38,rave_rd +3919,24,5150,38,robo jr +3919,24,5150,38,sam pak +3919,24,5150,38,schmitty3 +3919,24,5150,38,shark51 +3919,24,5150,38,sharp237 +3919,24,5150,38,sir wombat +3919,24,5150,38,svengaard +3919,24,5150,38,terila +3919,24,5150,38,tpcordeiro +3919,24,5150,38,tzuehi9 +3919,24,5150,38,xsbj +3919,24,5150,38,zamoose +3919,24,5624,37,7-brainbug +3919,24,5624,37,alohagamer +3919,24,5624,37,arthurchance +3919,24,5624,37,badiolik +3919,24,5624,37,bort +3919,24,5624,37,clintonjeffrey +3919,24,5624,37,coltsfan76 +3919,24,5624,37,dan_marius +3919,24,5624,37,demiankatz +3919,24,5624,37,diggitydog +3919,24,5624,37,edhesgal +3919,24,5624,37,eulbsas +3919,24,5624,37,fabthecrab +3919,24,5624,37,fatboyguy +3919,24,5624,37,grantaz +3919,24,5624,37,green11machine +3919,24,5624,37,haos17 +3919,24,5624,37,itsmagic +3919,24,5624,37,jens_hoppe +3919,24,5624,37,joepunman +3919,24,5624,37,jrwalden +3919,24,5624,37,kerrhaydock +3919,24,5624,37,kursplat2 +3919,24,5624,37,lord al_x +3919,24,5624,37,marlonbraga +3919,24,5624,37,mathrim +3919,24,5624,37,mbaotr +3919,24,5624,37,mieiri +3919,24,5624,37,mrbungle333 +3919,24,5624,37,muk83 +3919,24,5624,37,mwf1 +3919,24,5624,37,neva kee +3919,24,5624,37,nhumrod +3919,24,5624,37,peqsaltamontes +3919,24,5624,37,proxegentyc +3919,24,5624,37,ptitju +3919,24,5624,37,sammy77 +3919,24,5624,37,serpentium +3919,24,5624,37,snooze_uk +3919,24,5624,37,sworddancer +3919,24,5624,37,teravos +3919,24,5624,37,tgbruiser +3919,24,5624,37,tweiland +3919,24,5624,37,vanish +3919,24,5624,37,vanlast +3919,24,5624,37,veridiana +3919,24,5624,37,vikingscientist +3919,24,5624,37,volcanoallen +3919,24,5624,37,vormwald1 +3919,24,5624,37,vrooman +3919,24,5624,37,wade74 +3919,24,5624,37,walkerredeye +3919,24,5624,37,wilsonza +3919,24,5624,37,wizardless +3919,24,5624,37,zezilav +3919,24,6063,36,alxndrch +3919,24,6063,36,beejunjoe +3919,24,6063,36,bergyblond +3919,24,6063,36,bloseth +3919,24,6063,36,botchgames1 +3919,24,6063,36,confusedvicky +3919,24,6063,36,cookinjr +3919,24,6063,36,copenhaver101 +3919,24,6063,36,djpardi +3919,24,6063,36,dpbush +3919,24,6063,36,drmarcii +3919,24,6063,36,ehgrandmachin +3919,24,6063,36,eidottrio +3919,24,6063,36,eltadziko +3919,24,6063,36,eskmoe +3919,24,6063,36,falath +3919,24,6063,36,guizmuth +3919,24,6063,36,hahnarama +3919,24,6063,36,jaysachs +3919,24,6063,36,jayzen +3919,24,6063,36,jesse_hudson +3919,24,6063,36,jlc2 +3919,24,6063,36,karmatease +3919,24,6063,36,klellingson +3919,24,6063,36,krscho +3919,24,6063,36,kstateshepard +3919,24,6063,36,ku3aku3a +3919,24,6063,36,kweevnidny +3919,24,6063,36,lagunero +3919,24,6063,36,littlenapolean +3919,24,6063,36,locolobo169 +3919,24,6063,36,lucabgg +3919,24,6063,36,malros +3919,24,6063,36,markyx +3919,24,6063,36,mattwran +3919,24,6063,36,messire76 +3919,24,6063,36,omucu +3919,24,6063,36,pfmfurlong +3919,24,6063,36,phil81 +3919,24,6063,36,rampantdragon +3919,24,6063,36,raoulvolfoni +3919,24,6063,36,redlutin +3919,24,6063,36,rochs77 +3919,24,6063,36,scottdawn1 +3919,24,6063,36,shawnad2006 +3919,24,6063,36,sonp +3919,24,6063,36,stroutqb22 +3919,24,6063,36,tacobarneveld +3919,24,6063,36,tolendante +3919,24,6063,36,tyrion250 +3919,24,6063,36,wouter7048 +3919,24,6063,36,xeqtr +3919,24,6063,36,zolos +3919,24,6573,35,abomasum +3919,24,6573,35,alexalex +3919,24,6573,35,algathrac +3919,24,6573,35,anto +3919,24,6573,35,antoniusa +3919,24,6573,35,archit3uthis +3919,24,6573,35,aspirino +3919,24,6573,35,atomm +3919,24,6573,35,baub64 +3919,24,6573,35,berry2665 +3919,24,6573,35,bigdanorama +3919,24,6573,35,boenke +3919,24,6573,35,canadianbacon19 +3919,24,6573,35,cannoneer +3919,24,6573,35,carlosspicyweener +3919,24,6573,35,chetgray +3919,24,6573,35,chris bayley +3919,24,6573,35,chrishedge +3919,24,6573,35,clive staples +3919,24,6573,35,collecthor +3919,24,6573,35,cr1s +3919,24,6573,35,craw-daddy +3919,24,6573,35,daimonthomas +3919,24,6573,35,delapra +3919,24,6573,35,dermitzel +3919,24,6573,35,dlminsac +3919,24,6573,35,dourdou +3919,24,6573,35,earthshaker93 +3919,24,6573,35,erem +3919,24,6573,35,gabriel guerin +3919,24,6573,35,geomer +3919,24,6573,35,geox124 +3919,24,6573,35,h2mommy +3919,24,6573,35,herl +3919,24,6573,35,ivankhlebnikoff +3919,24,6573,35,jakefrydman +3919,24,6573,35,juicer +3919,24,6573,35,keilerkopf +3919,24,6573,35,keith koskie +3919,24,6573,35,kenmarcellus1 +3919,24,6573,35,li042127054 +3919,24,6573,35,lucleru +3919,24,6573,35,mermadin +3919,24,6573,35,onion27 +3919,24,6573,35,percatron +3919,24,6573,35,pmat +3919,24,6573,35,qakkerjack +3919,24,6573,35,radziol +3919,24,6573,35,sergio_murcia +3919,24,6573,35,sigarrett +3919,24,6573,35,slugatron +3919,24,6573,35,spadle +3919,24,6573,35,sreaver +3919,24,6573,35,stealthshade +3919,24,6573,35,sykokaj +3919,24,6573,35,uksweeney +3919,24,6573,35,wassail games +3919,24,6573,35,whodini24 +3919,24,6573,35,zarovichx +3919,24,6573,35,zottelbart +3919,24,7100,34,airydisk +3919,24,7100,34,anonamus +3919,24,7100,34,arkeas +3919,24,7100,34,awban +3919,24,7100,34,bajord +3919,24,7100,34,beersson +3919,24,7100,34,clairo +3919,24,7100,34,courgax +3919,24,7100,34,cuteusagi +3919,24,7100,34,dasschmiddi +3919,24,7100,34,ddotdash +3919,24,7100,34,doumba +3919,24,7100,34,eknauer +3919,24,7100,34,exp626 +3919,24,7100,34,flyinghair +3919,24,7100,34,gabriel angelfire +3919,24,7100,34,gemi9 +3919,24,7100,34,gr8osiris +3919,24,7100,34,gurkyman +3919,24,7100,34,hobbess +3919,24,7100,34,hyperinactive +3919,24,7100,34,ibaimendi +3919,24,7100,34,ilze +3919,24,7100,34,jbhuter6041 +3919,24,7100,34,jen66 +3919,24,7100,34,joegrimer +3919,24,7100,34,jones00 +3919,24,7100,34,juntukka +3919,24,7100,34,kalmarian +3919,24,7100,34,kettch +3919,24,7100,34,kingarv +3919,24,7100,34,larry chong +3919,24,7100,34,lhynx +3919,24,7100,34,limont +3919,24,7100,34,lolo655 +3919,24,7100,34,manpru +3919,24,7100,34,maverick58 +3919,24,7100,34,monkeysamba +3919,24,7100,34,mrund +3919,24,7100,34,n jones +3919,24,7100,34,natokh +3919,24,7100,34,outofhabit +3919,24,7100,34,ovosh +3919,24,7100,34,piers6565 +3919,24,7100,34,plasticandwood +3919,24,7100,34,pzs69 +3919,24,7100,34,relfy +3919,24,7100,34,samsagace418 +3919,24,7100,34,sander_j +3919,24,7100,34,sey100 +3919,24,7100,34,softflow +3919,24,7100,34,spasmodic +3919,24,7100,34,spelunkzilla +3919,24,7100,34,spider69 +3919,24,7100,34,stray_flux +3919,24,7100,34,sweetdogpaw +3919,24,7100,34,swoop_ds +3919,24,7100,34,tfoz15 +3919,24,7100,34,thapaczki +3919,24,7100,34,thebaker1983 +3919,24,7100,34,thendcfs +3919,24,7100,34,toniet34 +3919,24,7100,34,weege1973 +3919,24,7100,34,wuxidice +3919,24,7100,34,xanthos +3919,24,7100,34,zlosny +3919,24,7679,33,3683d +3919,24,7679,33,ahn sung jun +3919,24,7679,33,amadeusz +3919,24,7679,33,arael +3919,24,7679,33,barryallen1129 +3919,24,7679,33,bigchief +3919,24,7679,33,camillef +3919,24,7679,33,carolineblack +3919,24,7679,33,chopin86 +3919,24,7679,33,claudio212 +3919,24,7679,33,emaverie +3919,24,7679,33,evandiesel +3919,24,7679,33,ezraar +3919,24,7679,33,f3_lix +3919,24,7679,33,fakir +3919,24,7679,33,flashaua +3919,24,7679,33,gladiatorgr +3919,24,7679,33,jpear +3919,24,7679,33,keguajardo +3919,24,7679,33,kjamma4 +3919,24,7679,33,lauron the dark lady +3919,24,7679,33,lordrodd +3919,24,7679,33,mada_goose +3919,24,7679,33,molokov +3919,24,7679,33,nico d +3919,24,7679,33,paulie123 +3919,24,7679,33,rafahc +3919,24,7679,33,reimius +3919,24,7679,33,riiin +3919,24,7679,33,rlnd +3919,24,7679,33,rodimusprime +3919,24,7679,33,rogergalf +3919,24,7679,33,shine42 +3919,24,7679,33,smoothsmith +3919,24,7679,33,stevenwall +3919,24,7679,33,sware86 +3919,24,7679,33,tacchan +3919,24,7679,33,theaaron +3919,24,7679,33,thebrewgeek +3919,24,7679,33,tms_ +3919,24,7679,33,toverney +3919,24,7679,33,travbot +3919,24,7679,33,unreal_warrior +3919,24,7679,33,ursulus +3919,24,7679,33,viggo el carpato +3919,24,7679,33,zzapper0 +3919,24,8351,32,alcofa +3919,24,8351,32,birdsong703 +3919,24,8351,32,callomac +3919,24,8351,32,castelodaspecas +3919,24,8351,32,cowboy8 +3919,24,8351,32,deserto_rosso +3919,24,8351,32,doczocker +3919,24,8351,32,donagh +3919,24,8351,32,dopey68 +3919,24,8351,32,faso74it +3919,24,8351,32,fergallen +3919,24,8351,32,fiestar +3919,24,8351,32,fitzban +3919,24,8351,32,flux y fluxy +3919,24,8351,32,gpli_11 +3919,24,8351,32,harbu +3919,24,8351,32,hoichiro +3919,24,8351,32,icalvinist +3919,24,8351,32,jefe8699 +3919,24,8351,32,jorbgamer +3919,24,8351,32,ketzer0815 +3919,24,8351,32,leebo33 +3919,24,8351,32,meip78 +3919,24,8351,32,nini la nicoise +3919,24,8351,32,peoblej +3919,24,8351,32,plirre +3919,24,8351,32,ragados +3919,24,8351,32,rvlieshout +3919,24,8351,32,sporatik +3919,24,8351,32,toadflax234 +3919,24,8351,32,trevinsky +3919,24,8351,32,vedalikt +3919,24,8351,32,villepa +3919,24,8351,32,worshipsf +3919,24,8351,32,yorga +3919,24,8351,32,zoroastro +3919,24,9086,31,28green +3919,24,9086,31,airtimmith +3919,24,9086,31,ammo4280 +3919,24,9086,31,augray +3919,24,9086,31,fililip +3919,24,9086,31,garycollins68 +3919,24,9086,31,huppen +3919,24,9086,31,jay10100 +3919,24,9086,31,jmpergar +3919,24,9086,31,jstearns78 +3919,24,9086,31,keyyek +3919,24,9086,31,kvark +3919,24,9086,31,majagua +3919,24,9086,31,mark363 +3919,24,9086,31,moakm +3919,24,9086,31,olsonjj25 +3919,24,9086,31,palladinus +3919,24,9086,31,piratefarmers +3919,24,9086,31,pultrak +3919,24,9086,31,vagos +3919,24,9086,31,volt26 +3919,24,9086,31,wavert +3919,24,9086,31,zoids +3919,24,9910,30,alemas81 +3919,24,9910,30,arcanearchery +3919,24,9910,30,arielle +3919,24,9910,30,calbond +3919,24,9910,30,eddavison +3919,24,9910,30,frozenhohos +3919,24,9910,30,legomancer +3919,24,9910,30,milenaguberinic +3919,24,9910,30,mtgstretchy +3919,24,9910,30,synistar +3919,24,9910,30,teuf +3919,24,9910,30,thewheel +3919,24,9910,30,toedash +3919,24,9910,30,wispwalker +3919,24,10868,29,altair79 +3919,24,10868,29,antilla +3919,24,10868,29,bartek_astronauta +3919,24,10868,29,hamstertheone +3919,24,10868,29,rhombitruncated +3919,24,10868,29,sidersdd +3919,24,11831,28,5ergion +3919,24,11831,28,ehrensbay +3919,24,11831,28,phasola +3919,24,14030,26,phileb +3919,24,14030,26,stuffymcgee +3919,24,15326,25,wrthorns +4642,23,85,109,airjudden +4642,23,106,104,cartu1 +4642,23,113,102,bluecloud +4642,23,242,86,traemyn +4642,23,340,78,clowntable +4642,23,361,77,iago71 +4642,23,390,76,ianniesimo +4642,23,413,75,piotrsmu +4642,23,438,74,forpro75 +4642,23,493,72,hackfin +4642,23,522,71,herlius +4642,23,559,70,mulrah +4642,23,589,69,djsquamo +4642,23,652,67,jcd2001es +4642,23,652,67,robul +4642,23,696,66,prismattic +4642,23,696,66,yroeht +4642,23,741,65,mentat1231 +4642,23,741,65,sbgrad +4642,23,787,64,legothos +4642,23,787,64,meltorefas +4642,23,843,63,facsantos +4642,23,1034,60,1nf1n1ty +4642,23,1034,60,lieds0127 +4642,23,1034,60,stratagon +4642,23,1034,60,theotherring +4642,23,1109,59,dralius +4642,23,1109,59,heinrichsteven +4642,23,1109,59,theslex +4642,23,1109,59,vins +4642,23,1202,58,crynus +4642,23,1202,58,jonchvic +4642,23,1276,57,ingo_76 +4642,23,1276,57,pjlawall +4642,23,1362,56,jkopena +4642,23,1362,56,vir3ns +4642,23,1362,56,wkufan89 +4642,23,1459,55,antonick +4642,23,1459,55,entranced +4642,23,1459,55,fiveguysgames +4642,23,1459,55,jockib +4642,23,1459,55,zumby65 +4642,23,1568,54,dlthorpe +4642,23,1568,54,stmelvin +4642,23,1674,53,dkossak +4642,23,1674,53,fabregus +4642,23,1674,53,ilsver +4642,23,1674,53,nerotora +4642,23,1674,53,sinairadical +4642,23,1674,53,untergeher +4642,23,1674,53,zuxi +4642,23,1792,52,erwinlau +4642,23,1792,52,thebof +4642,23,1906,51,alkis21 +4642,23,1906,51,basti aus hamburg +4642,23,1906,51,bioiris +4642,23,1906,51,dekkoy1 +4642,23,1906,51,koby_shachar +4642,23,1906,51,life_of_pi +4642,23,1906,51,radynski +4642,23,2053,50,billy_baroo +4642,23,2053,50,sandals +4642,23,2053,50,stephenv +4642,23,2053,50,tikyjo +4642,23,2053,50,tttokki +4642,23,2204,49,grimmthething +4642,23,2204,49,trainmaster027 +4642,23,2351,48,aliiii616 +4642,23,2351,48,chaz donnell +4642,23,2351,48,jenjo59 +4642,23,2351,48,luedsthegreat +4642,23,2351,48,mrblissful +4642,23,2351,48,oskarhj +4642,23,2351,48,touko +4642,23,2555,47,berrythebear +4642,23,2555,47,earache +4642,23,2555,47,feeleye +4642,23,2555,47,hrdkor +4642,23,2555,47,jessew +4642,23,2555,47,malshadow +4642,23,2555,47,neophyte +4642,23,2758,46,ad79 +4642,23,2758,46,admiralacf +4642,23,2758,46,aroach88 +4642,23,2758,46,drejm +4642,23,2758,46,havox +4642,23,2758,46,kayma +4642,23,2758,46,sanguinius05 +4642,23,2758,46,socnart +4642,23,2758,46,trainmanjeremy +4642,23,2758,46,tvdinner +4642,23,2758,46,vradipous1 +4642,23,2758,46,zeedox +4642,23,2969,45,bigbadelectriccow +4642,23,2969,45,bobmaysjr +4642,23,2969,45,cobbz20 +4642,23,2969,45,davecharlson +4642,23,2969,45,jmaag +4642,23,2969,45,jmasur +4642,23,2969,45,k_i_t +4642,23,2969,45,misterbond +4642,23,2969,45,mpj1 +4642,23,2969,45,nicosugata +4642,23,2969,45,raiyfe +4642,23,2969,45,rasmuse +4642,23,2969,45,roxar13 +4642,23,2969,45,sheison +4642,23,2969,45,tirips +4642,23,3216,44,binaryphile +4642,23,3216,44,bonjour374 +4642,23,3216,44,crabstix110 +4642,23,3216,44,csoren +4642,23,3216,44,cwlvyn +4642,23,3216,44,extazyyvl +4642,23,3216,44,happiness7474 +4642,23,3216,44,jeremy6801 +4642,23,3216,44,lukasz 81 +4642,23,3216,44,mikepmosh +4642,23,3216,44,missu +4642,23,3216,44,mizerak +4642,23,3216,44,themjolnir +4642,23,3216,44,yudas +4642,23,3514,43,bkelley57069 +4642,23,3514,43,eyelost +4642,23,3514,43,fumok +4642,23,3514,43,gertat +4642,23,3514,43,jeffyl99 +4642,23,3514,43,jjrbedford +4642,23,3514,43,jtimmerman +4642,23,3514,43,kvothe_the_bloodless +4642,23,3514,43,lexjudex +4642,23,3514,43,maikelputman +4642,23,3514,43,redblacksfan +4642,23,3514,43,shepps36 +4642,23,3514,43,taibi +4642,23,3514,43,tv3148 +4642,23,3514,43,w2lliam +4642,23,3514,43,wayne schulatz +4642,23,3815,42,beatsmd +4642,23,3815,42,boufalaxx +4642,23,3815,42,bruceredbeard +4642,23,3815,42,davidcoleman +4642,23,3815,42,dedlius +4642,23,3815,42,elida +4642,23,3815,42,enroamer +4642,23,3815,42,griffinritmire +4642,23,3815,42,jugiter +4642,23,3815,42,kartafilos +4642,23,3815,42,lumberjacques +4642,23,3815,42,maeglor +4642,23,3815,42,miriku +4642,23,3815,42,mondauge +4642,23,3815,42,netslummer +4642,23,3815,42,orsino71 +4642,23,3815,42,pedrofunke +4642,23,3815,42,regex +4642,23,3815,42,rollon_stonecrusher +4642,23,3815,42,serhiious +4642,23,3815,42,skoobadooba +4642,23,3815,42,stannis the king +4642,23,3815,42,titich +4642,23,3815,42,tjshields +4642,23,3815,42,tobywan +4642,23,4092,41,asgersg +4642,23,4092,41,bambam75 +4642,23,4092,41,breakaway +4642,23,4092,41,brutaldolphin79 +4642,23,4092,41,bwonson +4642,23,4092,41,dkeisen +4642,23,4092,41,dmcallahan +4642,23,4092,41,dracopl +4642,23,4092,41,droberts441 +4642,23,4092,41,dsutherland +4642,23,4092,41,finlos7 +4642,23,4092,41,gomez +4642,23,4092,41,grey pilgrim +4642,23,4092,41,haekle +4642,23,4092,41,healthygamingnetwork +4642,23,4092,41,iolabe +4642,23,4092,41,jungleboy24 +4642,23,4092,41,kostas +4642,23,4092,41,ldd23 +4642,23,4092,41,lorenzano94 +4642,23,4092,41,manwaring +4642,23,4092,41,mokthepok +4642,23,4092,41,notkilgoretrout +4642,23,4092,41,oldestmanonmyspace +4642,23,4092,41,petersjs +4642,23,4092,41,presh +4642,23,4092,41,prideone +4642,23,4092,41,rebeccaz +4642,23,4092,41,reixou +4642,23,4092,41,rubenazarja +4642,23,4092,41,shahadmandee +4642,23,4092,41,slimy850917 +4642,23,4092,41,stwebb +4642,23,4092,41,superjuanmarin +4642,23,4092,41,usagi-san +4642,23,4426,40,_kael_ +4642,23,4426,40,adria +4642,23,4426,40,alaena +4642,23,4426,40,ancientvirus +4642,23,4426,40,angeral +4642,23,4426,40,bigft64 +4642,23,4426,40,braldar +4642,23,4426,40,cheelara1 +4642,23,4426,40,crucius +4642,23,4426,40,daniel58693 +4642,23,4426,40,darkranger1 +4642,23,4426,40,gabriel_szala +4642,23,4426,40,gameguru +4642,23,4426,40,gtburns +4642,23,4426,40,jdw734 +4642,23,4426,40,jholub +4642,23,4426,40,jtremblay +4642,23,4426,40,julianoberholzer +4642,23,4426,40,karujin +4642,23,4426,40,lastalchemist +4642,23,4426,40,lifeworthrisk1 +4642,23,4426,40,m4p3t +4642,23,4426,40,mngol +4642,23,4426,40,oldster +4642,23,4426,40,pete5315 +4642,23,4426,40,rllort +4642,23,4426,40,svatje +4642,23,4426,40,thackerrst +4642,23,4426,40,theflahooler +4642,23,4426,40,titomexicano +4642,23,4426,40,wirsing +4642,23,4426,40,zakalwe_zwakh +4642,23,4782,39,airom +4642,23,4782,39,arian +4642,23,4782,39,attika +4642,23,4782,39,bolleke702 +4642,23,4782,39,capalwest +4642,23,4782,39,craig_h +4642,23,4782,39,crygen +4642,23,4782,39,deskey +4642,23,4782,39,dirkiedick +4642,23,4782,39,dogzard +4642,23,4782,39,dooddtask +4642,23,4782,39,dpurple +4642,23,4782,39,fortiche +4642,23,4782,39,frank hamrick +4642,23,4782,39,galore +4642,23,4782,39,jarredscott78 +4642,23,4782,39,jj sino +4642,23,4782,39,joelcfc25 +4642,23,4782,39,kermit450 +4642,23,4782,39,lone ranger +4642,23,4782,39,mrkvm +4642,23,4782,39,nchampou +4642,23,4782,39,netarc +4642,23,4782,39,nicosca +4642,23,4782,39,nrgray555 +4642,23,4782,39,oleg_ +4642,23,4782,39,richielcfcrich +4642,23,4782,39,robocik +4642,23,4782,39,ryousuke +4642,23,4782,39,scayra +4642,23,4782,39,stavroguin +4642,23,4782,39,table43 +4642,23,4782,39,thep +4642,23,4782,39,thoryana +4642,23,4782,39,tustus +4642,23,4782,39,xaviml +4642,23,5150,38,aetwitch +4642,23,5150,38,agreen53 +4642,23,5150,38,blazcowicz +4642,23,5150,38,chandlerwp +4642,23,5150,38,dettigfan222 +4642,23,5150,38,di2g10 +4642,23,5150,38,dilli +4642,23,5150,38,dlb2 +4642,23,5150,38,fractaloon +4642,23,5150,38,fsu120 +4642,23,5150,38,greatsage +4642,23,5150,38,heccubus +4642,23,5150,38,icampo35 +4642,23,5150,38,icypunk +4642,23,5150,38,isamoor +4642,23,5150,38,jaqjacek +4642,23,5150,38,jdam +4642,23,5150,38,jdanish +4642,23,5150,38,jdehart1 +4642,23,5150,38,jkayati +4642,23,5150,38,johan +4642,23,5150,38,jonatanmartin87 +4642,23,5150,38,jygro +4642,23,5150,38,kalevala22 +4642,23,5150,38,kiekebanus +4642,23,5150,38,kjeldjensen +4642,23,5150,38,kosina +4642,23,5150,38,krisdb +4642,23,5150,38,lemonpips +4642,23,5150,38,n2xu +4642,23,5150,38,nomax33 +4642,23,5150,38,ogermino +4642,23,5150,38,phanthomus +4642,23,5150,38,polcatpaul +4642,23,5150,38,praetoriam +4642,23,5150,38,prattsicle +4642,23,5150,38,richluedeke +4642,23,5150,38,rickfrank +4642,23,5150,38,robwinter +4642,23,5150,38,sazzollini +4642,23,5150,38,shoye +4642,23,5150,38,smallsqueezel +4642,23,5150,38,solid snake +4642,23,5150,38,stargazer1x +4642,23,5150,38,stu holttum +4642,23,5150,38,tariff +4642,23,5150,38,the doctor +4642,23,5150,38,theredmeeple +4642,23,5150,38,uufcc +4642,23,5150,38,vaheek +4642,23,5150,38,vlan +4642,23,5150,38,wilbertkies +4642,23,5150,38,zordok +4642,23,5624,37,7isprime +4642,23,5624,37,_beemo +4642,23,5624,37,acidutzu +4642,23,5624,37,amadeus_99 +4642,23,5624,37,boolboolbool +4642,23,5624,37,cogliostro +4642,23,5624,37,daegil +4642,23,5624,37,dlc_1532 +4642,23,5624,37,dml23 +4642,23,5624,37,dwiggy444 +4642,23,5624,37,evanw5 +4642,23,5624,37,fernbymob +4642,23,5624,37,gamerdan +4642,23,5624,37,georgeop +4642,23,5624,37,gudix +4642,23,5624,37,ikky +4642,23,5624,37,ilikegames +4642,23,5624,37,joshtogo +4642,23,5624,37,juanejaen +4642,23,5624,37,karrde +4642,23,5624,37,khazaar +4642,23,5624,37,logus vile +4642,23,5624,37,losfp +4642,23,5624,37,magumba +4642,23,5624,37,mahkdaddy +4642,23,5624,37,makhpiya +4642,23,5624,37,marge2 +4642,23,5624,37,mcjohnsons +4642,23,5624,37,mister allen +4642,23,5624,37,morthe77 +4642,23,5624,37,mrc034 +4642,23,5624,37,mrmadden +4642,23,5624,37,munihack75 +4642,23,5624,37,neatbender +4642,23,5624,37,patches4 +4642,23,5624,37,phreakyhamster +4642,23,5624,37,raptor777777 +4642,23,5624,37,ravenholmwacht +4642,23,5624,37,romanenkoyevgenii +4642,23,5624,37,rowleyg +4642,23,5624,37,sakra74 +4642,23,5624,37,sroney +4642,23,5624,37,tjtommytj +4642,23,5624,37,tobias_sweden +4642,23,5624,37,toomanymouths +4642,23,5624,37,turbon00b +4642,23,5624,37,typpo +4642,23,5624,37,wendze +4642,23,5624,37,westwardhough +4642,23,5624,37,yearofglad +4642,23,5624,37,zaboobadidoo +4642,23,5624,37,ze_dutch_kiwi +4642,23,6063,36,7koliberek9 +4642,23,6063,36,aetherdave +4642,23,6063,36,barci +4642,23,6063,36,biczownik +4642,23,6063,36,braimbault +4642,23,6063,36,brendan126 +4642,23,6063,36,bretthart +4642,23,6063,36,cferejohn +4642,23,6063,36,cinenerd +4642,23,6063,36,danieltche +4642,23,6063,36,darthservo +4642,23,6063,36,ddoyen +4642,23,6063,36,deschamp86 +4642,23,6063,36,dodb66 +4642,23,6063,36,domhiob +4642,23,6063,36,dtusar +4642,23,6063,36,duggo42 +4642,23,6063,36,eastwoodk +4642,23,6063,36,emperormatt +4642,23,6063,36,engda59 +4642,23,6063,36,eskravitz +4642,23,6063,36,gabiana +4642,23,6063,36,greyshrike +4642,23,6063,36,hafla +4642,23,6063,36,iamohcy +4642,23,6063,36,jabberw0ck +4642,23,6063,36,joroalmi +4642,23,6063,36,joustra +4642,23,6063,36,jpact +4642,23,6063,36,keegrepus +4642,23,6063,36,kentonwhite +4642,23,6063,36,kirklandsigs +4642,23,6063,36,lhortelio +4642,23,6063,36,lord pooperson +4642,23,6063,36,lrpiarowski +4642,23,6063,36,maciek79 +4642,23,6063,36,mentatgamer +4642,23,6063,36,millsyboy +4642,23,6063,36,mintylish +4642,23,6063,36,mrsjay +4642,23,6063,36,odysseus3001 +4642,23,6063,36,peter krog +4642,23,6063,36,phuntom +4642,23,6063,36,rappe28 +4642,23,6063,36,rbyelick +4642,23,6063,36,roaringpossum +4642,23,6063,36,robmcwiz +4642,23,6063,36,rocketkiwi +4642,23,6063,36,sadistiko +4642,23,6063,36,saggyhead +4642,23,6063,36,saintdave22 +4642,23,6063,36,sirmark +4642,23,6063,36,sirmartin +4642,23,6063,36,snikla +4642,23,6063,36,susi101 +4642,23,6063,36,szaszat20 +4642,23,6063,36,tcollett +4642,23,6063,36,ted11 +4642,23,6063,36,thoia +4642,23,6063,36,towpowyeah +4642,23,6063,36,urbanus +4642,23,6063,36,vdwoord +4642,23,6063,36,zelurs +4642,23,6063,36,zoula +4642,23,6063,36,zwanson +4642,23,6573,35,ahab2001 +4642,23,6573,35,amyandpeteb +4642,23,6573,35,antrax75 +4642,23,6573,35,ardrummo +4642,23,6573,35,baca +4642,23,6573,35,beerdragon +4642,23,6573,35,bliming1969 +4642,23,6573,35,bootlover +4642,23,6573,35,bungjon +4642,23,6573,35,caronthefiend +4642,23,6573,35,cartas +4642,23,6573,35,chifanpoe +4642,23,6573,35,cold blue +4642,23,6573,35,cosmo145 +4642,23,6573,35,dagabeus +4642,23,6573,35,davekitcat +4642,23,6573,35,dbthespian +4642,23,6573,35,dial1257 +4642,23,6573,35,donatovt +4642,23,6573,35,edelen +4642,23,6573,35,elschmear +4642,23,6573,35,evalien +4642,23,6573,35,evana +4642,23,6573,35,exitthewizard +4642,23,6573,35,fcorsaro +4642,23,6573,35,flope +4642,23,6573,35,froeschli +4642,23,6573,35,gilead +4642,23,6573,35,goldeneyeonline +4642,23,6573,35,grind +4642,23,6573,35,guippy +4642,23,6573,35,gurpigurlie +4642,23,6573,35,hermanroozen +4642,23,6573,35,humanbackpack +4642,23,6573,35,jakoseto +4642,23,6573,35,jgalarneau +4642,23,6573,35,joshuafrueh +4642,23,6573,35,jostrand +4642,23,6573,35,juanmi7777 +4642,23,6573,35,kiko +4642,23,6573,35,leponeyfromhell +4642,23,6573,35,luisventura +4642,23,6573,35,madhobbit +4642,23,6573,35,mankoslaw +4642,23,6573,35,maxim plusov +4642,23,6573,35,mbrwr +4642,23,6573,35,megaloman2 +4642,23,6573,35,mercucio8 +4642,23,6573,35,mwb66 +4642,23,6573,35,nasa1n +4642,23,6573,35,nasal demon +4642,23,6573,35,nissi +4642,23,6573,35,pakito94 +4642,23,6573,35,perezabad +4642,23,6573,35,petri +4642,23,6573,35,picosckt +4642,23,6573,35,pietek +4642,23,6573,35,ploopakete +4642,23,6573,35,poisonguy +4642,23,6573,35,rangerx +4642,23,6573,35,ranva +4642,23,6573,35,red wine pie +4642,23,6573,35,s3rvant +4642,23,6573,35,sarsi +4642,23,6573,35,sebbo6 +4642,23,6573,35,shmulinis +4642,23,6573,35,sin_trader +4642,23,6573,35,stoerenfried +4642,23,6573,35,supreme_h0sehead +4642,23,6573,35,tedw +4642,23,6573,35,the edge +4642,23,6573,35,trilb +4642,23,6573,35,vacabck +4642,23,6573,35,vernad +4642,23,6573,35,whish +4642,23,6573,35,yanix +4642,23,7100,34,almostel +4642,23,7100,34,applefiend +4642,23,7100,34,argentetbury +4642,23,7100,34,asmund1709 +4642,23,7100,34,awoody +4642,23,7100,34,canadarocks +4642,23,7100,34,counterclockwise +4642,23,7100,34,crapuleux +4642,23,7100,34,csabull +4642,23,7100,34,daved23 +4642,23,7100,34,degaulle +4642,23,7100,34,diggidydiggidy +4642,23,7100,34,doktorloza +4642,23,7100,34,doomed_destiny +4642,23,7100,34,enricodandolo +4642,23,7100,34,fromeea +4642,23,7100,34,fzerorubigd +4642,23,7100,34,gaanger +4642,23,7100,34,ghost_dancer +4642,23,7100,34,gray81 +4642,23,7100,34,grendelsbayne +4642,23,7100,34,hunterdk +4642,23,7100,34,j0_0 +4642,23,7100,34,jas0 +4642,23,7100,34,javitowildchild +4642,23,7100,34,jejo +4642,23,7100,34,jemjaime +4642,23,7100,34,joetweber +4642,23,7100,34,juegoego +4642,23,7100,34,kelkel2376 +4642,23,7100,34,kermit5150 +4642,23,7100,34,kingkill33 +4642,23,7100,34,lancefriday945 +4642,23,7100,34,leidensgenosse +4642,23,7100,34,m0ki +4642,23,7100,34,master_tactician +4642,23,7100,34,miniguerrilla +4642,23,7100,34,mkolac +4642,23,7100,34,mrsprite +4642,23,7100,34,mudville9 +4642,23,7100,34,mysongska +4642,23,7100,34,nischtewird +4642,23,7100,34,phoenixsf2 +4642,23,7100,34,probbi +4642,23,7100,34,rjstreet +4642,23,7100,34,sciurus +4642,23,7100,34,shoemoney +4642,23,7100,34,sjairshark +4642,23,7100,34,smmdarkpower +4642,23,7100,34,steeledragon +4642,23,7100,34,talekliaran +4642,23,7100,34,tasuki49 +4642,23,7100,34,titaniumator +4642,23,7100,34,vasher +4642,23,7100,34,ydnad +4642,23,7100,34,zach5501 +4642,23,7100,34,zomps +4642,23,7100,34,zuzusdad +4642,23,7679,33,4ntonio +4642,23,7679,33,ainigmatikos +4642,23,7679,33,alfman +4642,23,7679,33,andyszy +4642,23,7679,33,artfuldodge2 +4642,23,7679,33,atotalnutt +4642,23,7679,33,barto85 +4642,23,7679,33,batnick +4642,23,7679,33,blazejk +4642,23,7679,33,chitownsox +4642,23,7679,33,diegosalerno +4642,23,7679,33,docker37 +4642,23,7679,33,eferreira +4642,23,7679,33,ekloff +4642,23,7679,33,emiljj +4642,23,7679,33,eschy12 +4642,23,7679,33,eyron161 +4642,23,7679,33,falkar +4642,23,7679,33,falke74 +4642,23,7679,33,fiomtec +4642,23,7679,33,forza_sge75 +4642,23,7679,33,gaius +4642,23,7679,33,get earthworm +4642,23,7679,33,gugui +4642,23,7679,33,hauwech +4642,23,7679,33,huckmant +4642,23,7679,33,ielmie +4642,23,7679,33,jacsto +4642,23,7679,33,jaykay97 +4642,23,7679,33,jaystay +4642,23,7679,33,johnweldy +4642,23,7679,33,jond +4642,23,7679,33,kleman +4642,23,7679,33,kotierw +4642,23,7679,33,kravian +4642,23,7679,33,legioxix +4642,23,7679,33,libreria_atuin +4642,23,7679,33,lilyen +4642,23,7679,33,misses peacock +4642,23,7679,33,mrshep +4642,23,7679,33,mystojjt +4642,23,7679,33,nomosk +4642,23,7679,33,omertron +4642,23,7679,33,pedorido +4642,23,7679,33,petroman247 +4642,23,7679,33,plainscape +4642,23,7679,33,pstrid +4642,23,7679,33,quartex +4642,23,7679,33,rayk7887 +4642,23,7679,33,reedjgc +4642,23,7679,33,rikthechief +4642,23,7679,33,rivo +4642,23,7679,33,rkaria4488 +4642,23,7679,33,rolexih +4642,23,7679,33,romir +4642,23,7679,33,rugor +4642,23,7679,33,samnzed +4642,23,7679,33,senorjefe +4642,23,7679,33,skrum +4642,23,7679,33,spacephilosopher +4642,23,7679,33,stroumphmagik +4642,23,7679,33,teranex +4642,23,7679,33,tomlynch +4642,23,7679,33,vincento +4642,23,7679,33,vjbeam +4642,23,7679,33,worthdot +4642,23,7679,33,zanhammer +4642,23,8351,32,abruptdolphin +4642,23,8351,32,adri_corr +4642,23,8351,32,ajax +4642,23,8351,32,alex the pretty good +4642,23,8351,32,alexerh1977 +4642,23,8351,32,alkaiser +4642,23,8351,32,amupoti +4642,23,8351,32,andsoerinsaid +4642,23,8351,32,antoinebertier +4642,23,8351,32,arthuriovan +4642,23,8351,32,atlasholy8 +4642,23,8351,32,baaka +4642,23,8351,32,bodomchild81 +4642,23,8351,32,bushchicken +4642,23,8351,32,cdnweapon +4642,23,8351,32,charleaux +4642,23,8351,32,clan perez +4642,23,8351,32,clydwich +4642,23,8351,32,crossa1 +4642,23,8351,32,czrdup +4642,23,8351,32,deevieke +4642,23,8351,32,delia +4642,23,8351,32,devenc +4642,23,8351,32,dexter258 +4642,23,8351,32,dimsumdad +4642,23,8351,32,dyannick +4642,23,8351,32,eliaskos +4642,23,8351,32,erpriest +4642,23,8351,32,fairleee +4642,23,8351,32,fibobs +4642,23,8351,32,fishpeddler +4642,23,8351,32,galus +4642,23,8351,32,gatthepekerd +4642,23,8351,32,goblin13knight +4642,23,8351,32,hardcore +4642,23,8351,32,hymie +4642,23,8351,32,imcarnochan +4642,23,8351,32,jericho lorz +4642,23,8351,32,jglw00d +4642,23,8351,32,jollypirate +4642,23,8351,32,josephyouren +4642,23,8351,32,jpseasia +4642,23,8351,32,judas54 +4642,23,8351,32,karswell +4642,23,8351,32,kitos +4642,23,8351,32,kruland +4642,23,8351,32,labrhat22 +4642,23,8351,32,lalanolina +4642,23,8351,32,legalbeagle14 +4642,23,8351,32,lostweets +4642,23,8351,32,lumpy75 +4642,23,8351,32,malabarista123 +4642,23,8351,32,mattyfin1213 +4642,23,8351,32,mike laserbeam +4642,23,8351,32,milkyjoe241 +4642,23,8351,32,mokberlin +4642,23,8351,32,mr_minning +4642,23,8351,32,nilz99 +4642,23,8351,32,paulyjones25 +4642,23,8351,32,pdzoch +4642,23,8351,32,pepe potamo +4642,23,8351,32,peter1958 +4642,23,8351,32,phragged +4642,23,8351,32,rolliereed +4642,23,8351,32,sava 73 +4642,23,8351,32,seamuspt +4642,23,8351,32,sebtrott +4642,23,8351,32,silage +4642,23,8351,32,spizio +4642,23,8351,32,stretch625 +4642,23,8351,32,strewth78 +4642,23,8351,32,strings +4642,23,8351,32,teetuz +4642,23,8351,32,tomster +4642,23,8351,32,tssfulk +4642,23,8351,32,wewen +4642,23,8351,32,wightwulf +4642,23,8351,32,zorch +4642,23,8351,32,zwinx +4642,23,9086,31,antivelar +4642,23,9086,31,blackbert +4642,23,9086,31,cenealon +4642,23,9086,31,chee +4642,23,9086,31,chesterfester +4642,23,9086,31,d2kbears +4642,23,9086,31,daboboda +4642,23,9086,31,dolar76 +4642,23,9086,31,drasher25 +4642,23,9086,31,f1shm00 +4642,23,9086,31,falcata +4642,23,9086,31,gamemanue +4642,23,9086,31,garth m +4642,23,9086,31,gregdarcy +4642,23,9086,31,haivic +4642,23,9086,31,jcsan7 +4642,23,9086,31,johnlm +4642,23,9086,31,kaylex +4642,23,9086,31,keal89 +4642,23,9086,31,killed by death +4642,23,9086,31,klarkinhistrep +4642,23,9086,31,kyledelgado1 +4642,23,9086,31,mattmeg423 +4642,23,9086,31,mogreece +4642,23,9086,31,mokoni +4642,23,9086,31,nhack2013 +4642,23,9086,31,officer sugar +4642,23,9086,31,r0verandom +4642,23,9086,31,rudy3 +4642,23,9086,31,sektor +4642,23,9086,31,shady bits +4642,23,9086,31,stealthmutant +4642,23,9086,31,superberto +4642,23,9086,31,thephantomhennes +4642,23,9086,31,tytusmk +4642,23,9086,31,vvendetta +4642,23,9086,31,wibble1980 +4642,23,9910,30,aitfigaro +4642,23,9910,30,awakeneddragon +4642,23,9910,30,blindrazvan +4642,23,9910,30,bundyman +4642,23,9910,30,conesseur +4642,23,9910,30,edensong +4642,23,9910,30,ender7 +4642,23,9910,30,fteplin +4642,23,9910,30,garandguy989 +4642,23,9910,30,garif +4642,23,9910,30,gormb +4642,23,9910,30,grandkhan44 +4642,23,9910,30,inntrepid +4642,23,9910,30,lordsplodge +4642,23,9910,30,ol_bubba +4642,23,9910,30,pete_j +4642,23,9910,30,pharmsuki +4642,23,9910,30,prestonisnormal +4642,23,9910,30,raujour +4642,23,9910,30,rgutowski +4642,23,9910,30,ryanw2427 +4642,23,9910,30,rystynen +4642,23,9910,30,saxophonist +4642,23,9910,30,sherpherd +4642,23,9910,30,spielend_leicht +4642,23,9910,30,steve be +4642,23,9910,30,tbass77 +4642,23,9910,30,visual_eye +4642,23,9910,30,whisperingrock +4642,23,9910,30,zlajko +4642,23,10868,29,alancaselli +4642,23,10868,29,ananda74 +4642,23,10868,29,buckarooo +4642,23,10868,29,eryck +4642,23,10868,29,familygamingtogether +4642,23,10868,29,frapas13 +4642,23,10868,29,gary-f +4642,23,10868,29,harding grim +4642,23,10868,29,hobbes2888 +4642,23,10868,29,jumboshrimpz206 +4642,23,10868,29,killertree +4642,23,10868,29,krissou +4642,23,10868,29,loicsydney +4642,23,10868,29,marsupilami80 +4642,23,10868,29,oldiazg +4642,23,11831,28,akuchling +4642,23,11831,28,gosaraci +4642,23,11831,28,itormi +4642,23,11831,28,oreolus +4642,23,11831,28,vetruviangamer +4642,23,12910,27,colouring_kiwi +4642,23,12910,27,mattlowder +4642,23,12910,27,sixstripes +4642,23,12910,27,terencenwz +4642,23,12910,27,vitaska +5450,22,216,88,nm156 +5450,22,230,87,xfwx_firebird +5450,22,340,78,bebrygamez +5450,22,340,78,ltn koen +5450,22,390,76,cristiq +5450,22,413,75,valdovinho +5450,22,589,69,hasmad +5450,22,696,66,qcgeek +5450,22,914,62,dreno3 +5450,22,1034,60,greenlotus284 +5450,22,1109,59,johnwong882 +5450,22,1109,59,madhattr999 +5450,22,1109,59,phagol exlebon +5450,22,1276,57,anemaat +5450,22,1276,57,ponton +5450,22,1362,56,fili +5450,22,1362,56,garthek +5450,22,1362,56,jufi +5450,22,1362,56,mtyree1972 +5450,22,1459,55,born-of-ashes +5450,22,1459,55,dauda +5450,22,1459,55,heavyriffs +5450,22,1459,55,wodzu147 +5450,22,1459,55,woodburner +5450,22,1568,54,ajwill +5450,22,1568,54,alex1326 +5450,22,1568,54,ccthulu1 +5450,22,1568,54,dzon vejn +5450,22,1568,54,erndiggity +5450,22,1568,54,erykui +5450,22,1568,54,jhsa +5450,22,1568,54,johntes +5450,22,1568,54,satorisnow +5450,22,1674,53,jamirowin +5450,22,1674,53,jkbgame +5450,22,1674,53,mark van varik +5450,22,1674,53,neogeodk +5450,22,1674,53,nimzo28 +5450,22,1674,53,ringtone01 +5450,22,1674,53,rodafowa +5450,22,1792,52,jamjams32 +5450,22,1792,52,mantisboy30 +5450,22,1792,52,uroboros9521 +5450,22,1792,52,vanvlaenderenp +5450,22,1792,52,verdenex +5450,22,1906,51,hockeyjones +5450,22,1906,51,sudsey2 +5450,22,1906,51,trk27 +5450,22,2053,50,mafiul +5450,22,2053,50,shirak77 +5450,22,2053,50,zamazingo_ +5450,22,2204,49,blueswan +5450,22,2204,49,hhentila +5450,22,2204,49,nikolas88 +5450,22,2204,49,ollaroche +5450,22,2351,48,arteusz +5450,22,2351,48,banaan666 +5450,22,2351,48,davidyokota +5450,22,2351,48,hireto +5450,22,2351,48,jozar +5450,22,2351,48,kapnkrunch +5450,22,2351,48,merlindumesnil +5450,22,2351,48,pishva +5450,22,2351,48,szundimaci +5450,22,2351,48,thornedo +5450,22,2555,47,colour wolf +5450,22,2555,47,dansj882 +5450,22,2555,47,defender390 +5450,22,2555,47,ghbell +5450,22,2555,47,jerry_kacmar +5450,22,2555,47,phil chesbro +5450,22,2555,47,robouwersloot +5450,22,2555,47,swordsp +5450,22,2758,46,almighty dave +5450,22,2758,46,anxi +5450,22,2758,46,bigd527 +5450,22,2758,46,enyome +5450,22,2758,46,meskue +5450,22,2758,46,nantonakos +5450,22,2758,46,relax +5450,22,2758,46,reolon1996 +5450,22,2758,46,retroalien +5450,22,2758,46,rew7 +5450,22,2758,46,samgrady_1 +5450,22,2969,45,cisnenegro +5450,22,2969,45,darador +5450,22,2969,45,incrediblv +5450,22,2969,45,joker1977 +5450,22,3216,44,alisttair +5450,22,3216,44,dopeski +5450,22,3216,44,grotone +5450,22,3216,44,hati +5450,22,3216,44,kasferatu +5450,22,3216,44,lakasha +5450,22,3216,44,mattbain31 +5450,22,3216,44,orangeblood +5450,22,3216,44,pr1metim3 +5450,22,3216,44,risktaker3 +5450,22,3216,44,schneau +5450,22,3216,44,somebodyatthedoor +5450,22,3216,44,treegrass +5450,22,3514,43,aedilis_bgg +5450,22,3514,43,aleo09 +5450,22,3514,43,boleh +5450,22,3514,43,bramblewalkers +5450,22,3514,43,briansarge25 +5450,22,3514,43,bulgarilla +5450,22,3514,43,drbobjack +5450,22,3514,43,e_x_y +5450,22,3514,43,elfuego1 +5450,22,3514,43,levininja +5450,22,3514,43,mggarofalo +5450,22,3514,43,peter loftus +5450,22,3514,43,stormynite88 +5450,22,3514,43,xander78 +5450,22,3815,42,aussie550 +5450,22,3815,42,broek2000 +5450,22,3815,42,cellardoor +5450,22,3815,42,dave8 +5450,22,3815,42,elodrioneldaris +5450,22,3815,42,elvissanabria +5450,22,3815,42,filliptoo +5450,22,3815,42,firedrake +5450,22,3815,42,jasly +5450,22,3815,42,jlrothe +5450,22,3815,42,kieffer +5450,22,3815,42,martyparty +5450,22,3815,42,svinkel +5450,22,3815,42,the prophet +5450,22,3815,42,xindon +5450,22,3815,42,znomorph +5450,22,4092,41,acon +5450,22,4092,41,artemono +5450,22,4092,41,barticus88 +5450,22,4092,41,bouttime +5450,22,4092,41,darkchilde +5450,22,4092,41,donathos +5450,22,4092,41,faqtotum +5450,22,4092,41,fulgeru99 +5450,22,4092,41,gamesgocrazy +5450,22,4092,41,gerambolosch +5450,22,4092,41,hoppalala +5450,22,4092,41,israperrillo +5450,22,4092,41,jdtyler7 +5450,22,4092,41,jgilmour +5450,22,4092,41,koert +5450,22,4092,41,llosef +5450,22,4092,41,mikejonez +5450,22,4092,41,orryp +5450,22,4092,41,rhombusleech +5450,22,4092,41,sanholo39 +5450,22,4426,40,alenen +5450,22,4426,40,armoredgear7 +5450,22,4426,40,badweasel +5450,22,4426,40,ben_bos +5450,22,4426,40,bloodyoleg +5450,22,4426,40,bulgerpaul +5450,22,4426,40,cptblaino +5450,22,4426,40,danigalaxy +5450,22,4426,40,djinnfoo +5450,22,4426,40,drlmiles +5450,22,4426,40,ecoplayer +5450,22,4426,40,ellino +5450,22,4426,40,fatboy1370 +5450,22,4426,40,fbouchart +5450,22,4426,40,ianrf +5450,22,4426,40,jonaskramer +5450,22,4426,40,lysynski +5450,22,4426,40,lyxhope +5450,22,4426,40,mjk1108 +5450,22,4426,40,pekuis +5450,22,4426,40,sandokanperez +5450,22,4426,40,sarix87 +5450,22,4426,40,shondoit +5450,22,4426,40,swimswithdolphins +5450,22,4426,40,tallgrant +5450,22,4426,40,tarrkid +5450,22,4426,40,trava +5450,22,4426,40,villainbynight +5450,22,4426,40,waxeater +5450,22,4782,39,autumnweave +5450,22,4782,39,boxer santaros +5450,22,4782,39,bultrom +5450,22,4782,39,butterbob +5450,22,4782,39,cooper10 +5450,22,4782,39,dagon1349 +5450,22,4782,39,darncz +5450,22,4782,39,dircvandelft +5450,22,4782,39,hyggeministeren +5450,22,4782,39,indy418 +5450,22,4782,39,jean27 +5450,22,4782,39,jedi nadiru radena +5450,22,4782,39,john14384 +5450,22,4782,39,justdebbie +5450,22,4782,39,kerrydvm +5450,22,4782,39,kingrob +5450,22,4782,39,kleric42 +5450,22,4782,39,klutzrick +5450,22,4782,39,lcslenk +5450,22,4782,39,lostdice +5450,22,4782,39,lugielord +5450,22,4782,39,macclellan +5450,22,4782,39,miszon +5450,22,4782,39,myllis +5450,22,4782,39,mzmzmz +5450,22,4782,39,neonmika +5450,22,4782,39,nevhir +5450,22,4782,39,nocto +5450,22,4782,39,okiedokie +5450,22,4782,39,orcoteuthis +5450,22,4782,39,polono +5450,22,4782,39,rlupino +5450,22,4782,39,rontuaru +5450,22,4782,39,thefe +5450,22,4782,39,zomerdromen +5450,22,5150,38,aj_800 +5450,22,5150,38,alan how +5450,22,5150,38,burzum +5450,22,5150,38,certaindeath +5450,22,5150,38,cindyfnb +5450,22,5150,38,cuskaira +5450,22,5150,38,dirk_diggler +5450,22,5150,38,doccabet +5450,22,5150,38,elwayfan2k +5450,22,5150,38,gramaw +5450,22,5150,38,helikoputtrik +5450,22,5150,38,hular +5450,22,5150,38,ignus +5450,22,5150,38,inclement +5450,22,5150,38,jatang +5450,22,5150,38,jb59 +5450,22,5150,38,joynips +5450,22,5150,38,kl12 +5450,22,5150,38,lost in games +5450,22,5150,38,mgsmith87 +5450,22,5150,38,michieldc +5450,22,5150,38,miketuna +5450,22,5150,38,mmtmr +5450,22,5150,38,mope88 +5450,22,5150,38,nleitere +5450,22,5150,38,omd56 +5450,22,5150,38,oscar bijvank +5450,22,5150,38,pluvia33 +5450,22,5150,38,quarashi +5450,22,5150,38,rangerrob +5450,22,5150,38,recoveringalphagamer +5450,22,5150,38,runtsta +5450,22,5150,38,sarahmaus +5450,22,5150,38,schmittrs +5450,22,5150,38,szary30 +5450,22,5150,38,timinycricket +5450,22,5150,38,zythal +5450,22,5624,37,airdog4evr +5450,22,5624,37,amberlord +5450,22,5624,37,andy_zoo +5450,22,5624,37,arkham2k2 +5450,22,5624,37,babynbeb +5450,22,5624,37,bjbute +5450,22,5624,37,bostrup +5450,22,5624,37,bucklen_uk +5450,22,5624,37,budkin +5450,22,5624,37,colehuston19 +5450,22,5624,37,deodand +5450,22,5624,37,desvergeh +5450,22,5624,37,droidik +5450,22,5624,37,eggr0ll +5450,22,5624,37,epsilon_balls +5450,22,5624,37,galfridus +5450,22,5624,37,gert12555 +5450,22,5624,37,greyrocks +5450,22,5624,37,grubb74 +5450,22,5624,37,gujoslav +5450,22,5624,37,helena_poprad +5450,22,5624,37,hiruma +5450,22,5624,37,hoplita blanco +5450,22,5624,37,houp +5450,22,5624,37,jordann +5450,22,5624,37,knalus +5450,22,5624,37,lockwinghong +5450,22,5624,37,madster +5450,22,5624,37,makarren +5450,22,5624,37,mangobeobep1138 +5450,22,5624,37,mark tattersall +5450,22,5624,37,mikereb +5450,22,5624,37,montrealmovil +5450,22,5624,37,pwoloszun +5450,22,5624,37,richme +5450,22,5624,37,rlennon +5450,22,5624,37,rudzielec +5450,22,5624,37,selfen +5450,22,5624,37,shell42970 +5450,22,5624,37,simat777 +5450,22,5624,37,skullgicien +5450,22,5624,37,slymathman +5450,22,5624,37,spiderwick +5450,22,5624,37,st_mcguire +5450,22,5624,37,swheelock +5450,22,5624,37,talae +5450,22,5624,37,thestuff83 +5450,22,5624,37,ursus corvus lapis +5450,22,5624,37,werty10 +5450,22,5624,37,xanthie +5450,22,5624,37,zolee +5450,22,6063,36,aeldaar +5450,22,6063,36,alfred64new +5450,22,6063,36,alzhere +5450,22,6063,36,artur271177 +5450,22,6063,36,asqz +5450,22,6063,36,bizmat +5450,22,6063,36,bobthewarrior +5450,22,6063,36,celdorad +5450,22,6063,36,corkysru +5450,22,6063,36,darigaaz1975 +5450,22,6063,36,darthrevan343 +5450,22,6063,36,debellefeuille +5450,22,6063,36,downblaw +5450,22,6063,36,ericthefed +5450,22,6063,36,fabiofiol +5450,22,6063,36,fernandovassoler +5450,22,6063,36,frahm +5450,22,6063,36,gary duke +5450,22,6063,36,ghiakoein +5450,22,6063,36,green machine +5450,22,6063,36,gregory156 +5450,22,6063,36,hamijales +5450,22,6063,36,issoleie +5450,22,6063,36,jim marshall +5450,22,6063,36,jocose +5450,22,6063,36,juanmvalero +5450,22,6063,36,kimdba +5450,22,6063,36,koinonia +5450,22,6063,36,korsheth +5450,22,6063,36,krusten +5450,22,6063,36,leoelcano +5450,22,6063,36,lonadar +5450,22,6063,36,lowengrin +5450,22,6063,36,mercury_sn +5450,22,6063,36,mikevande +5450,22,6063,36,mooghoo2 +5450,22,6063,36,oeolycus +5450,22,6063,36,otaaffe +5450,22,6063,36,paradoxx +5450,22,6063,36,raikoichi +5450,22,6063,36,ridel +5450,22,6063,36,s1mk1n +5450,22,6063,36,saloxi +5450,22,6063,36,sarahkelley +5450,22,6063,36,saslett +5450,22,6063,36,sky1ark +5450,22,6063,36,svenfu +5450,22,6063,36,tbraut +5450,22,6063,36,thefamilymeeple +5450,22,6063,36,thnikkaman +5450,22,6063,36,tmmaceira +5450,22,6063,36,toniblay +5450,22,6063,36,tonygarry +5450,22,6063,36,vncvr80 +5450,22,6063,36,wilderness bob +5450,22,6573,35,akared +5450,22,6573,35,alc4rin +5450,22,6573,35,anthony1098 +5450,22,6573,35,apostateant +5450,22,6573,35,asmor +5450,22,6573,35,bgronnie +5450,22,6573,35,biosludge +5450,22,6573,35,biz20100 +5450,22,6573,35,blueinohio +5450,22,6573,35,cfarrell +5450,22,6573,35,chimes +5450,22,6573,35,cwhiteway75 +5450,22,6573,35,dadofthemeeple +5450,22,6573,35,dixijo +5450,22,6573,35,dlikos +5450,22,6573,35,enemyoftheworld +5450,22,6573,35,gameruman +5450,22,6573,35,gamesjunkie +5450,22,6573,35,gandaina +5450,22,6573,35,ghudab +5450,22,6573,35,hall0115 +5450,22,6573,35,hoolyan +5450,22,6573,35,john_carson +5450,22,6573,35,jonb182 +5450,22,6573,35,jswinton +5450,22,6573,35,kerth +5450,22,6573,35,kortatu +5450,22,6573,35,kurt0 +5450,22,6573,35,linjgames +5450,22,6573,35,m4lk4v +5450,22,6573,35,maik +5450,22,6573,35,matthew1980 +5450,22,6573,35,morka +5450,22,6573,35,mrsmith00 +5450,22,6573,35,nickguay +5450,22,6573,35,pilord12 +5450,22,6573,35,poogoblin +5450,22,6573,35,rcjsuen +5450,22,6573,35,rivaben +5450,22,6573,35,rogamer +5450,22,6573,35,rroodri +5450,22,6573,35,scottmoo86 +5450,22,6573,35,sebahaus +5450,22,6573,35,sescalex +5450,22,6573,35,sherakan +5450,22,6573,35,sinuro +5450,22,6573,35,stefcioo1331 +5450,22,6573,35,tant3mach0 +5450,22,6573,35,theasley +5450,22,6573,35,walkie +5450,22,6573,35,waltersf +5450,22,6573,35,xiontawa +5450,22,6573,35,zabadar +5450,22,7100,34,a_flying_possum +5450,22,7100,34,akeane +5450,22,7100,34,altaon +5450,22,7100,34,alval +5450,22,7100,34,atwar +5450,22,7100,34,benc11 +5450,22,7100,34,berean +5450,22,7100,34,bgraves +5450,22,7100,34,blackseed +5450,22,7100,34,bogsan +5450,22,7100,34,br0ker +5450,22,7100,34,casaraeal +5450,22,7100,34,currie +5450,22,7100,34,deep silver +5450,22,7100,34,edfrew +5450,22,7100,34,edmundblackadder +5450,22,7100,34,greatredwarrior +5450,22,7100,34,jakumo +5450,22,7100,34,jamespashton +5450,22,7100,34,jesse_moore70 +5450,22,7100,34,jkach91 +5450,22,7100,34,johnvbennett +5450,22,7100,34,jonsparks +5450,22,7100,34,kurtsg +5450,22,7100,34,laiernie +5450,22,7100,34,ldpaulson +5450,22,7100,34,lonestar111 +5450,22,7100,34,luy242 +5450,22,7100,34,marlone +5450,22,7100,34,mathy +5450,22,7100,34,morgasms +5450,22,7100,34,mrcl_mtnez +5450,22,7100,34,nase +5450,22,7100,34,natx17 +5450,22,7100,34,ohmsweetohm +5450,22,7100,34,ongarato +5450,22,7100,34,oplprokop +5450,22,7100,34,papagamer72 +5450,22,7100,34,pastej +5450,22,7100,34,pepex82 +5450,22,7100,34,pero pambarasco +5450,22,7100,34,petrgasparik +5450,22,7100,34,propheticuser +5450,22,7100,34,quezzle +5450,22,7100,34,raskzac +5450,22,7100,34,seanp +5450,22,7100,34,sekipl +5450,22,7100,34,sensai_smakr +5450,22,7100,34,sgarry84 +5450,22,7100,34,siberianhusky +5450,22,7100,34,sidewynnder +5450,22,7100,34,sikahert +5450,22,7100,34,sposfan +5450,22,7100,34,tasdevil +5450,22,7100,34,tatsu +5450,22,7100,34,thefrizzyone +5450,22,7100,34,tomdog1977 +5450,22,7100,34,tracnik +5450,22,7100,34,trinkauble +5450,22,7100,34,uroboro +5450,22,7100,34,watchitpaintit +5450,22,7100,34,yuglooc +5450,22,7100,34,zachnagus +5450,22,7679,33,1000rpm +5450,22,7679,33,agarlock +5450,22,7679,33,ajpl +5450,22,7679,33,aladdinsane +5450,22,7679,33,alexlimol +5450,22,7679,33,alexs75 +5450,22,7679,33,asketes +5450,22,7679,33,bmhoman1 +5450,22,7679,33,bmun +5450,22,7679,33,cagriggs +5450,22,7679,33,case +5450,22,7679,33,cnidius +5450,22,7679,33,colcakes196 +5450,22,7679,33,cplayer99 +5450,22,7679,33,criticalmeeple +5450,22,7679,33,darcklord +5450,22,7679,33,davek +5450,22,7679,33,dbarbaglia +5450,22,7679,33,deawalker7000 +5450,22,7679,33,defdrago +5450,22,7679,33,dominator39 +5450,22,7679,33,domus_ludorum +5450,22,7679,33,drshadyvoid +5450,22,7679,33,efiedema +5450,22,7679,33,el parre de randi +5450,22,7679,33,fojtu +5450,22,7679,33,fredderoncq +5450,22,7679,33,gamer66 +5450,22,7679,33,grrrr +5450,22,7679,33,h4t4k3 +5450,22,7679,33,iftut +5450,22,7679,33,inga +5450,22,7679,33,ironmann +5450,22,7679,33,janos_hunyadi +5450,22,7679,33,jareck80 +5450,22,7679,33,jeff_b +5450,22,7679,33,jeffrey_a_meunier +5450,22,7679,33,jeremywinters +5450,22,7679,33,jill e gamer +5450,22,7679,33,jimcohen +5450,22,7679,33,kenbroman +5450,22,7679,33,lasttruegypsy +5450,22,7679,33,librarianchef +5450,22,7679,33,maerchen +5450,22,7679,33,martang +5450,22,7679,33,maxlongstreet +5450,22,7679,33,mctom +5450,22,7679,33,meewarwoowoo +5450,22,7679,33,noursy +5450,22,7679,33,noviomagus +5450,22,7679,33,oasis +5450,22,7679,33,omakhlaichuk +5450,22,7679,33,orion4242 +5450,22,7679,33,patafta +5450,22,7679,33,pixielou85 +5450,22,7679,33,plaidpants +5450,22,7679,33,postm +5450,22,7679,33,punryk +5450,22,7679,33,rasmusnicolaj +5450,22,7679,33,reciclerishu +5450,22,7679,33,rogeramberg +5450,22,7679,33,runnerpaul +5450,22,7679,33,schlafmuetze +5450,22,7679,33,sharporanges +5450,22,7679,33,shinn_s +5450,22,7679,33,slanesh +5450,22,7679,33,soup_of_pants +5450,22,7679,33,staihc +5450,22,7679,33,strangecolours +5450,22,7679,33,superdevil +5450,22,7679,33,tobyshaw +5450,22,7679,33,tomasotwo +5450,22,7679,33,tomson404 +5450,22,7679,33,toniolamachine +5450,22,7679,33,tovatoy +5450,22,7679,33,trueknight64 +5450,22,7679,33,turtleback +5450,22,7679,33,unclepapa +5450,22,7679,33,unholy frog +5450,22,7679,33,vardamir +5450,22,7679,33,wrangler66 +5450,22,7679,33,zacrulo +5450,22,8351,32,4colorkyle +5450,22,8351,32,80sgirl +5450,22,8351,32,ademmers +5450,22,8351,32,alex7foxtrott +5450,22,8351,32,alex_v +5450,22,8351,32,alexankh +5450,22,8351,32,arnaldo +5450,22,8351,32,bcwhite27 +5450,22,8351,32,bennytoo +5450,22,8351,32,bigbrenski84 +5450,22,8351,32,bzdafka +5450,22,8351,32,c_cheung +5450,22,8351,32,cerinola17 +5450,22,8351,32,chiefpezhead +5450,22,8351,32,chrzanek007 +5450,22,8351,32,clownpl +5450,22,8351,32,comatose_turtle +5450,22,8351,32,cris182 +5450,22,8351,32,darthhh +5450,22,8351,32,deeinmi +5450,22,8351,32,dennis murray +5450,22,8351,32,dieterbourgois +5450,22,8351,32,dmarsh1989 +5450,22,8351,32,dodgeball +5450,22,8351,32,donovanloucks +5450,22,8351,32,dotmrt +5450,22,8351,32,dragonstear +5450,22,8351,32,dunyazad +5450,22,8351,32,elgo +5450,22,8351,32,enumahelish +5450,22,8351,32,evancheah +5450,22,8351,32,gandolfini +5450,22,8351,32,gilvanblight +5450,22,8351,32,gomoriki +5450,22,8351,32,goro80 +5450,22,8351,32,gregos +5450,22,8351,32,harveyson99 +5450,22,8351,32,insaneskitso +5450,22,8351,32,jag_girl +5450,22,8351,32,johnwthomas +5450,22,8351,32,josemorales +5450,22,8351,32,kamperx +5450,22,8351,32,keraptis +5450,22,8351,32,khaox +5450,22,8351,32,lionalth +5450,22,8351,32,loubrave +5450,22,8351,32,maartenlogghe +5450,22,8351,32,malucog +5450,22,8351,32,manonv +5450,22,8351,32,manserfamily +5450,22,8351,32,mantler +5450,22,8351,32,mart97829 +5450,22,8351,32,matthiske +5450,22,8351,32,mikyoungen +5450,22,8351,32,mrears +5450,22,8351,32,nathardicus +5450,22,8351,32,niblum +5450,22,8351,32,palermofobia +5450,22,8351,32,pantagrool +5450,22,8351,32,phyrexian +5450,22,8351,32,pinkviini +5450,22,8351,32,pip count 167 +5450,22,8351,32,plauschler +5450,22,8351,32,polyphon +5450,22,8351,32,pretzel76 +5450,22,8351,32,psyduck54 +5450,22,8351,32,ravenhoe +5450,22,8351,32,rickkeuler +5450,22,8351,32,ryanjohnpeterson +5450,22,8351,32,sagremor +5450,22,8351,32,sagrilarus +5450,22,8351,32,santainquisicion +5450,22,8351,32,sennaho +5450,22,8351,32,stereopanda1985 +5450,22,8351,32,stony +5450,22,8351,32,superchargedgts +5450,22,8351,32,teacherboy +5450,22,8351,32,tedesuko +5450,22,8351,32,thechyper +5450,22,8351,32,thestuza +5450,22,8351,32,thoscha2002 +5450,22,8351,32,toucana +5450,22,8351,32,wondercinz +5450,22,8351,32,yuzjannowitz +5450,22,9086,31,144creations +5450,22,9086,31,aaronm +5450,22,9086,31,amcgavisk +5450,22,9086,31,animal82 +5450,22,9086,31,aphex28 +5450,22,9086,31,atlasrc +5450,22,9086,31,atm2727 +5450,22,9086,31,beardyman +5450,22,9086,31,bertuj +5450,22,9086,31,bicholescano +5450,22,9086,31,blues2019 +5450,22,9086,31,brandysta +5450,22,9086,31,c0ookiee +5450,22,9086,31,c0rrales +5450,22,9086,31,chigatterun +5450,22,9086,31,citylife +5450,22,9086,31,coffeegeek1023 +5450,22,9086,31,coffindancr +5450,22,9086,31,cokoladka +5450,22,9086,31,danielakaevi +5450,22,9086,31,dar_ling +5450,22,9086,31,davymast +5450,22,9086,31,ddentertainment +5450,22,9086,31,deathwarden +5450,22,9086,31,digzter +5450,22,9086,31,dirtball +5450,22,9086,31,dogbomb +5450,22,9086,31,dsant +5450,22,9086,31,duncanvalley +5450,22,9086,31,frikiguias +5450,22,9086,31,furan +5450,22,9086,31,gambitt +5450,22,9086,31,gaminghippo +5450,22,9086,31,gjjaros +5450,22,9086,31,grant l +5450,22,9086,31,hanover phist +5450,22,9086,31,haplo92 +5450,22,9086,31,iheartmuseums +5450,22,9086,31,imanumber +5450,22,9086,31,issaissa +5450,22,9086,31,jason dewitt +5450,22,9086,31,jazzpape +5450,22,9086,31,jgag +5450,22,9086,31,josiane1980 +5450,22,9086,31,jsanchez5 +5450,22,9086,31,juliusan +5450,22,9086,31,k85enz +5450,22,9086,31,kikasin +5450,22,9086,31,klaytonz +5450,22,9086,31,lhapka +5450,22,9086,31,llyranor +5450,22,9086,31,lode +5450,22,9086,31,lotrfreak855 +5450,22,9086,31,mad scientist +5450,22,9086,31,maillekeul +5450,22,9086,31,master margarita +5450,22,9086,31,mathkat +5450,22,9086,31,mcmgm_bgg +5450,22,9086,31,membrillo +5450,22,9086,31,milos +5450,22,9086,31,monto94 +5450,22,9086,31,mrbrownesquire +5450,22,9086,31,murdockus +5450,22,9086,31,nhnatiuk +5450,22,9086,31,ocularsnipe +5450,22,9086,31,one_maniac +5450,22,9086,31,patisneat +5450,22,9086,31,proudgeekdad +5450,22,9086,31,ranger falke +5450,22,9086,31,rett_brone +5450,22,9086,31,rfeldster +5450,22,9086,31,risk2003ad +5450,22,9086,31,rogaldorn +5450,22,9086,31,saawks +5450,22,9086,31,sendar21 +5450,22,9086,31,slegolace +5450,22,9086,31,smandero +5450,22,9086,31,streex +5450,22,9086,31,taijijohn +5450,22,9086,31,teaknut +5450,22,9086,31,tonythelyon +5450,22,9086,31,trialbyyury +5450,22,9086,31,vidocq81 +5450,22,9086,31,wachtel +5450,22,9086,31,webkoala +5450,22,9086,31,wolverine222 +5450,22,9086,31,zkboy +5450,22,9910,30,aelf +5450,22,9910,30,arrakis66 +5450,22,9910,30,bilbotheplayer +5450,22,9910,30,bonzolo +5450,22,9910,30,cachi +5450,22,9910,30,comizar +5450,22,9910,30,cvega +5450,22,9910,30,danieldukai +5450,22,9910,30,davod +5450,22,9910,30,deanit +5450,22,9910,30,djeboer +5450,22,9910,30,dr alchemy +5450,22,9910,30,drjellyfish +5450,22,9910,30,dtroy_de_rapcore +5450,22,9910,30,ecdpt +5450,22,9910,30,egonpys +5450,22,9910,30,foilflaws +5450,22,9910,30,galexywitch +5450,22,9910,30,ginsbu +5450,22,9910,30,graufuchs +5450,22,9910,30,greyrooms +5450,22,9910,30,harun +5450,22,9910,30,haze kalasa +5450,22,9910,30,herreraeduardo +5450,22,9910,30,ilovewhippets +5450,22,9910,30,jaipur +5450,22,9910,30,jak23xf +5450,22,9910,30,jbaileymusic +5450,22,9910,30,joexadrez +5450,22,9910,30,judit66 +5450,22,9910,30,kakawette +5450,22,9910,30,kloddan +5450,22,9910,30,largando +5450,22,9910,30,lezer +5450,22,9910,30,matesack +5450,22,9910,30,miguelon77 +5450,22,9910,30,misiolak +5450,22,9910,30,mohamads +5450,22,9910,30,montivius +5450,22,9910,30,musicalhorse2 +5450,22,9910,30,norsemanlee +5450,22,9910,30,nuka +5450,22,9910,30,onenatv +5450,22,9910,30,patous +5450,22,9910,30,pboivin +5450,22,9910,30,pietlavens +5450,22,9910,30,pulinski +5450,22,9910,30,rixte +5450,22,9910,30,rjstandifer +5450,22,9910,30,schninkel1712 +5450,22,9910,30,sepultor +5450,22,9910,30,shadow dragon +5450,22,9910,30,spieldichein +5450,22,9910,30,subtlyartistic +5450,22,9910,30,sunnyjessand rob +5450,22,9910,30,tapse +5450,22,9910,30,tawny +5450,22,9910,30,termigator +5450,22,9910,30,teufen +5450,22,9910,30,the nomad +5450,22,9910,30,tillmas +5450,22,9910,30,timbovelander +5450,22,9910,30,tirupiru +5450,22,9910,30,tmykkanen +5450,22,9910,30,toshi3000 +5450,22,9910,30,travellingmatti +5450,22,9910,30,treunes +5450,22,9910,30,wamsp +5450,22,9910,30,weregrrl +5450,22,9910,30,wolrum +5450,22,9910,30,yvesiezi +5450,22,10868,29,aypexa +5450,22,10868,29,bartololeo +5450,22,10868,29,beuck +5450,22,10868,29,borisyankov +5450,22,10868,29,bortmonkey +5450,22,10868,29,brad77 +5450,22,10868,29,catnthehat +5450,22,10868,29,cdarlage +5450,22,10868,29,dahuke +5450,22,10868,29,darkangel2019 +5450,22,10868,29,djwoodelf +5450,22,10868,29,drumadi +5450,22,10868,29,dumas13 +5450,22,10868,29,eatshootsandleafs +5450,22,10868,29,fabri77soa +5450,22,10868,29,foamheart +5450,22,10868,29,georgezzzz +5450,22,10868,29,godzillian +5450,22,10868,29,gufotriste +5450,22,10868,29,hemlockwp +5450,22,10868,29,iheartrains +5450,22,10868,29,ikonnnn +5450,22,10868,29,jimmy_sto +5450,22,10868,29,jonvs +5450,22,10868,29,karko puga +5450,22,10868,29,lightbenderfm +5450,22,10868,29,liquidessa +5450,22,10868,29,littlegerm +5450,22,10868,29,loquaciousmonk +5450,22,10868,29,lorthania +5450,22,10868,29,martinlamotheqc +5450,22,10868,29,matenason +5450,22,10868,29,mattimalinen +5450,22,10868,29,moosemcd +5450,22,10868,29,mrborges +5450,22,10868,29,nimsarn +5450,22,10868,29,ojaidave +5450,22,10868,29,pangean +5450,22,10868,29,petruzzelli +5450,22,10868,29,petukker +5450,22,10868,29,prismatica +5450,22,10868,29,rokombatente +5450,22,10868,29,smachor +5450,22,10868,29,snorman +5450,22,10868,29,squarepegsys +5450,22,10868,29,sunlight +5450,22,10868,29,sunnyd +5450,22,10868,29,swoodsoh +5450,22,10868,29,uncle bouncy +5450,22,10868,29,zwinky +5450,22,11831,28,anrei +5450,22,11831,28,arcanas +5450,22,11831,28,benjaminwilfred +5450,22,11831,28,bigmik1 +5450,22,11831,28,caddar +5450,22,11831,28,caesarv +5450,22,11831,28,cthulhukid +5450,22,11831,28,duffy2311 +5450,22,11831,28,evilninjazombie +5450,22,11831,28,gecko3d +5450,22,11831,28,jdozs +5450,22,11831,28,jim knopf +5450,22,11831,28,joey5513 +5450,22,11831,28,juegocondriacos +5450,22,11831,28,killerjoe1962 +5450,22,11831,28,lady mondegreen +5450,22,11831,28,malerris +5450,22,11831,28,markmc21 +5450,22,11831,28,martat +5450,22,11831,28,meepleleaf +5450,22,11831,28,mjeanson +5450,22,11831,28,mpmeeples +5450,22,11831,28,petah86 +5450,22,11831,28,petelxl +5450,22,11831,28,retrophile04 +5450,22,11831,28,saar +5450,22,11831,28,sckellis +5450,22,11831,28,serwito +5450,22,11831,28,sheilainsr +5450,22,11831,28,stacie_everdell +5450,22,11831,28,turin14 +5450,22,11831,28,valecalab +5450,22,11831,28,vert +5450,22,12910,27,apkendrick +5450,22,12910,27,happyd2 +5450,22,12910,27,mj1640 +5450,22,12910,27,modboy +5450,22,12910,27,mpetey +5450,22,12910,27,murkxsi +5450,22,12910,27,opal82 +5450,22,12910,27,patient0 +5450,22,12910,27,regulus +5450,22,12910,27,steveretka +5450,22,12910,27,telomander games +5450,22,12910,27,wisemel +5450,22,12910,27,wroobelmarcin1981 +5450,22,12910,27,yendi57 +5450,22,14030,26,docgoatboy +5450,22,14030,26,nafisnafis +5450,22,14030,26,tentaculo_purpura +5450,22,14030,26,xodroolis +5450,22,15326,25,anitagre +5450,22,15326,25,lordbalder +6351,21,30,151,ragnarok1er +6351,21,209,89,flip0104 +6351,21,318,80,joel4000 +6351,21,361,77,moonpie13 +6351,21,438,74,moly19 +6351,21,559,70,stevie3011 +6351,21,652,67,jason rider +6351,21,696,66,jesdickens +6351,21,970,61,bobdodgerblue +6351,21,1034,60,nebyeh +6351,21,1109,59,nzardoshti +6351,21,1202,58,tinger1996 +6351,21,1276,57,rstites25 +6351,21,1362,56,marklondon1 +6351,21,1362,56,michealnottingham +6351,21,1362,56,thestas +6351,21,1362,56,wheatie +6351,21,1459,55,ddavewittmann +6351,21,1459,55,gwfalcon +6351,21,1459,55,jopo +6351,21,1568,54,dragonagb +6351,21,1568,54,zedsdead +6351,21,1674,53,flamaster444 +6351,21,1674,53,grecorivera +6351,21,1792,52,dkarpoj +6351,21,1906,51,splatteredbits +6351,21,2053,50,dmn1414 +6351,21,2053,50,seeds34 +6351,21,2053,50,ziziros +6351,21,2204,49,conan7631 +6351,21,2204,49,ercumaglor +6351,21,2204,49,klaron +6351,21,2351,48,frunkee +6351,21,2351,48,hb03 +6351,21,2351,48,jonconnington +6351,21,2351,48,kenyeresg566 +6351,21,2351,48,maeve_1981 +6351,21,2351,48,maka power +6351,21,2351,48,preclo +6351,21,2555,47,angelgabriel +6351,21,2555,47,beerandpretzel +6351,21,2555,47,haslo +6351,21,2555,47,kleim +6351,21,2555,47,merfia +6351,21,2555,47,nactra +6351,21,2555,47,neonelephant +6351,21,2555,47,onesiphorus +6351,21,2555,47,orski +6351,21,2555,47,ruppt +6351,21,2555,47,stein +6351,21,2555,47,stewartcc +6351,21,2758,46,chritter +6351,21,2758,46,erniepaul +6351,21,2758,46,eugen_wow +6351,21,2758,46,genji256 +6351,21,2758,46,ghopper21 +6351,21,2758,46,rustyshack86 +6351,21,2758,46,scuff +6351,21,2758,46,skasian +6351,21,2758,46,zd00 +6351,21,2969,45,mustawuffi +6351,21,2969,45,noelgames +6351,21,2969,45,onlyred13 +6351,21,2969,45,seen +6351,21,2969,45,theclergy +6351,21,2969,45,wedgeex +6351,21,2969,45,zielonykrolik22 +6351,21,3216,44,barbatus +6351,21,3216,44,cane +6351,21,3216,44,fredi der elch +6351,21,3216,44,kalina123 +6351,21,3216,44,krzychus +6351,21,3216,44,macgruff +6351,21,3216,44,majorpsycho +6351,21,3216,44,radulla +6351,21,3216,44,richter5 +6351,21,3216,44,tehuan +6351,21,3216,44,thomlex +6351,21,3216,44,throglok +6351,21,3216,44,topherbear +6351,21,3514,43,1aspielerin +6351,21,3514,43,badmaddog +6351,21,3514,43,cenagal +6351,21,3514,43,darth bobby +6351,21,3514,43,frankicetom +6351,21,3514,43,kewelinho +6351,21,3514,43,menua +6351,21,3514,43,mib 8686 +6351,21,3514,43,mwelsh1118 +6351,21,3514,43,xsuperiorx +6351,21,3815,42,bombanat +6351,21,3815,42,cjacques +6351,21,3815,42,danman44 +6351,21,3815,42,delewobmesid +6351,21,3815,42,diminuendo +6351,21,3815,42,evil doctor t +6351,21,3815,42,expectral +6351,21,3815,42,folko +6351,21,3815,42,frankthetank0330 +6351,21,3815,42,lebigot +6351,21,3815,42,lostfanatic6 +6351,21,3815,42,natetgreat +6351,21,3815,42,not2night +6351,21,3815,42,ohmyscience +6351,21,3815,42,remo +6351,21,3815,42,seth_maddock +6351,21,3815,42,taronga +6351,21,3815,42,wisegy84 +6351,21,3815,42,wojo +6351,21,3815,42,yiyeru +6351,21,4092,41,coffeenmusic +6351,21,4092,41,darquil +6351,21,4092,41,drdougnd +6351,21,4092,41,einswine +6351,21,4092,41,gorntc +6351,21,4092,41,ironvulture +6351,21,4092,41,mikeboyd79 +6351,21,4092,41,mild seven +6351,21,4092,41,oscar38hos +6351,21,4092,41,phurley +6351,21,4092,41,rallanking +6351,21,4092,41,roskomante +6351,21,4092,41,rstott24 +6351,21,4092,41,snoweel +6351,21,4092,41,sungarden3 +6351,21,4092,41,theorange +6351,21,4092,41,tiril +6351,21,4092,41,zachbaudoin09 +6351,21,4426,40,_sly_ +6351,21,4426,40,agamon +6351,21,4426,40,davesack +6351,21,4426,40,dwarf_samurai +6351,21,4426,40,galaey +6351,21,4426,40,galow +6351,21,4426,40,geekpunkt +6351,21,4426,40,henkie72 +6351,21,4426,40,invicta bricks +6351,21,4426,40,malacoda +6351,21,4426,40,parabolian +6351,21,4426,40,profion +6351,21,4426,40,roguegamer +6351,21,4426,40,tanakor +6351,21,4426,40,the dukemeister +6351,21,4426,40,tiwaztyrsfist +6351,21,4426,40,trud +6351,21,4426,40,uncledragon +6351,21,4426,40,voidstate +6351,21,4426,40,wanderer12 +6351,21,4426,40,warrioral68 +6351,21,4426,40,wuher44 +6351,21,4426,40,zarinficklin +6351,21,4782,39,airmanfitz +6351,21,4782,39,benjow +6351,21,4782,39,bigmex75 +6351,21,4782,39,bremerjung +6351,21,4782,39,chrisbender +6351,21,4782,39,cicerunner +6351,21,4782,39,coolmew +6351,21,4782,39,empressjess +6351,21,4782,39,estornudo +6351,21,4782,39,goonz1022 +6351,21,4782,39,jd220 +6351,21,4782,39,jensarne +6351,21,4782,39,jlucas85 +6351,21,4782,39,kysh1980 +6351,21,4782,39,landru +6351,21,4782,39,le canard fou +6351,21,4782,39,locu +6351,21,4782,39,mondai +6351,21,4782,39,mwknowles +6351,21,4782,39,olfin7 +6351,21,4782,39,pancho +6351,21,4782,39,poetic42 +6351,21,4782,39,rickipresta +6351,21,4782,39,rvoisin +6351,21,4782,39,sdcfan87 +6351,21,4782,39,silver fang +6351,21,4782,39,tar heel +6351,21,4782,39,turkeyguy +6351,21,4782,39,valsim +6351,21,4782,39,wildhorn +6351,21,4782,39,wmelnick +6351,21,5150,38,alexxii0066 +6351,21,5150,38,andre_fcl +6351,21,5150,38,arbuthnot +6351,21,5150,38,areknia +6351,21,5150,38,astinhu +6351,21,5150,38,bbrik +6351,21,5150,38,braino +6351,21,5150,38,catinabox +6351,21,5150,38,dimious200 +6351,21,5150,38,dmart +6351,21,5150,38,ed_209 +6351,21,5150,38,emoryology +6351,21,5150,38,ernesto z +6351,21,5150,38,gamercoma +6351,21,5150,38,gemseo +6351,21,5150,38,glenartrock +6351,21,5150,38,grdavies +6351,21,5150,38,jasperz +6351,21,5150,38,jjdelanoche +6351,21,5150,38,justscott +6351,21,5150,38,karatekid80 +6351,21,5150,38,kikipowa +6351,21,5150,38,lynfield +6351,21,5150,38,muminus77 +6351,21,5150,38,mungers +6351,21,5150,38,nirvana_7 +6351,21,5150,38,oriolcr +6351,21,5150,38,qaiden +6351,21,5150,38,ratpfink +6351,21,5150,38,raycross +6351,21,5150,38,say_yoho +6351,21,5150,38,snowraven67 +6351,21,5150,38,solidoak +6351,21,5150,38,studset +6351,21,5150,38,supermanvungtau +6351,21,5150,38,the_lonewolf +6351,21,5150,38,theercs +6351,21,5150,38,toblakai +6351,21,5150,38,wigdogger +6351,21,5150,38,xavilongo +6351,21,5624,37,admiralsnackbar +6351,21,5624,37,aftan +6351,21,5624,37,andalusien84 +6351,21,5624,37,anna2001 +6351,21,5624,37,boardy81 +6351,21,5624,37,cefka +6351,21,5624,37,charcoman +6351,21,5624,37,dan johansson +6351,21,5624,37,darkwing75 +6351,21,5624,37,drengubiak +6351,21,5624,37,endou_kenji +6351,21,5624,37,erwinner +6351,21,5624,37,gildwin +6351,21,5624,37,hurricanej +6351,21,5624,37,jowjow +6351,21,5624,37,karden +6351,21,5624,37,loganholman +6351,21,5624,37,matango +6351,21,5624,37,mccin +6351,21,5624,37,mig1 +6351,21,5624,37,narrak +6351,21,5624,37,ncbalu +6351,21,5624,37,nhjelmberg +6351,21,5624,37,nicholas m +6351,21,5624,37,pinxterenm +6351,21,5624,37,skolta +6351,21,5624,37,solvar +6351,21,5624,37,st1cks +6351,21,5624,37,superteej +6351,21,5624,37,thanselm +6351,21,5624,37,unwiseowl +6351,21,5624,37,vinnycent217 +6351,21,5624,37,vtdchi +6351,21,6063,36,acgalaga +6351,21,6063,36,afrikaner +6351,21,6063,36,amishburrito +6351,21,6063,36,amitche1 +6351,21,6063,36,arasq +6351,21,6063,36,arzaphan +6351,21,6063,36,ashlar +6351,21,6063,36,baldwin +6351,21,6063,36,bcweinitzen +6351,21,6063,36,bluef0x +6351,21,6063,36,choubi +6351,21,6063,36,chrisisokay +6351,21,6063,36,detoije +6351,21,6063,36,doctorhonow +6351,21,6063,36,eddard_stark +6351,21,6063,36,foo dog +6351,21,6063,36,garysax +6351,21,6063,36,gorbash722 +6351,21,6063,36,herid +6351,21,6063,36,iambfg +6351,21,6063,36,iamcmc +6351,21,6063,36,ifurita12 +6351,21,6063,36,jan magnus +6351,21,6063,36,jojobinks +6351,21,6063,36,kandang +6351,21,6063,36,kelavam +6351,21,6063,36,kilkeny +6351,21,6063,36,kinggamer1 +6351,21,6063,36,kostiaspb +6351,21,6063,36,lamaisondesbois +6351,21,6063,36,laranjo +6351,21,6063,36,larkspurln +6351,21,6063,36,lazychung777 +6351,21,6063,36,letterman +6351,21,6063,36,misplacedworker +6351,21,6063,36,mjarient +6351,21,6063,36,nenva +6351,21,6063,36,ni_se +6351,21,6063,36,pickpocket79 +6351,21,6063,36,playingwithhoney +6351,21,6063,36,rabbit22489 +6351,21,6063,36,redstickredsox +6351,21,6063,36,revtiedye +6351,21,6063,36,rilzchen +6351,21,6063,36,slider53120 +6351,21,6063,36,slimjack +6351,21,6063,36,stevemould +6351,21,6063,36,tanka91 +6351,21,6063,36,tergene +6351,21,6063,36,trochosa ruricola +6351,21,6063,36,vk1980 +6351,21,6063,36,xlyce +6351,21,6063,36,xylotuba +6351,21,6573,35,alexthebanks +6351,21,6573,35,bartl0001 +6351,21,6573,35,bomberah +6351,21,6573,35,capovonderband +6351,21,6573,35,cjcalogero +6351,21,6573,35,cmstewart42 +6351,21,6573,35,craignation +6351,21,6573,35,danicha +6351,21,6573,35,decnet76 +6351,21,6573,35,dez1971 +6351,21,6573,35,disenor +6351,21,6573,35,dukeofankh +6351,21,6573,35,edanielsen +6351,21,6573,35,elmoooo +6351,21,6573,35,francesco1982 +6351,21,6573,35,frenchy1212 +6351,21,6573,35,gelatinous goo +6351,21,6573,35,hinotori +6351,21,6573,35,isthar +6351,21,6573,35,joe miner +6351,21,6573,35,john_massie +6351,21,6573,35,jored +6351,21,6573,35,jwgeist00 +6351,21,6573,35,kuririnrevelation +6351,21,6573,35,kuzai +6351,21,6573,35,kyle smith +6351,21,6573,35,larz77 +6351,21,6573,35,legam +6351,21,6573,35,leo-t +6351,21,6573,35,lordp +6351,21,6573,35,lotrfan1976 +6351,21,6573,35,mcdiarmid +6351,21,6573,35,mdancer123 +6351,21,6573,35,molitor4 +6351,21,6573,35,mrpolluelo +6351,21,6573,35,mscrivner +6351,21,6573,35,newsignmum +6351,21,6573,35,otteydw +6351,21,6573,35,planar +6351,21,6573,35,playzone333 +6351,21,6573,35,rolle +6351,21,6573,35,rpatel2696 +6351,21,6573,35,skasnik +6351,21,6573,35,stewartgraham +6351,21,6573,35,thth +6351,21,6573,35,tilmost +6351,21,6573,35,vgez +6351,21,6573,35,warrior_ctba +6351,21,6573,35,whynot66 +6351,21,6573,35,windstrider +6351,21,6573,35,xyko +6351,21,7100,34,210pasadena +6351,21,7100,34,abelcomeon83 +6351,21,7100,34,adoration +6351,21,7100,34,amachno +6351,21,7100,34,anomander64 +6351,21,7100,34,arnar146 +6351,21,7100,34,banz +6351,21,7100,34,billymoustache +6351,21,7100,34,bjstover +6351,21,7100,34,carmilla +6351,21,7100,34,chrizzlymelo +6351,21,7100,34,cjv5 +6351,21,7100,34,cmosley +6351,21,7100,34,dakendi +6351,21,7100,34,dakturak +6351,21,7100,34,danieldose +6351,21,7100,34,discoverthemeeple +6351,21,7100,34,domcardona +6351,21,7100,34,dukefanblue2005 +6351,21,7100,34,elputovader +6351,21,7100,34,f4r_mastermind +6351,21,7100,34,fabricefab +6351,21,7100,34,fluidgmx +6351,21,7100,34,gorta +6351,21,7100,34,greynomad38 +6351,21,7100,34,haras +6351,21,7100,34,idea82 +6351,21,7100,34,jotarp +6351,21,7100,34,kamiko +6351,21,7100,34,kevin youells +6351,21,7100,34,kheiron +6351,21,7100,34,lkersting +6351,21,7100,34,louiscyphre +6351,21,7100,34,madkingbart +6351,21,7100,34,magwizz +6351,21,7100,34,mainman9 +6351,21,7100,34,metroidsammy9 +6351,21,7100,34,mr_odd13579 +6351,21,7100,34,nboster +6351,21,7100,34,oceanodeuegos +6351,21,7100,34,orsobz +6351,21,7100,34,panterasam +6351,21,7100,34,pascal_ +6351,21,7100,34,pfahl +6351,21,7100,34,picon +6351,21,7100,34,pizza the hutt +6351,21,7100,34,ragamuffin jojo +6351,21,7100,34,revolutiontech +6351,21,7100,34,rhcorvin +6351,21,7100,34,rodrahmati +6351,21,7100,34,sailsa +6351,21,7100,34,saimar +6351,21,7100,34,scapemage +6351,21,7100,34,scoobyben +6351,21,7100,34,serneum +6351,21,7100,34,shinner +6351,21,7100,34,sleethill rowdie +6351,21,7100,34,tgrfox +6351,21,7100,34,thebraindrainer +6351,21,7100,34,tienlebo +6351,21,7100,34,velerad +6351,21,7100,34,veraatjeh +6351,21,7100,34,vichok +6351,21,7100,34,vinces +6351,21,7100,34,whisperin_al +6351,21,7100,34,wolfbold +6351,21,7100,34,zenxacred +6351,21,7679,33,abweins +6351,21,7679,33,accessible duke +6351,21,7679,33,agkorson +6351,21,7679,33,alphasyndrome +6351,21,7679,33,andywinn76 +6351,21,7679,33,apscott +6351,21,7679,33,asunday +6351,21,7679,33,asutbone +6351,21,7679,33,ben utzer +6351,21,7679,33,benex +6351,21,7679,33,bergil +6351,21,7679,33,bergonzini +6351,21,7679,33,bolo7 +6351,21,7679,33,camouflage +6351,21,7679,33,canadianhammer +6351,21,7679,33,cbyte +6351,21,7679,33,cervantez +6351,21,7679,33,clamjamfry +6351,21,7679,33,cole wehrle +6351,21,7679,33,cyrus1981 +6351,21,7679,33,ddrorangeman +6351,21,7679,33,dinoman73 +6351,21,7679,33,diziet_sma +6351,21,7679,33,dpapinea +6351,21,7679,33,drugo81 +6351,21,7679,33,dubblemeeple +6351,21,7679,33,ebolajosh +6351,21,7679,33,el_tonio +6351,21,7679,33,el_ultimo +6351,21,7679,33,faolain +6351,21,7679,33,flabbergasted +6351,21,7679,33,fmmhide +6351,21,7679,33,freelunch +6351,21,7679,33,fretless1962 +6351,21,7679,33,gianlucadario87 +6351,21,7679,33,gkikola +6351,21,7679,33,gorgue +6351,21,7679,33,grandpawizard +6351,21,7679,33,gregame +6351,21,7679,33,harkonnen13 +6351,21,7679,33,hosehead +6351,21,7679,33,irene l +6351,21,7679,33,j0ran +6351,21,7679,33,jakob1983 +6351,21,7679,33,jaredkass +6351,21,7679,33,jaybee61 +6351,21,7679,33,jk75 +6351,21,7679,33,js baddeley42 +6351,21,7679,33,jumoretti +6351,21,7679,33,k2outside +6351,21,7679,33,kaiowas05 +6351,21,7679,33,kazmadan +6351,21,7679,33,krafty1 +6351,21,7679,33,kugelmizelle +6351,21,7679,33,loira +6351,21,7679,33,lottafre +6351,21,7679,33,malicious compliance +6351,21,7679,33,margrabius +6351,21,7679,33,mathicafael +6351,21,7679,33,mattromo +6351,21,7679,33,mejv +6351,21,7679,33,miguel_fernan +6351,21,7679,33,mistrz_yon +6351,21,7679,33,mock family +6351,21,7679,33,mufasa_92 +6351,21,7679,33,nevermore52 +6351,21,7679,33,nicknack +6351,21,7679,33,oceano +6351,21,7679,33,p3t3 th3 h3at +6351,21,7679,33,pieterschutz +6351,21,7679,33,piotrkacperski +6351,21,7679,33,ppglaf +6351,21,7679,33,punyetix +6351,21,7679,33,rctf79 +6351,21,7679,33,reuner +6351,21,7679,33,rostislav +6351,21,7679,33,scofield +6351,21,7679,33,scossa +6351,21,7679,33,seqcon +6351,21,7679,33,shinyfirefly +6351,21,7679,33,skelebone +6351,21,7679,33,sneakingfart +6351,21,7679,33,stryder1965 +6351,21,7679,33,suzanne24 +6351,21,7679,33,taahaag +6351,21,7679,33,tainio +6351,21,7679,33,thiago_ferraz +6351,21,7679,33,throttle +6351,21,7679,33,timstellmach +6351,21,7679,33,titonuma +6351,21,7679,33,tkpope +6351,21,7679,33,tman4338 +6351,21,7679,33,tomja +6351,21,7679,33,vallson +6351,21,7679,33,whosearmy +6351,21,7679,33,wigeekygal +6351,21,7679,33,zer00verride +6351,21,8351,32,aetheros +6351,21,8351,32,agnespoodle +6351,21,8351,32,agyar900 +6351,21,8351,32,airsonist +6351,21,8351,32,angelavb +6351,21,8351,32,angry duck +6351,21,8351,32,antagonizer +6351,21,8351,32,asfalcon13 +6351,21,8351,32,atomiczap +6351,21,8351,32,azzarc +6351,21,8351,32,beans32 +6351,21,8351,32,benno08 +6351,21,8351,32,bikerx1985 +6351,21,8351,32,billtacular +6351,21,8351,32,brutusbelton +6351,21,8351,32,burf +6351,21,8351,32,cccp_bg +6351,21,8351,32,coseb +6351,21,8351,32,cubato +6351,21,8351,32,daaan +6351,21,8351,32,dale12 +6351,21,8351,32,darkmot +6351,21,8351,32,demiurge +6351,21,8351,32,devil28 +6351,21,8351,32,djkoma +6351,21,8351,32,dvhill +6351,21,8351,32,erebusrat +6351,21,8351,32,esegurac94 +6351,21,8351,32,esther_prague +6351,21,8351,32,fivecats +6351,21,8351,32,gnrluki +6351,21,8351,32,grimsmirk +6351,21,8351,32,gripsi +6351,21,8351,32,hajfestek +6351,21,8351,32,helmut67 +6351,21,8351,32,husky seahawk +6351,21,8351,32,ilse23 +6351,21,8351,32,ins3kt +6351,21,8351,32,ion765 +6351,21,8351,32,jacobcreutzfeldt +6351,21,8351,32,joelee +6351,21,8351,32,josieo +6351,21,8351,32,jradziew +6351,21,8351,32,krionah +6351,21,8351,32,kulus62 +6351,21,8351,32,lazarus72 +6351,21,8351,32,locodrillo +6351,21,8351,32,lordrascal +6351,21,8351,32,magicjavelin +6351,21,8351,32,mantooth012 +6351,21,8351,32,mayaheine +6351,21,8351,32,mcgras +6351,21,8351,32,mermuse +6351,21,8351,32,mestremuten +6351,21,8351,32,mobiustripper +6351,21,8351,32,mogwaigizmo +6351,21,8351,32,monkeymagic +6351,21,8351,32,moofasa +6351,21,8351,32,mouns +6351,21,8351,32,mulliganm +6351,21,8351,32,neddyf +6351,21,8351,32,nimola +6351,21,8351,32,olliek24 +6351,21,8351,32,ozgecko +6351,21,8351,32,p4warrior +6351,21,8351,32,pdhooge +6351,21,8351,32,pethulhu +6351,21,8351,32,phoibos1986 +6351,21,8351,32,procred +6351,21,8351,32,rafaelfo +6351,21,8351,32,ramsey54 +6351,21,8351,32,rawdealdemo +6351,21,8351,32,rockette3r +6351,21,8351,32,romang +6351,21,8351,32,ruba +6351,21,8351,32,rvs70 +6351,21,8351,32,ryber +6351,21,8351,32,scott_h +6351,21,8351,32,sergiunastrut +6351,21,8351,32,shilinski +6351,21,8351,32,sifrana +6351,21,8351,32,sirbobs +6351,21,8351,32,skywhalecommando +6351,21,8351,32,sotinauj +6351,21,8351,32,soulyogurt +6351,21,8351,32,staindive +6351,21,8351,32,syroit +6351,21,8351,32,terrifiedtuna +6351,21,8351,32,teslavstwain +6351,21,8351,32,the_g0od_12 +6351,21,8351,32,thecanuck +6351,21,8351,32,timerider78 +6351,21,8351,32,timxrb +6351,21,8351,32,traianus +6351,21,8351,32,ufotexspa +6351,21,8351,32,un4giv3n +6351,21,8351,32,waldez +6351,21,8351,32,willi windisch +6351,21,8351,32,wordswritewill +6351,21,8351,32,yamasaki +6351,21,8351,32,yllatys +6351,21,8351,32,zzbrent +6351,21,9086,31,adegas74 +6351,21,9086,31,alealexito +6351,21,9086,31,alecutheman +6351,21,9086,31,arlan +6351,21,9086,31,binaryflow +6351,21,9086,31,binge gamer +6351,21,9086,31,blargster +6351,21,9086,31,bookerj1 +6351,21,9086,31,brennor +6351,21,9086,31,brucejackson +6351,21,9086,31,camillis94 +6351,21,9086,31,chaddercheeze +6351,21,9086,31,chronnox +6351,21,9086,31,cisdejonckheere +6351,21,9086,31,collardgreens +6351,21,9086,31,crimsonwookiee +6351,21,9086,31,dafnelugui +6351,21,9086,31,daved +6351,21,9086,31,denyi +6351,21,9086,31,dev123 +6351,21,9086,31,docgerbil +6351,21,9086,31,dodonpapa55 +6351,21,9086,31,drewgrant4 +6351,21,9086,31,dscottncc +6351,21,9086,31,duplexo +6351,21,9086,31,edhuxt +6351,21,9086,31,edrick +6351,21,9086,31,ekibyo +6351,21,9086,31,eltmanypieces +6351,21,9086,31,emdrew +6351,21,9086,31,erikseelen +6351,21,9086,31,fminogue +6351,21,9086,31,fokos +6351,21,9086,31,fortart +6351,21,9086,31,funkyj +6351,21,9086,31,gomjabbar +6351,21,9086,31,groveprince +6351,21,9086,31,harlaquinne +6351,21,9086,31,himmelbeere +6351,21,9086,31,hob69 +6351,21,9086,31,ilusander +6351,21,9086,31,jamaajaah +6351,21,9086,31,jasperl +6351,21,9086,31,jccamacho78 +6351,21,9086,31,jevanhorn +6351,21,9086,31,jiloo +6351,21,9086,31,jkenney23 +6351,21,9086,31,jmparker +6351,21,9086,31,joker323 +6351,21,9086,31,keith hunt +6351,21,9086,31,kevinsalles +6351,21,9086,31,krivalis +6351,21,9086,31,ktdvr +6351,21,9086,31,kytmuisco +6351,21,9086,31,ladislaus +6351,21,9086,31,lanzi +6351,21,9086,31,lawster +6351,21,9086,31,leckturn +6351,21,9086,31,littleboardwelder +6351,21,9086,31,llopis +6351,21,9086,31,lochi +6351,21,9086,31,lomikpl +6351,21,9086,31,lroces1969 +6351,21,9086,31,lushchords +6351,21,9086,31,malt +6351,21,9086,31,marcos111 +6351,21,9086,31,marvinrah +6351,21,9086,31,matist +6351,21,9086,31,matthewpmunger +6351,21,9086,31,ministrosempasta +6351,21,9086,31,mixelo82 +6351,21,9086,31,mogli43 +6351,21,9086,31,morachidi +6351,21,9086,31,mrcocheese +6351,21,9086,31,mykidsdad +6351,21,9086,31,nextsaturday +6351,21,9086,31,o0dano0o +6351,21,9086,31,p.o.g.g. +6351,21,9086,31,p4ss3ng3r +6351,21,9086,31,peonocho +6351,21,9086,31,pergara +6351,21,9086,31,pf2l +6351,21,9086,31,phli1688 +6351,21,9086,31,pjt890 +6351,21,9086,31,rapharoni +6351,21,9086,31,rliyen +6351,21,9086,31,robertbrem +6351,21,9086,31,rotosherra +6351,21,9086,31,royalflush +6351,21,9086,31,rustedtree +6351,21,9086,31,rweberund +6351,21,9086,31,rémido +6351,21,9086,31,saabee +6351,21,9086,31,saraelyse +6351,21,9086,31,scarlet +6351,21,9086,31,sergio1985 +6351,21,9086,31,shayneharris +6351,21,9086,31,shepramseysubcom1991 +6351,21,9086,31,sisicaivrai +6351,21,9086,31,sjmarsh640 +6351,21,9086,31,smedleyx +6351,21,9086,31,sonnie +6351,21,9086,31,starfix +6351,21,9086,31,thedaffodilfish +6351,21,9086,31,themightyhump +6351,21,9086,31,threadlock +6351,21,9086,31,threk +6351,21,9086,31,tillermelnyk +6351,21,9086,31,timallday +6351,21,9086,31,togashi fatboy +6351,21,9086,31,troslen +6351,21,9086,31,veronicasalm +6351,21,9086,31,verspielt +6351,21,9086,31,victor71 +6351,21,9086,31,virulentwound +6351,21,9086,31,wasq +6351,21,9086,31,wmspringer +6351,21,9086,31,xantiriad +6351,21,9086,31,xveil3010 +6351,21,9086,31,yarzab +6351,21,9086,31,zzeroparticle +6351,21,9910,30,44rd831 +6351,21,9910,30,afabbi +6351,21,9910,30,aivislisovskis +6351,21,9910,30,alber76 +6351,21,9910,30,alexlisak17 +6351,21,9910,30,apos +6351,21,9910,30,arglik +6351,21,9910,30,ashaman respen +6351,21,9910,30,ashiok_oberhofer +6351,21,9910,30,baggyboo +6351,21,9910,30,bbhalla +6351,21,9910,30,beliz +6351,21,9910,30,bighab +6351,21,9910,30,blackcalx +6351,21,9910,30,blloovoed +6351,21,9910,30,brunofrizzi +6351,21,9910,30,brutilus +6351,21,9910,30,btasam +6351,21,9910,30,cdefrisco +6351,21,9910,30,cfsjess +6351,21,9910,30,changeling +6351,21,9910,30,chr_stab72 +6351,21,9910,30,clauclau +6351,21,9910,30,cray +6351,21,9910,30,cystopher +6351,21,9910,30,danceschool +6351,21,9910,30,darachalice +6351,21,9910,30,daranda +6351,21,9910,30,darkfate +6351,21,9910,30,dave10master +6351,21,9910,30,davea +6351,21,9910,30,davywtd +6351,21,9910,30,deserter85 +6351,21,9910,30,dey123 +6351,21,9910,30,digitalcosmia +6351,21,9910,30,dirtyego +6351,21,9910,30,djkturkey +6351,21,9910,30,double dan +6351,21,9910,30,dr mabuse +6351,21,9910,30,edenys +6351,21,9910,30,educador +6351,21,9910,30,emhaskins +6351,21,9910,30,erkadevil +6351,21,9910,30,ero_kakashi +6351,21,9910,30,ferengi +6351,21,9910,30,firanve +6351,21,9910,30,foentje +6351,21,9910,30,fofluff +6351,21,9910,30,futurescaper +6351,21,9910,30,gamemasterx0 +6351,21,9910,30,godelieve +6351,21,9910,30,godzilla15 +6351,21,9910,30,happyhexagon +6351,21,9910,30,hebuty +6351,21,9910,30,helldrain +6351,21,9910,30,highbrow +6351,21,9910,30,hmontalvoj +6351,21,9910,30,huescheider1 +6351,21,9910,30,ironcates +6351,21,9910,30,jam1ze +6351,21,9910,30,jerm! +6351,21,9910,30,joa77 +6351,21,9910,30,jonanf +6351,21,9910,30,jtrleone +6351,21,9910,30,kaysewill +6351,21,9910,30,kennydee +6351,21,9910,30,kingding +6351,21,9910,30,liga +6351,21,9910,30,linslus +6351,21,9910,30,lionheartes +6351,21,9910,30,llaharas +6351,21,9910,30,loonytoons +6351,21,9910,30,magiccman +6351,21,9910,30,malaiser +6351,21,9910,30,matt19021982 +6351,21,9910,30,mcook144 +6351,21,9910,30,mdp4828 +6351,21,9910,30,meepleleserin +6351,21,9910,30,melosh007 +6351,21,9910,30,mihaha +6351,21,9910,30,mlcknight06 +6351,21,9910,30,mlmoon +6351,21,9910,30,moenja +6351,21,9910,30,moote +6351,21,9910,30,mos blues +6351,21,9910,30,mosher +6351,21,9910,30,musambay +6351,21,9910,30,nogud +6351,21,9910,30,nvidia3dfx +6351,21,9910,30,nzplayer +6351,21,9910,30,oktavia +6351,21,9910,30,oneeyedjack +6351,21,9910,30,orvenwolf +6351,21,9910,30,pablosuau +6351,21,9910,30,pestantium +6351,21,9910,30,placyd +6351,21,9910,30,pleath +6351,21,9910,30,portos +6351,21,9910,30,pouletbete +6351,21,9910,30,quixoticquixotic +6351,21,9910,30,r0land1199 +6351,21,9910,30,raevynn +6351,21,9910,30,reinharttr +6351,21,9910,30,renedelagza +6351,21,9910,30,rmnmon +6351,21,9910,30,roadkill1977 +6351,21,9910,30,romaric +6351,21,9910,30,samuraicreek +6351,21,9910,30,sanz33 +6351,21,9910,30,sappleyard +6351,21,9910,30,sfett +6351,21,9910,30,snerreifke +6351,21,9910,30,sroyu +6351,21,9910,30,stabil +6351,21,9910,30,star_trek_guy +6351,21,9910,30,tabletophaven +6351,21,9910,30,thearkhamhorror +6351,21,9910,30,theboardnerd +6351,21,9910,30,thiagosleite +6351,21,9910,30,tocko +6351,21,9910,30,tommesbx +6351,21,9910,30,toooooof +6351,21,9910,30,trynitor +6351,21,9910,30,tupaschoal +6351,21,9910,30,tursel +6351,21,9910,30,varjo +6351,21,9910,30,vihod +6351,21,9910,30,villiman +6351,21,9910,30,vladnl +6351,21,9910,30,wargamer99 +6351,21,9910,30,zaratustro +6351,21,9910,30,zietto +6351,21,9910,30,zooboo +6351,21,9910,30,zubor +6351,21,10868,29,7mikl7 +6351,21,10868,29,adamw +6351,21,10868,29,agu2tin +6351,21,10868,29,alpha1156 +6351,21,10868,29,anakin1981 +6351,21,10868,29,andredav04 +6351,21,10868,29,andytaylor +6351,21,10868,29,aniaga +6351,21,10868,29,bezax +6351,21,10868,29,blazza88 +6351,21,10868,29,bluefroggirl +6351,21,10868,29,bobrik13 +6351,21,10868,29,bobule +6351,21,10868,29,bonob +6351,21,10868,29,booned +6351,21,10868,29,bramblebeard +6351,21,10868,29,brouzos +6351,21,10868,29,carterkovacs +6351,21,10868,29,cinnibar +6351,21,10868,29,cogstockeros +6351,21,10868,29,cruelsader +6351,21,10868,29,dansashton +6351,21,10868,29,darkdrakken +6351,21,10868,29,darksunglare +6351,21,10868,29,deivicoco +6351,21,10868,29,deloosestef +6351,21,10868,29,diegorm2013 +6351,21,10868,29,dorksgonewild +6351,21,10868,29,dreamingant +6351,21,10868,29,dreynfur +6351,21,10868,29,drowles +6351,21,10868,29,duffmansgames +6351,21,10868,29,ebugatta +6351,21,10868,29,emlabatti +6351,21,10868,29,emplu_meeple +6351,21,10868,29,emplumaitor +6351,21,10868,29,fahr +6351,21,10868,29,friendlyfungus +6351,21,10868,29,gantrell +6351,21,10868,29,hazmatt +6351,21,10868,29,hoelegang +6351,21,10868,29,hokiegeek +6351,21,10868,29,iskayt +6351,21,10868,29,itayabul +6351,21,10868,29,jinxedsan +6351,21,10868,29,johnlocke_108 +6351,21,10868,29,karmazynowy +6351,21,10868,29,kkingosu +6351,21,10868,29,krit1789 +6351,21,10868,29,lamstraal +6351,21,10868,29,lecaro +6351,21,10868,29,lemongrabby +6351,21,10868,29,lm_ally10 +6351,21,10868,29,lorenmckuin +6351,21,10868,29,machinaz +6351,21,10868,29,madqueenludwig +6351,21,10868,29,master_rac +6351,21,10868,29,mazshax +6351,21,10868,29,melaniebarr +6351,21,10868,29,michylo +6351,21,10868,29,mihkel7 +6351,21,10868,29,mikeron +6351,21,10868,29,mkay +6351,21,10868,29,molahs4 +6351,21,10868,29,monica22 +6351,21,10868,29,mordajeza +6351,21,10868,29,mr0santan +6351,21,10868,29,nardran +6351,21,10868,29,nesti +6351,21,10868,29,nictnic +6351,21,10868,29,oneofpeace +6351,21,10868,29,orangeaft +6351,21,10868,29,pacman_71 +6351,21,10868,29,paulgrogan +6351,21,10868,29,pianoman112182 +6351,21,10868,29,ponchera69 +6351,21,10868,29,rabbito84 +6351,21,10868,29,rafaelinium +6351,21,10868,29,rafen76 +6351,21,10868,29,raythe3rd +6351,21,10868,29,robganoosh +6351,21,10868,29,sabbla +6351,21,10868,29,scraglered +6351,21,10868,29,sd40 +6351,21,10868,29,sgtpepere +6351,21,10868,29,stmoens1 +6351,21,10868,29,striton +6351,21,10868,29,summonschy +6351,21,10868,29,tegs +6351,21,10868,29,tpreece +6351,21,10868,29,treenmachine +6351,21,10868,29,trovlaar +6351,21,10868,29,vonnagel +6351,21,10868,29,walteppich +6351,21,10868,29,woetly +6351,21,10868,29,xionc +6351,21,10868,29,zamp +6351,21,11831,28,alanmb +6351,21,11831,28,alkalima +6351,21,11831,28,alogan97 +6351,21,11831,28,andy61 +6351,21,11831,28,arthemistor +6351,21,11831,28,baldboy_1 +6351,21,11831,28,bames007jond +6351,21,11831,28,barny girl +6351,21,11831,28,bazvinda +6351,21,11831,28,bbkoene +6351,21,11831,28,bkmann +6351,21,11831,28,blue_rose +6351,21,11831,28,bmramey +6351,21,11831,28,boulou +6351,21,11831,28,bravucon +6351,21,11831,28,cer8 +6351,21,11831,28,columbob +6351,21,11831,28,dacholaetecoon +6351,21,11831,28,darkangeldown +6351,21,11831,28,ddking +6351,21,11831,28,deadfisk +6351,21,11831,28,deimos4777 +6351,21,11831,28,desert_witch +6351,21,11831,28,deskinj +6351,21,11831,28,divinity99 +6351,21,11831,28,don3000 +6351,21,11831,28,evildirtydave +6351,21,11831,28,extrapeaty +6351,21,11831,28,fausticus1 +6351,21,11831,28,gamenerd1 +6351,21,11831,28,gandalfszalony +6351,21,11831,28,gstrobe188 +6351,21,11831,28,haemonculus +6351,21,11831,28,henak +6351,21,11831,28,henk.rolleman +6351,21,11831,28,horst210 +6351,21,11831,28,j-train1 +6351,21,11831,28,jbrent531 +6351,21,11831,28,jlgern +6351,21,11831,28,joshuag +6351,21,11831,28,kenarm +6351,21,11831,28,kushnir +6351,21,11831,28,laughingtulkas +6351,21,11831,28,mannuska +6351,21,11831,28,markschow +6351,21,11831,28,mczulu72 +6351,21,11831,28,meemtyke +6351,21,11831,28,mike a +6351,21,11831,28,mrsaturn17 +6351,21,11831,28,musketeer84 +6351,21,11831,28,naiya_i +6351,21,11831,28,nathbeadle +6351,21,11831,28,niklasaronsson +6351,21,11831,28,odlos +6351,21,11831,28,olinfroid +6351,21,11831,28,patox +6351,21,11831,28,pecman666 +6351,21,11831,28,ph0rnizzle +6351,21,11831,28,preshair +6351,21,11831,28,ravenskana +6351,21,11831,28,really_not_a_cylon +6351,21,11831,28,ritchliz +6351,21,11831,28,robani +6351,21,11831,28,rolfanders +6351,21,11831,28,roptro +6351,21,11831,28,rundaddyrun +6351,21,11831,28,ruskicowboy +6351,21,11831,28,rzaba +6351,21,11831,28,samy0r +6351,21,11831,28,saxmaam +6351,21,11831,28,schwartzkopf +6351,21,11831,28,seanconnery23 +6351,21,11831,28,sergioxavier +6351,21,11831,28,shawsmith2007 +6351,21,11831,28,sinterhead +6351,21,11831,28,sklydick +6351,21,11831,28,skyrider +6351,21,11831,28,solidblade +6351,21,11831,28,sstk99 +6351,21,11831,28,sweeper177 +6351,21,11831,28,thahtgie +6351,21,11831,28,thedarkknight +6351,21,11831,28,trompel +6351,21,11831,28,viewtiful_justin +6351,21,11831,28,weloi avala +6351,21,11831,28,yunow +6351,21,12910,27,ahgpiti +6351,21,12910,27,albtown +6351,21,12910,27,arcsyn +6351,21,12910,27,artemisa64 +6351,21,12910,27,asudevil +6351,21,12910,27,babacool +6351,21,12910,27,blns75 +6351,21,12910,27,caribbeanwayne +6351,21,12910,27,catysme +6351,21,12910,27,cromatoast +6351,21,12910,27,darkviking +6351,21,12910,27,dcunited87 +6351,21,12910,27,deanthedream80 +6351,21,12910,27,desenclos +6351,21,12910,27,diosuke +6351,21,12910,27,dougie39 +6351,21,12910,27,ebbe +6351,21,12910,27,elcubanito93 +6351,21,12910,27,elgordo +6351,21,12910,27,fbnaulin +6351,21,12910,27,finalstruggle +6351,21,12910,27,gueva999 +6351,21,12910,27,hashstrid +6351,21,12910,27,ibzdave +6351,21,12910,27,ingolf99 +6351,21,12910,27,jackofheart +6351,21,12910,27,jaffawahha +6351,21,12910,27,jainaj +6351,21,12910,27,jenny7star +6351,21,12910,27,jujuandco +6351,21,12910,27,k fay +6351,21,12910,27,karottenkuchen79 +6351,21,12910,27,kevinbc +6351,21,12910,27,klifiek +6351,21,12910,27,lemonhead634 +6351,21,12910,27,lucky phil +6351,21,12910,27,marac408 +6351,21,12910,27,matfe +6351,21,12910,27,mike00 +6351,21,12910,27,mr_mrholmes +6351,21,12910,27,musti +6351,21,12910,27,ody8837 +6351,21,12910,27,orestestes +6351,21,12910,27,otomakan +6351,21,12910,27,ozarksavage +6351,21,12910,27,phansipance +6351,21,12910,27,pilotbob +6351,21,12910,27,radioactive man +6351,21,12910,27,runswithbees +6351,21,12910,27,seaj +6351,21,12910,27,shadowpg99 +6351,21,12910,27,sir_alex +6351,21,12910,27,ssims +6351,21,12910,27,sychobob +6351,21,12910,27,synnical77 +6351,21,12910,27,t-mo +6351,21,12910,27,teachersears +6351,21,12910,27,thegentlemandan +6351,21,12910,27,tydel +6351,21,12910,27,zoidfry +6351,21,14030,26,angerman +6351,21,14030,26,banachspacecadet +6351,21,14030,26,bkjohns1 +6351,21,14030,26,c_ram +6351,21,14030,26,damrol +6351,21,14030,26,draedghawl +6351,21,14030,26,eaduncan +6351,21,14030,26,ericshead +6351,21,14030,26,fayzah +6351,21,14030,26,fonsvazquez +6351,21,14030,26,hadgoth +6351,21,14030,26,mattwood1221 +6351,21,14030,26,n8thegr8zips +6351,21,14030,26,phillipsdaniel +6351,21,14030,26,protherj +6351,21,14030,26,rabidpickle +6351,21,14030,26,rachaem +6351,21,14030,26,rafamarassi +6351,21,14030,26,red22jlj +6351,21,14030,26,rossoft +6351,21,14030,26,sergiomr +6351,21,14030,26,sharkker +6351,21,14030,26,sterndorff +6351,21,14030,26,subaru77 +6351,21,14030,26,themeepleman +6351,21,14030,26,wobo +6351,21,15326,25,absu +6351,21,15326,25,crompot +6351,21,15326,25,docrene +6351,21,15326,25,evarina +6351,21,15326,25,fercg11 +6351,21,15326,25,iamjacksuserid +6351,21,15326,25,marda +6351,21,15326,25,shrike76 +6351,21,16710,24,mrjames +7509,20,56,119,niczone +7509,20,71,113,syedshowmic +7509,20,79,110,halmakoenig +7509,20,94,107,anathema +7509,20,242,86,axinit +7509,20,266,84,therealsorcerer +7509,20,298,81,gethankins +7509,20,413,75,stephen_vogel +7509,20,652,67,kai_walker +7509,20,696,66,cyril720 +7509,20,696,66,loesshills +7509,20,696,66,mariopuzo +7509,20,741,65,danbuster35 +7509,20,787,64,dubiouscraft +7509,20,843,63,immaterial +7509,20,843,63,rahayes413 +7509,20,970,61,cunningallusionment +7509,20,970,61,strikerj70 +7509,20,1034,60,jfkziegler +7509,20,1109,59,gizmobj +7509,20,1202,58,andersm +7509,20,1202,58,hiroprotagonist_ +7509,20,1202,58,necrarcha +7509,20,1202,58,onus +7509,20,1202,58,wpigrad +7509,20,1276,57,jdollenk +7509,20,1276,57,rasmussen81 +7509,20,1459,55,mindlady +7509,20,1459,55,mudge13 +7509,20,1568,54,andanedhel +7509,20,1674,53,glomichou +7509,20,1674,53,korsarz +7509,20,1674,53,nakano +7509,20,1674,53,resplendent39 +7509,20,1674,53,rodzynek +7509,20,1674,53,terrymoto +7509,20,1792,52,gregzilla +7509,20,1792,52,tcomfort +7509,20,1906,51,canyonxplorer +7509,20,1906,51,davidmcdougal +7509,20,1906,51,eddy_sterckx +7509,20,1906,51,ehomer666 +7509,20,1906,51,geekwidow +7509,20,1906,51,thedataguy +7509,20,1906,51,venasion +7509,20,2053,50,docdta +7509,20,2053,50,epicur +7509,20,2053,50,kgnunn +7509,20,2053,50,theneongod90 +7509,20,2053,50,weckoj +7509,20,2053,50,willingdone +7509,20,2204,49,fatwabro +7509,20,2204,49,geggakloss +7509,20,2204,49,hitracey +7509,20,2204,49,ira212 +7509,20,2204,49,ni_le +7509,20,2204,49,pummy +7509,20,2204,49,vader066 +7509,20,2351,48,bathtubnz +7509,20,2351,48,forster925 +7509,20,2351,48,hcy1 +7509,20,2555,47,elixer1 +7509,20,2555,47,g-b-c-h +7509,20,2555,47,kystas +7509,20,2555,47,ollip +7509,20,2555,47,pinkzeppelincult +7509,20,2555,47,simsviking2 +7509,20,2758,46,aiabx +7509,20,2758,46,aoshi312 +7509,20,2758,46,brickroaddx +7509,20,2758,46,carabor +7509,20,2758,46,carolina_bryan +7509,20,2758,46,darthmike +7509,20,2758,46,dessembrae +7509,20,2758,46,gammabomb911 +7509,20,2758,46,melau +7509,20,2758,46,oredondo +7509,20,2758,46,pynej +7509,20,2758,46,scroggz42 +7509,20,2758,46,spnether1411 +7509,20,2969,45,abisashi +7509,20,2969,45,dajial +7509,20,2969,45,kossowankenobi +7509,20,2969,45,m_cichosz +7509,20,2969,45,papagwenk +7509,20,2969,45,pintocj +7509,20,2969,45,ruidan +7509,20,2969,45,schmatzgesicht +7509,20,2969,45,spacewolf009 +7509,20,2969,45,stormson +7509,20,3216,44,ailinoro +7509,20,3216,44,astrodar +7509,20,3216,44,babyraisingator +7509,20,3216,44,gameoclock +7509,20,3216,44,jamierparker +7509,20,3216,44,jkrushen +7509,20,3216,44,jolekosovo +7509,20,3216,44,manti1966 +7509,20,3216,44,mapiu2001 +7509,20,3216,44,narrowpath +7509,20,3216,44,rubennorrin +7509,20,3216,44,sisvel +7509,20,3216,44,weaks +7509,20,3216,44,wolverinetoddy +7509,20,3514,43,abaddon1206 +7509,20,3514,43,alexreichline +7509,20,3514,43,archandrea +7509,20,3514,43,archvile +7509,20,3514,43,bratatata +7509,20,3514,43,k1nu +7509,20,3514,43,lorenzo_il_magnifico +7509,20,3514,43,mintochris +7509,20,3514,43,saris931 +7509,20,3514,43,thebiggere +7509,20,3815,42,angel nivel 13 +7509,20,3815,42,bvoorhorst +7509,20,3815,42,fabled_alpaca +7509,20,3815,42,gamernurse +7509,20,3815,42,jimboardgame +7509,20,3815,42,jonathan9461 +7509,20,3815,42,mbingo +7509,20,3815,42,playtillyoudie +7509,20,3815,42,saxel +7509,20,3815,42,sevryn +7509,20,3815,42,sloan66 +7509,20,3815,42,swiftypass11 +7509,20,3815,42,www_mischraum_de +7509,20,4092,41,atavachron +7509,20,4092,41,azubm +7509,20,4092,41,dezzar +7509,20,4092,41,djinniman +7509,20,4092,41,docandy31 +7509,20,4092,41,drazkor +7509,20,4092,41,jeffreyknoll +7509,20,4092,41,jingking +7509,20,4092,41,jl__ +7509,20,4092,41,maxibon +7509,20,4092,41,narci +7509,20,4092,41,papasnewbag +7509,20,4092,41,ratonulbolnav +7509,20,4092,41,solon1983 +7509,20,4092,41,suzume kazo +7509,20,4092,41,teamjimbo +7509,20,4092,41,themage +7509,20,4092,41,thing12games +7509,20,4092,41,toine216 +7509,20,4092,41,tomicdec +7509,20,4092,41,velcro235 +7509,20,4092,41,yofa +7509,20,4426,40,apielich +7509,20,4426,40,claggie +7509,20,4426,40,eisen29 +7509,20,4426,40,glaudus +7509,20,4426,40,interociter +7509,20,4426,40,kanyewest_tml +7509,20,4426,40,lucaricci83 +7509,20,4426,40,mournful +7509,20,4426,40,nathan_boardgame +7509,20,4426,40,oldschoolgamr +7509,20,4426,40,wiles37 +7509,20,4782,39,aketharus +7509,20,4782,39,almecho +7509,20,4782,39,armed-medic +7509,20,4782,39,badger on the move +7509,20,4782,39,bazinfan +7509,20,4782,39,cargotoaster +7509,20,4782,39,carlosleonrendon +7509,20,4782,39,conan79124 +7509,20,4782,39,davef +7509,20,4782,39,dhc3po +7509,20,4782,39,evenuel +7509,20,4782,39,fograsher +7509,20,4782,39,hinghenry +7509,20,4782,39,jejam +7509,20,4782,39,joemlf +7509,20,4782,39,leogelas +7509,20,4782,39,masaokano +7509,20,4782,39,mig_rau +7509,20,4782,39,nefelibatabass +7509,20,4782,39,nivatra +7509,20,4782,39,sponkey21 +7509,20,4782,39,steveballantine +7509,20,4782,39,the hultquist +7509,20,4782,39,thegargoyle +7509,20,5150,38,alinaab +7509,20,5150,38,andrei_kai +7509,20,5150,38,ange heureux +7509,20,5150,38,aomine29 +7509,20,5150,38,atimati +7509,20,5150,38,burghdaddy +7509,20,5150,38,changingskin +7509,20,5150,38,gamescentre +7509,20,5150,38,gauche +7509,20,5150,38,gesa +7509,20,5150,38,hiax +7509,20,5150,38,j_3mbg +7509,20,5150,38,loki7 +7509,20,5150,38,mikeloftus +7509,20,5150,38,mmculber +7509,20,5150,38,mschlat +7509,20,5150,38,neo87 +7509,20,5150,38,ozymandias x +7509,20,5150,38,runcible spoon +7509,20,5150,38,sabumnim +7509,20,5150,38,samarian +7509,20,5150,38,sedd +7509,20,5150,38,sir_thecos +7509,20,5150,38,slywitch +7509,20,5150,38,somnam +7509,20,5150,38,texz +7509,20,5150,38,theduckfarmer +7509,20,5150,38,tim-pelican +7509,20,5150,38,tolenmar +7509,20,5150,38,tomonthebeach +7509,20,5150,38,turambar16 +7509,20,5150,38,vepsoo +7509,20,5150,38,vistcoatis +7509,20,5624,37,1copse +7509,20,5624,37,alexdanev +7509,20,5624,37,anna4874 +7509,20,5624,37,bncgwy +7509,20,5624,37,chief31 +7509,20,5624,37,deslaure +7509,20,5624,37,dissaua84 +7509,20,5624,37,droopythepig +7509,20,5624,37,dyjoso +7509,20,5624,37,efenwick +7509,20,5624,37,embattisti +7509,20,5624,37,flashly +7509,20,5624,37,guakamole +7509,20,5624,37,huron663 +7509,20,5624,37,jmstoic +7509,20,5624,37,mantlerom +7509,20,5624,37,mastromike +7509,20,5624,37,masuttaja +7509,20,5624,37,mfl134 +7509,20,5624,37,mj_langford +7509,20,5624,37,p_j_keller +7509,20,5624,37,psicek +7509,20,5624,37,schandi +7509,20,5624,37,starscr3am +7509,20,5624,37,stratgladstone +7509,20,5624,37,sztefan +7509,20,5624,37,thekoopy +7509,20,5624,37,theprogrammerguy +7509,20,5624,37,tri2 +7509,20,5624,37,truebossan +7509,20,5624,37,tylerandtoast +7509,20,5624,37,vidra +7509,20,5624,37,warnis +7509,20,5624,37,westbrookgamer +7509,20,5624,37,xyorn +7509,20,6063,36,anandja +7509,20,6063,36,andriuslt +7509,20,6063,36,armandozebley +7509,20,6063,36,arsenal412 +7509,20,6063,36,bilong +7509,20,6063,36,boudie +7509,20,6063,36,daveyjj +7509,20,6063,36,djsudlow +7509,20,6063,36,dnamers +7509,20,6063,36,drochaa +7509,20,6063,36,ecthelion2005 +7509,20,6063,36,europaul +7509,20,6063,36,fatmexican +7509,20,6063,36,favelas +7509,20,6063,36,gar0u +7509,20,6063,36,gatekeeper3000 +7509,20,6063,36,historyguy71 +7509,20,6063,36,hiyou +7509,20,6063,36,hunterfrank +7509,20,6063,36,hyperlex +7509,20,6063,36,inanedirk +7509,20,6063,36,itchyrichy +7509,20,6063,36,jmthomson111 +7509,20,6063,36,kadorus +7509,20,6063,36,landcsf +7509,20,6063,36,lord_leslie_ +7509,20,6063,36,nemesisv +7509,20,6063,36,norimaki01 +7509,20,6063,36,odieu +7509,20,6063,36,padawan +7509,20,6063,36,paxete +7509,20,6063,36,pitris +7509,20,6063,36,raygun13 +7509,20,6063,36,seiyaaa +7509,20,6063,36,sghughes +7509,20,6063,36,sidex +7509,20,6063,36,spire +7509,20,6063,36,stalkerzg +7509,20,6063,36,tgordon77 +7509,20,6063,36,tree of ni +7509,20,6063,36,trevize +7509,20,6063,36,trobadour +7509,20,6063,36,tuned2g +7509,20,6063,36,usagi83 +7509,20,6063,36,wickershamb +7509,20,6063,36,yourtor +7509,20,6573,35,alexfs +7509,20,6573,35,atterdag +7509,20,6573,35,bartsamel +7509,20,6573,35,boardgamebird97 +7509,20,6573,35,boardgamescouple +7509,20,6573,35,btolloty +7509,20,6573,35,buronar +7509,20,6573,35,ck_mom +7509,20,6573,35,comradejon +7509,20,6573,35,cucciolo84 +7509,20,6573,35,cvdellen +7509,20,6573,35,cyaneko +7509,20,6573,35,den_of_madness +7509,20,6573,35,desjeff +7509,20,6573,35,deweydecimated +7509,20,6573,35,fluor +7509,20,6573,35,funplayer +7509,20,6573,35,gerryrailbaron +7509,20,6573,35,giga +7509,20,6573,35,gingko78 +7509,20,6573,35,goregobbo +7509,20,6573,35,gramsdad +7509,20,6573,35,ivankent +7509,20,6573,35,jackyhuynh +7509,20,6573,35,jasonmiceli +7509,20,6573,35,john85 +7509,20,6573,35,kischtee +7509,20,6573,35,laffan26 +7509,20,6573,35,laim +7509,20,6573,35,lebryant +7509,20,6573,35,matthewgallion +7509,20,6573,35,melrhode +7509,20,6573,35,michaellalu +7509,20,6573,35,mikekn +7509,20,6573,35,nessus77 +7509,20,6573,35,niceshot318 +7509,20,6573,35,petervasari +7509,20,6573,35,prestoneous +7509,20,6573,35,radkit +7509,20,6573,35,sav0k +7509,20,6573,35,sirlaughalot +7509,20,6573,35,sotillano +7509,20,6573,35,stevenhowell13 +7509,20,6573,35,teashop726 +7509,20,6573,35,thantsor +7509,20,6573,35,theforster +7509,20,6573,35,tpenick +7509,20,6573,35,vytautasv +7509,20,6573,35,watson77 +7509,20,6573,35,withlove +7509,20,6573,35,woelfman +7509,20,6573,35,zambogirl +7509,20,7100,34,-toni- +7509,20,7100,34,aboxofwine +7509,20,7100,34,aeneas75 +7509,20,7100,34,akfula +7509,20,7100,34,albertqu +7509,20,7100,34,andreagot +7509,20,7100,34,anisai +7509,20,7100,34,auriea +7509,20,7100,34,bloominoctober +7509,20,7100,34,briezee +7509,20,7100,34,captcrouton +7509,20,7100,34,carlespal +7509,20,7100,34,chucksherrange +7509,20,7100,34,corpsegrinder +7509,20,7100,34,crikeythecat +7509,20,7100,34,crquin +7509,20,7100,34,danielbeaver +7509,20,7100,34,darthain +7509,20,7100,34,daveygravyx07 +7509,20,7100,34,dihan +7509,20,7100,34,doctorphil +7509,20,7100,34,draconicmama +7509,20,7100,34,filten +7509,20,7100,34,flugt73 +7509,20,7100,34,gargorigoglu +7509,20,7100,34,growal +7509,20,7100,34,gwahlur +7509,20,7100,34,h3r0ux +7509,20,7100,34,harold_cakington +7509,20,7100,34,harzal +7509,20,7100,34,hezza +7509,20,7100,34,holgis +7509,20,7100,34,ice_dark +7509,20,7100,34,ironregime +7509,20,7100,34,jato +7509,20,7100,34,jeremiahbrammer +7509,20,7100,34,jion +7509,20,7100,34,jsvvit +7509,20,7100,34,laserjet11 +7509,20,7100,34,ma1kavi +7509,20,7100,34,marpharos +7509,20,7100,34,matthew bayley +7509,20,7100,34,mr. k +7509,20,7100,34,nordlead +7509,20,7100,34,nosis17 +7509,20,7100,34,oyro +7509,20,7100,34,papahoth +7509,20,7100,34,parasek +7509,20,7100,34,paulagrape9 +7509,20,7100,34,pgachan +7509,20,7100,34,przemko z otoku +7509,20,7100,34,raoulinho82 +7509,20,7100,34,redjib +7509,20,7100,34,robert simpson +7509,20,7100,34,ross2099 +7509,20,7100,34,sandysidamo +7509,20,7100,34,spoices +7509,20,7100,34,suzzy83 +7509,20,7100,34,szever +7509,20,7100,34,thenameless0ne +7509,20,7100,34,therook +7509,20,7100,34,valerio79 +7509,20,7100,34,wadeb1977 +7509,20,7100,34,yaverot +7509,20,7100,34,yqwzy666 +7509,20,7100,34,zosa +7509,20,7679,33,1000days +7509,20,7679,33,12is +7509,20,7679,33,akbanse +7509,20,7679,33,andysocial +7509,20,7679,33,baymonkey +7509,20,7679,33,boneidolmatt +7509,20,7679,33,buffaloseven +7509,20,7679,33,chrishorscroft +7509,20,7679,33,clawlan +7509,20,7679,33,cristian23zgz +7509,20,7679,33,croqueta +7509,20,7679,33,dagopher +7509,20,7679,33,davinxi86 +7509,20,7679,33,delthos +7509,20,7679,33,discoking7 +7509,20,7679,33,discris +7509,20,7679,33,djeedobbeljoe +7509,20,7679,33,dodorom31 +7509,20,7679,33,dolus +7509,20,7679,33,drfunkfungus +7509,20,7679,33,elessar3019 +7509,20,7679,33,ermd +7509,20,7679,33,esmeyers +7509,20,7679,33,evil_lemons +7509,20,7679,33,gameunderprotest +7509,20,7679,33,goldsirius +7509,20,7679,33,gregolution +7509,20,7679,33,hakko504 +7509,20,7679,33,harry lime +7509,20,7679,33,herbinlegend +7509,20,7679,33,hermandy +7509,20,7679,33,huddyrx +7509,20,7679,33,ilogico +7509,20,7679,33,inputj +7509,20,7679,33,jamesarkham +7509,20,7679,33,janosch +7509,20,7679,33,javivesa +7509,20,7679,33,jd1403 +7509,20,7679,33,jmoots +7509,20,7679,33,johku +7509,20,7679,33,joseasiah +7509,20,7679,33,jtstet +7509,20,7679,33,jutstrab +7509,20,7679,33,kcpollard +7509,20,7679,33,keatus +7509,20,7679,33,knjaz_evol +7509,20,7679,33,leddicka +7509,20,7679,33,lmulaire +7509,20,7679,33,loupi +7509,20,7679,33,lutxo10 +7509,20,7679,33,madmaciek +7509,20,7679,33,mattmallen +7509,20,7679,33,mfrid +7509,20,7679,33,mike p +7509,20,7679,33,mkultra666 +7509,20,7679,33,nickkk +7509,20,7679,33,paddy64 +7509,20,7679,33,paulsalomon27 +7509,20,7679,33,pltinum +7509,20,7679,33,porkchop_tw +7509,20,7679,33,premila +7509,20,7679,33,rantinronrevue +7509,20,7679,33,rhamsterren +7509,20,7679,33,rykas +7509,20,7679,33,sairam71 +7509,20,7679,33,sanya +7509,20,7679,33,scifiandeeyore +7509,20,7679,33,scshrimp +7509,20,7679,33,sedge +7509,20,7679,33,shoomar +7509,20,7679,33,sir gerard +7509,20,7679,33,skutsch +7509,20,7679,33,smon +7509,20,7679,33,sobrien79 +7509,20,7679,33,stereosmiles +7509,20,7679,33,stobbesammler +7509,20,7679,33,strackr +7509,20,7679,33,svekke3 +7509,20,7679,33,thevig +7509,20,7679,33,torkes_1 +7509,20,7679,33,verbakint75 +7509,20,7679,33,vlachbild +7509,20,7679,33,walkera +7509,20,7679,33,zebracat +7509,20,7679,33,zetseui +7509,20,7679,33,zzkywalker +7509,20,8351,32,afonsobe +7509,20,8351,32,alexlin322 +7509,20,8351,32,alronnor +7509,20,8351,32,amazedfurball +7509,20,8351,32,anakinnnn +7509,20,8351,32,andrew57 +7509,20,8351,32,argopellter +7509,20,8351,32,arucuan +7509,20,8351,32,astinoff +7509,20,8351,32,aurion +7509,20,8351,32,bad thoughts +7509,20,8351,32,bartowwing +7509,20,8351,32,bavarred +7509,20,8351,32,bluehusker +7509,20,8351,32,bogas_9 +7509,20,8351,32,bohemian_eye +7509,20,8351,32,bretonducalvados +7509,20,8351,32,btrhoads +7509,20,8351,32,buddy wilbury +7509,20,8351,32,buffyfan_2 +7509,20,8351,32,celeberyn +7509,20,8351,32,cesirgp +7509,20,8351,32,chillinchinchilla +7509,20,8351,32,chopperdan +7509,20,8351,32,cindypastorius +7509,20,8351,32,crazyivan22 +7509,20,8351,32,dacomfort +7509,20,8351,32,dahooti +7509,20,8351,32,dayla +7509,20,8351,32,deadpooltheduck +7509,20,8351,32,dendro216 +7509,20,8351,32,domi123 +7509,20,8351,32,dr a +7509,20,8351,32,duncanid +7509,20,8351,32,dvieu +7509,20,8351,32,elgmo +7509,20,8351,32,elviajedro +7509,20,8351,32,engoduun +7509,20,8351,32,flea4 +7509,20,8351,32,fuzzbender +7509,20,8351,32,gabrielfaria +7509,20,8351,32,gobarkas +7509,20,8351,32,golmarklonk +7509,20,8351,32,gordison427 +7509,20,8351,32,gszeberenyi +7509,20,8351,32,harry paget flashman +7509,20,8351,32,hayen +7509,20,8351,32,heartyhula +7509,20,8351,32,heather drake +7509,20,8351,32,hoshbad +7509,20,8351,32,ianni +7509,20,8351,32,jotaem +7509,20,8351,32,k8schmutz +7509,20,8351,32,ketigid +7509,20,8351,32,kinglouis2nd +7509,20,8351,32,kleinepino +7509,20,8351,32,kreutzi +7509,20,8351,32,ksensei +7509,20,8351,32,leochab +7509,20,8351,32,loafuer +7509,20,8351,32,luispe +7509,20,8351,32,lutherbob +7509,20,8351,32,mads04 +7509,20,8351,32,manufunky +7509,20,8351,32,mapache +7509,20,8351,32,marjolinaaa +7509,20,8351,32,matt12 +7509,20,8351,32,mcdemoura +7509,20,8351,32,mcqueen +7509,20,8351,32,mhgregersen +7509,20,8351,32,minitova +7509,20,8351,32,mirra76 +7509,20,8351,32,mitos +7509,20,8351,32,mleino +7509,20,8351,32,mooken +7509,20,8351,32,mtref +7509,20,8351,32,muffiinn +7509,20,8351,32,ninjabaggins +7509,20,8351,32,nordloc +7509,20,8351,32,otha62 +7509,20,8351,32,otjp +7509,20,8351,32,paedia +7509,20,8351,32,pessoatukan +7509,20,8351,32,piata +7509,20,8351,32,polymepheus77 +7509,20,8351,32,potz +7509,20,8351,32,pum_ +7509,20,8351,32,pyrakles +7509,20,8351,32,quentin_be +7509,20,8351,32,redbeard013 +7509,20,8351,32,redhawk_gd07 +7509,20,8351,32,redundancycheck +7509,20,8351,32,rodiazsa +7509,20,8351,32,saedelaere +7509,20,8351,32,sambril +7509,20,8351,32,sharc +7509,20,8351,32,skslotten +7509,20,8351,32,snorky9000 +7509,20,8351,32,spacejambi +7509,20,8351,32,squarepegix +7509,20,8351,32,stadnyk +7509,20,8351,32,stalkingbutler +7509,20,8351,32,styxxx +7509,20,8351,32,szerzetes +7509,20,8351,32,t1m0thy +7509,20,8351,32,tanuki93 +7509,20,8351,32,teamae2l +7509,20,8351,32,the fixer +7509,20,8351,32,theborg +7509,20,8351,32,therdfamily +7509,20,8351,32,timmy_13 +7509,20,8351,32,toker +7509,20,8351,32,tom horwath +7509,20,8351,32,torhu +7509,20,8351,32,viwaldo +7509,20,8351,32,vogella +7509,20,8351,32,wiewioora +7509,20,8351,32,willchipmax +7509,20,8351,32,williejj +7509,20,8351,32,yarrbossa +7509,20,8351,32,zanos85 +7509,20,8351,32,zeefres +7509,20,8351,32,zhorg +7509,20,9086,31,1friidrek6 +7509,20,9086,31,aaegenie +7509,20,9086,31,addamsik +7509,20,9086,31,agente86 +7509,20,9086,31,alfonsopl +7509,20,9086,31,alliterato +7509,20,9086,31,another_gamemaster +7509,20,9086,31,bablamzee +7509,20,9086,31,balis +7509,20,9086,31,beccs +7509,20,9086,31,benhoff88 +7509,20,9086,31,bettanton +7509,20,9086,31,bfan +7509,20,9086,31,blaisegv +7509,20,9086,31,blobrunners +7509,20,9086,31,bordspelkampion +7509,20,9086,31,brendanm +7509,20,9086,31,bridime +7509,20,9086,31,cabalzero +7509,20,9086,31,canary05 +7509,20,9086,31,capt yid +7509,20,9086,31,captain minouz +7509,20,9086,31,carter_burke +7509,20,9086,31,citywithoutmen +7509,20,9086,31,cloudstalkerian +7509,20,9086,31,cmonster71 +7509,20,9086,31,coffeespoonman +7509,20,9086,31,corpsebride +7509,20,9086,31,corwyn59 +7509,20,9086,31,danielcs +7509,20,9086,31,dsdjpofjs +7509,20,9086,31,duy1250 +7509,20,9086,31,elric of grans +7509,20,9086,31,esorp +7509,20,9086,31,et11 +7509,20,9086,31,falloutthemighty +7509,20,9086,31,felikatus +7509,20,9086,31,fendherin +7509,20,9086,31,goldenmustang +7509,20,9086,31,golivier +7509,20,9086,31,hagen +7509,20,9086,31,happycamper +7509,20,9086,31,heathenweb +7509,20,9086,31,herrwilding +7509,20,9086,31,hobbesvii +7509,20,9086,31,howse +7509,20,9086,31,hwessels +7509,20,9086,31,hyperionhuxley +7509,20,9086,31,ianthepez +7509,20,9086,31,ilsedwb +7509,20,9086,31,isbert +7509,20,9086,31,ja_n +7509,20,9086,31,jarh3ad5 +7509,20,9086,31,jason bailey +7509,20,9086,31,jeche +7509,20,9086,31,jfrancogg +7509,20,9086,31,ji_fearou +7509,20,9086,31,jjcapde +7509,20,9086,31,jmiller1020 +7509,20,9086,31,jmsr525 +7509,20,9086,31,josebald +7509,20,9086,31,julie_von_tapse +7509,20,9086,31,kaladin47 +7509,20,9086,31,kaptainhooker +7509,20,9086,31,kat2kool +7509,20,9086,31,kimbo +7509,20,9086,31,kordat +7509,20,9086,31,kron +7509,20,9086,31,kuhajo +7509,20,9086,31,lonster +7509,20,9086,31,lord education +7509,20,9086,31,lordstein +7509,20,9086,31,ludoman +7509,20,9086,31,maross +7509,20,9086,31,masterhastur +7509,20,9086,31,matejbatic +7509,20,9086,31,mattbowden1981 +7509,20,9086,31,mayowarlord +7509,20,9086,31,meepledad2 +7509,20,9086,31,mikiorbe +7509,20,9086,31,mirrmurr +7509,20,9086,31,mlbath +7509,20,9086,31,mtnw +7509,20,9086,31,musici +7509,20,9086,31,naity +7509,20,9086,31,nathan augur +7509,20,9086,31,niteshmg +7509,20,9086,31,oddbot +7509,20,9086,31,ogeert +7509,20,9086,31,olymacfoogal +7509,20,9086,31,one23 +7509,20,9086,31,opettajah +7509,20,9086,31,pamahera +7509,20,9086,31,peacekeepr +7509,20,9086,31,pjscipio +7509,20,9086,31,princerhun +7509,20,9086,31,purovicio +7509,20,9086,31,raxar +7509,20,9086,31,reaper373 +7509,20,9086,31,redbeardin84 +7509,20,9086,31,redstud00 +7509,20,9086,31,rekka +7509,20,9086,31,republicofjosh +7509,20,9086,31,ricardokaiser +7509,20,9086,31,rooftrouser +7509,20,9086,31,rsm2296 +7509,20,9086,31,sercafra +7509,20,9086,31,sinscaptain +7509,20,9086,31,sky sternberg +7509,20,9086,31,stocki14 +7509,20,9086,31,tbosco +7509,20,9086,31,thetruegordonrogers +7509,20,9086,31,thugninjah +7509,20,9086,31,tomuch +7509,20,9086,31,urufu +7509,20,9086,31,volstag +7509,20,9086,31,woeful +7509,20,9086,31,yazlar +7509,20,9910,30,adampsjol +7509,20,9910,30,adrock64 +7509,20,9910,30,adv666 +7509,20,9910,30,affm +7509,20,9910,30,agentq +7509,20,9910,30,agentus +7509,20,9910,30,aguillamo +7509,20,9910,30,albatrosski +7509,20,9910,30,amckenzie39 +7509,20,9910,30,amperyuu +7509,20,9910,30,andersed +7509,20,9910,30,andrewey +7509,20,9910,30,andy mesa +7509,20,9910,30,andyholmes +7509,20,9910,30,antigel +7509,20,9910,30,ares1981 +7509,20,9910,30,ataxiquil +7509,20,9910,30,auditorofreality +7509,20,9910,30,auxierd +7509,20,9910,30,barkis +7509,20,9910,30,bartas +7509,20,9910,30,billytb +7509,20,9910,30,bodandrage +7509,20,9910,30,borsook +7509,20,9910,30,branvahn +7509,20,9910,30,brasidas69 +7509,20,9910,30,brockbush22 +7509,20,9910,30,bubits +7509,20,9910,30,caixaa +7509,20,9910,30,carbor +7509,20,9910,30,carcamal86 +7509,20,9910,30,cayluster +7509,20,9910,30,cblanchard +7509,20,9910,30,chrisbrandt +7509,20,9910,30,codester56 +7509,20,9910,30,csniezek +7509,20,9910,30,damnbet +7509,20,9910,30,darthfox +7509,20,9910,30,dcmanicad +7509,20,9910,30,defunctrobot +7509,20,9910,30,domd +7509,20,9910,30,dwoods0623 +7509,20,9910,30,dym69 +7509,20,9910,30,ekaze +7509,20,9910,30,elrath +7509,20,9910,30,emagius +7509,20,9910,30,evildoc +7509,20,9910,30,evilschnuck +7509,20,9910,30,eyeplay +7509,20,9910,30,fatponcho +7509,20,9910,30,fischbrot397 +7509,20,9910,30,fitamafia +7509,20,9910,30,frankf70 +7509,20,9910,30,frantic ferret +7509,20,9910,30,fyupton +7509,20,9910,30,gargoyle +7509,20,9910,30,germanmeeplegames +7509,20,9910,30,gildedrain +7509,20,9910,30,goblen +7509,20,9910,30,godfeather +7509,20,9910,30,herman92 +7509,20,9910,30,hllambis +7509,20,9910,30,ibrabh +7509,20,9910,30,ikke henning +7509,20,9910,30,ithappenb4 +7509,20,9910,30,janiv +7509,20,9910,30,jauggy +7509,20,9910,30,jbuse +7509,20,9910,30,jean_leviathan +7509,20,9910,30,jkdamron +7509,20,9910,30,jlwill +7509,20,9910,30,jmcfarren19 +7509,20,9910,30,jonjbeats +7509,20,9910,30,josephcze +7509,20,9910,30,jslong52 +7509,20,9910,30,jurrin +7509,20,9910,30,kainsteele +7509,20,9910,30,kamelota +7509,20,9910,30,karar2k +7509,20,9910,30,kartalon +7509,20,9910,30,killerb +7509,20,9910,30,kisco +7509,20,9910,30,kleinegelbe +7509,20,9910,30,kswingruber +7509,20,9910,30,kyynarpaa +7509,20,9910,30,lboucheron +7509,20,9910,30,leffots +7509,20,9910,30,lelian +7509,20,9910,30,liam3bucks +7509,20,9910,30,liquid phoenix +7509,20,9910,30,lisa1 +7509,20,9910,30,lochrist +7509,20,9910,30,logaritmo15 +7509,20,9910,30,ludwigtesla +7509,20,9910,30,maliklund87 +7509,20,9910,30,marianprisacariu +7509,20,9910,30,mateusz +7509,20,9910,30,mathmethman +7509,20,9910,30,matt0001 +7509,20,9910,30,mcdull76 +7509,20,9910,30,melody303 +7509,20,9910,30,mgep +7509,20,9910,30,mgrilla +7509,20,9910,30,mls75 +7509,20,9910,30,mrozmi +7509,20,9910,30,namurenai +7509,20,9910,30,namus +7509,20,9910,30,nedla +7509,20,9910,30,nicholee +7509,20,9910,30,nicodromors +7509,20,9910,30,oersted +7509,20,9910,30,oversoul17 +7509,20,9910,30,palats +7509,20,9910,30,phoenixpez +7509,20,9910,30,pinkamenapie +7509,20,9910,30,pokeweed mitogen +7509,20,9910,30,pooeater +7509,20,9910,30,pumpkinhead76 +7509,20,9910,30,qerris +7509,20,9910,30,rafci80 +7509,20,9910,30,rayzor6 +7509,20,9910,30,rbaker +7509,20,9910,30,rublind +7509,20,9910,30,saci23 +7509,20,9910,30,samain +7509,20,9910,30,schwartstack +7509,20,9910,30,sedgetone +7509,20,9910,30,sintenced +7509,20,9910,30,sjliver +7509,20,9910,30,skaeight +7509,20,9910,30,skirp +7509,20,9910,30,skyzero +7509,20,9910,30,space8es +7509,20,9910,30,splindeman +7509,20,9910,30,steph316 +7509,20,9910,30,thebubba +7509,20,9910,30,thesonofben +7509,20,9910,30,thirdeye333 +7509,20,9910,30,trevoraclark +7509,20,9910,30,tylik +7509,20,9910,30,typhares +7509,20,9910,30,valenswift +7509,20,9910,30,veljarek +7509,20,9910,30,verkisto +7509,20,9910,30,yazvision +7509,20,9910,30,ybiralf +7509,20,9910,30,zach_attakk +7509,20,9910,30,zadrow +7509,20,9910,30,zimm108 +7509,20,9910,30,ziohal +7509,20,10868,29,afrozenpeach +7509,20,10868,29,akden +7509,20,10868,29,alepsycho +7509,20,10868,29,alex_senpai +7509,20,10868,29,ameto +7509,20,10868,29,and88 +7509,20,10868,29,andre2001 +7509,20,10868,29,andvaranaut +7509,20,10868,29,annod78 +7509,20,10868,29,anyelopolis +7509,20,10868,29,bankerboymark +7509,20,10868,29,barchisa +7509,20,10868,29,benayo33 +7509,20,10868,29,bevel +7509,20,10868,29,bluewisdom +7509,20,10868,29,bradbeattie +7509,20,10868,29,brizzer +7509,20,10868,29,buzuk +7509,20,10868,29,bwguinig +7509,20,10868,29,bytewarz +7509,20,10868,29,caise +7509,20,10868,29,capnphil +7509,20,10868,29,cardfannc +7509,20,10868,29,cbrady748 +7509,20,10868,29,chadm +7509,20,10868,29,chemist2 +7509,20,10868,29,chewbacca390 +7509,20,10868,29,ciclox +7509,20,10868,29,clru +7509,20,10868,29,colest7678 +7509,20,10868,29,contrivance +7509,20,10868,29,coryke +7509,20,10868,29,cossackbad +7509,20,10868,29,cotb +7509,20,10868,29,cruyl +7509,20,10868,29,dahvid +7509,20,10868,29,dalek22 +7509,20,10868,29,dallas heilman +7509,20,10868,29,dash justice +7509,20,10868,29,dasyl +7509,20,10868,29,dialwand +7509,20,10868,29,diometes +7509,20,10868,29,donniedarko01 +7509,20,10868,29,dontbecruel +7509,20,10868,29,duroemon +7509,20,10868,29,e1izabot +7509,20,10868,29,edwinrumbledove +7509,20,10868,29,el-ahrairah +7509,20,10868,29,elsiesta +7509,20,10868,29,evithess +7509,20,10868,29,fantasticdragon +7509,20,10868,29,farokhtarquin +7509,20,10868,29,fhiros +7509,20,10868,29,g00sep00p +7509,20,10868,29,georgw +7509,20,10868,29,ginet1 +7509,20,10868,29,giochi corsari +7509,20,10868,29,glitchhike +7509,20,10868,29,godgremos +7509,20,10868,29,greeneclipse +7509,20,10868,29,gwaedin +7509,20,10868,29,hanshu +7509,20,10868,29,herschel1 +7509,20,10868,29,icy manipulator +7509,20,10868,29,inflatable gecko +7509,20,10868,29,jagom +7509,20,10868,29,jameshayward671 +7509,20,10868,29,jeff180 +7509,20,10868,29,jeffersonpowers +7509,20,10868,29,jerryb486 +7509,20,10868,29,jkidder +7509,20,10868,29,jsangha +7509,20,10868,29,juanmabb +7509,20,10868,29,jumossos +7509,20,10868,29,jvilkka +7509,20,10868,29,kantanach +7509,20,10868,29,khalyus +7509,20,10868,29,kidajg +7509,20,10868,29,kishiru krew +7509,20,10868,29,kyleglyn +7509,20,10868,29,ladywargamer66 +7509,20,10868,29,lascuevas +7509,20,10868,29,ledvolta +7509,20,10868,29,legolasegb +7509,20,10868,29,liggur +7509,20,10868,29,lt_vlad +7509,20,10868,29,lukewarmluke +7509,20,10868,29,magic rat +7509,20,10868,29,magnitt +7509,20,10868,29,majeikms +7509,20,10868,29,maudineormsby +7509,20,10868,29,mbest +7509,20,10868,29,mdross1 +7509,20,10868,29,michmir +7509,20,10868,29,mithrandir82 +7509,20,10868,29,mjesionek +7509,20,10868,29,mortenjohs +7509,20,10868,29,mrkade +7509,20,10868,29,mroliver +7509,20,10868,29,nukeu666 +7509,20,10868,29,pabluzcu +7509,20,10868,29,pachinkokid +7509,20,10868,29,pani +7509,20,10868,29,piem-14b +7509,20,10868,29,playme1 +7509,20,10868,29,prefectsarah +7509,20,10868,29,psauberer +7509,20,10868,29,pueppie +7509,20,10868,29,quietflowsdadon1 +7509,20,10868,29,r3dj0n +7509,20,10868,29,rey marc +7509,20,10868,29,rh3015 +7509,20,10868,29,ricomoss +7509,20,10868,29,ronnycola +7509,20,10868,29,rumbelow +7509,20,10868,29,runars +7509,20,10868,29,sandmaneight +7509,20,10868,29,schmergel +7509,20,10868,29,sebotorpedo +7509,20,10868,29,sidpikes +7509,20,10868,29,soma41 +7509,20,10868,29,spliff_23 +7509,20,10868,29,springflut +7509,20,10868,29,staunch +7509,20,10868,29,strangebrew47 +7509,20,10868,29,sylvus +7509,20,10868,29,szid +7509,20,10868,29,thatfedoraguy +7509,20,10868,29,theuntrustfull +7509,20,10868,29,thilsing +7509,20,10868,29,tom_tom +7509,20,10868,29,tommyd65 +7509,20,10868,29,torumees +7509,20,10868,29,trillion123 +7509,20,10868,29,tuitui +7509,20,10868,29,veti +7509,20,10868,29,vonzonk +7509,20,10868,29,vurkka +7509,20,10868,29,xylantrax +7509,20,11831,28,12from1 +7509,20,11831,28,8021dennisl +7509,20,11831,28,ace123abc +7509,20,11831,28,ackurv +7509,20,11831,28,adamvic +7509,20,11831,28,aleve01 +7509,20,11831,28,alfred jk +7509,20,11831,28,amcbain +7509,20,11831,28,andreimic +7509,20,11831,28,archeos +7509,20,11831,28,arnaud_vb +7509,20,11831,28,arowkey +7509,20,11831,28,barks +7509,20,11831,28,bellman +7509,20,11831,28,berremon +7509,20,11831,28,boardgamereviewuk +7509,20,11831,28,bookaddict +7509,20,11831,28,bribrislat +7509,20,11831,28,bugaffi +7509,20,11831,28,bwingrave +7509,20,11831,28,candorras +7509,20,11831,28,capitalgamer +7509,20,11831,28,caroll_markus +7509,20,11831,28,caxorrito +7509,20,11831,28,cayca +7509,20,11831,28,cedric2 +7509,20,11831,28,chrishoover1 +7509,20,11831,28,chuckila +7509,20,11831,28,clefster +7509,20,11831,28,clint barton +7509,20,11831,28,cloud64 +7509,20,11831,28,codeeater +7509,20,11831,28,cornishlee +7509,20,11831,28,craftsman +7509,20,11831,28,cruxmondrian +7509,20,11831,28,czuprynn7 +7509,20,11831,28,d bro +7509,20,11831,28,dactyle +7509,20,11831,28,dagobal +7509,20,11831,28,denismarcio +7509,20,11831,28,devgame +7509,20,11831,28,doeddi +7509,20,11831,28,dragoon91 +7509,20,11831,28,droph +7509,20,11831,28,earlyflash +7509,20,11831,28,ececec +7509,20,11831,28,eebo_ecclefechan +7509,20,11831,28,elayoe +7509,20,11831,28,eldoclogan +7509,20,11831,28,elfstory +7509,20,11831,28,estebe8080 +7509,20,11831,28,esther_1903 +7509,20,11831,28,feijai24 +7509,20,11831,28,flahr +7509,20,11831,28,flusswind +7509,20,11831,28,fourds13 +7509,20,11831,28,funk3r +7509,20,11831,28,gamingguy +7509,20,11831,28,ghostraccooon +7509,20,11831,28,graham greene +7509,20,11831,28,gus77avo +7509,20,11831,28,henry_kay +7509,20,11831,28,hntrbass +7509,20,11831,28,hopheadas +7509,20,11831,28,hzar +7509,20,11831,28,in retrograde +7509,20,11831,28,innovan +7509,20,11831,28,inok +7509,20,11831,28,jameson and sons +7509,20,11831,28,jcancam +7509,20,11831,28,jeadams +7509,20,11831,28,jeffhos +7509,20,11831,28,jerrytel +7509,20,11831,28,johnnytheskin +7509,20,11831,28,jonahstuart +7509,20,11831,28,jonezy +7509,20,11831,28,jooks +7509,20,11831,28,jrp_atg +7509,20,11831,28,juanbautistagaldon +7509,20,11831,28,juandra007 +7509,20,11831,28,kentuckykid +7509,20,11831,28,kipernicus +7509,20,11831,28,kira66 +7509,20,11831,28,kraggster +7509,20,11831,28,lannig +7509,20,11831,28,loggerhead +7509,20,11831,28,lonewolf +7509,20,11831,28,mamu06 +7509,20,11831,28,manelpalace +7509,20,11831,28,marcellodelai +7509,20,11831,28,marcinq84 +7509,20,11831,28,masaren +7509,20,11831,28,mauricedeltaco +7509,20,11831,28,mawihtec +7509,20,11831,28,meowsqueak +7509,20,11831,28,meysey hampton +7509,20,11831,28,mikrlost +7509,20,11831,28,mt4b3n +7509,20,11831,28,nbsperry +7509,20,11831,28,nerotu +7509,20,11831,28,pdahl +7509,20,11831,28,peasly23 +7509,20,11831,28,penguinxiaoguo +7509,20,11831,28,petejacko +7509,20,11831,28,pmanoff +7509,20,11831,28,pr37 +7509,20,11831,28,qeylis +7509,20,11831,28,quagg +7509,20,11831,28,rayhn +7509,20,11831,28,reiksguard +7509,20,11831,28,rexuz +7509,20,11831,28,rhys713 +7509,20,11831,28,rmercado +7509,20,11831,28,robinsont +7509,20,11831,28,rossarnoldsan +7509,20,11831,28,samasmith89 +7509,20,11831,28,sasmo12 +7509,20,11831,28,satchi76 +7509,20,11831,28,schueli +7509,20,11831,28,sithhunters +7509,20,11831,28,sloades +7509,20,11831,28,slyguy1987 +7509,20,11831,28,sossles +7509,20,11831,28,soukali +7509,20,11831,28,stagboardgames +7509,20,11831,28,stagtrucknroll +7509,20,11831,28,szesze +7509,20,11831,28,tahuomo +7509,20,11831,28,thematrix00 +7509,20,11831,28,thesolargarlic +7509,20,11831,28,vjaas +7509,20,11831,28,wormlips +7509,20,11831,28,xhauntedx +7509,20,11831,28,xlyspy +7509,20,11831,28,yamakasi +7509,20,11831,28,yatzek +7509,20,11831,28,zangheim +7509,20,12910,27,ahudston +7509,20,12910,27,alex_179 +7509,20,12910,27,alhayes1023 +7509,20,12910,27,alllgood +7509,20,12910,27,alperego +7509,20,12910,27,altheaofkos +7509,20,12910,27,alvarezcabrera +7509,20,12910,27,ambush3 +7509,20,12910,27,arnoo42 +7509,20,12910,27,asteroidea +7509,20,12910,27,auyard +7509,20,12910,27,axelsohn +7509,20,12910,27,babola +7509,20,12910,27,bayushikira +7509,20,12910,27,bmarquette +7509,20,12910,27,bogarona +7509,20,12910,27,botbotfling +7509,20,12910,27,cardduke +7509,20,12910,27,carms +7509,20,12910,27,chumy +7509,20,12910,27,clintachilles +7509,20,12910,27,corinaac2012 +7509,20,12910,27,criedmightier +7509,20,12910,27,dairaya +7509,20,12910,27,darthturambar +7509,20,12910,27,davehz +7509,20,12910,27,denititto +7509,20,12910,27,domo_pingu +7509,20,12910,27,duckster +7509,20,12910,27,emperor_davidus +7509,20,12910,27,erfalucho +7509,20,12910,27,felixion +7509,20,12910,27,flyingbaden +7509,20,12910,27,frogggirl2 +7509,20,12910,27,gattling +7509,20,12910,27,gdau +7509,20,12910,27,getchristylove +7509,20,12910,27,giorgio77 +7509,20,12910,27,grafinok +7509,20,12910,27,grark +7509,20,12910,27,gunness +7509,20,12910,27,h91ix +7509,20,12910,27,hannibal2208 +7509,20,12910,27,harvesterad +7509,20,12910,27,hath22 +7509,20,12910,27,hornby4523 +7509,20,12910,27,jarjar26 +7509,20,12910,27,jaymcdonald +7509,20,12910,27,jedrasy +7509,20,12910,27,jeswins +7509,20,12910,27,joannaalicja +7509,20,12910,27,jocab +7509,20,12910,27,josch +7509,20,12910,27,kirss +7509,20,12910,27,lionshaikh +7509,20,12910,27,littleschnuki +7509,20,12910,27,live4fun +7509,20,12910,27,lorna +7509,20,12910,27,luisgomez +7509,20,12910,27,lunarly +7509,20,12910,27,madmac11 +7509,20,12910,27,magdeburger +7509,20,12910,27,mario1976 +7509,20,12910,27,marysinka +7509,20,12910,27,mattdp +7509,20,12910,27,mfchaplin +7509,20,12910,27,mgk1989 +7509,20,12910,27,minus4 +7509,20,12910,27,model359 +7509,20,12910,27,montanus +7509,20,12910,27,naenny +7509,20,12910,27,ndeslandes +7509,20,12910,27,nellomus +7509,20,12910,27,newwonder +7509,20,12910,27,nimrod6 +7509,20,12910,27,olegpashkov +7509,20,12910,27,pandalark +7509,20,12910,27,pelewebb +7509,20,12910,27,phillygee +7509,20,12910,27,phonix87 +7509,20,12910,27,piscatella +7509,20,12910,27,pjbntly +7509,20,12910,27,port7050 +7509,20,12910,27,rabit71 +7509,20,12910,27,rainbowflight +7509,20,12910,27,randommk +7509,20,12910,27,richlowe32 +7509,20,12910,27,riraruud +7509,20,12910,27,rompcat +7509,20,12910,27,ryan3740 +7509,20,12910,27,segoviano +7509,20,12910,27,skyjack +7509,20,12910,27,sledesma +7509,20,12910,27,slivermouse +7509,20,12910,27,sodapeza +7509,20,12910,27,sonoflars +7509,20,12910,27,sparkyvs +7509,20,12910,27,squiball +7509,20,12910,27,stankiem +7509,20,12910,27,staszebek +7509,20,12910,27,stephedp +7509,20,12910,27,sviney +7509,20,12910,27,tcastellvi +7509,20,12910,27,themadwelshwizard +7509,20,12910,27,tmccorry +7509,20,12910,27,tommy_mx +7509,20,12910,27,travisdhill +7509,20,12910,27,tritop +7509,20,12910,27,txnull +7509,20,12910,27,unpressured +7509,20,12910,27,valien +7509,20,12910,27,vanderjos +7509,20,12910,27,vdbmalmsteen +7509,20,12910,27,vikingwarrior +7509,20,12910,27,voamer +7509,20,12910,27,wyma +7509,20,12910,27,xandarc +7509,20,12910,27,yagyuu +7509,20,12910,27,yings +7509,20,14030,26,annelief +7509,20,14030,26,attila +7509,20,14030,26,avalanche7474 +7509,20,14030,26,bdrowe5828 +7509,20,14030,26,blbrrymffn +7509,20,14030,26,bluepubi +7509,20,14030,26,bmsoltis +7509,20,14030,26,brian sinclair +7509,20,14030,26,buckeyeshell +7509,20,14030,26,chameleonbg +7509,20,14030,26,chiefsachem +7509,20,14030,26,ciscokidnj +7509,20,14030,26,clips +7509,20,14030,26,cmenzie +7509,20,14030,26,cotton9 +7509,20,14030,26,dallanc +7509,20,14030,26,dirksk +7509,20,14030,26,dragon975 +7509,20,14030,26,drapulv +7509,20,14030,26,edeus +7509,20,14030,26,esguord +7509,20,14030,26,ferrao +7509,20,14030,26,flowmoon +7509,20,14030,26,gb777 +7509,20,14030,26,hammy08 +7509,20,14030,26,happyhal +7509,20,14030,26,helioa +7509,20,14030,26,hopalong +7509,20,14030,26,hopper2009 +7509,20,14030,26,hummingbirdfeeder +7509,20,14030,26,hvazadi +7509,20,14030,26,immmi +7509,20,14030,26,impendingdoom +7509,20,14030,26,jaderaven +7509,20,14030,26,jagastrumpet +7509,20,14030,26,joris__ +7509,20,14030,26,kahless666 +7509,20,14030,26,kingofkancho +7509,20,14030,26,krikic +7509,20,14030,26,kwizzled94 +7509,20,14030,26,magdalenas_playworld +7509,20,14030,26,marcelo monteiro +7509,20,14030,26,marcindore +7509,20,14030,26,marvac +7509,20,14030,26,maxip +7509,20,14030,26,monoqueso +7509,20,14030,26,moocheck +7509,20,14030,26,mrsean72 +7509,20,14030,26,mwc_84 +7509,20,14030,26,nasus21 +7509,20,14030,26,nipnop +7509,20,14030,26,nrowe123 +7509,20,14030,26,nyanapulsar +7509,20,14030,26,orcrist74 +7509,20,14030,26,papasmohr +7509,20,14030,26,pascal67 +7509,20,14030,26,purracas +7509,20,14030,26,pyrosilesl +7509,20,14030,26,ronlazaro +7509,20,14030,26,rooky +7509,20,14030,26,sam houston +7509,20,14030,26,sandman1973 +7509,20,14030,26,seththedog +7509,20,14030,26,sngames +7509,20,14030,26,strongbadia +7509,20,14030,26,thisaliensean +7509,20,14030,26,tineren +7509,20,14030,26,tobius the beard +7509,20,14030,26,treno213 +7509,20,14030,26,tyler89 +7509,20,14030,26,unixrevolution +7509,20,14030,26,viekie +7509,20,14030,26,whiskyrebel +7509,20,14030,26,willbeplayin +7509,20,14030,26,wowbagger44 +7509,20,14030,26,xmadelfx +7509,20,15326,25,andrew261 +7509,20,15326,25,ashnak +7509,20,15326,25,bloodserj +7509,20,15326,25,bovbossi +7509,20,15326,25,burgerhead +7509,20,15326,25,dancing rob +7509,20,15326,25,dhbodhi +7509,20,15326,25,dsaddons +7509,20,15326,25,egzyl +7509,20,15326,25,elwen +7509,20,15326,25,emsdad +7509,20,15326,25,flimsy25 +7509,20,15326,25,girman39 +7509,20,15326,25,jdub027 +7509,20,15326,25,jekaa +7509,20,15326,25,johnostout +7509,20,15326,25,kazu +7509,20,15326,25,kellbot +7509,20,15326,25,madziar +7509,20,15326,25,magritte +7509,20,15326,25,megawestwolf +7509,20,15326,25,mojoworking +7509,20,15326,25,mrorange30 +7509,20,15326,25,mvendel +7509,20,15326,25,ostur1 +7509,20,15326,25,repthrd +7509,20,15326,25,riley341 +7509,20,15326,25,roachrudm +7509,20,15326,25,rufello +7509,20,15326,25,snack mccrown +7509,20,15326,25,stephanie920 +7509,20,15326,25,texasgeoker +7509,20,15326,25,thepeoplesdan +7509,20,15326,25,thunder_cc +7509,20,15326,25,trevnotronik +7509,20,16710,24,christoffertj +7509,20,16710,24,d0nthaveaclued0 +7509,20,16710,24,duellj +7509,20,16710,24,erichzann +7509,20,16710,24,fannyfrance +7509,20,16710,24,iratehope +7509,20,16710,24,jbudovec +7509,20,16710,24,lalulima +7509,20,16710,24,lawlaw +7509,20,16710,24,longmen76 +7509,20,16710,24,magorrias +7509,20,16710,24,petewifi +7509,20,16710,24,rienmoeyaert +7509,20,16710,24,thisismichael +7509,20,16710,24,toggie +7509,20,16710,24,twogolddoubloons +7509,20,18170,23,beezkneez +7509,20,18170,23,muddiefunkster +7509,20,18170,23,telimartin +7509,20,18170,23,werekin +7509,20,21713,21,j_clay +7509,20,23640,20,schaap1981 +8930,19,53,121,general_norris +8930,19,252,85,refecs +8930,19,273,83,troybowers +8930,19,298,81,dsumw01 +8930,19,326,79,minoland +8930,19,340,78,dond80 +8930,19,413,75,pingus +8930,19,493,72,tyacer +8930,19,522,71,damilli +8930,19,589,69,slh777 +8930,19,652,67,cchlanger +8930,19,652,67,crimsonwraith +8930,19,787,64,lifesgood14 +8930,19,787,64,troubular +8930,19,843,63,mrmiyagi +8930,19,1109,59,ejolmos +8930,19,1109,59,maskeraid +8930,19,1202,58,pawnpusher +8930,19,1202,58,zinos +8930,19,1276,57,pangin +8930,19,1276,57,takvorian +8930,19,1362,56,paladin_fin +8930,19,1362,56,tischo +8930,19,1568,54,ensades +8930,19,1568,54,marnix +8930,19,1568,54,michaelbgup +8930,19,1568,54,saint1930 +8930,19,1674,53,da_kini +8930,19,1674,53,darksion +8930,19,1674,53,prongbuck +8930,19,1674,53,ragi +8930,19,1792,52,jungaree +8930,19,1792,52,tipoux10 +8930,19,1792,52,woiny +8930,19,1906,51,caprivi +8930,19,1906,51,jamesmckinley +8930,19,2053,50,annuire +8930,19,2053,50,deathjester26 +8930,19,2204,49,oacarmon +8930,19,2351,48,halkster14 +8930,19,2351,48,macklau +8930,19,2351,48,photojim +8930,19,2351,48,yender +8930,19,2555,47,ezeregy +8930,19,2555,47,jeffn2001 +8930,19,2555,47,kingen +8930,19,2555,47,konradin +8930,19,2555,47,sirris +8930,19,2555,47,the shat +8930,19,2758,46,eskizer +8930,19,2758,46,volkov +8930,19,2969,45,boardgamerboy +8930,19,2969,45,bwirzba +8930,19,2969,45,glamor +8930,19,2969,45,krisverbeeck +8930,19,2969,45,nanolar +8930,19,2969,45,raiderfan +8930,19,2969,45,swartkat +8930,19,3216,44,delli1977 +8930,19,3216,44,fambans +8930,19,3216,44,gwommy +8930,19,3216,44,runim +8930,19,3216,44,soffie +8930,19,3514,43,chrisbp +8930,19,3514,43,oskari +8930,19,3514,43,pensator +8930,19,3815,42,dgdylan345 +8930,19,3815,42,erik_ritzen +8930,19,3815,42,heurion +8930,19,3815,42,kikerl +8930,19,3815,42,locarno +8930,19,3815,42,shonagladman +8930,19,3815,42,soulcamp +8930,19,4092,41,archivists +8930,19,4092,41,azrael2k +8930,19,4092,41,chronosmonkey +8930,19,4092,41,debsworth +8930,19,4092,41,djon1985 +8930,19,4092,41,leeloetje +8930,19,4092,41,mhaag +8930,19,4092,41,poorican +8930,19,4092,41,seb19 +8930,19,4426,40,admiralcrunch +8930,19,4426,40,barrype +8930,19,4426,40,calandale +8930,19,4426,40,colormage1 +8930,19,4426,40,demoss1 +8930,19,4426,40,dotkeller +8930,19,4426,40,ironlegacy977 +8930,19,4426,40,juicebaucks +8930,19,4426,40,lumivarjo +8930,19,4426,40,macls29 +8930,19,4426,40,przemoo99 +8930,19,4426,40,rafiki_robert +8930,19,4426,40,shauneroo +8930,19,4782,39,_frederik_ +8930,19,4782,39,atomkano +8930,19,4782,39,chemoides +8930,19,4782,39,darkelflx +8930,19,4782,39,dharzen +8930,19,4782,39,dragonnyxx +8930,19,4782,39,elrumbas +8930,19,4782,39,eveline1980 +8930,19,4782,39,h00sha +8930,19,4782,39,jidar +8930,19,4782,39,jimeni +8930,19,4782,39,kicek016 +8930,19,4782,39,oldschool99 +8930,19,4782,39,reesb +8930,19,4782,39,royal blue +8930,19,4782,39,talis62 +8930,19,4782,39,wolframius +8930,19,4782,39,xxazn_romeoxx +8930,19,5150,38,3ebc +8930,19,5150,38,aweberman +8930,19,5150,38,bloodyme +8930,19,5150,38,boomingsooner +8930,19,5150,38,cesargbravo +8930,19,5150,38,cptnbob +8930,19,5150,38,darkritual88 +8930,19,5150,38,durael +8930,19,5150,38,elfersten +8930,19,5150,38,escherichia +8930,19,5150,38,fastfingers +8930,19,5150,38,foxtailferns +8930,19,5150,38,fruszu +8930,19,5150,38,gokiburijin +8930,19,5150,38,goodnightgrey +8930,19,5150,38,jaarinen +8930,19,5150,38,jjjim007 +8930,19,5150,38,jrhameister +8930,19,5150,38,longagoigo +8930,19,5150,38,merlinloc +8930,19,5150,38,mikeamills +8930,19,5150,38,numlock989 +8930,19,5150,38,nvarela +8930,19,5150,38,qhorin +8930,19,5150,38,r3dr4gon +8930,19,5150,38,rexdeanrds +8930,19,5150,38,schlue +8930,19,5150,38,so_an_so +8930,19,5150,38,the_hop_meeple +8930,19,5624,37,anyoneforsnap +8930,19,5624,37,calsara +8930,19,5624,37,clavos +8930,19,5624,37,cormar +8930,19,5624,37,dansfr +8930,19,5624,37,darkraven54321 +8930,19,5624,37,el diabolo +8930,19,5624,37,eternalfury +8930,19,5624,37,fafnir +8930,19,5624,37,gswp +8930,19,5624,37,isaacr584 +8930,19,5624,37,jcwid +8930,19,5624,37,js3141 +8930,19,5624,37,lfrances +8930,19,5624,37,manu kristensen +8930,19,5624,37,marcogreen +8930,19,5624,37,pab10 +8930,19,5624,37,razcar +8930,19,5624,37,rupes +8930,19,5624,37,sanderzw +8930,19,5624,37,shaunypantz +8930,19,5624,37,taniss +8930,19,5624,37,twmzts +8930,19,5624,37,txmagpie +8930,19,5624,37,usb connector +8930,19,5624,37,xtianrock89 +8930,19,6063,36,cgund +8930,19,6063,36,chadw09 +8930,19,6063,36,chuchanas +8930,19,6063,36,coletrain +8930,19,6063,36,cursecatcher +8930,19,6063,36,ditka78 +8930,19,6063,36,evan +8930,19,6063,36,foretfam +8930,19,6063,36,gamingwithkids +8930,19,6063,36,garumpe +8930,19,6063,36,grannyrelee +8930,19,6063,36,green booze +8930,19,6063,36,habchr +8930,19,6063,36,helmutvasconcelos +8930,19,6063,36,herr niemand +8930,19,6063,36,hondojr27 +8930,19,6063,36,idmonfish +8930,19,6063,36,joelmeans +8930,19,6063,36,jterrington22 +8930,19,6063,36,kalungplus6 +8930,19,6063,36,kinksta88 +8930,19,6063,36,maccheek +8930,19,6063,36,magicalkat1 +8930,19,6063,36,michinho +8930,19,6063,36,mooka +8930,19,6063,36,nelda +8930,19,6063,36,pioro +8930,19,6063,36,professor x +8930,19,6063,36,prpost +8930,19,6063,36,ravynlocke +8930,19,6063,36,rexdart817 +8930,19,6063,36,riledguy +8930,19,6063,36,silliness +8930,19,6063,36,spaniolo +8930,19,6063,36,starwarsguy22 +8930,19,6063,36,thewally42 +8930,19,6063,36,ugryz +8930,19,6063,36,vendictar +8930,19,6063,36,voice_of_madness +8930,19,6063,36,xaqar +8930,19,6573,35,argallis +8930,19,6573,35,argonta +8930,19,6573,35,arpu77 +8930,19,6573,35,babyt5 +8930,19,6573,35,bardley11 +8930,19,6573,35,benme +8930,19,6573,35,benthos +8930,19,6573,35,bestyan +8930,19,6573,35,cortexbomb +8930,19,6573,35,dante_night +8930,19,6573,35,davecroquette +8930,19,6573,35,daybed +8930,19,6573,35,elar1000 +8930,19,6573,35,evie3 +8930,19,6573,35,foamcore +8930,19,6573,35,glamourdahling +8930,19,6573,35,kamestar +8930,19,6573,35,killing joke +8930,19,6573,35,klund +8930,19,6573,35,luckym2552 +8930,19,6573,35,maj_veld +8930,19,6573,35,menghini +8930,19,6573,35,moneymagnet888 +8930,19,6573,35,montsegur +8930,19,6573,35,moriquessir +8930,19,6573,35,nothingbutrhet +8930,19,6573,35,ocknarf +8930,19,6573,35,olegklishin +8930,19,6573,35,otterzero +8930,19,6573,35,pacemakerbug +8930,19,6573,35,patella +8930,19,6573,35,postmark +8930,19,6573,35,raven_d +8930,19,6573,35,shawnchilliard +8930,19,6573,35,silentmonotone +8930,19,6573,35,slackerjoe +8930,19,6573,35,sorourke +8930,19,6573,35,tasku +8930,19,6573,35,texastabletop +8930,19,6573,35,texjets281 +8930,19,6573,35,theeternal792 +8930,19,6573,35,valjean81 +8930,19,6573,35,webhead123 +8930,19,6573,35,xeserox +8930,19,6573,35,zoabarker +8930,19,7100,34,albs1414 +8930,19,7100,34,alexo8508 +8930,19,7100,34,atilas +8930,19,7100,34,atomzero +8930,19,7100,34,bardatir +8930,19,7100,34,bauble +8930,19,7100,34,bearpaw +8930,19,7100,34,benjaminhester +8930,19,7100,34,billy1899 +8930,19,7100,34,bipf +8930,19,7100,34,blackholexan +8930,19,7100,34,buckcheeseman +8930,19,7100,34,calib9 +8930,19,7100,34,charlooo +8930,19,7100,34,cocreador +8930,19,7100,34,cruffin +8930,19,7100,34,cryptoson +8930,19,7100,34,dansport005 +8930,19,7100,34,dharmalager +8930,19,7100,34,dudditopp +8930,19,7100,34,empressmyriam +8930,19,7100,34,evilaugh +8930,19,7100,34,evilpolbro +8930,19,7100,34,gavindbm +8930,19,7100,34,hetasu +8930,19,7100,34,hfiguiere +8930,19,7100,34,jmw23 +8930,19,7100,34,johny_skywalker +8930,19,7100,34,jschuyler +8930,19,7100,34,lmasulis +8930,19,7100,34,logopolys +8930,19,7100,34,manwe_ +8930,19,7100,34,mfdj +8930,19,7100,34,middleclassjoe +8930,19,7100,34,mikekramer +8930,19,7100,34,muskratio +8930,19,7100,34,nmuwildcat027 +8930,19,7100,34,nuntipark +8930,19,7100,34,philmagpie +8930,19,7100,34,pseudomonass +8930,19,7100,34,redbeardberman +8930,19,7100,34,rob march +8930,19,7100,34,royalon06 +8930,19,7100,34,s_nav +8930,19,7100,34,spoonman2084 +8930,19,7100,34,tmp41184 +8930,19,7100,34,wafflestomper +8930,19,7100,34,whit3422 +8930,19,7100,34,whyduck +8930,19,7100,34,zidan +8930,19,7679,33,aaronacox +8930,19,7679,33,aleix +8930,19,7679,33,andrewprostakov +8930,19,7679,33,avalaunch +8930,19,7679,33,bakboleen +8930,19,7679,33,bapter23 +8930,19,7679,33,blain3923 +8930,19,7679,33,butler09 +8930,19,7679,33,buzzboke +8930,19,7679,33,calpurnio1973 +8930,19,7679,33,car car son +8930,19,7679,33,chanfan +8930,19,7679,33,chevalierorazur +8930,19,7679,33,chrisknack +8930,19,7679,33,crazymax +8930,19,7679,33,dochoa +8930,19,7679,33,duvalmont +8930,19,7679,33,egecriealine +8930,19,7679,33,ejvozzo +8930,19,7679,33,enricov +8930,19,7679,33,flazman +8930,19,7679,33,gedson +8930,19,7679,33,geikenberry +8930,19,7679,33,gibling +8930,19,7679,33,goateh +8930,19,7679,33,guaskan +8930,19,7679,33,holdemstar +8930,19,7679,33,hultsfret +8930,19,7679,33,iraperkins82 +8930,19,7679,33,issiriana +8930,19,7679,33,jbrown98023 +8930,19,7679,33,jlrensen +8930,19,7679,33,kaiwolf +8930,19,7679,33,lima89 +8930,19,7679,33,lorex888 +8930,19,7679,33,marc6 +8930,19,7679,33,medic jesus +8930,19,7679,33,muppetus galacticus +8930,19,7679,33,n0mad +8930,19,7679,33,nachoesteban +8930,19,7679,33,plantinglemur +8930,19,7679,33,pmdf +8930,19,7679,33,privatusis +8930,19,7679,33,qeek +8930,19,7679,33,rewindben +8930,19,7679,33,romsaer +8930,19,7679,33,rubric +8930,19,7679,33,sacricarnes +8930,19,7679,33,sheathd309 +8930,19,7679,33,smileychris +8930,19,7679,33,steffi1984 +8930,19,7679,33,stempkovsky +8930,19,7679,33,stridmann +8930,19,7679,33,superzebra +8930,19,7679,33,szukasz +8930,19,7679,33,telengard +8930,19,7679,33,tophbutler +8930,19,7679,33,tscox87 +8930,19,7679,33,windmilling +8930,19,7679,33,yrvn +8930,19,7679,33,yvonne89 +8930,19,8351,32,aelephanta +8930,19,8351,32,alejandroalmelo +8930,19,8351,32,alvarobay +8930,19,8351,32,anarchy +8930,19,8351,32,atholbrose +8930,19,8351,32,blackwaltzbw5 +8930,19,8351,32,bmacfarlane +8930,19,8351,32,boardeze +8930,19,8351,32,bonster20 +8930,19,8351,32,bsdlots +8930,19,8351,32,bshine +8930,19,8351,32,c15ben +8930,19,8351,32,castorp +8930,19,8351,32,catpisswilly +8930,19,8351,32,cbgssya +8930,19,8351,32,cggritt +8930,19,8351,32,cinful +8930,19,8351,32,cjpiper +8930,19,8351,32,csigs +8930,19,8351,32,dan4th +8930,19,8351,32,dineline +8930,19,8351,32,donogh +8930,19,8351,32,eizahn +8930,19,8351,32,erikjanvanoosten +8930,19,8351,32,executioner +8930,19,8351,32,fadeproof +8930,19,8351,32,fredericdib +8930,19,8351,32,garick +8930,19,8351,32,gregus48 +8930,19,8351,32,hassefar60 +8930,19,8351,32,hattorihanzo74 +8930,19,8351,32,ilgranderabbino +8930,19,8351,32,jandhi2 +8930,19,8351,32,jhsloan +8930,19,8351,32,jlp303 +8930,19,8351,32,jqtnguyen +8930,19,8351,32,jroddy27 +8930,19,8351,32,limpster +8930,19,8351,32,marc_d +8930,19,8351,32,mathgrant +8930,19,8351,32,mbheflin +8930,19,8351,32,midlifedelta +8930,19,8351,32,mightytoucan +8930,19,8351,32,morrgan +8930,19,8351,32,nitramb +8930,19,8351,32,obelixastrid +8930,19,8351,32,ohsam +8930,19,8351,32,ordman +8930,19,8351,32,papiklfish +8930,19,8351,32,peugi +8930,19,8351,32,phankthusar +8930,19,8351,32,philsuess +8930,19,8351,32,potomus +8930,19,8351,32,quartersmostly +8930,19,8351,32,ralfamm +8930,19,8351,32,raptorb +8930,19,8351,32,redarrows +8930,19,8351,32,sammyspaceman +8930,19,8351,32,schipa +8930,19,8351,32,schuay +8930,19,8351,32,screaming beaver +8930,19,8351,32,seanmess +8930,19,8351,32,sikmag +8930,19,8351,32,silfire +8930,19,8351,32,sirshandlar +8930,19,8351,32,sirwashington +8930,19,8351,32,sleffie +8930,19,8351,32,slgilley +8930,19,8351,32,slyght +8930,19,8351,32,tepitebson +8930,19,8351,32,thedudeabides1978 +8930,19,8351,32,thiagomas84 +8930,19,8351,32,tiwayker +8930,19,8351,32,tlmucla +8930,19,8351,32,tomiz123 +8930,19,8351,32,xmalc +8930,19,8351,32,yatiraj +8930,19,8351,32,yesofcourse +8930,19,9086,31,aaronbshockley +8930,19,9086,31,abso +8930,19,9086,31,abulense +8930,19,9086,31,acpudman +8930,19,9086,31,aigimig +8930,19,9086,31,akiya +8930,19,9086,31,alexalex99 +8930,19,9086,31,aluminiumotter +8930,19,9086,31,ambusam +8930,19,9086,31,amonzinus +8930,19,9086,31,andre0909 +8930,19,9086,31,arastimir +8930,19,9086,31,areckis +8930,19,9086,31,arma666 +8930,19,9086,31,bgarz06 +8930,19,9086,31,bigshowfan +8930,19,9086,31,biohazard930 +8930,19,9086,31,bozodel +8930,19,9086,31,briandangerkacz +8930,19,9086,31,broki +8930,19,9086,31,bruzza +8930,19,9086,31,cactilion +8930,19,9086,31,caius deckhard +8930,19,9086,31,ccomeaux +8930,19,9086,31,cheeseburger +8930,19,9086,31,choubynet +8930,19,9086,31,cscottk +8930,19,9086,31,daddyd +8930,19,9086,31,dannoo +8930,19,9086,31,davidmcgregor +8930,19,9086,31,davidmsawyer +8930,19,9086,31,denny crane +8930,19,9086,31,devlee +8930,19,9086,31,dodu +8930,19,9086,31,dosirak +8930,19,9086,31,duereloi +8930,19,9086,31,eizi +8930,19,9086,31,elgin_j +8930,19,9086,31,escadia12 +8930,19,9086,31,escaperoomalkmaar +8930,19,9086,31,faydeshift +8930,19,9086,31,fenrai +8930,19,9086,31,fenwic +8930,19,9086,31,gengar1205 +8930,19,9086,31,glompbot +8930,19,9086,31,greatmilenko +8930,19,9086,31,gruendervater_h +8930,19,9086,31,holad +8930,19,9086,31,hwr131819 +8930,19,9086,31,icq86 +8930,19,9086,31,jcarring +8930,19,9086,31,jimvandyke +8930,19,9086,31,jinnemijn +8930,19,9086,31,jonocop +8930,19,9086,31,jormi_boced +8930,19,9086,31,jose luis chacon +8930,19,9086,31,jurney85 +8930,19,9086,31,karol_inglot +8930,19,9086,31,kereliuk96 +8930,19,9086,31,khimming +8930,19,9086,31,legioviii +8930,19,9086,31,leuname +8930,19,9086,31,levyd +8930,19,9086,31,lewisatforth16 +8930,19,9086,31,littlemute +8930,19,9086,31,lordolive +8930,19,9086,31,lordvoldemort +8930,19,9086,31,mammy blue +8930,19,9086,31,matteoz2 +8930,19,9086,31,metalmanisg +8930,19,9086,31,mirozh +8930,19,9086,31,misskitten +8930,19,9086,31,motts +8930,19,9086,31,mrvitti +8930,19,9086,31,muhonen +8930,19,9086,31,mvaes +8930,19,9086,31,nasgorian +8930,19,9086,31,nealen +8930,19,9086,31,nomad29345 +8930,19,9086,31,noobishbynature +8930,19,9086,31,nudinho +8930,19,9086,31,obenja +8930,19,9086,31,og blackwolf7 +8930,19,9086,31,orangejulec +8930,19,9086,31,orthmannuw +8930,19,9086,31,palmerex +8930,19,9086,31,pauliussi +8930,19,9086,31,physicsfreak +8930,19,9086,31,pogle +8930,19,9086,31,prashantgupta84 +8930,19,9086,31,president dinosaur +8930,19,9086,31,ptc3bluedevil +8930,19,9086,31,rindu +8930,19,9086,31,rockinghorsedreams +8930,19,9086,31,rrc1230 +8930,19,9086,31,samuelresendiz +8930,19,9086,31,scrybe +8930,19,9086,31,sean_kraus +8930,19,9086,31,seleucus +8930,19,9086,31,sinedh +8930,19,9086,31,spalanzani +8930,19,9086,31,sunnydaze +8930,19,9086,31,taz ungabunga +8930,19,9086,31,thargorx +8930,19,9086,31,the_obvious +8930,19,9086,31,thebeach0 +8930,19,9086,31,thechin! +8930,19,9086,31,thedicehaveit +8930,19,9086,31,timbol +8930,19,9086,31,tituscrow +8930,19,9086,31,v3rmind +8930,19,9086,31,wallenjenkins +8930,19,9086,31,wisnia1418 +8930,19,9086,31,wizardhat +8930,19,9086,31,wrmw +8930,19,9086,31,wyantjm +8930,19,9086,31,ymd_fallen +8930,19,9086,31,yorickh +8930,19,9086,31,yshild +8930,19,9086,31,zalbar +8930,19,9086,31,zelador +8930,19,9086,31,zemoko +8930,19,9086,31,zhpaka +8930,19,9086,31,zimeon +8930,19,9086,31,zztap +8930,19,9910,30,3davoli +8930,19,9910,30,ace kaussner +8930,19,9910,30,agape +8930,19,9910,30,albireo +8930,19,9910,30,alextravel +8930,19,9910,30,aphodius +8930,19,9910,30,arcite7 +8930,19,9910,30,beactriz +8930,19,9910,30,belyakoff +8930,19,9910,30,berrolder +8930,19,9910,30,bkallday13 +8930,19,9910,30,bluedane +8930,19,9910,30,boiade +8930,19,9910,30,bolec80 +8930,19,9910,30,brushedstatue +8930,19,9910,30,budsticky +8930,19,9910,30,carlium +8930,19,9910,30,cdbass +8930,19,9910,30,chipol +8930,19,9910,30,cwarman +8930,19,9910,30,dakonation +8930,19,9910,30,dark overlady +8930,19,9910,30,davisdynamos +8930,19,9910,30,dhel +8930,19,9910,30,dickywinsome +8930,19,9910,30,dimkar +8930,19,9910,30,doclatower +8930,19,9910,30,dorkpassenger +8930,19,9910,30,doughboy2012 +8930,19,9910,30,dzastus +8930,19,9910,30,e7onions23 +8930,19,9910,30,earthship +8930,19,9910,30,edrift101 +8930,19,9910,30,filipovic +8930,19,9910,30,fircoal +8930,19,9910,30,flernebunu +8930,19,9910,30,gianludema90 +8930,19,9910,30,gorditacrunch93 +8930,19,9910,30,guifa79 +8930,19,9910,30,gwondowski +8930,19,9910,30,hardkor +8930,19,9910,30,hells balls +8930,19,9910,30,hindor +8930,19,9910,30,hoserama +8930,19,9910,30,hpeniks +8930,19,9910,30,i7dealer +8930,19,9910,30,imo4 +8930,19,9910,30,jakespencer +8930,19,9910,30,jaruz +8930,19,9910,30,jesussd +8930,19,9910,30,jmuusitupa +8930,19,9910,30,jnoble3 +8930,19,9910,30,joe besserfan +8930,19,9910,30,joeyk +8930,19,9910,30,johntravels1 +8930,19,9910,30,joshbot +8930,19,9910,30,juyu86 +8930,19,9910,30,karhaix +8930,19,9910,30,kentaro131 +8930,19,9910,30,kezuskrijst +8930,19,9910,30,kgaba7 +8930,19,9910,30,kildred +8930,19,9910,30,kmiernik +8930,19,9910,30,kmikolaj +8930,19,9910,30,lbzer0 +8930,19,9910,30,lechonbaka +8930,19,9910,30,leodrakk +8930,19,9910,30,lili marleen +8930,19,9910,30,machalo +8930,19,9910,30,madformadrigals +8930,19,9910,30,madramir +8930,19,9910,30,marqphex +8930,19,9910,30,marvinotc +8930,19,9910,30,mcquoy +8930,19,9910,30,michaelbd +8930,19,9910,30,michaelrobholden +8930,19,9910,30,miggor +8930,19,9910,30,mikemanger +8930,19,9910,30,minatoari +8930,19,9910,30,mountainroot +8930,19,9910,30,mrbroesel +8930,19,9910,30,mrseebo +8930,19,9910,30,mspider_89 +8930,19,9910,30,musashi2 +8930,19,9910,30,nazghost +8930,19,9910,30,nchoong1 +8930,19,9910,30,nekader +8930,19,9910,30,neutral_planet +8930,19,9910,30,njingi +8930,19,9910,30,noctemsorrow +8930,19,9910,30,novio8 +8930,19,9910,30,onofreshoots +8930,19,9910,30,padmasambhava +8930,19,9910,30,popol c +8930,19,9910,30,radimb1975 +8930,19,9910,30,radiumnz +8930,19,9910,30,rancell +8930,19,9910,30,rbertol +8930,19,9910,30,rchicken +8930,19,9910,30,regel_fleck +8930,19,9910,30,rephil +8930,19,9910,30,rkalajian +8930,19,9910,30,rutra1992 +8930,19,9910,30,rytoto +8930,19,9910,30,salty4 +8930,19,9910,30,segoh +8930,19,9910,30,seijisam +8930,19,9910,30,shagz +8930,19,9910,30,skobbolop +8930,19,9910,30,skuban +8930,19,9910,30,sp8ies +8930,19,9910,30,stevenbedell +8930,19,9910,30,stinggray +8930,19,9910,30,strikeforce007 +8930,19,9910,30,tesseractlabs +8930,19,9910,30,the cee +8930,19,9910,30,theblackheron +8930,19,9910,30,thomasog +8930,19,9910,30,timg104 +8930,19,9910,30,trailofdead +8930,19,9910,30,turgid +8930,19,9910,30,ultratom +8930,19,9910,30,vanderhast +8930,19,9910,30,xmcarlson +8930,19,9910,30,zd2046 +8930,19,9910,30,zeo_p87 +8930,19,9910,30,zoidbergforpresident +8930,19,10868,29,1arska +8930,19,10868,29,5gockbob +8930,19,10868,29,airfranz2212 +8930,19,10868,29,alemoron +8930,19,10868,29,andreferr +8930,19,10868,29,andrusscha +8930,19,10868,29,andy_g32 +8930,19,10868,29,bartek_mi +8930,19,10868,29,base the bass +8930,19,10868,29,bigbert44 +8930,19,10868,29,bigdaddy84 +8930,19,10868,29,bluehiker +8930,19,10868,29,bruiser419 +8930,19,10868,29,bunoc +8930,19,10868,29,busteratlass +8930,19,10868,29,butterymeent +8930,19,10868,29,bwjames +8930,19,10868,29,callidusx3 +8930,19,10868,29,carlg +8930,19,10868,29,cat5brother +8930,19,10868,29,chadwick12 +8930,19,10868,29,cherrybomb1502 +8930,19,10868,29,chrisoc13 +8930,19,10868,29,claaronetist +8930,19,10868,29,cloudsabacc +8930,19,10868,29,codeshark +8930,19,10868,29,commanderpachipip +8930,19,10868,29,cosworth +8930,19,10868,29,count_zr0 +8930,19,10868,29,cptjadedash +8930,19,10868,29,d3m853 +8930,19,10868,29,damnyouhussies +8930,19,10868,29,ddwolf +8930,19,10868,29,destrio +8930,19,10868,29,destro +8930,19,10868,29,difference +8930,19,10868,29,dirkie +8930,19,10868,29,dirtylittlething +8930,19,10868,29,djs326 +8930,19,10868,29,dlongo +8930,19,10868,29,dpickels +8930,19,10868,29,dpyoung +8930,19,10868,29,dyluk +8930,19,10868,29,elfus +8930,19,10868,29,emassot +8930,19,10868,29,fearlessfactotum +8930,19,10868,29,force1 +8930,19,10868,29,forgestryker +8930,19,10868,29,fubar awol +8930,19,10868,29,fubarntr +8930,19,10868,29,gasfa +8930,19,10868,29,grafzottel +8930,19,10868,29,hero164 +8930,19,10868,29,hughjayness +8930,19,10868,29,icaro66 +8930,19,10868,29,ioda19 +8930,19,10868,29,iorekbyrnison +8930,19,10868,29,jeffvachon +8930,19,10868,29,jideee +8930,19,10868,29,jmellby +8930,19,10868,29,jmmowery +8930,19,10868,29,josefsallen +8930,19,10868,29,juls2 +8930,19,10868,29,justhappy2day +8930,19,10868,29,kasey113 +8930,19,10868,29,kevinb9n +8930,19,10868,29,kil_q +8930,19,10868,29,killmeforprizes +8930,19,10868,29,kjv6675 +8930,19,10868,29,klode +8930,19,10868,29,lastbeothuk +8930,19,10868,29,lcdrizzt +8930,19,10868,29,le_ptit +8930,19,10868,29,leovx +8930,19,10868,29,letandor +8930,19,10868,29,lironcareto +8930,19,10868,29,lomingen +8930,19,10868,29,lswaage +8930,19,10868,29,m_hamburg +8930,19,10868,29,madwaen +8930,19,10868,29,markh110 +8930,19,10868,29,masterscotto +8930,19,10868,29,megamushroom +8930,19,10868,29,meloni +8930,19,10868,29,michwoo +8930,19,10868,29,middletonner +8930,19,10868,29,missjekyll +8930,19,10868,29,mmikelon +8930,19,10868,29,mtreading36 +8930,19,10868,29,napking +8930,19,10868,29,newrev +8930,19,10868,29,nijnja +8930,19,10868,29,noahtheduke +8930,19,10868,29,noodlez +8930,19,10868,29,nsnyder +8930,19,10868,29,otteravenger +8930,19,10868,29,patrickdude +8930,19,10868,29,pipkingsmith +8930,19,10868,29,pootjenkins +8930,19,10868,29,ratsia +8930,19,10868,29,redeux +8930,19,10868,29,rictabreis +8930,19,10868,29,robindoorakkers +8930,19,10868,29,rpani +8930,19,10868,29,scarge +8930,19,10868,29,seewolf +8930,19,10868,29,semptex +8930,19,10868,29,shimokitajer +8930,19,10868,29,sien +8930,19,10868,29,sigurd1410 +8930,19,10868,29,simonses +8930,19,10868,29,skaanimal22 +8930,19,10868,29,snehulak +8930,19,10868,29,steffenbarth +8930,19,10868,29,sunildrol +8930,19,10868,29,supercell2o2 +8930,19,10868,29,svsjboardgames +8930,19,10868,29,swindler +8930,19,10868,29,teeguru87 +8930,19,10868,29,teleogryl +8930,19,10868,29,thecondog3000 +8930,19,10868,29,thorin2001 +8930,19,10868,29,tompen +8930,19,10868,29,vonbismarck +8930,19,10868,29,vrfaria +8930,19,10868,29,wesleyingham13 +8930,19,10868,29,whitekid +8930,19,10868,29,whovian223 +8930,19,10868,29,xerocube +8930,19,10868,29,yodam +8930,19,10868,29,zibist +8930,19,10868,29,zoki +8930,19,10868,29,zuckenderblitz +8930,19,11831,28,a7vm +8930,19,11831,28,acidfloyd +8930,19,11831,28,akramer16 +8930,19,11831,28,aleahcim +8930,19,11831,28,analisisalcubo +8930,19,11831,28,anyonepl81 +8930,19,11831,28,aschi +8930,19,11831,28,bagbeast +8930,19,11831,28,barcarocket +8930,19,11831,28,bart51 +8930,19,11831,28,bgmafia12 +8930,19,11831,28,blindwilliemctell +8930,19,11831,28,bohnendude +8930,19,11831,28,boski10 +8930,19,11831,28,bryle +8930,19,11831,28,buennagelj +8930,19,11831,28,caunueh_t +8930,19,11831,28,cedlyness +8930,19,11831,28,cedrox +8930,19,11831,28,cegouinedykon +8930,19,11831,28,chicagojohn +8930,19,11831,28,clementxvii +8930,19,11831,28,coffeebike +8930,19,11831,28,copsrus +8930,19,11831,28,cortumpl +8930,19,11831,28,crookedpath +8930,19,11831,28,cwwallis +8930,19,11831,28,daimond +8930,19,11831,28,danielbgc +8930,19,11831,28,danjakk +8930,19,11831,28,dannyjohn +8930,19,11831,28,dave stoner +8930,19,11831,28,davyc +8930,19,11831,28,dharoth +8930,19,11831,28,dimareiz +8930,19,11831,28,dolfannjb +8930,19,11831,28,ds2084 +8930,19,11831,28,dukeofearl +8930,19,11831,28,dustptb +8930,19,11831,28,ebonyandivory +8930,19,11831,28,electricday +8930,19,11831,28,eliany +8930,19,11831,28,elmospud +8930,19,11831,28,emilson +8930,19,11831,28,epernice +8930,19,11831,28,escape_maniac +8930,19,11831,28,essen12 +8930,19,11831,28,estarriol13 +8930,19,11831,28,fattylumpkin +8930,19,11831,28,flobro +8930,19,11831,28,francarde +8930,19,11831,28,francescospagnolo +8930,19,11831,28,funkyherman +8930,19,11831,28,generaldisarray +8930,19,11831,28,geoffroyvl +8930,19,11831,28,gipyls +8930,19,11831,28,govindk +8930,19,11831,28,hamiltonweb +8930,19,11831,28,haplo1701 +8930,19,11831,28,hellibrarian +8930,19,11831,28,hkydad30 +8930,19,11831,28,hortonhearsawho +8930,19,11831,28,indianajoan +8930,19,11831,28,jafrikas +8930,19,11831,28,jk_dad +8930,19,11831,28,jmoyahigueras +8930,19,11831,28,jnnmn +8930,19,11831,28,joatildeo +8930,19,11831,28,jobieglo +8930,19,11831,28,jpiglet +8930,19,11831,28,juhaniit +8930,19,11831,28,jumpman78 +8930,19,11831,28,kikathumper +8930,19,11831,28,kmckimmy06 +8930,19,11831,28,krusa27 +8930,19,11831,28,ksumner00 +8930,19,11831,28,kyleprudencio +8930,19,11831,28,kyletravels +8930,19,11831,28,l3kris +8930,19,11831,28,lahose +8930,19,11831,28,lawilm +8930,19,11831,28,legend5555 +8930,19,11831,28,liefde_is +8930,19,11831,28,limplict +8930,19,11831,28,lordinitzt +8930,19,11831,28,lostrikis +8930,19,11831,28,luciusvorenus +8930,19,11831,28,madhujith +8930,19,11831,28,mannhemer +8930,19,11831,28,margaperez77 +8930,19,11831,28,mario pawlowski +8930,19,11831,28,markoz +8930,19,11831,28,martyjackson +8930,19,11831,28,mat88 +8930,19,11831,28,meeple_kmilo +8930,19,11831,28,mighty_owl +8930,19,11831,28,mikys36 +8930,19,11831,28,mirror33 +8930,19,11831,28,molocho +8930,19,11831,28,mykrisse +8930,19,11831,28,nancynm +8930,19,11831,28,orwe11 +8930,19,11831,28,pandade +8930,19,11831,28,papillon_i +8930,19,11831,28,pcvanya +8930,19,11831,28,pillar +8930,19,11831,28,pjsack +8930,19,11831,28,popoko +8930,19,11831,28,poppjupp +8930,19,11831,28,princemojo +8930,19,11831,28,pupepepe +8930,19,11831,28,rainwomanpdx +8930,19,11831,28,randomcamel +8930,19,11831,28,rauliki +8930,19,11831,28,realbunky +8930,19,11831,28,renato orosco +8930,19,11831,28,reversed +8930,19,11831,28,rholzgrafe +8930,19,11831,28,ricardo_rr +8930,19,11831,28,richjaxon +8930,19,11831,28,rmox +8930,19,11831,28,roarkent +8930,19,11831,28,rokenroll +8930,19,11831,28,russlove +8930,19,11831,28,sassierrabbit +8930,19,11831,28,scand1sk +8930,19,11831,28,shacky22 +8930,19,11831,28,shadowfane +8930,19,11831,28,shahiye +8930,19,11831,28,shreddemon +8930,19,11831,28,siemlac +8930,19,11831,28,siopnos +8930,19,11831,28,siquis +8930,19,11831,28,sir gustav +8930,19,11831,28,snaggle4th +8930,19,11831,28,spindoc +8930,19,11831,28,sqrt2 +8930,19,11831,28,srbrown +8930,19,11831,28,steoank +8930,19,11831,28,supermal +8930,19,11831,28,swizzler +8930,19,11831,28,tabletoppler +8930,19,11831,28,tac73 +8930,19,11831,28,taintedpsychee +8930,19,11831,28,tantalon +8930,19,11831,28,taxshop +8930,19,11831,28,ten_oclock_scholar +8930,19,11831,28,thennekp +8930,19,11831,28,timbilibele +8930,19,11831,28,toasty +8930,19,11831,28,tonysmisko +8930,19,11831,28,trompeta4321 +8930,19,11831,28,tryp09 +8930,19,11831,28,tsaar +8930,19,11831,28,v3ritas +8930,19,11831,28,vandemonium +8930,19,11831,28,vira1000 +8930,19,11831,28,yeshmania +8930,19,11831,28,yonsaiyan +8930,19,11831,28,zacharyh211 +8930,19,11831,28,zaphir +8930,19,12910,27,addamaniac +8930,19,12910,27,aitor9 +8930,19,12910,27,aleceiffel +8930,19,12910,27,aleory +8930,19,12910,27,alex_dp +8930,19,12910,27,alice87 +8930,19,12910,27,alleman85 +8930,19,12910,27,anim8r +8930,19,12910,27,anonymous apathy +8930,19,12910,27,archange227 +8930,19,12910,27,atomlinson +8930,19,12910,27,aufdh +8930,19,12910,27,azeem +8930,19,12910,27,bapadget +8930,19,12910,27,bastiankoch +8930,19,12910,27,benndragon +8930,19,12910,27,bentlycash +8930,19,12910,27,berkstrom +8930,19,12910,27,bigandid +8930,19,12910,27,bilyvme +8930,19,12910,27,bkurle +8930,19,12910,27,bluekingzog +8930,19,12910,27,bnoterman +8930,19,12910,27,bounderyan +8930,19,12910,27,broonornery +8930,19,12910,27,burnbabyburn +8930,19,12910,27,caillebotte +8930,19,12910,27,canadiancthulhu +8930,19,12910,27,cassycz +8930,19,12910,27,cberg +8930,19,12910,27,cboudreau +8930,19,12910,27,chrisnd +8930,19,12910,27,ckhaley +8930,19,12910,27,commissioner bourbon +8930,19,12910,27,csk73 +8930,19,12910,27,d3rick132 +8930,19,12910,27,danjell +8930,19,12910,27,dean bud +8930,19,12910,27,denise +8930,19,12910,27,drgrayrock +8930,19,12910,27,edward_orn +8930,19,12910,27,eyanyo +8930,19,12910,27,forgotmypencil +8930,19,12910,27,francois770 +8930,19,12910,27,fsp_dan +8930,19,12910,27,gabeschw +8930,19,12910,27,gamer4everandever +8930,19,12910,27,geekone29 +8930,19,12910,27,german24fps +8930,19,12910,27,gfelga +8930,19,12910,27,gimanos +8930,19,12910,27,gmrmgrunewald +8930,19,12910,27,gravvity +8930,19,12910,27,haoleboy +8930,19,12910,27,happyfaab49 +8930,19,12910,27,haqwau +8930,19,12910,27,hartmol +8930,19,12910,27,horationelson +8930,19,12910,27,ilushya +8930,19,12910,27,ingenierosocial +8930,19,12910,27,intemporal +8930,19,12910,27,jellypantz +8930,19,12910,27,jm974 +8930,19,12910,27,johnnydollar +8930,19,12910,27,jriggz7 +8930,19,12910,27,justdust +8930,19,12910,27,kamieniak +8930,19,12910,27,kelek94 +8930,19,12910,27,keltainennappula +8930,19,12910,27,kimajakobsen +8930,19,12910,27,kirbymd +8930,19,12910,27,koovan +8930,19,12910,27,leon1989 +8930,19,12910,27,link777 +8930,19,12910,27,lorasysbirren +8930,19,12910,27,mad4hatter +8930,19,12910,27,maddin81 +8930,19,12910,27,maklen9 +8930,19,12910,27,malakanth +8930,19,12910,27,manjula +8930,19,12910,27,markblasco +8930,19,12910,27,marstiller +8930,19,12910,27,master smashy +8930,19,12910,27,maximus82 +8930,19,12910,27,mckikk +8930,19,12910,27,mcs1213 +8930,19,12910,27,meat muppet +8930,19,12910,27,mexo +8930,19,12910,27,mikewill +8930,19,12910,27,mindfire +8930,19,12910,27,mmmiiilllaaa +8930,19,12910,27,mostromostroso +8930,19,12910,27,muchiflapopo +8930,19,12910,27,nastolkus +8930,19,12910,27,nathantbaker +8930,19,12910,27,neelson +8930,19,12910,27,negrita0 +8930,19,12910,27,neoch13 +8930,19,12910,27,niminhtaz +8930,19,12910,27,ocram82 +8930,19,12910,27,oddtime +8930,19,12910,27,oneandonlynoto +8930,19,12910,27,ozymanidias +8930,19,12910,27,paffa88 +8930,19,12910,27,pelish +8930,19,12910,27,peralgio +8930,19,12910,27,philippneri +8930,19,12910,27,pleeseemailme +8930,19,12910,27,pmboos +8930,19,12910,27,pug784 +8930,19,12910,27,qumad +8930,19,12910,27,rafaelkata +8930,19,12910,27,rafmix +8930,19,12910,27,raikotan +8930,19,12910,27,rkron +8930,19,12910,27,rockhard +8930,19,12910,27,rola2007 +8930,19,12910,27,rose0043 +8930,19,12910,27,rulico +8930,19,12910,27,salistev +8930,19,12910,27,scarvin +8930,19,12910,27,schroinger +8930,19,12910,27,seenias +8930,19,12910,27,serjacob +8930,19,12910,27,sh0s +8930,19,12910,27,shaymurai +8930,19,12910,27,shoozlefruit +8930,19,12910,27,skippan +8930,19,12910,27,sojapeti +8930,19,12910,27,sortrose +8930,19,12910,27,staxmayor +8930,19,12910,27,stefan62 +8930,19,12910,27,stellarc +8930,19,12910,27,super norb +8930,19,12910,27,superdeathflame +8930,19,12910,27,taarna +8930,19,12910,27,tege +8930,19,12910,27,tgarnier +8930,19,12910,27,thealbatross +8930,19,12910,27,theldyrn +8930,19,12910,27,thomas s +8930,19,12910,27,throne101 +8930,19,12910,27,tigerenok +8930,19,12910,27,tiktom +8930,19,12910,27,tisbou +8930,19,12910,27,tomaatti +8930,19,12910,27,toranius +8930,19,12910,27,torbenvang +8930,19,12910,27,tymmaaaay +8930,19,12910,27,waylander1 +8930,19,12910,27,wesg92 +8930,19,12910,27,whistle_pig +8930,19,12910,27,wimpeels +8930,19,12910,27,xeno lupus +8930,19,12910,27,yegods +8930,19,12910,27,zeekltk +8930,19,12910,27,zioykaro +8930,19,12910,27,zorqc +8930,19,12910,27,zottelmonster +8930,19,12910,27,zymil +8930,19,14030,26,2dtones +8930,19,14030,26,abbottj83 +8930,19,14030,26,algo +8930,19,14030,26,alkzaballos +8930,19,14030,26,ashleyandalex +8930,19,14030,26,atticus88mr +8930,19,14030,26,awesomefresh +8930,19,14030,26,baketas79 +8930,19,14030,26,beetz_wetter +8930,19,14030,26,bellyrub +8930,19,14030,26,beowulf +8930,19,14030,26,bg4all +8930,19,14030,26,biancoenero +8930,19,14030,26,boardgamearchive +8930,19,14030,26,bojangles2002 +8930,19,14030,26,bornkiller +8930,19,14030,26,bostonfan +8930,19,14030,26,bukowski1 +8930,19,14030,26,cancleeric +8930,19,14030,26,carolus3107 +8930,19,14030,26,champitron +8930,19,14030,26,chill_bill +8930,19,14030,26,chotacabras +8930,19,14030,26,chromaticdragon +8930,19,14030,26,ci193 +8930,19,14030,26,ckorfmann +8930,19,14030,26,count-zero +8930,19,14030,26,crovax20 +8930,19,14030,26,cstari +8930,19,14030,26,d_hallowell +8930,19,14030,26,daruleyman +8930,19,14030,26,davidowen +8930,19,14030,26,dduhamel1 +8930,19,14030,26,dedkid +8930,19,14030,26,dekker67 +8930,19,14030,26,desenmousse +8930,19,14030,26,dgrodo +8930,19,14030,26,dimebagofmeeples +8930,19,14030,26,diothyme +8930,19,14030,26,dipnlik +8930,19,14030,26,djcack +8930,19,14030,26,dougpeterson +8930,19,14030,26,eatem +8930,19,14030,26,economist229 +8930,19,14030,26,edou1289 +8930,19,14030,26,emidem +8930,19,14030,26,ericbad +8930,19,14030,26,fkb andreas +8930,19,14030,26,fmelosi +8930,19,14030,26,frahminator +8930,19,14030,26,fulminata +8930,19,14030,26,funkenman +8930,19,14030,26,fwats +8930,19,14030,26,gauravonomics +8930,19,14030,26,gianttortoise +8930,19,14030,26,grooviemann1 +8930,19,14030,26,gstammen +8930,19,14030,26,hadek +8930,19,14030,26,hellp +8930,19,14030,26,heron78 +8930,19,14030,26,ht80 +8930,19,14030,26,ivangrimm +8930,19,14030,26,jadehope +8930,19,14030,26,jamous +8930,19,14030,26,jault +8930,19,14030,26,javote95 +8930,19,14030,26,jayjonbeach +8930,19,14030,26,jbdante +8930,19,14030,26,jessmaciel +8930,19,14030,26,joerg1966 +8930,19,14030,26,john501 +8930,19,14030,26,jordanzs +8930,19,14030,26,joselin +8930,19,14030,26,julius82 +8930,19,14030,26,kade20 +8930,19,14030,26,karthiksetty +8930,19,14030,26,kenner77 +8930,19,14030,26,kernst67 +8930,19,14030,26,kiwols +8930,19,14030,26,lareve +8930,19,14030,26,levisiebens +8930,19,14030,26,lonecleric +8930,19,14030,26,lucas232323 +8930,19,14030,26,luke3101 +8930,19,14030,26,malexrr +8930,19,14030,26,maniacfox +8930,19,14030,26,marhub +8930,19,14030,26,mathiask +8930,19,14030,26,mathieu b +8930,19,14030,26,maxrin +8930,19,14030,26,mbraun00 +8930,19,14030,26,medusagaming +8930,19,14030,26,merikari +8930,19,14030,26,metroryushi +8930,19,14030,26,meurogeek +8930,19,14030,26,mihaid +8930,19,14030,26,mikecommons +8930,19,14030,26,mikeymiked +8930,19,14030,26,mikeysee +8930,19,14030,26,mildthrill +8930,19,14030,26,mlonnqvist +8930,19,14030,26,mniezgoda +8930,19,14030,26,mondkuss +8930,19,14030,26,mrfixsimmons +8930,19,14030,26,mrrjunior +8930,19,14030,26,myopicjoy +8930,19,14030,26,newboardorder +8930,19,14030,26,nickc1357 +8930,19,14030,26,nighttrain54 +8930,19,14030,26,nlfuller77 +8930,19,14030,26,nola504 +8930,19,14030,26,oliviern +8930,19,14030,26,olza +8930,19,14030,26,otscotty +8930,19,14030,26,panconpeenga +8930,19,14030,26,pendraggin +8930,19,14030,26,perun +8930,19,14030,26,philjc +8930,19,14030,26,pieter vh +8930,19,14030,26,pmfc1234 +8930,19,14030,26,povidiusnaso +8930,19,14030,26,professorfred +8930,19,14030,26,prohrbaugh +8930,19,14030,26,rafamb +8930,19,14030,26,ramo_teamhellep +8930,19,14030,26,rebollator +8930,19,14030,26,redrobert +8930,19,14030,26,rimkassass1 +8930,19,14030,26,rkonigsberg +8930,19,14030,26,rmmpcv +8930,19,14030,26,roock +8930,19,14030,26,rulo +8930,19,14030,26,rwrad +8930,19,14030,26,semicoop +8930,19,14030,26,shansadventure +8930,19,14030,26,sharga +8930,19,14030,26,shelmad +8930,19,14030,26,sherlocked85 +8930,19,14030,26,simcsa +8930,19,14030,26,sintyrax +8930,19,14030,26,siraraven +8930,19,14030,26,slick! +8930,19,14030,26,sloehand +8930,19,14030,26,smijatov +8930,19,14030,26,st33v3 +8930,19,14030,26,stuie81 +8930,19,14030,26,szajko +8930,19,14030,26,takras +8930,19,14030,26,tobing +8930,19,14030,26,tomojaco +8930,19,14030,26,triviageek +8930,19,14030,26,turm +8930,19,14030,26,varneysa +8930,19,14030,26,vdesrochers +8930,19,14030,26,vergi +8930,19,14030,26,virolos +8930,19,14030,26,wildwildbil +8930,19,14030,26,wizpop +8930,19,14030,26,woodelf_dave +8930,19,14030,26,wooz71 +8930,19,14030,26,woszkl +8930,19,14030,26,zemexxx +8930,19,14030,26,zork99 +8930,19,15326,25,acpc +8930,19,15326,25,aleacarv +8930,19,15326,25,avo_liao +8930,19,15326,25,basiliv +8930,19,15326,25,beept +8930,19,15326,25,bigmoecrane +8930,19,15326,25,bills933 +8930,19,15326,25,blindsidedork +8930,19,15326,25,bobbyreichle +8930,19,15326,25,brentmh +8930,19,15326,25,chrissilbereisen +8930,19,15326,25,coolin86 +8930,19,15326,25,deb1369 +8930,19,15326,25,deef2 +8930,19,15326,25,dhable +8930,19,15326,25,dillkanelen +8930,19,15326,25,djhill +8930,19,15326,25,doctorj +8930,19,15326,25,dragonpup +8930,19,15326,25,ducttapemaster7 +8930,19,15326,25,eurofun +8930,19,15326,25,fayleen +8930,19,15326,25,flolem +8930,19,15326,25,franklintv +8930,19,15326,25,fredoux +8930,19,15326,25,geebee2 +8930,19,15326,25,gekey +8930,19,15326,25,gfninja +8930,19,15326,25,gutrie_es +8930,19,15326,25,hammbag +8930,19,15326,25,hellvet +8930,19,15326,25,itazzy +8930,19,15326,25,jakkaof86 +8930,19,15326,25,jderoy144 +8930,19,15326,25,jdkasten +8930,19,15326,25,jeffhiatt +8930,19,15326,25,jeffsarris +8930,19,15326,25,jessebilger +8930,19,15326,25,jh_ytth +8930,19,15326,25,joschi80 +8930,19,15326,25,jrusch +8930,19,15326,25,jwrinne +8930,19,15326,25,lepofl +8930,19,15326,25,lucret001 +8930,19,15326,25,luschx +8930,19,15326,25,manchild81 +8930,19,15326,25,merkulo +8930,19,15326,25,nath1975 +8930,19,15326,25,notacceptable406 +8930,19,15326,25,ork33 +8930,19,15326,25,paintedcow +8930,19,15326,25,pandakai +8930,19,15326,25,pdef +8930,19,15326,25,pienso +8930,19,15326,25,popoldal +8930,19,15326,25,ramzes23 +8930,19,15326,25,renanzx +8930,19,15326,25,rescube +8930,19,15326,25,rharla +8930,19,15326,25,rikicorgan +8930,19,15326,25,robert olesen +8930,19,15326,25,rockosaurus +8930,19,15326,25,rockxhero +8930,19,15326,25,roelj +8930,19,15326,25,rpopuc +8930,19,15326,25,schmidtjas +8930,19,15326,25,schuwa +8930,19,15326,25,scottf +8930,19,15326,25,sergio_pozcam +8930,19,15326,25,sinlexx +8930,19,15326,25,solfeld +8930,19,15326,25,sonde +8930,19,15326,25,sonofagiant +8930,19,15326,25,stewwwe +8930,19,15326,25,stiltr01 +8930,19,15326,25,suntzunhu +8930,19,15326,25,the barefoot killer +8930,19,15326,25,thomasinny +8930,19,15326,25,thosw +8930,19,15326,25,tin_whisker +8930,19,15326,25,tuliobarros +8930,19,15326,25,ultraspank35 +8930,19,15326,25,vartrek +8930,19,15326,25,vasilis kourt +8930,19,15326,25,vojnikmon +8930,19,15326,25,waltersche +8930,19,15326,25,willau +8930,19,15326,25,wollyke +8930,19,15326,25,xilconic +8930,19,15326,25,yanvitamin +8930,19,15326,25,zoooch25 +8930,19,16710,24,_zix_ +8930,19,16710,24,a4rino +8930,19,16710,24,alex8889 +8930,19,16710,24,arwenanja +8930,19,16710,24,avataarkaap +8930,19,16710,24,bacella14 +8930,19,16710,24,backissuebacklog +8930,19,16710,24,bigbc79 +8930,19,16710,24,blckflm +8930,19,16710,24,bmfinc +8930,19,16710,24,brandonmoon +8930,19,16710,24,bruchmax +8930,19,16710,24,bsabik +8930,19,16710,24,cama891 +8930,19,16710,24,cardsandtiles +8930,19,16710,24,cerebral333 +8930,19,16710,24,circusfreak +8930,19,16710,24,cmagex +8930,19,16710,24,crickrock +8930,19,16710,24,cycyx +8930,19,16710,24,cyroth +8930,19,16710,24,dacsmore +8930,19,16710,24,danthechase +8930,19,16710,24,davides +8930,19,16710,24,dimitris xs +8930,19,16710,24,drdash +8930,19,16710,24,dwb287 +8930,19,16710,24,falcosj +8930,19,16710,24,feripekun +8930,19,16710,24,footnote +8930,19,16710,24,frankie21 +8930,19,16710,24,frannob85 +8930,19,16710,24,gameguythinks +8930,19,16710,24,garyjames +8930,19,16710,24,gjfurst +8930,19,16710,24,glus +8930,19,16710,24,inquisitor eisenhorn +8930,19,16710,24,jahill18 +8930,19,16710,24,janlynn +8930,19,16710,24,jekmeister +8930,19,16710,24,joefling34 +8930,19,16710,24,joverowa +8930,19,16710,24,kroelh +8930,19,16710,24,letsfetz +8930,19,16710,24,lliwedd +8930,19,16710,24,lotazlo +8930,19,16710,24,lunaluz +8930,19,16710,24,manhattan reject +8930,19,16710,24,mark27 +8930,19,16710,24,markoo +8930,19,16710,24,mc kain +8930,19,16710,24,mightymike85 +8930,19,16710,24,miguelchaves84 +8930,19,16710,24,mitchmistake +8930,19,16710,24,modnumi +8930,19,16710,24,mottchen +8930,19,16710,24,myhowdy +8930,19,16710,24,nanafrontado +8930,19,16710,24,obenn +8930,19,16710,24,odpadatomowy87 +8930,19,16710,24,pato +8930,19,16710,24,powlo +8930,19,16710,24,quicksilver1971 +8930,19,16710,24,rabbitfly +8930,19,16710,24,riyan216 +8930,19,16710,24,sevillano27 +8930,19,16710,24,sgbonham84 +8930,19,16710,24,shakka +8930,19,16710,24,sinead2 +8930,19,16710,24,slumpy +8930,19,16710,24,smets +8930,19,16710,24,sundancemuraille +8930,19,16710,24,tableflips +8930,19,16710,24,tafkad +8930,19,16710,24,the_bengine +8930,19,16710,24,tropical +8930,19,16710,24,turbo pascal +8930,19,16710,24,vaszilij +8930,19,16710,24,willgreg +8930,19,16710,24,wolekmkb +8930,19,16710,24,wwalker98 +8930,19,18170,23,aleksandraaa +8930,19,18170,23,barghy +8930,19,18170,23,beabea +8930,19,18170,23,bethor +8930,19,18170,23,bobbyrayiam +8930,19,18170,23,bocachankla +8930,19,18170,23,coobe +8930,19,18170,23,csatty +8930,19,18170,23,csibadajoz +8930,19,18170,23,darrenbrown +8930,19,18170,23,ditzone +8930,19,18170,23,duckula +8930,19,18170,23,emmysteenackers +8930,19,18170,23,fiasc0 +8930,19,18170,23,glorits +8930,19,18170,23,hackenbu +8930,19,18170,23,jaeryn78 +8930,19,18170,23,joeypickle +8930,19,18170,23,le chef_erj +8930,19,18170,23,luthiennienna +8930,19,18170,23,madimatt +8930,19,18170,23,mevitale +8930,19,18170,23,noaros +8930,19,18170,23,nunda +8930,19,18170,23,nylo +8930,19,18170,23,nzpike +8930,19,18170,23,pebell +8930,19,18170,23,polycrafty +8930,19,18170,23,prolestat +8930,19,18170,23,roso +8930,19,18170,23,sbellon +8930,19,18170,23,serfan68 +8930,19,18170,23,spielemitkinder +8930,19,18170,23,straight to hell +8930,19,18170,23,thejoker2 +8930,19,18170,23,theladyofwaterdeep +8930,19,18170,23,valnir +8930,19,18170,23,warcry85 +8930,19,18170,23,wildgift +8930,19,18170,23,wolvers +8930,19,19906,22,atomike +8930,19,19906,22,godfrey1984 +8930,19,19906,22,lumaga +8930,19,19906,22,mackidd13 +8930,19,19906,22,woodgecko +8930,19,21713,21,cob1972 +10459,18,4,267,whytemeet +10459,18,6,232,fevin +10459,18,273,83,tvstevie +10459,18,652,67,felix_wof +10459,18,652,67,felixthm +10459,18,787,64,prestidigitador +10459,18,843,63,viszla +10459,18,1034,60,sahilrhapar +10459,18,1459,55,steinbomber +10459,18,1568,54,socalsabre +10459,18,1792,52,whitespider1066 +10459,18,1906,51,above2 +10459,18,1906,51,duglis +10459,18,1906,51,roundtablegames +10459,18,1906,51,rustamibrahim +10459,18,2053,50,boquique +10459,18,2053,50,cuento +10459,18,2204,49,franklindevries6 +10459,18,2204,49,krokodiler +10459,18,2204,49,ronnay +10459,18,2351,48,andrewcarless +10459,18,2351,48,salieri84 +10459,18,2351,48,tchasteenjr +10459,18,2351,48,tilver41 +10459,18,2555,47,bearleelucky +10459,18,2555,47,thelegitsandman +10459,18,2758,46,carrielles +10459,18,2758,46,paolofasola +10459,18,2969,45,coob +10459,18,2969,45,hiro protag +10459,18,2969,45,ruimtevaarder +10459,18,2969,45,usiandrew +10459,18,2969,45,valis13 +10459,18,2969,45,xzidan +10459,18,2969,45,zaraki kempachi +10459,18,3216,44,beauka +10459,18,3216,44,dr_ballon +10459,18,3216,44,faded_pixels +10459,18,3216,44,heimer73 +10459,18,3216,44,igorio007 +10459,18,3216,44,ksfisher +10459,18,3216,44,magirain +10459,18,3216,44,mavis101 +10459,18,3216,44,microver99 +10459,18,3216,44,stromboli +10459,18,3216,44,teamjimby +10459,18,3216,44,william kohler +10459,18,3514,43,cayers +10459,18,3514,43,datroll +10459,18,3514,43,hyperagent +10459,18,3514,43,maanee +10459,18,3514,43,mozzik +10459,18,3514,43,rainer_k +10459,18,3514,43,shigusan +10459,18,3514,43,swxnw +10459,18,3514,43,texasjusticar +10459,18,3514,43,threems +10459,18,3815,42,assassin skittles +10459,18,3815,42,astroglide +10459,18,3815,42,dyroc306 +10459,18,3815,42,hawkeye16 +10459,18,3815,42,jenkon +10459,18,3815,42,jimwise +10459,18,3815,42,kensheffield +10459,18,3815,42,ofrosch +10459,18,3815,42,przemo +10459,18,3815,42,shonsu +10459,18,3815,42,stevecorby +10459,18,4092,41,chreotho +10459,18,4092,41,corelbbk +10459,18,4092,41,goeshi +10459,18,4092,41,gullegalten +10459,18,4092,41,llwesley +10459,18,4092,41,mcrounds +10459,18,4092,41,miqueljornet +10459,18,4092,41,smoorecrux +10459,18,4426,40,andreo888 +10459,18,4426,40,jivan35 +10459,18,4426,40,krieghund +10459,18,4426,40,olorinscousin +10459,18,4426,40,schmytz +10459,18,4426,40,smok +10459,18,4426,40,theilian +10459,18,4782,39,ammoseven +10459,18,4782,39,askia +10459,18,4782,39,c4dillon +10459,18,4782,39,cgilb3rt +10459,18,4782,39,greggles1983 +10459,18,4782,39,islay +10459,18,4782,39,korn73 +10459,18,4782,39,lokisfun +10459,18,4782,39,mr zir +10459,18,4782,39,narcispro +10459,18,4782,39,nezran +10459,18,4782,39,norberts +10459,18,4782,39,rcah +10459,18,4782,39,storm007 +10459,18,4782,39,stormarov45 +10459,18,4782,39,szyimon +10459,18,5150,38,bigoi75 +10459,18,5150,38,bsnyder788 +10459,18,5150,38,chaoshawk +10459,18,5150,38,desmotrek1 +10459,18,5150,38,eliasdkehr +10459,18,5150,38,kentphan +10459,18,5150,38,mmmbraaains +10459,18,5150,38,norgazol +10459,18,5150,38,ordasmania +10459,18,5150,38,unitoch +10459,18,5150,38,unloufoque +10459,18,5150,38,watno +10459,18,5150,38,wilczyczort +10459,18,5624,37,arundel +10459,18,5624,37,chemeng +10459,18,5624,37,deodorrik +10459,18,5624,37,derpatrizier +10459,18,5624,37,eddihunter +10459,18,5624,37,emmel +10459,18,5624,37,erlaad +10459,18,5624,37,hexendoktor +10459,18,5624,37,hirocon +10459,18,5624,37,juggler2000 +10459,18,5624,37,kcc132 +10459,18,5624,37,khards +10459,18,5624,37,mac b +10459,18,5624,37,muse23pt +10459,18,5624,37,mycoman +10459,18,5624,37,neokarasu +10459,18,5624,37,oosie +10459,18,5624,37,poweruser +10459,18,5624,37,revenant +10459,18,5624,37,scroobalydoobaly +10459,18,5624,37,suzan +10459,18,6063,36,ben_b2 +10459,18,6063,36,blark +10459,18,6063,36,brunnyer +10459,18,6063,36,caiowulf +10459,18,6063,36,caseymoeller +10459,18,6063,36,dukelander +10459,18,6063,36,fifilagirafe +10459,18,6063,36,hrc333 +10459,18,6063,36,joevovich +10459,18,6063,36,karasenko_taras +10459,18,6063,36,marius n milan +10459,18,6063,36,mayhew96 +10459,18,6063,36,metilprednisona +10459,18,6063,36,misiodziej +10459,18,6063,36,paynentt +10459,18,6063,36,ravic83 +10459,18,6063,36,scamander_1920 +10459,18,6063,36,spechtje +10459,18,6063,36,yogibaldguru +10459,18,6573,35,aanallein +10459,18,6573,35,alexvw +10459,18,6573,35,alfendice +10459,18,6573,35,andy612 +10459,18,6573,35,bad63rfx +10459,18,6573,35,baol +10459,18,6573,35,bassfisher44 +10459,18,6573,35,capt boardgame +10459,18,6573,35,chriswalrath +10459,18,6573,35,cliveevilc +10459,18,6573,35,dirk.krause +10459,18,6573,35,drimacus +10459,18,6573,35,erjones +10459,18,6573,35,fallen_cat +10459,18,6573,35,freidenker19 +10459,18,6573,35,giantskunk +10459,18,6573,35,greenshazzaman +10459,18,6573,35,heezdad +10459,18,6573,35,ianwiles +10459,18,6573,35,iliveinyourhead +10459,18,6573,35,jollster725 +10459,18,6573,35,juegoyreal +10459,18,6573,35,konstant78 +10459,18,6573,35,m0oath +10459,18,6573,35,moonhawk +10459,18,6573,35,nerdymove +10459,18,6573,35,netherspirit +10459,18,6573,35,nickmcgyrk +10459,18,6573,35,petermedved +10459,18,6573,35,ranmalit +10459,18,6573,35,rikkie1980 +10459,18,6573,35,riquemaga +10459,18,6573,35,sufertashu +10459,18,6573,35,teedyay +10459,18,6573,35,tkoch +10459,18,6573,35,waterdeepflapjack +10459,18,6573,35,yakizar +10459,18,7100,34,alejabar +10459,18,7100,34,alejandrovenezuela +10459,18,7100,34,allezpsg +10459,18,7100,34,alpogiannis +10459,18,7100,34,blockhead +10459,18,7100,34,brbresse +10459,18,7100,34,cookiemonster83 +10459,18,7100,34,donjuanolo +10459,18,7100,34,drayven +10459,18,7100,34,fulltincan +10459,18,7100,34,gwash +10459,18,7100,34,hardyworld +10459,18,7100,34,houston890 +10459,18,7100,34,johndubois +10459,18,7100,34,lorthyne +10459,18,7100,34,m0t0rh34d +10459,18,7100,34,mablet +10459,18,7100,34,maxx_yazz +10459,18,7100,34,metabulis +10459,18,7100,34,midwest razorback +10459,18,7100,34,phantomness +10459,18,7100,34,quala0409 +10459,18,7100,34,random order +10459,18,7100,34,red_herring +10459,18,7100,34,richmulholland +10459,18,7100,34,sellenka +10459,18,7100,34,selwyth +10459,18,7100,34,spatsnat +10459,18,7100,34,spyro +10459,18,7100,34,takeeacy +10459,18,7100,34,thedirtyhamm +10459,18,7100,34,thomparsons +10459,18,7100,34,treveros +10459,18,7100,34,turnabout +10459,18,7100,34,tyleroregon +10459,18,7100,34,vintem +10459,18,7100,34,vitus979 +10459,18,7100,34,wimg +10459,18,7100,34,zyxbg +10459,18,7679,33,appoc +10459,18,7679,33,benphia +10459,18,7679,33,berud +10459,18,7679,33,brass_herald +10459,18,7679,33,brewgeek +10459,18,7679,33,buck tarbrush +10459,18,7679,33,cfmcgregor +10459,18,7679,33,chump +10459,18,7679,33,chutch1035 +10459,18,7679,33,dabendan +10459,18,7679,33,davizolo +10459,18,7679,33,djedje1501 +10459,18,7679,33,dombrovo +10459,18,7679,33,estemy +10459,18,7679,33,fadeproofvision +10459,18,7679,33,fizboz +10459,18,7679,33,gameosx +10459,18,7679,33,hivekeeper +10459,18,7679,33,isearch +10459,18,7679,33,jbiggsjr7 +10459,18,7679,33,jige27 +10459,18,7679,33,jim cobb +10459,18,7679,33,johncoxon +10459,18,7679,33,kabalie +10459,18,7679,33,ktina83 +10459,18,7679,33,madish +10459,18,7679,33,marcel van z +10459,18,7679,33,mike b +10459,18,7679,33,mills +10459,18,7679,33,nschroedl +10459,18,7679,33,pvtbeckmorale1 +10459,18,7679,33,rushhowe +10459,18,7679,33,skye40 +10459,18,7679,33,stormnexus +10459,18,7679,33,tagger418 +10459,18,7679,33,tkopach +10459,18,7679,33,tyrogus +10459,18,7679,33,vila +10459,18,7679,33,yassinbart +10459,18,7679,33,yxt13 +10459,18,8351,32,admiralgt +10459,18,8351,32,agap +10459,18,8351,32,andrzej h +10459,18,8351,32,bkoons +10459,18,8351,32,bunnystyle +10459,18,8351,32,bykkarn +10459,18,8351,32,chiefkid_za +10459,18,8351,32,conrad_assolade +10459,18,8351,32,cowchip7 +10459,18,8351,32,craigcoffin +10459,18,8351,32,crowducker +10459,18,8351,32,dk1234 +10459,18,8351,32,fazupala +10459,18,8351,32,franczyk +10459,18,8351,32,frank1fischer +10459,18,8351,32,frengil +10459,18,8351,32,ghostdemon +10459,18,8351,32,gwolny +10459,18,8351,32,herplayfulness +10459,18,8351,32,herrgregthe1st +10459,18,8351,32,janwillemvl +10459,18,8351,32,jerod_tb +10459,18,8351,32,jhopper88 +10459,18,8351,32,juasri +10459,18,8351,32,katore +10459,18,8351,32,knipoog +10459,18,8351,32,krakencultist +10459,18,8351,32,leftynz +10459,18,8351,32,letsgettrivial +10459,18,8351,32,maranello20 +10459,18,8351,32,mat_eyo +10459,18,8351,32,mozgoboy +10459,18,8351,32,mplsirr +10459,18,8351,32,mrgameplayer +10459,18,8351,32,normandy001 +10459,18,8351,32,olocop +10459,18,8351,32,omneo +10459,18,8351,32,pallet ranger +10459,18,8351,32,patamyo +10459,18,8351,32,playl3oii +10459,18,8351,32,poboy +10459,18,8351,32,pregremlin +10459,18,8351,32,quipper +10459,18,8351,32,rjr1968 +10459,18,8351,32,sid hawkins +10459,18,8351,32,sluu83 +10459,18,8351,32,smurfylicious +10459,18,8351,32,stepanida +10459,18,8351,32,takacsot +10459,18,8351,32,terminizor +10459,18,8351,32,tikigod +10459,18,8351,32,vcrproszek +10459,18,8351,32,vhk43 +10459,18,8351,32,xmorridin +10459,18,8351,32,yosz +10459,18,9086,31,atrixmann +10459,18,9086,31,bankzierde +10459,18,9086,31,bdharp +10459,18,9086,31,beeki76 +10459,18,9086,31,betan +10459,18,9086,31,black canyon +10459,18,9086,31,borto +10459,18,9086,31,carnubawax +10459,18,9086,31,chrisdk +10459,18,9086,31,cowley5481 +10459,18,9086,31,cyber_diablo +10459,18,9086,31,darrylferster +10459,18,9086,31,death and taxis +10459,18,9086,31,deleted010518 +10459,18,9086,31,divinentd +10459,18,9086,31,domin2111 +10459,18,9086,31,drbrooks +10459,18,9086,31,drklingmann +10459,18,9086,31,ebz28 +10459,18,9086,31,ekubiak +10459,18,9086,31,elec7rick +10459,18,9086,31,enterthedodo +10459,18,9086,31,franbach +10459,18,9086,31,franklynstreet +10459,18,9086,31,fwtmp +10459,18,9086,31,galapagos +10459,18,9086,31,geathu +10459,18,9086,31,germantodd +10459,18,9086,31,gromb +10459,18,9086,31,guill3 +10459,18,9086,31,hannahdg +10459,18,9086,31,idan ariav +10459,18,9086,31,idiotlove +10459,18,9086,31,imtylerdurden +10459,18,9086,31,jamao +10459,18,9086,31,jessicanimation +10459,18,9086,31,jjjr +10459,18,9086,31,kathkst +10459,18,9086,31,kawa83 +10459,18,9086,31,kethryveris +10459,18,9086,31,ketoglutarat +10459,18,9086,31,klamer +10459,18,9086,31,kuantumsuicide +10459,18,9086,31,le52ek +10459,18,9086,31,lordbulb +10459,18,9086,31,mad_jaxxx +10459,18,9086,31,martingehrke +10459,18,9086,31,marxistgopher +10459,18,9086,31,mbrugato +10459,18,9086,31,mihnea_1309 +10459,18,9086,31,mikalinak +10459,18,9086,31,molrix +10459,18,9086,31,mr moon 420 +10459,18,9086,31,nadeski +10459,18,9086,31,nswoll +10459,18,9086,31,olipicard +10459,18,9086,31,ousdrasil +10459,18,9086,31,ozvortex +10459,18,9086,31,peekey +10459,18,9086,31,postapocalypticjake +10459,18,9086,31,qbaran +10459,18,9086,31,rajanne +10459,18,9086,31,realveto +10459,18,9086,31,salyt +10459,18,9086,31,saturnringer +10459,18,9086,31,savannah93 +10459,18,9086,31,senhouse +10459,18,9086,31,skecno +10459,18,9086,31,sloninka +10459,18,9086,31,slyde +10459,18,9086,31,snotrabjorn +10459,18,9086,31,tablenauts_doolin +10459,18,9086,31,tiford88 +10459,18,9086,31,tomaxzielik +10459,18,9086,31,topherhernandez +10459,18,9086,31,ulric12 +10459,18,9086,31,unbornchikken +10459,18,9086,31,vale1387 +10459,18,9086,31,wildabeast +10459,18,9086,31,xmunroe +10459,18,9086,31,zamomin +10459,18,9086,31,zhiqian +10459,18,9910,30,abura448 +10459,18,9910,30,accelerator +10459,18,9910,30,adraax +10459,18,9910,30,afoletti +10459,18,9910,30,agent_t_bib +10459,18,9910,30,ajurisic +10459,18,9910,30,andrelsco +10459,18,9910,30,asm017b +10459,18,9910,30,berndado +10459,18,9910,30,billy murphy +10459,18,9910,30,blacktemplar +10459,18,9910,30,chicken_neck +10459,18,9910,30,clausen +10459,18,9910,30,cortez the killer +10459,18,9910,30,counter example +10459,18,9910,30,danicm3 +10459,18,9910,30,dankaran +10459,18,9910,30,danrodz +10459,18,9910,30,dinasemrys +10459,18,9910,30,doug11 +10459,18,9910,30,dougorleans +10459,18,9910,30,ds7282 +10459,18,9910,30,duskwho +10459,18,9910,30,edward j grug iii +10459,18,9910,30,ewetterl +10459,18,9910,30,fabiofleming +10459,18,9910,30,falsshadow +10459,18,9910,30,flundi +10459,18,9910,30,frillycakes +10459,18,9910,30,gabrybe +10459,18,9910,30,gaino +10459,18,9910,30,ginopino39 +10459,18,9910,30,gmk666 +10459,18,9910,30,govmiller +10459,18,9910,30,grucha +10459,18,9910,30,hasnak +10459,18,9910,30,hastyhobbit +10459,18,9910,30,holubchyk +10459,18,9910,30,homeksmith +10459,18,9910,30,hwesta +10459,18,9910,30,isbjornen +10459,18,9910,30,itr0uble +10459,18,9910,30,jetspike +10459,18,9910,30,jonni +10459,18,9910,30,jugashvili +10459,18,9910,30,julsantej +10459,18,9910,30,kasi12zke +10459,18,9910,30,kingsleypark +10459,18,9910,30,kittymeow71 +10459,18,9910,30,ktlily +10459,18,9910,30,kuula +10459,18,9910,30,kyledavis +10459,18,9910,30,labalbi +10459,18,9910,30,leanderuk +10459,18,9910,30,legolaws +10459,18,9910,30,liverpoolynwa +10459,18,9910,30,lord_andrak +10459,18,9910,30,lucyjo +10459,18,9910,30,madlex +10459,18,9910,30,majka55 +10459,18,9910,30,marktb1961 +10459,18,9910,30,marty s +10459,18,9910,30,mattyth +10459,18,9910,30,melatonina +10459,18,9910,30,messipepsi +10459,18,9910,30,mormonmommy +10459,18,9910,30,morrison +10459,18,9910,30,muemmelmann +10459,18,9910,30,namrok +10459,18,9910,30,nextgammer +10459,18,9910,30,noradrenalin +10459,18,9910,30,ogunwe +10459,18,9910,30,onemanpartycrew +10459,18,9910,30,oskar_cz +10459,18,9910,30,paixtaras +10459,18,9910,30,pajarolokins +10459,18,9910,30,paqman +10459,18,9910,30,patriotspat +10459,18,9910,30,pipindq +10459,18,9910,30,pleese +10459,18,9910,30,prokonsul piotrus +10459,18,9910,30,prowlz +10459,18,9910,30,r106 +10459,18,9910,30,redoak917 +10459,18,9910,30,ringan +10459,18,9910,30,ronbelgium +10459,18,9910,30,ross_1412 +10459,18,9910,30,sasquatch101 +10459,18,9910,30,sebasttan +10459,18,9910,30,serapis +10459,18,9910,30,simonstern +10459,18,9910,30,starlost151 +10459,18,9910,30,statman22 +10459,18,9910,30,stickerooni +10459,18,9910,30,stomm +10459,18,9910,30,stonehunter18 +10459,18,9910,30,stretchy +10459,18,9910,30,suslikon +10459,18,9910,30,tablenauts +10459,18,9910,30,tafkag +10459,18,9910,30,talldwarf +10459,18,9910,30,thebigfatpenguin +10459,18,9910,30,tjwightman +10459,18,9910,30,torakko +10459,18,9910,30,tsias +10459,18,9910,30,ultralra +10459,18,9910,30,valli22 +10459,18,9910,30,valrikct +10459,18,9910,30,vazquezramos +10459,18,9910,30,zezzo +10459,18,10868,29,acid_tdk +10459,18,10868,29,aenoch +10459,18,10868,29,ahhhfreakout +10459,18,10868,29,ailei_1965 +10459,18,10868,29,alleserik +10459,18,10868,29,altf4_92 +10459,18,10868,29,amon_ra +10459,18,10868,29,andypander +10459,18,10868,29,angelblue +10459,18,10868,29,anmdc +10459,18,10868,29,arnie78 +10459,18,10868,29,art642 +10459,18,10868,29,ashamel +10459,18,10868,29,auntienicola +10459,18,10868,29,awbm8d +10459,18,10868,29,b4retina +10459,18,10868,29,baelrah +10459,18,10868,29,balzi +10459,18,10868,29,banf2014 +10459,18,10868,29,bartys44 +10459,18,10868,29,baumeister +10459,18,10868,29,bereng +10459,18,10868,29,bilboatbagend +10459,18,10868,29,biobuster1 +10459,18,10868,29,boyo +10459,18,10868,29,brigden +10459,18,10868,29,bromie +10459,18,10868,29,bulkoth +10459,18,10868,29,captainksu +10459,18,10868,29,cdhiner +10459,18,10868,29,christopherfritel +10459,18,10868,29,curruku +10459,18,10868,29,cutglass +10459,18,10868,29,damonwilder +10459,18,10868,29,daveholme +10459,18,10868,29,derwood55 +10459,18,10868,29,desmobiker3 +10459,18,10868,29,dieterminator +10459,18,10868,29,donpolillo +10459,18,10868,29,donpositano +10459,18,10868,29,doom18 +10459,18,10868,29,doyle9904 +10459,18,10868,29,dprcooke +10459,18,10868,29,drflanagan +10459,18,10868,29,dustyu +10459,18,10868,29,ebonecircus +10459,18,10868,29,fatalerror1972 +10459,18,10868,29,flipsidestix +10459,18,10868,29,fobosdeimos +10459,18,10868,29,fredosi +10459,18,10868,29,gambitdragon +10459,18,10868,29,gelbmensch +10459,18,10868,29,goatie71 +10459,18,10868,29,grahamf +10459,18,10868,29,gray_dp +10459,18,10868,29,hockeyfriend70 +10459,18,10868,29,houseofun +10459,18,10868,29,j-berman +10459,18,10868,29,jacovis +10459,18,10868,29,jbranco +10459,18,10868,29,jebbin +10459,18,10868,29,jfmvanpuijenbroek +10459,18,10868,29,jmmcreynolds +10459,18,10868,29,joelbear +10459,18,10868,29,joshie +10459,18,10868,29,jse0508 +10459,18,10868,29,jstoesz +10459,18,10868,29,justusjonas +10459,18,10868,29,kaneii +10459,18,10868,29,kmatejka +10459,18,10868,29,kostyr +10459,18,10868,29,lausdower +10459,18,10868,29,lawje +10459,18,10868,29,lazarustaxon +10459,18,10868,29,lhomme +10459,18,10868,29,locusts_2000 +10459,18,10868,29,ltmad +10459,18,10868,29,luckyslug +10459,18,10868,29,luisjoliva +10459,18,10868,29,maelkann +10459,18,10868,29,magmahcf +10459,18,10868,29,mandirnorange +10459,18,10868,29,maniacx +10459,18,10868,29,maratha +10459,18,10868,29,marsac +10459,18,10868,29,maurice1981 +10459,18,10868,29,mcmartian +10459,18,10868,29,meimbatman +10459,18,10868,29,mithrasswe +10459,18,10868,29,moriakaice +10459,18,10868,29,mostlysolo +10459,18,10868,29,mr_morpheus +10459,18,10868,29,nate_001 +10459,18,10868,29,nechin +10459,18,10868,29,nekomancer +10459,18,10868,29,nicotnk +10459,18,10868,29,nwulfi +10459,18,10868,29,parliament +10459,18,10868,29,patho08 +10459,18,10868,29,pedepor +10459,18,10868,29,phonline +10459,18,10868,29,poisonjamuk +10459,18,10868,29,prik30 +10459,18,10868,29,qtheguru +10459,18,10868,29,rball +10459,18,10868,29,scatcho +10459,18,10868,29,sherpa74 +10459,18,10868,29,simon j +10459,18,10868,29,skippy2toes +10459,18,10868,29,snurp +10459,18,10868,29,snyderoo +10459,18,10868,29,spartik +10459,18,10868,29,spetznova +10459,18,10868,29,spininthebox +10459,18,10868,29,sshaikh +10459,18,10868,29,swspoerle +10459,18,10868,29,tanjajohanna +10459,18,10868,29,termass +10459,18,10868,29,teutonic24 +10459,18,10868,29,tha_crow +10459,18,10868,29,thaushur +10459,18,10868,29,the gamesplainer +10459,18,10868,29,theatlas +10459,18,10868,29,tonycr +10459,18,10868,29,undeadvizier +10459,18,10868,29,utahckh +10459,18,10868,29,vaultboy +10459,18,10868,29,vernowhitney +10459,18,10868,29,vilgefortz +10459,18,10868,29,waca89 +10459,18,10868,29,wakisashi +10459,18,10868,29,yadeftw +10459,18,10868,29,yashima +10459,18,10868,29,yodowsky +10459,18,10868,29,yomismootravez +10459,18,10868,29,zark +10459,18,10868,29,zwecklos +10459,18,11831,28,_marty_ +10459,18,11831,28,aarontu +10459,18,11831,28,achall615 +10459,18,11831,28,aerohudson +10459,18,11831,28,aju26 +10459,18,11831,28,allboardedup +10459,18,11831,28,andrewhodkinson +10459,18,11831,28,ashen_ghost +10459,18,11831,28,asmodejs +10459,18,11831,28,avt_12 +10459,18,11831,28,bassoonester +10459,18,11831,28,bender74 +10459,18,11831,28,bholmes4 +10459,18,11831,28,blaze241 +10459,18,11831,28,blind_sniper +10459,18,11831,28,bloodrose99 +10459,18,11831,28,boardiacs +10459,18,11831,28,brentybrent18 +10459,18,11831,28,bummi +10459,18,11831,28,busiek +10459,18,11831,28,buttadam +10459,18,11831,28,caesarmom +10459,18,11831,28,calepin +10459,18,11831,28,capn_hampton +10459,18,11831,28,chtfld +10459,18,11831,28,chuck singer +10459,18,11831,28,clauz79 +10459,18,11831,28,collasta +10459,18,11831,28,cuparyk +10459,18,11831,28,d2sm10 +10459,18,11831,28,davord +10459,18,11831,28,depredador294 +10459,18,11831,28,detchere +10459,18,11831,28,dianthus75 +10459,18,11831,28,djgt +10459,18,11831,28,dr burdie +10459,18,11831,28,drdes +10459,18,11831,28,dsmoses +10459,18,11831,28,duchisoft +10459,18,11831,28,e_tres +10459,18,11831,28,ecoke19 +10459,18,11831,28,elprzybyllo +10459,18,11831,28,eugeybear +10459,18,11831,28,falafel007 +10459,18,11831,28,faoiltiarna +10459,18,11831,28,fmferriz +10459,18,11831,28,fnar +10459,18,11831,28,fsnam +10459,18,11831,28,gingersmoczek +10459,18,11831,28,gnidan +10459,18,11831,28,goatsarecool +10459,18,11831,28,gojira +10459,18,11831,28,gonzo3 +10459,18,11831,28,gpetya17 +10459,18,11831,28,gudjonts +10459,18,11831,28,gumps +10459,18,11831,28,gunmd0wn +10459,18,11831,28,harryet +10459,18,11831,28,harw023 +10459,18,11831,28,heinzy57 +10459,18,11831,28,henrythesecond +10459,18,11831,28,holly185 +10459,18,11831,28,hxbx +10459,18,11831,28,ignipes +10459,18,11831,28,integrase +10459,18,11831,28,irvis +10459,18,11831,28,istilllikecatan +10459,18,11831,28,jamcco4 +10459,18,11831,28,jasonfreeman25 +10459,18,11831,28,jerkyroot +10459,18,11831,28,jessicazul +10459,18,11831,28,jindros +10459,18,11831,28,kc32 +10459,18,11831,28,kery +10459,18,11831,28,kingskid +10459,18,11831,28,kittypaws9 +10459,18,11831,28,klausrakus +10459,18,11831,28,koscove +10459,18,11831,28,krasnyeteni +10459,18,11831,28,krystoff +10459,18,11831,28,kwyjibo +10459,18,11831,28,lee barl0w +10459,18,11831,28,legolas 007 +10459,18,11831,28,lisa204 +10459,18,11831,28,lookyro +10459,18,11831,28,lord_elrond +10459,18,11831,28,lordz01 +10459,18,11831,28,lsy03 +10459,18,11831,28,lucto +10459,18,11831,28,luzbellgaladriel +10459,18,11831,28,mark.gamer +10459,18,11831,28,marktoon +10459,18,11831,28,marnheus +10459,18,11831,28,masternamer +10459,18,11831,28,max bredow +10459,18,11831,28,maximarcellino +10459,18,11831,28,mbrna +10459,18,11831,28,micke1983 +10459,18,11831,28,mrb88 +10459,18,11831,28,mrdirtymouth +10459,18,11831,28,mrwiggins +10459,18,11831,28,ndedrickson +10459,18,11831,28,nehilism +10459,18,11831,28,neill1607 +10459,18,11831,28,newe6000 +10459,18,11831,28,niluk84 +10459,18,11831,28,nunatats +10459,18,11831,28,oicu12b12 +10459,18,11831,28,olagk +10459,18,11831,28,ominae +10459,18,11831,28,parsifal75 +10459,18,11831,28,patty3123 +10459,18,11831,28,peltazoid +10459,18,11831,28,pendori +10459,18,11831,28,peter_gustav +10459,18,11831,28,polbuckingham +10459,18,11831,28,polkeroo +10459,18,11831,28,potzertommy +10459,18,11831,28,primeval +10459,18,11831,28,psycho1104 +10459,18,11831,28,ptimepaul +10459,18,11831,28,pulu +10459,18,11831,28,punkzter +10459,18,11831,28,rabbits +10459,18,11831,28,redwinghop +10459,18,11831,28,rjpollard14 +10459,18,11831,28,rombhi +10459,18,11831,28,rosstoss +10459,18,11831,28,rumpus_delion +10459,18,11831,28,runaway_meeple +10459,18,11831,28,runnaman +10459,18,11831,28,sad1802 +10459,18,11831,28,sagres +10459,18,11831,28,sava96 +10459,18,11831,28,schnico +10459,18,11831,28,scolman +10459,18,11831,28,scottyglc +10459,18,11831,28,scrub +10459,18,11831,28,shoggothlord +10459,18,11831,28,shugiosha +10459,18,11831,28,sifosi +10459,18,11831,28,snajka +10459,18,11831,28,soapymac +10459,18,11831,28,solamar +10459,18,11831,28,soulbender +10459,18,11831,28,specularrain +10459,18,11831,28,spicum +10459,18,11831,28,splanckaert +10459,18,11831,28,stam48 +10459,18,11831,28,starannosc +10459,18,11831,28,sychosymatic +10459,18,11831,28,syst +10459,18,11831,28,tespis +10459,18,11831,28,the_ecko87 +10459,18,11831,28,the_zissou +10459,18,11831,28,thufugitivemind +10459,18,11831,28,tiigrikutzu +10459,18,11831,28,titianbonce +10459,18,11831,28,travischaos +10459,18,11831,28,trebor minntt +10459,18,11831,28,tuibing +10459,18,11831,28,ulrikj +10459,18,11831,28,w00ny +10459,18,11831,28,wayerwanda +10459,18,11831,28,weasel +10459,18,11831,28,whimsicaltyrant +10459,18,11831,28,whiteknight66 +10459,18,11831,28,williamburgos +10459,18,11831,28,wormious +10459,18,11831,28,yourwhiteshadow +10459,18,11831,28,yt11 +10459,18,11831,28,zadok13 +10459,18,12910,27,4maverick +10459,18,12910,27,a72challenger +10459,18,12910,27,acikcieslik +10459,18,12910,27,agumpedro +10459,18,12910,27,ajmotylinski +10459,18,12910,27,ajsoares +10459,18,12910,27,amoen +10459,18,12910,27,andreicroitor +10459,18,12910,27,anthonychollet +10459,18,12910,27,aparaplu +10459,18,12910,27,applin_sauce +10459,18,12910,27,arianonfire +10459,18,12910,27,badenbomber +10459,18,12910,27,baltasilian +10459,18,12910,27,bazmondo123 +10459,18,12910,27,bconnoll44 +10459,18,12910,27,benji68 +10459,18,12910,27,bleached_lizard +10459,18,12910,27,boardgamemeltdown +10459,18,12910,27,bobble hat +10459,18,12910,27,bocaccio +10459,18,12910,27,boguszo +10459,18,12910,27,brab +10459,18,12910,27,brucie_lee +10459,18,12910,27,budblan +10459,18,12910,27,burgerearl +10459,18,12910,27,caorsay +10459,18,12910,27,cesspit +10459,18,12910,27,chymster +10459,18,12910,27,cincykosh +10459,18,12910,27,cjiohek +10459,18,12910,27,ckbucu +10459,18,12910,27,coldwarrior1984 +10459,18,12910,27,comeclarity +10459,18,12910,27,constantinl +10459,18,12910,27,corwin84 +10459,18,12910,27,coryphella +10459,18,12910,27,cyllaine +10459,18,12910,27,dampenon +10459,18,12910,27,danzo +10459,18,12910,27,darius55 +10459,18,12910,27,darkrenown +10459,18,12910,27,decb +10459,18,12910,27,delphi +10459,18,12910,27,dgdziengel +10459,18,12910,27,dimitri2401 +10459,18,12910,27,dinozaurplanet +10459,18,12910,27,duke111 +10459,18,12910,27,dvezina +10459,18,12910,27,dz13 +10459,18,12910,27,educez +10459,18,12910,27,el_papado +10459,18,12910,27,emmersonpoole +10459,18,12910,27,erna +10459,18,12910,27,fate1210 +10459,18,12910,27,fformighieri +10459,18,12910,27,fingers888 +10459,18,12910,27,fonzlon +10459,18,12910,27,fred25 +10459,18,12910,27,gamingaftergrad +10459,18,12910,27,garfieldklon +10459,18,12910,27,gerd1993 +10459,18,12910,27,gogolski +10459,18,12910,27,gohawks +10459,18,12910,27,grogui1 +10459,18,12910,27,hahma +10459,18,12910,27,hannuman +10459,18,12910,27,heartrouge +10459,18,12910,27,hitomikojiru +10459,18,12910,27,hobbesmaster +10459,18,12910,27,holepuncher +10459,18,12910,27,horfrost3 +10459,18,12910,27,irishrenegade +10459,18,12910,27,jahwork +10459,18,12910,27,janfei +10459,18,12910,27,jasonab +10459,18,12910,27,jasonw91 +10459,18,12910,27,jezarik +10459,18,12910,27,jmdiller +10459,18,12910,27,jmoodie +10459,18,12910,27,jokemeister +10459,18,12910,27,jurney06 +10459,18,12910,27,jye91 +10459,18,12910,27,jérémyp +10459,18,12910,27,kaiserfro +10459,18,12910,27,laadevil +10459,18,12910,27,lacustre +10459,18,12910,27,lakatariba +10459,18,12910,27,lazlowi +10459,18,12910,27,leandropires +10459,18,12910,27,lightningbug_54 +10459,18,12910,27,lipman +10459,18,12910,27,longboardzombie +10459,18,12910,27,lucem13 +10459,18,12910,27,ludkubo +10459,18,12910,27,lukedmp +10459,18,12910,27,maciunia +10459,18,12910,27,madazam +10459,18,12910,27,malibu_babe_28 +10459,18,12910,27,mannikkomies +10459,18,12910,27,mariusz gekon +10459,18,12910,27,marteninfinite +10459,18,12910,27,matiasika +10459,18,12910,27,matt_semple +10459,18,12910,27,mchoblak +10459,18,12910,27,methos_ +10459,18,12910,27,mfullen2002 +10459,18,12910,27,mirsal +10459,18,12910,27,moose4mom +10459,18,12910,27,mortl1987 +10459,18,12910,27,mrjamesbachman +10459,18,12910,27,mrshankley +10459,18,12910,27,mrziogas +10459,18,12910,27,murdock73 +10459,18,12910,27,nemesis_88 +10459,18,12910,27,nicolevanderhoeven +10459,18,12910,27,ninjashadowwarrior +10459,18,12910,27,nmahoney +10459,18,12910,27,p_maccaroni +10459,18,12910,27,paw +10459,18,12910,27,pestya +10459,18,12910,27,ph0n1k +10459,18,12910,27,phillfr +10459,18,12910,27,phoenixandy +10459,18,12910,27,piratemonkeybanana +10459,18,12910,27,pleasepleaseme +10459,18,12910,27,plezercruz +10459,18,12910,27,puella +10459,18,12910,27,rathmourne +10459,18,12910,27,raydwa +10459,18,12910,27,reamax +10459,18,12910,27,redredwine +10459,18,12910,27,refardeon +10459,18,12910,27,ren89 +10459,18,12910,27,ridwanphy +10459,18,12910,27,rlfwgnsn +10459,18,12910,27,roundman +10459,18,12910,27,rrr4 +10459,18,12910,27,sak_yahiko +10459,18,12910,27,samwise222 +10459,18,12910,27,sawo +10459,18,12910,27,sebi667 +10459,18,12910,27,serialsurgeon +10459,18,12910,27,shiro_himura +10459,18,12910,27,siisazn +10459,18,12910,27,skadar +10459,18,12910,27,smmckit +10459,18,12910,27,smpeter +10459,18,12910,27,sneekycarrot +10459,18,12910,27,soulstealer50 +10459,18,12910,27,soundinthedark +10459,18,12910,27,soyyorch +10459,18,12910,27,squid89 +10459,18,12910,27,sriniv30 +10459,18,12910,27,stochasticsim +10459,18,12910,27,swivel +10459,18,12910,27,tallyst +10459,18,12910,27,tamrielsays +10459,18,12910,27,tarkan +10459,18,12910,27,tenterro +10459,18,12910,27,timiras +10459,18,12910,27,tjgator +10459,18,12910,27,torkijo +10459,18,12910,27,trollkiing +10459,18,12910,27,turdus_merula +10459,18,12910,27,u8nogard +10459,18,12910,27,ureye +10459,18,12910,27,varasorn +10459,18,12910,27,vargeth87 +10459,18,12910,27,waxbottle +10459,18,12910,27,wessed +10459,18,12910,27,westie90 +10459,18,12910,27,wmreed +10459,18,12910,27,woofmcmoose +10459,18,12910,27,wourme +10459,18,12910,27,wreks85 +10459,18,12910,27,wrigleyscott +10459,18,12910,27,yisuwang527hotmail +10459,18,12910,27,yodadood +10459,18,12910,27,zahka +10459,18,12910,27,zbajszek +10459,18,12910,27,zerbique +10459,18,12910,27,zhalk +10459,18,12910,27,zukazamamee +10459,18,14030,26,2grve +10459,18,14030,26,abeluco +10459,18,14030,26,aberdonian +10459,18,14030,26,adramer +10459,18,14030,26,agentcooper84 +10459,18,14030,26,aggi1411 +10459,18,14030,26,ajaxx +10459,18,14030,26,albator99 +10459,18,14030,26,alex_ves +10459,18,14030,26,amandor +10459,18,14030,26,andersoncouncil +10459,18,14030,26,angry dragon +10459,18,14030,26,athletics616 +10459,18,14030,26,bassfamily +10459,18,14030,26,baumschmuser +10459,18,14030,26,beloch +10459,18,14030,26,ben_tyrer +10459,18,14030,26,benny1980no +10459,18,14030,26,bethan +10459,18,14030,26,bfir3 +10459,18,14030,26,bigkat +10459,18,14030,26,birdbrain +10459,18,14030,26,bolognapony +10459,18,14030,26,boromir_and_kermit +10459,18,14030,26,bovelix +10459,18,14030,26,brasszulu +10459,18,14030,26,brenchan +10459,18,14030,26,brendanmoneill +10459,18,14030,26,brezman +10459,18,14030,26,bricktorian +10459,18,14030,26,broncobuster +10459,18,14030,26,btroszok +10459,18,14030,26,casaubon +10459,18,14030,26,cattastic23 +10459,18,14030,26,cbk_gaming +10459,18,14030,26,cblack0215 +10459,18,14030,26,cdooley +10459,18,14030,26,chronoevo +10459,18,14030,26,chucocheese +10459,18,14030,26,corneem +10459,18,14030,26,covertdad +10459,18,14030,26,cramy +10459,18,14030,26,crystal_bubbles +10459,18,14030,26,crywolf +10459,18,14030,26,csgaidin +10459,18,14030,26,cupajo +10459,18,14030,26,dan22lag +10459,18,14030,26,danieltroi +10459,18,14030,26,dankd +10459,18,14030,26,ddubin +10459,18,14030,26,deedob +10459,18,14030,26,despelletjesvrienden +10459,18,14030,26,dgarzao +10459,18,14030,26,dickie77 +10459,18,14030,26,donkeyitis +10459,18,14030,26,dracik +10459,18,14030,26,dragoons_kane +10459,18,14030,26,drawesome09 +10459,18,14030,26,dryflystephen +10459,18,14030,26,dynahthirst +10459,18,14030,26,elenal +10459,18,14030,26,elinard +10459,18,14030,26,eluko +10459,18,14030,26,emilstenstrom +10459,18,14030,26,fabiocmartins +10459,18,14030,26,falluper +10459,18,14030,26,fencejummper +10459,18,14030,26,funkyboy +10459,18,14030,26,funnytortoise +10459,18,14030,26,gaetbe +10459,18,14030,26,gelileila +10459,18,14030,26,gexthegecko +10459,18,14030,26,gloggie +10459,18,14030,26,gman20 +10459,18,14030,26,gonzai +10459,18,14030,26,gorillachaos +10459,18,14030,26,handelaar +10459,18,14030,26,hantxo +10459,18,14030,26,hristostoichkov +10459,18,14030,26,huggablehamster +10459,18,14030,26,hyvuss +10459,18,14030,26,ild666 +10459,18,14030,26,inkling8 +10459,18,14030,26,iskerisky +10459,18,14030,26,ithiliel +10459,18,14030,26,jacemoonstrider +10459,18,14030,26,jaiden0 +10459,18,14030,26,jaijor +10459,18,14030,26,jamesbob +10459,18,14030,26,jaykells +10459,18,14030,26,jaza +10459,18,14030,26,jbullfrog +10459,18,14030,26,jeffjwatts +10459,18,14030,26,jgheinlein +10459,18,14030,26,jmbernal17 +10459,18,14030,26,jmchou +10459,18,14030,26,jmclean27 +10459,18,14030,26,john mckevitt +10459,18,14030,26,jostovalov +10459,18,14030,26,jwaltz001 +10459,18,14030,26,kalanar +10459,18,14030,26,keebe +10459,18,14030,26,kire +10459,18,14030,26,knavito +10459,18,14030,26,knijtert +10459,18,14030,26,krassus101 +10459,18,14030,26,kronickell +10459,18,14030,26,ksfga +10459,18,14030,26,laguul +10459,18,14030,26,larsvanschagen +10459,18,14030,26,le furet +10459,18,14030,26,leludenne +10459,18,14030,26,lenguarchitect +10459,18,14030,26,lostlukas +10459,18,14030,26,luudva +10459,18,14030,26,malelo96 +10459,18,14030,26,marco27 +10459,18,14030,26,martinkalmar +10459,18,14030,26,matrixac +10459,18,14030,26,maverickavatar +10459,18,14030,26,mcscowl +10459,18,14030,26,mdco +10459,18,14030,26,melothica +10459,18,14030,26,merelyrachel +10459,18,14030,26,mheagerty +10459,18,14030,26,mibb +10459,18,14030,26,michellenc2010 +10459,18,14030,26,miepel +10459,18,14030,26,mik2005 +10459,18,14030,26,milo1969 +10459,18,14030,26,mkygree +10459,18,14030,26,mrsspliff +10459,18,14030,26,mukid +10459,18,14030,26,nahtaivel +10459,18,14030,26,netfilterz +10459,18,14030,26,nikostrat +10459,18,14030,26,nite999 +10459,18,14030,26,nolimit47 +10459,18,14030,26,norbert nieda +10459,18,14030,26,opiganz +10459,18,14030,26,orca135 +10459,18,14030,26,ozradio +10459,18,14030,26,parallax74 +10459,18,14030,26,passiveluck +10459,18,14030,26,patrickpd +10459,18,14030,26,pavw +10459,18,14030,26,pawel_nk +10459,18,14030,26,peg22 +10459,18,14030,26,petole +10459,18,14030,26,phreekshow1 +10459,18,14030,26,pinglipang +10459,18,14030,26,pixelatedprimus +10459,18,14030,26,pjperl +10459,18,14030,26,plpompey +10459,18,14030,26,pnolting +10459,18,14030,26,poncholatour +10459,18,14030,26,ppizarroj +10459,18,14030,26,prosperodk +10459,18,14030,26,purplecow55 +10459,18,14030,26,pvtrizzo +10459,18,14030,26,pyton warsaw +10459,18,14030,26,ras137 +10459,18,14030,26,redshark92 +10459,18,14030,26,retracavol +10459,18,14030,26,richard616 +10459,18,14030,26,ricosh33p +10459,18,14030,26,rmontemor +10459,18,14030,26,ruesailmana +10459,18,14030,26,s1zday +10459,18,14030,26,sancmat +10459,18,14030,26,sbwilliams15 +10459,18,14030,26,schqtti +10459,18,14030,26,scitaliss +10459,18,14030,26,scovron +10459,18,14030,26,sejjiin +10459,18,14030,26,sethsethb +10459,18,14030,26,shaba21 +10459,18,14030,26,shaungamer +10459,18,14030,26,shoeby +10459,18,14030,26,shtaffa +10459,18,14030,26,siddiey +10459,18,14030,26,sidorin +10459,18,14030,26,sirgonzzo +10459,18,14030,26,smacklefunky +10459,18,14030,26,smallbubble +10459,18,14030,26,splicedcomma +10459,18,14030,26,spobo77 +10459,18,14030,26,stephen_bris +10459,18,14030,26,thebamman +10459,18,14030,26,theboardgamevault +10459,18,14030,26,thefleafarm +10459,18,14030,26,themoose13 +10459,18,14030,26,therabidwalnut +10459,18,14030,26,theuonz +10459,18,14030,26,timeodanaos +10459,18,14030,26,timespaperboy +10459,18,14030,26,timv87 +10459,18,14030,26,tinoslav +10459,18,14030,26,topomon2003 +10459,18,14030,26,triangulate +10459,18,14030,26,twosenough +10459,18,14030,26,unkind58 +10459,18,14030,26,vaader +10459,18,14030,26,vipbooy +10459,18,14030,26,vitaliyf +10459,18,14030,26,warmongurl +10459,18,14030,26,william21 +10459,18,14030,26,winnie1978 +10459,18,14030,26,winterroaduk +10459,18,14030,26,wnzta +10459,18,14030,26,wordoftheoracle +10459,18,14030,26,xlloyd +10459,18,14030,26,xomatoox +10459,18,14030,26,ydernola +10459,18,14030,26,yoshinori +10459,18,14030,26,youseph +10459,18,14030,26,zakirj +10459,18,14030,26,zam_se +10459,18,14030,26,zaxon +10459,18,14030,26,zephiriel +10459,18,15326,25,1eyedj +10459,18,15326,25,2loud +10459,18,15326,25,777oliver +10459,18,15326,25,abaxtard +10459,18,15326,25,abietis +10459,18,15326,25,accido +10459,18,15326,25,acromion68 +10459,18,15326,25,adamxt +10459,18,15326,25,aggaire1 +10459,18,15326,25,agrypa81 +10459,18,15326,25,andr_niko +10459,18,15326,25,andystal +10459,18,15326,25,anicka +10459,18,15326,25,ansi +10459,18,15326,25,arsmith7 +10459,18,15326,25,audefuefe +10459,18,15326,25,b_j_s +10459,18,15326,25,badmagic +10459,18,15326,25,bagookster +10459,18,15326,25,bardosdaniel +10459,18,15326,25,bardziej +10459,18,15326,25,beckstud +10459,18,15326,25,ben2000677 +10459,18,15326,25,benga +10459,18,15326,25,betsushi +10459,18,15326,25,bierbauchbrasilianer +10459,18,15326,25,bignakel +10459,18,15326,25,bizwang +10459,18,15326,25,black_hev +10459,18,15326,25,blackwolf2015 +10459,18,15326,25,bretteroo +10459,18,15326,25,burgerchief +10459,18,15326,25,cakej7 +10459,18,15326,25,captaincomand0 +10459,18,15326,25,cartonytinta +10459,18,15326,25,cavedog_pdx +10459,18,15326,25,cazon +10459,18,15326,25,cdntiger +10459,18,15326,25,cdwelk5 +10459,18,15326,25,celdom +10459,18,15326,25,cescar +10459,18,15326,25,charlesmay +10459,18,15326,25,ciz mc +10459,18,15326,25,cloclo57 +10459,18,15326,25,cmichael +10459,18,15326,25,coltonreese +10459,18,15326,25,copercore +10459,18,15326,25,cowmic +10459,18,15326,25,craftyshafty +10459,18,15326,25,d1111nger +10459,18,15326,25,daniel_84 +10459,18,15326,25,daredoliv +10459,18,15326,25,darrencb +10459,18,15326,25,darthjjm +10459,18,15326,25,dbrauer42 +10459,18,15326,25,dbruff701 +10459,18,15326,25,defeldus +10459,18,15326,25,dicktracy101 +10459,18,15326,25,dkingnu +10459,18,15326,25,dly237 +10459,18,15326,25,dozwa2902 +10459,18,15326,25,edosan +10459,18,15326,25,elimarx +10459,18,15326,25,elizabethhellgren +10459,18,15326,25,endrusacos +10459,18,15326,25,erisquilty +10459,18,15326,25,esteves91 +10459,18,15326,25,ethanlogos +10459,18,15326,25,ethereal87 +10459,18,15326,25,fbarrera +10459,18,15326,25,friko515 +10459,18,15326,25,garrettgrenier +10459,18,15326,25,gonso75 +10459,18,15326,25,gramaciej +10459,18,15326,25,gsol +10459,18,15326,25,gustavolopezlc +10459,18,15326,25,harman_smith7 +10459,18,15326,25,harrijust86 +10459,18,15326,25,helen horselip +10459,18,15326,25,hemp3000 +10459,18,15326,25,heyheyjk +10459,18,15326,25,hlh1 +10459,18,15326,25,honeycomb +10459,18,15326,25,houseofr +10459,18,15326,25,howlsthunder +10459,18,15326,25,hrachubi +10459,18,15326,25,humulus +10459,18,15326,25,iceman23 +10459,18,15326,25,il_matthew +10459,18,15326,25,imaestro +10459,18,15326,25,impe53 +10459,18,15326,25,izombie82 +10459,18,15326,25,izquierda +10459,18,15326,25,jaahn +10459,18,15326,25,jaels +10459,18,15326,25,jeff +10459,18,15326,25,jheresay +10459,18,15326,25,joangm +10459,18,15326,25,joekid +10459,18,15326,25,jorage +10459,18,15326,25,jormungandr +10459,18,15326,25,joshanky +10459,18,15326,25,justinschaffer +10459,18,15326,25,kamomillatee +10459,18,15326,25,kayhoshusk +10459,18,15326,25,kc2dpt +10459,18,15326,25,kebecp1 +10459,18,15326,25,kiemzaa +10459,18,15326,25,kimpowski +10459,18,15326,25,kingu +10459,18,15326,25,kkintas +10459,18,15326,25,kmiloalonso +10459,18,15326,25,kpaxchaos +10459,18,15326,25,kuexta +10459,18,15326,25,kwestor +10459,18,15326,25,kwolkan +10459,18,15326,25,lottor +10459,18,15326,25,macfaro +10459,18,15326,25,maltratii +10459,18,15326,25,manolaren +10459,18,15326,25,marahelisa +10459,18,15326,25,marenthe +10459,18,15326,25,matsas +10459,18,15326,25,mc tono +10459,18,15326,25,mcload +10459,18,15326,25,mcmahanfamily +10459,18,15326,25,mcuki +10459,18,15326,25,medievalbanquet +10459,18,15326,25,meej +10459,18,15326,25,meeplekun +10459,18,15326,25,melrudin +10459,18,15326,25,michaeljzerby +10459,18,15326,25,miforaz +10459,18,15326,25,mister booze +10459,18,15326,25,misterboy +10459,18,15326,25,mmejnholt +10459,18,15326,25,morph mode +10459,18,15326,25,mr g +10459,18,15326,25,myasku +10459,18,15326,25,naterunner +10459,18,15326,25,ndsurgenor +10459,18,15326,25,nflhazafi +10459,18,15326,25,nick morgan +10459,18,15326,25,noordkaap +10459,18,15326,25,oberonsd73 +10459,18,15326,25,ogre42 +10459,18,15326,25,ohiggy +10459,18,15326,25,omnivorej +10459,18,15326,25,oz8118 +10459,18,15326,25,palomaca +10459,18,15326,25,panoras +10459,18,15326,25,pennincao +10459,18,15326,25,peponboard +10459,18,15326,25,pharmer35 +10459,18,15326,25,pinbackash +10459,18,15326,25,potts_games +10459,18,15326,25,procyonacmi +10459,18,15326,25,pulse530 +10459,18,15326,25,rachavez +10459,18,15326,25,raipl +10459,18,15326,25,renegade84 +10459,18,15326,25,restlin158 +10459,18,15326,25,revelement +10459,18,15326,25,robbynbg +10459,18,15326,25,rogibaer +10459,18,15326,25,roninhh +10459,18,15326,25,runner_boy_4ever +10459,18,15326,25,rybizzle +10459,18,15326,25,sadycz +10459,18,15326,25,sauce72 +10459,18,15326,25,sawyerhv +10459,18,15326,25,schorschi +10459,18,15326,25,scorpionking +10459,18,15326,25,ser folly +10459,18,15326,25,shaneomac +10459,18,15326,25,shifting +10459,18,15326,25,sibster +10459,18,15326,25,sops +10459,18,15326,25,spencerm +10459,18,15326,25,spoox +10459,18,15326,25,sr_pixel +10459,18,15326,25,sumofmarc +10459,18,15326,25,sumveritas +10459,18,15326,25,svinepelz +10459,18,15326,25,syll +10459,18,15326,25,tabina +10459,18,15326,25,tafh15 +10459,18,15326,25,tagla +10459,18,15326,25,tah2789 +10459,18,15326,25,telegraph_rd +10459,18,15326,25,templarkun +10459,18,15326,25,teppolainen +10459,18,15326,25,tfoxy +10459,18,15326,25,the gamebler +10459,18,15326,25,the_eye +10459,18,15326,25,thebiglebrewski +10459,18,15326,25,thebrainy +10459,18,15326,25,thecelt +10459,18,15326,25,theomoti +10459,18,15326,25,thomwilde +10459,18,15326,25,thunderchild94 +10459,18,15326,25,thylon +10459,18,15326,25,timbamania +10459,18,15326,25,time_for_a_miller +10459,18,15326,25,timmahawk +10459,18,15326,25,timoerai +10459,18,15326,25,tomnanfalbo +10459,18,15326,25,tomturbine +10459,18,15326,25,treatyoself32 +10459,18,15326,25,trysior +10459,18,15326,25,twel001 +10459,18,15326,25,uanarchyk +10459,18,15326,25,uttermarcus +10459,18,15326,25,uzumakidj +10459,18,15326,25,vidimus +10459,18,15326,25,vindominion +10459,18,15326,25,von92 +10459,18,15326,25,vonveederveld +10459,18,15326,25,vulterin +10459,18,15326,25,warhamster1 +10459,18,15326,25,wautd +10459,18,15326,25,white_dog_table_top +10459,18,15326,25,whos2091 +10459,18,15326,25,widdek123 +10459,18,15326,25,wrayman +10459,18,15326,25,wstevens +10459,18,15326,25,x_nankin_x +10459,18,15326,25,ybbad +10459,18,15326,25,zengarden7 +10459,18,16710,24,adriantroccoli +10459,18,16710,24,ageostbo +10459,18,16710,24,alanbyrne +10459,18,16710,24,alex007sirois +10459,18,16710,24,alexjrc +10459,18,16710,24,alexzdnepr +10459,18,16710,24,amethyst141 +10459,18,16710,24,annetkobes +10459,18,16710,24,anxiouseye +10459,18,16710,24,arachnode +10459,18,16710,24,aranes +10459,18,16710,24,architeuthis dux +10459,18,16710,24,artagesw +10459,18,16710,24,baluba42 +10459,18,16710,24,benidani +10459,18,16710,24,billyindiana +10459,18,16710,24,biowood +10459,18,16710,24,biso +10459,18,16710,24,brak55 +10459,18,16710,24,briankoser +10459,18,16710,24,brumbynut +10459,18,16710,24,capcap +10459,18,16710,24,captain cuttlefish +10459,18,16710,24,cassiopey +10459,18,16710,24,cero21 +10459,18,16710,24,che2487 +10459,18,16710,24,chemi +10459,18,16710,24,chewbakapt +10459,18,16710,24,chimo90 +10459,18,16710,24,cite +10459,18,16710,24,cmacn +10459,18,16710,24,coltcomics +10459,18,16710,24,comdom +10459,18,16710,24,commadelimited +10459,18,16710,24,cortjstr +10459,18,16710,24,cransom +10459,18,16710,24,cristianf +10459,18,16710,24,cstudabaker +10459,18,16710,24,darkbasalt +10459,18,16710,24,dave davies +10459,18,16710,24,dcruedm +10459,18,16710,24,demon jim +10459,18,16710,24,djsturz +10459,18,16710,24,doeggchen +10459,18,16710,24,dosehunter +10459,18,16710,24,drface +10459,18,16710,24,droqar +10459,18,16710,24,dsawchuk +10459,18,16710,24,dyuss +10459,18,16710,24,eberhard mk +10459,18,16710,24,ecferguson +10459,18,16710,24,elfboy486 +10459,18,16710,24,evenfall +10459,18,16710,24,eye of night +10459,18,16710,24,ferrerk +10459,18,16710,24,flowerbo +10459,18,16710,24,foolofatook +10459,18,16710,24,fourfoot7 +10459,18,16710,24,frayaka +10459,18,16710,24,freakball +10459,18,16710,24,furunkulus +10459,18,16710,24,gachzorge +10459,18,16710,24,gizza +10459,18,16710,24,gorende +10459,18,16710,24,gorry81 +10459,18,16710,24,gruendali +10459,18,16710,24,gsdtheflea +10459,18,16710,24,gwendoline80 +10459,18,16710,24,hammerfest451 +10459,18,16710,24,helge87 +10459,18,16710,24,hoyu +10459,18,16710,24,hunyock +10459,18,16710,24,icortezi +10459,18,16710,24,igotcookies +10459,18,16710,24,iluvia +10459,18,16710,24,ironmatt +10459,18,16710,24,jacko9627 +10459,18,16710,24,jarry1215 +10459,18,16710,24,javidad +10459,18,16710,24,jesseblack +10459,18,16710,24,jonandlauraweaver +10459,18,16710,24,josema75 +10459,18,16710,24,juanmau5 +10459,18,16710,24,kanalasgem +10459,18,16710,24,kazzoo +10459,18,16710,24,kerwin +10459,18,16710,24,kgaither18 +10459,18,16710,24,kingofspin101 +10459,18,16710,24,kirannu +10459,18,16710,24,knorxel +10459,18,16710,24,krismoulton +10459,18,16710,24,krll +10459,18,16710,24,krommenaas +10459,18,16710,24,kukklos +10459,18,16710,24,levide0 +10459,18,16710,24,lord oren +10459,18,16710,24,losthorizon +10459,18,16710,24,lowpass +10459,18,16710,24,lyla82 +10459,18,16710,24,mananthemoon +10459,18,16710,24,mecruel +10459,18,16710,24,michael_obno +10459,18,16710,24,midnightliddy09 +10459,18,16710,24,migtikal +10459,18,16710,24,modular man +10459,18,16710,24,msoelch +10459,18,16710,24,new8generd +10459,18,16710,24,nitestyle +10459,18,16710,24,obidiah +10459,18,16710,24,overthehillier +10459,18,16710,24,ozjesting +10459,18,16710,24,pebblesy +10459,18,16710,24,pedrofreitas +10459,18,16710,24,peter13th +10459,18,16710,24,pinhocas +10459,18,16710,24,pogle1 +10459,18,16710,24,pt123 +10459,18,16710,24,pufforrohk +10459,18,16710,24,qba_ +10459,18,16710,24,questover +10459,18,16710,24,reihz +10459,18,16710,24,retuono +10459,18,16710,24,revmom +10459,18,16710,24,roxxor mcownage +10459,18,16710,24,sajimenez +10459,18,16710,24,samthe2can +10459,18,16710,24,sansagam +10459,18,16710,24,schmiko +10459,18,16710,24,selcier +10459,18,16710,24,silbereinhorn +10459,18,16710,24,sirrouga +10459,18,16710,24,skiveron +10459,18,16710,24,stegua +10459,18,16710,24,stereoscopy +10459,18,16710,24,sykot +10459,18,16710,24,tadej1986 +10459,18,16710,24,thepov +10459,18,16710,24,thesalmon +10459,18,16710,24,thewilyf +10459,18,16710,24,timox +10459,18,16710,24,tinnurandir +10459,18,16710,24,toadflax +10459,18,16710,24,tomwullaert +10459,18,16710,24,tranton +10459,18,16710,24,trayl +10459,18,16710,24,trembot +10459,18,16710,24,trilceac +10459,18,16710,24,valterjpcaldeira +10459,18,16710,24,vtnut +10459,18,16710,24,weesel99 +10459,18,16710,24,wildfx +10459,18,16710,24,willie365 +10459,18,16710,24,xwizardx +10459,18,16710,24,yarra_mekian +10459,18,16710,24,yohsy +10459,18,16710,24,yosejep +10459,18,16710,24,zalama +10459,18,18170,23,_genie +10459,18,18170,23,aelrakholh +10459,18,18170,23,aennea +10459,18,18170,23,agranade +10459,18,18170,23,agusti_ +10459,18,18170,23,avian_brain +10459,18,18170,23,bart h +10459,18,18170,23,bean-boy +10459,18,18170,23,bigalj7 +10459,18,18170,23,bjshin37 +10459,18,18170,23,boardscho +10459,18,18170,23,bogdanjovi +10459,18,18170,23,brainstormx +10459,18,18170,23,brokengod +10459,18,18170,23,brumbams +10459,18,18170,23,bshoote +10459,18,18170,23,buckshotlafunk +10459,18,18170,23,bwobbones +10459,18,18170,23,calisel +10459,18,18170,23,candacew +10459,18,18170,23,cat41 +10459,18,18170,23,cgh3rd +10459,18,18170,23,dahanil +10459,18,18170,23,dbryan +10459,18,18170,23,delloscm04 +10459,18,18170,23,djgar +10459,18,18170,23,dm_dungeon +10459,18,18170,23,domkrantz +10459,18,18170,23,drgnfli00 +10459,18,18170,23,dt101010 +10459,18,18170,23,dtcarson +10459,18,18170,23,flavorman2000 +10459,18,18170,23,fliegen5 +10459,18,18170,23,fozan +10459,18,18170,23,fuchs78 +10459,18,18170,23,gabsurcis2 +10459,18,18170,23,galbert +10459,18,18170,23,gazeboman +10459,18,18170,23,genji200 +10459,18,18170,23,gentlegiantglass +10459,18,18170,23,gericke +10459,18,18170,23,grovast +10459,18,18170,23,halucinagenia +10459,18,18170,23,hang man +10459,18,18170,23,ildex +10459,18,18170,23,izotop17 +10459,18,18170,23,j3n1 +10459,18,18170,23,jaaason +10459,18,18170,23,jimdauphinais +10459,18,18170,23,joakley815 +10459,18,18170,23,joe dizzy +10459,18,18170,23,johan_invp +10459,18,18170,23,juganek +10459,18,18170,23,jwhisler06 +10459,18,18170,23,kataclipse +10459,18,18170,23,kelmarcos +10459,18,18170,23,knewgie +10459,18,18170,23,kojiro7 +10459,18,18170,23,krx3 +10459,18,18170,23,l6u6k +10459,18,18170,23,lcam +10459,18,18170,23,leftyrea +10459,18,18170,23,littlerbobbytables +10459,18,18170,23,litvinchuk +10459,18,18170,23,lolasso +10459,18,18170,23,lord monkey +10459,18,18170,23,lord_eradicus +10459,18,18170,23,lostdog +10459,18,18170,23,lothartvni +10459,18,18170,23,lucaciglione +10459,18,18170,23,matzinger +10459,18,18170,23,mclimber +10459,18,18170,23,metakata +10459,18,18170,23,millercv +10459,18,18170,23,milovmil +10459,18,18170,23,mkoolin +10459,18,18170,23,moe45673 +10459,18,18170,23,moose_head +10459,18,18170,23,mrsnightskyre +10459,18,18170,23,mtitelbaum +10459,18,18170,23,murtah99999 +10459,18,18170,23,mwtpublic +10459,18,18170,23,neotrunks2002 +10459,18,18170,23,neurobrain +10459,18,18170,23,nlfharrison +10459,18,18170,23,noodlewig +10459,18,18170,23,nuttyturnip +10459,18,18170,23,nxjdjdbsv +10459,18,18170,23,olov_a +10459,18,18170,23,orion328 +10459,18,18170,23,patorayado +10459,18,18170,23,perfectimperfection +10459,18,18170,23,peterparkour +10459,18,18170,23,piper_md +10459,18,18170,23,pooploserbq +10459,18,18170,23,pops +10459,18,18170,23,pusboyau +10459,18,18170,23,pyrobuzz +10459,18,18170,23,rianona13 +10459,18,18170,23,roninrmz +10459,18,18170,23,rowlf +10459,18,18170,23,rubymidnight +10459,18,18170,23,rye0077r +10459,18,18170,23,saaur_ +10459,18,18170,23,saddlebuck +10459,18,18170,23,samy974 +10459,18,18170,23,scottiegggg +10459,18,18170,23,sebastianpl1 +10459,18,18170,23,sirebelle +10459,18,18170,23,sportomax +10459,18,18170,23,sredni vashtar +10459,18,18170,23,tecasiro +10459,18,18170,23,tequila_j +10459,18,18170,23,thniff +10459,18,18170,23,traico7 +10459,18,18170,23,tylergoble1 +10459,18,18170,23,vfeight +10459,18,18170,23,vilvoh +10459,18,18170,23,vindeux +10459,18,18170,23,vinnichi +10459,18,18170,23,wickermorgan +10459,18,18170,23,wingeekbrett +10459,18,18170,23,youps75 +10459,18,18170,23,zetaguardian +10459,18,18170,23,zmoneaux +10459,18,18170,23,zozayagabo +10459,18,19906,22,amccraw +10459,18,19906,22,annagul +10459,18,19906,22,babang +10459,18,19906,22,barnyams36 +10459,18,19906,22,bggfre +10459,18,19906,22,boah +10459,18,19906,22,canadiankorean +10459,18,19906,22,catpower +10459,18,19906,22,chinkster +10459,18,19906,22,chris clavinova +10459,18,19906,22,dagnyj +10459,18,19906,22,disordinated +10459,18,19906,22,dojo666 +10459,18,19906,22,dr_zo1dberg +10459,18,19906,22,elephantgirl +10459,18,19906,22,eugnomus +10459,18,19906,22,evergamer13 +10459,18,19906,22,florianoliver +10459,18,19906,22,freechinanow +10459,18,19906,22,gaston2010 +10459,18,19906,22,goldwing2001 +10459,18,19906,22,ilford game fan +10459,18,19906,22,imanuel gueldner +10459,18,19906,22,irving_31 +10459,18,19906,22,kersje86 +10459,18,19906,22,kuff28704 +10459,18,19906,22,maneloblast +10459,18,19906,22,mennomekes +10459,18,19906,22,mikex4511 +10459,18,19906,22,mirkocano +10459,18,19906,22,mistergross +10459,18,19906,22,mokwai84 +10459,18,19906,22,natty x +10459,18,19906,22,ninergamer +10459,18,19906,22,noloatmo +10459,18,19906,22,panicradar +10459,18,19906,22,pat67 +10459,18,19906,22,pauer +10459,18,19906,22,robdotavi +10459,18,19906,22,rtsnip +10459,18,19906,22,s-man +10459,18,19906,22,sanddanz +10459,18,19906,22,serendipity2003 +10459,18,19906,22,sidamo +10459,18,19906,22,simonsch5 +10459,18,19906,22,skywalker12 +10459,18,19906,22,solomygames +10459,18,19906,22,stoliczanin +10459,18,19906,22,taek +10459,18,19906,22,terumi +10459,18,19906,22,thebfg +10459,18,19906,22,tracyb +10459,18,19906,22,wallyvdb +10459,18,19906,22,wavewynder +10459,18,19906,22,zapata131 +10459,18,19906,22,zmittak +10459,18,21713,21,agondar +10459,18,21713,21,dk_majed +10459,18,21713,21,flyingmeeple +10459,18,21713,21,honeycake13 +10459,18,21713,21,kennn13 +10459,18,21713,21,melweh +10459,18,21713,21,nyfilmfest +10459,18,21713,21,razzatazza +10459,18,21713,21,thom1977 +10459,18,21713,21,wolverine1977 +10459,18,23640,20,horeckir +10459,18,25880,19,lsallen1000 +12267,17,1,307,shelfcounselor +12267,17,1,307,victorcardoso +12267,17,100,106,dice roller +12267,17,104,105,blueorange75 +12267,17,180,92,zejeidorb +12267,17,361,77,ciredutemps +12267,17,473,73,phareskrad +12267,17,473,73,stormtiti +12267,17,493,72,motoyugota +12267,17,741,65,muriou +12267,17,914,62,gaujoy +12267,17,914,62,ipnotistis +12267,17,914,62,schwen +12267,17,970,61,bill21642 +12267,17,970,61,whiteboy +12267,17,1276,57,thanaguar +12267,17,1459,55,12thmanstanding +12267,17,1568,54,ddddave +12267,17,1674,53,catan started it +12267,17,1674,53,esonlinji +12267,17,1792,52,gawain86 +12267,17,1792,52,goody14 +12267,17,1906,51,nimrodza +12267,17,2053,50,mayhem46 +12267,17,2053,50,metakhnet +12267,17,2204,49,abendoso +12267,17,2204,49,diecarpitur +12267,17,2351,48,dantonth +12267,17,2351,48,garcianiii +12267,17,2555,47,laserdeathray +12267,17,2555,47,mhostile +12267,17,2555,47,nef_ +12267,17,2758,46,-morphling- +12267,17,2758,46,brevyre +12267,17,2758,46,jonprud +12267,17,2969,45,jackdanielgta +12267,17,2969,45,kwiat +12267,17,2969,45,sander_s +12267,17,2969,45,severnaya +12267,17,2969,45,super varal +12267,17,2969,45,zsknight +12267,17,3216,44,brainst0rm +12267,17,3216,44,dado24m +12267,17,3216,44,giosaffani +12267,17,3216,44,kcatta +12267,17,3216,44,ramp_ +12267,17,3216,44,shore_pk +12267,17,3216,44,sinistro +12267,17,3216,44,tacosupreme +12267,17,3216,44,woodenwidget +12267,17,3514,43,bartok +12267,17,3514,43,chuangelo +12267,17,3514,43,dr. burd +12267,17,3514,43,fletchy +12267,17,3514,43,knechtbd +12267,17,3514,43,lhoudoplex +12267,17,3514,43,nemesis_rex +12267,17,3514,43,saruthemonkey +12267,17,3514,43,yellowbear +12267,17,3815,42,airmarkus +12267,17,3815,42,cepro +12267,17,4092,41,fhsiv +12267,17,4092,41,howaa +12267,17,4092,41,matt112830 +12267,17,4092,41,specialopps +12267,17,4092,41,srlindemann +12267,17,4092,41,tevacircus +12267,17,4092,41,youjon5 +12267,17,4426,40,elizharg +12267,17,4426,40,jinimaru +12267,17,4426,40,monkeybiz12 +12267,17,4426,40,ryan35 +12267,17,4426,40,wobbel +12267,17,4782,39,andr0ss +12267,17,4782,39,danharrow +12267,17,4782,39,dominikmucha +12267,17,4782,39,e1nono +12267,17,4782,39,gepap13 +12267,17,4782,39,groovy_k +12267,17,4782,39,guimauverose +12267,17,4782,39,hhgal +12267,17,4782,39,moxyoron +12267,17,4782,39,mwareinc +12267,17,4782,39,tesposit +12267,17,4782,39,thegreyowl +12267,17,4782,39,tklein76 +12267,17,4782,39,viva +12267,17,4782,39,walvey25 +12267,17,5150,38,bernhard scheuringer +12267,17,5150,38,carnalito +12267,17,5150,38,gwanum +12267,17,5150,38,jjanchan +12267,17,5150,38,pelly54 +12267,17,5150,38,ressik +12267,17,5150,38,salpikaespuma +12267,17,5150,38,senator_grimshaw +12267,17,5150,38,trouvere +12267,17,5150,38,vendemmia90 +12267,17,5150,38,wanny8888 +12267,17,5150,38,wozzit +12267,17,5150,38,yolandapuust +12267,17,5624,37,basilmichael +12267,17,5624,37,chabousse +12267,17,5624,37,gvt2000 +12267,17,5624,37,ingonyama +12267,17,5624,37,lofcaudio +12267,17,5624,37,markinho +12267,17,5624,37,melee +12267,17,5624,37,noah kolman +12267,17,5624,37,ogichi +12267,17,5624,37,ohgrande +12267,17,5624,37,shuanfu +12267,17,5624,37,wausser +12267,17,6063,36,alan__84 +12267,17,6063,36,aquarius21 +12267,17,6063,36,kron0508 +12267,17,6063,36,lord baldrick +12267,17,6063,36,microsillon +12267,17,6063,36,moves +12267,17,6063,36,ragge1 +12267,17,6063,36,roxon +12267,17,6063,36,vicyr77 +12267,17,6063,36,wigsby +12267,17,6063,36,zombiejeebus +12267,17,6063,36,zorzogoth +12267,17,6573,35,alerab +12267,17,6573,35,barefootknight +12267,17,6573,35,boxatoys +12267,17,6573,35,chris sjoholm +12267,17,6573,35,evil_x +12267,17,6573,35,felixfelisus +12267,17,6573,35,grid +12267,17,6573,35,jake ritter +12267,17,6573,35,kainveus +12267,17,6573,35,kimlarzen +12267,17,6573,35,lhucthu +12267,17,6573,35,origamigoblin +12267,17,6573,35,patwick +12267,17,6573,35,rerun45 +12267,17,6573,35,sapsalo +12267,17,6573,35,sarahbobara +12267,17,6573,35,swonguersept29 +12267,17,6573,35,the bearded one +12267,17,6573,35,unalignedmagi +12267,17,6573,35,whatawookie +12267,17,6573,35,wimvervynck +12267,17,6573,35,wolfpackernc +12267,17,6573,35,yayaba +12267,17,7100,34,adinx +12267,17,7100,34,african grey +12267,17,7100,34,aior +12267,17,7100,34,arthurrw +12267,17,7100,34,blugkolf +12267,17,7100,34,cheshire_cat +12267,17,7100,34,claudious86 +12267,17,7100,34,creevedog +12267,17,7100,34,drfaust +12267,17,7100,34,eara1 +12267,17,7100,34,getodacu +12267,17,7100,34,griethad +12267,17,7100,34,iamspacemonkey +12267,17,7100,34,jacinjmesa +12267,17,7100,34,kaimada +12267,17,7100,34,maegor +12267,17,7100,34,marauder2001 +12267,17,7100,34,mattastasis +12267,17,7100,34,michele f +12267,17,7100,34,nemo712 +12267,17,7100,34,polypehc +12267,17,7100,34,qbert80 +12267,17,7100,34,regulone +12267,17,7100,34,rysiuvg +12267,17,7100,34,sharky2k +12267,17,7100,34,spatho +12267,17,7100,34,thejaybell +12267,17,7100,34,wamadeus +12267,17,7100,34,wargamer17 +12267,17,7679,33,amerikano +12267,17,7679,33,amused1982 +12267,17,7679,33,bigwoo +12267,17,7679,33,dagonus +12267,17,7679,33,davecole +12267,17,7679,33,davethegame +12267,17,7679,33,dilliard +12267,17,7679,33,dougan brightaxe +12267,17,7679,33,franelas +12267,17,7679,33,ikeinyyo +12267,17,7679,33,inzkulozik +12267,17,7679,33,jeremyslayton +12267,17,7679,33,jordanlrose +12267,17,7679,33,larryfollin +12267,17,7679,33,miranda1982 +12267,17,7679,33,odd fox games +12267,17,7679,33,petem41 +12267,17,7679,33,pizzarony +12267,17,7679,33,r0t1prata +12267,17,7679,33,reine +12267,17,7679,33,ricpro +12267,17,7679,33,rubenbl +12267,17,7679,33,scatman +12267,17,7679,33,seandavidross +12267,17,7679,33,sedlak87 +12267,17,7679,33,seth_logan +12267,17,7679,33,tannerd +12267,17,7679,33,thanoskast +12267,17,7679,33,tim_p +12267,17,7679,33,tirerndil +12267,17,7679,33,weisswurst +12267,17,8351,32,a3rkev +12267,17,8351,32,adalbertus_11 +12267,17,8351,32,aka_demik +12267,17,8351,32,akfly +12267,17,8351,32,anglosaxon42 +12267,17,8351,32,artadius +12267,17,8351,32,bdhchef +12267,17,8351,32,belindajayne +12267,17,8351,32,bggn22 +12267,17,8351,32,clantargh +12267,17,8351,32,da_miche +12267,17,8351,32,darkobeta +12267,17,8351,32,fotostorm +12267,17,8351,32,gabrielino77 +12267,17,8351,32,golux +12267,17,8351,32,joheli +12267,17,8351,32,konformista +12267,17,8351,32,lindre3000 +12267,17,8351,32,macrat84 +12267,17,8351,32,macrawn +12267,17,8351,32,malteh +12267,17,8351,32,maxminus +12267,17,8351,32,nightmarebc +12267,17,8351,32,old_school_gamer +12267,17,8351,32,pandaplays +12267,17,8351,32,porcupinehunter +12267,17,8351,32,rowenc +12267,17,8351,32,rtrienekens +12267,17,8351,32,sairanac +12267,17,8351,32,tee bickle +12267,17,8351,32,thetig333 +12267,17,8351,32,vrtv +12267,17,8351,32,wifwendell +12267,17,8351,32,zachhannibal +12267,17,8351,32,zcontest +12267,17,8351,32,zephyr4213 +12267,17,9086,31,a37345735 +12267,17,9086,31,afclark +12267,17,9086,31,amaza71 +12267,17,9086,31,angelnc +12267,17,9086,31,arantil +12267,17,9086,31,areee +12267,17,9086,31,awrighter +12267,17,9086,31,bagese +12267,17,9086,31,beachcat +12267,17,9086,31,beeme29 +12267,17,9086,31,blockasaurus +12267,17,9086,31,brojo12003 +12267,17,9086,31,burns1gn +12267,17,9086,31,bychu +12267,17,9086,31,calmien +12267,17,9086,31,carlos81 +12267,17,9086,31,chrisprime +12267,17,9086,31,claylarsen +12267,17,9086,31,cricky +12267,17,9086,31,derwolfskrieger +12267,17,9086,31,dexgeek +12267,17,9086,31,dreaddormammu +12267,17,9086,31,drlongbottom +12267,17,9086,31,drumshp +12267,17,9086,31,el hidalgo +12267,17,9086,31,emmepi14 +12267,17,9086,31,emslothian +12267,17,9086,31,epsabres +12267,17,9086,31,feldmafx +12267,17,9086,31,friedrich +12267,17,9086,31,gaartzoe +12267,17,9086,31,gardamun +12267,17,9086,31,geared84 +12267,17,9086,31,goldenshowerman +12267,17,9086,31,gwgumby +12267,17,9086,31,hewhoeatsbabies +12267,17,9086,31,hitmann +12267,17,9086,31,hongjoonun +12267,17,9086,31,icedragon +12267,17,9086,31,irianamistifi +12267,17,9086,31,iswearihaveajob +12267,17,9086,31,jeyden +12267,17,9086,31,jguitarstring +12267,17,9086,31,jh33 +12267,17,9086,31,johnkel +12267,17,9086,31,julieanshar +12267,17,9086,31,kolvarg +12267,17,9086,31,l0nelyhunter +12267,17,9086,31,livia +12267,17,9086,31,lordjidane +12267,17,9086,31,mcmurphy +12267,17,9086,31,pawlasp +12267,17,9086,31,rattatoum +12267,17,9086,31,reggiemcfly +12267,17,9086,31,rgvilla +12267,17,9086,31,risk +12267,17,9086,31,scps14 +12267,17,9086,31,seancarpediem +12267,17,9086,31,simon75 +12267,17,9086,31,smies +12267,17,9086,31,snake669 +12267,17,9086,31,strioch +12267,17,9086,31,svalan +12267,17,9086,31,terraryzing +12267,17,9086,31,teveshckp +12267,17,9086,31,theasaris +12267,17,9086,31,thecyborganizer +12267,17,9086,31,tonicamo +12267,17,9086,31,user276 +12267,17,9086,31,virtualboy +12267,17,9086,31,warenhari +12267,17,9086,31,yoshifr +12267,17,9086,31,zawwah +12267,17,9086,31,zelif +12267,17,9086,31,zharik +12267,17,9910,30,a_poodle +12267,17,9910,30,ackmondual +12267,17,9910,30,aging one +12267,17,9910,30,agitalanza +12267,17,9910,30,alirion +12267,17,9910,30,andyp123 +12267,17,9910,30,andytelferoo +12267,17,9910,30,anton der grosse +12267,17,9910,30,apvillano +12267,17,9910,30,arrowstormen +12267,17,9910,30,bawdgamelover +12267,17,9910,30,bence350 +12267,17,9910,30,benh1979 +12267,17,9910,30,bluefoxmoon +12267,17,9910,30,calebhasty +12267,17,9910,30,caongladius +12267,17,9910,30,chammons97 +12267,17,9910,30,coroviov +12267,17,9910,30,danephoto +12267,17,9910,30,desbrot +12267,17,9910,30,dsemusic99 +12267,17,9910,30,edenoth +12267,17,9910,30,eric dwyer +12267,17,9910,30,eunjolee79 +12267,17,9910,30,fanage +12267,17,9910,30,fantaso +12267,17,9910,30,fdoug64 +12267,17,9910,30,flomotion +12267,17,9910,30,funky78 +12267,17,9910,30,glen oakland +12267,17,9910,30,h8fiction +12267,17,9910,30,hadmatter +12267,17,9910,30,hannah_rose +12267,17,9910,30,hbb4l +12267,17,9910,30,hellborgo +12267,17,9910,30,hollyshortpl +12267,17,9910,30,hubsi1w6 +12267,17,9910,30,iluv68 +12267,17,9910,30,inoshishi +12267,17,9910,30,jar011 +12267,17,9910,30,jarllax +12267,17,9910,30,jmvolckmann +12267,17,9910,30,jonty dante +12267,17,9910,30,jutuomin +12267,17,9910,30,k1dn30 +12267,17,9910,30,kendraam +12267,17,9910,30,kgm3219 +12267,17,9910,30,linked grest +12267,17,9910,30,linnaeus +12267,17,9910,30,luckystrike +12267,17,9910,30,m0g3l +12267,17,9910,30,m3d3a +12267,17,9910,30,marcin_marek +12267,17,9910,30,marcobdv +12267,17,9910,30,mrgigg +12267,17,9910,30,navet bleu +12267,17,9910,30,nmadd +12267,17,9910,30,nooj03 +12267,17,9910,30,nucleartrask +12267,17,9910,30,nyom7 +12267,17,9910,30,ol sleepy +12267,17,9910,30,ouch_cacti +12267,17,9910,30,paulrus627 +12267,17,9910,30,peraita75 +12267,17,9910,30,privateer4hire +12267,17,9910,30,pumaman123 +12267,17,9910,30,rapscallion_69 +12267,17,9910,30,rndc +12267,17,9910,30,rob0108 +12267,17,9910,30,rodrigoalvespt +12267,17,9910,30,salteador27 +12267,17,9910,30,sappington +12267,17,9910,30,saulizaso +12267,17,9910,30,sonagi +12267,17,9910,30,staples01 +12267,17,9910,30,tepes1er +12267,17,9910,30,theycallmemorty +12267,17,9910,30,thinwhiteduke +12267,17,9910,30,tigroult3 +12267,17,9910,30,triforcelegend +12267,17,9910,30,trusha +12267,17,9910,30,turo8 +12267,17,9910,30,usurper +12267,17,9910,30,vekerdy +12267,17,9910,30,vmgf1979 +12267,17,9910,30,waterwheel +12267,17,9910,30,whoops_dwr +12267,17,9910,30,winnetou19 +12267,17,9910,30,xmanden +12267,17,9910,30,zenly +12267,17,9910,30,zezzene +12267,17,10868,29,aaaaarjen +12267,17,10868,29,aih +12267,17,10868,29,ajw5388 +12267,17,10868,29,alannash +12267,17,10868,29,albbara +12267,17,10868,29,andreww +12267,17,10868,29,apollo1111 +12267,17,10868,29,arathornbr +12267,17,10868,29,arcesilaus +12267,17,10868,29,ardel_pl +12267,17,10868,29,arneus +12267,17,10868,29,bahner +12267,17,10868,29,banzayats +12267,17,10868,29,barthi +12267,17,10868,29,bassofthe +12267,17,10868,29,bg500 +12267,17,10868,29,bhink +12267,17,10868,29,bitethedust +12267,17,10868,29,blackspy07 +12267,17,10868,29,capobro +12267,17,10868,29,carvarafael +12267,17,10868,29,christine biancheria +12267,17,10868,29,cvandyk +12267,17,10868,29,danglicious +12267,17,10868,29,danmanisa +12267,17,10868,29,demainlesdauphins +12267,17,10868,29,dkahnt +12267,17,10868,29,dlemckert +12267,17,10868,29,dream_breaker +12267,17,10868,29,duke_pedro +12267,17,10868,29,dvannecke +12267,17,10868,29,ehngel +12267,17,10868,29,eusstacia +12267,17,10868,29,excelgent +12267,17,10868,29,frostyfalcon +12267,17,10868,29,garea37 +12267,17,10868,29,gingermen +12267,17,10868,29,gunnercro +12267,17,10868,29,imadeadend +12267,17,10868,29,incredibul +12267,17,10868,29,ionas +12267,17,10868,29,jakejobe +12267,17,10868,29,jaytotherescue +12267,17,10868,29,jethro03 +12267,17,10868,29,jevvoi +12267,17,10868,29,jfaulkner +12267,17,10868,29,jopfamily +12267,17,10868,29,judgetiger +12267,17,10868,29,june02 +12267,17,10868,29,k0rthar +12267,17,10868,29,kawelch +12267,17,10868,29,keima +12267,17,10868,29,kimbelov +12267,17,10868,29,kittenchokeslam +12267,17,10868,29,knukybu +12267,17,10868,29,korsarchen +12267,17,10868,29,kotongo +12267,17,10868,29,kotzen +12267,17,10868,29,lijon +12267,17,10868,29,luigi_baggins +12267,17,10868,29,m013 +12267,17,10868,29,mad4surf +12267,17,10868,29,magnusrygh +12267,17,10868,29,mattmill +12267,17,10868,29,meanwater +12267,17,10868,29,michaeldyrud +12267,17,10868,29,moomoomoo +12267,17,10868,29,mtseidel +12267,17,10868,29,natestraight +12267,17,10868,29,nevogamer +12267,17,10868,29,nix342 +12267,17,10868,29,nomisofsiman +12267,17,10868,29,nybbon +12267,17,10868,29,oso170 +12267,17,10868,29,osstap +12267,17,10868,29,oxxyria +12267,17,10868,29,paiaso +12267,17,10868,29,pamda +12267,17,10868,29,paredrus +12267,17,10868,29,pavlusha +12267,17,10868,29,peeyots +12267,17,10868,29,perogiepizza +12267,17,10868,29,pojopembo +12267,17,10868,29,porus reign +12267,17,10868,29,r2byers +12267,17,10868,29,r4zi€l +12267,17,10868,29,ramosron +12267,17,10868,29,regal247 +12267,17,10868,29,robbertarce +12267,17,10868,29,runkst +12267,17,10868,29,scarydeck +12267,17,10868,29,scotchyeti +12267,17,10868,29,sculley +12267,17,10868,29,setters4ever +12267,17,10868,29,settler_of_agricola +12267,17,10868,29,sliponflange +12267,17,10868,29,stegi89 +12267,17,10868,29,tantan +12267,17,10868,29,tinmachine +12267,17,10868,29,tkundnobody +12267,17,10868,29,tregannon +12267,17,10868,29,tsurucap +12267,17,10868,29,vogopolis +12267,17,10868,29,vyntoo +12267,17,10868,29,waitmind +12267,17,10868,29,xynth +12267,17,10868,29,yaboo +12267,17,10868,29,zachotto67 +12267,17,10868,29,zegrith +12267,17,10868,29,zhellas +12267,17,10868,29,zomboss +12267,17,10868,29,zuggyg +12267,17,11831,28,abizaas +12267,17,11831,28,adelaire +12267,17,11831,28,affensohn +12267,17,11831,28,alaemortis +12267,17,11831,28,an_droo +12267,17,11831,28,antoniusmn +12267,17,11831,28,arakh +12267,17,11831,28,ayanna +12267,17,11831,28,barry1988 +12267,17,11831,28,bassoon boy +12267,17,11831,28,ben_uez +12267,17,11831,28,boardgame_couple +12267,17,11831,28,boomer +12267,17,11831,28,cam27 +12267,17,11831,28,cantinus +12267,17,11831,28,caxo4 +12267,17,11831,28,celacanto +12267,17,11831,28,chadams +12267,17,11831,28,cirroid +12267,17,11831,28,civil +12267,17,11831,28,cosminul +12267,17,11831,28,dakarp +12267,17,11831,28,danielhgreve +12267,17,11831,28,darthwho +12267,17,11831,28,daryleg +12267,17,11831,28,dashulkacss +12267,17,11831,28,davicroquette +12267,17,11831,28,dnorthcott +12267,17,11831,28,docbeasty +12267,17,11831,28,donindenver +12267,17,11831,28,draupernaut +12267,17,11831,28,drcsaba +12267,17,11831,28,dumbdiety +12267,17,11831,28,dysjunct +12267,17,11831,28,dzacki3 +12267,17,11831,28,emetas +12267,17,11831,28,erudite +12267,17,11831,28,farfadetmaussade +12267,17,11831,28,fbcoach43 +12267,17,11831,28,fjoekjui +12267,17,11831,28,freakmeat +12267,17,11831,28,genghis +12267,17,11831,28,geoffwii +12267,17,11831,28,gillencenaud +12267,17,11831,28,gipsygamer +12267,17,11831,28,gman94024 +12267,17,11831,28,grimhen +12267,17,11831,28,hassard +12267,17,11831,28,heidimaria +12267,17,11831,28,henkipenki +12267,17,11831,28,hob bramble +12267,17,11831,28,hoiguy12 +12267,17,11831,28,impulseisp +12267,17,11831,28,irrationalpizza +12267,17,11831,28,j_burrd +12267,17,11831,28,jacksxt2000 +12267,17,11831,28,jan_gustaffson +12267,17,11831,28,jenoe +12267,17,11831,28,jesgess +12267,17,11831,28,jkahnerd +12267,17,11831,28,jmcgover +12267,17,11831,28,kamash44 +12267,17,11831,28,kamradziejtomal +12267,17,11831,28,karvek +12267,17,11831,28,kibiras +12267,17,11831,28,kinkbicycles +12267,17,11831,28,letharion +12267,17,11831,28,loekit +12267,17,11831,28,lukeholland +12267,17,11831,28,macbolle +12267,17,11831,28,mariogambinosr77 +12267,17,11831,28,mattwolfe +12267,17,11831,28,mccann98 +12267,17,11831,28,merpmerpmerp +12267,17,11831,28,milith +12267,17,11831,28,misa1989 +12267,17,11831,28,mk20336 +12267,17,11831,28,moonty +12267,17,11831,28,naga viper +12267,17,11831,28,nagasaki45 +12267,17,11831,28,namander +12267,17,11831,28,ninjadorg +12267,17,11831,28,oern10 +12267,17,11831,28,pantsman +12267,17,11831,28,patk +12267,17,11831,28,patricula +12267,17,11831,28,pete atack +12267,17,11831,28,philocross +12267,17,11831,28,pikabud +12267,17,11831,28,pizin +12267,17,11831,28,popobawa +12267,17,11831,28,primdahl +12267,17,11831,28,primertt +12267,17,11831,28,psilolouben +12267,17,11831,28,rasty +12267,17,11831,28,rickgolec +12267,17,11831,28,rikardus66 +12267,17,11831,28,rokinron1 +12267,17,11831,28,runefang +12267,17,11831,28,schwabe76 +12267,17,11831,28,sebishor +12267,17,11831,28,sergeantcorbett +12267,17,11831,28,sestovic +12267,17,11831,28,sford +12267,17,11831,28,sgoetsch +12267,17,11831,28,shaxer +12267,17,11831,28,shirkhan +12267,17,11831,28,shkaph +12267,17,11831,28,smooth_na +12267,17,11831,28,solvaro +12267,17,11831,28,spieleholger +12267,17,11831,28,sroper +12267,17,11831,28,stab +12267,17,11831,28,stapeo +12267,17,11831,28,steffomaster +12267,17,11831,28,stianxo +12267,17,11831,28,supermaxv +12267,17,11831,28,swiftius +12267,17,11831,28,szyderca +12267,17,11831,28,taksdk +12267,17,11831,28,the flame of error +12267,17,11831,28,thetshell +12267,17,11831,28,theyodaman +12267,17,11831,28,thrilljam +12267,17,11831,28,tqobs +12267,17,11831,28,vagabooond +12267,17,11831,28,whitecarlton81 +12267,17,11831,28,yadayada23 +12267,17,11831,28,ziggurat +12267,17,12910,27,aganerral +12267,17,12910,27,agen7_0range +12267,17,12910,27,alexshatalovjr +12267,17,12910,27,andrewwb +12267,17,12910,27,angelazzo +12267,17,12910,27,angie666 +12267,17,12910,27,arborbarber +12267,17,12910,27,arkonnen7 +12267,17,12910,27,azuredeath +12267,17,12910,27,barkam +12267,17,12910,27,bcoffe +12267,17,12910,27,benjiir +12267,17,12910,27,ber1t +12267,17,12910,27,bichejote +12267,17,12910,27,bob_a_mickelson +12267,17,12910,27,br4nmuff1n +12267,17,12910,27,brandonsday +12267,17,12910,27,bryan_fury +12267,17,12910,27,cain_ball +12267,17,12910,27,calvertfan +12267,17,12910,27,camelorn +12267,17,12910,27,canadiangamer +12267,17,12910,27,carrotteer +12267,17,12910,27,cattivocliente +12267,17,12910,27,cfacs +12267,17,12910,27,charliex2003 +12267,17,12910,27,cocodrilo_de_mesa +12267,17,12910,27,coreeyore +12267,17,12910,27,covenantphil +12267,17,12910,27,cproelke +12267,17,12910,27,crawlinglaos +12267,17,12910,27,d0nfil0fi0 +12267,17,12910,27,daadman +12267,17,12910,27,diknic +12267,17,12910,27,docmitey +12267,17,12910,27,doctorbandage +12267,17,12910,27,doomguard +12267,17,12910,27,dragonhunter +12267,17,12910,27,drheimlich +12267,17,12910,27,dsoftheforce +12267,17,12910,27,ducksboy +12267,17,12910,27,dutch boy +12267,17,12910,27,egoon +12267,17,12910,27,emcher +12267,17,12910,27,emperor1103 +12267,17,12910,27,episs +12267,17,12910,27,familia_meeple +12267,17,12910,27,fee_weasel +12267,17,12910,27,feffi +12267,17,12910,27,footey1984 +12267,17,12910,27,fotn06 +12267,17,12910,27,fueramiseria +12267,17,12910,27,geekmekci +12267,17,12910,27,giforian +12267,17,12910,27,gmgates +12267,17,12910,27,gnico +12267,17,12910,27,goldonlamsay +12267,17,12910,27,grantos +12267,17,12910,27,gus da bull +12267,17,12910,27,hadzsi +12267,17,12910,27,half cousin +12267,17,12910,27,henryking2014 +12267,17,12910,27,horux +12267,17,12910,27,hrune +12267,17,12910,27,hurlanc +12267,17,12910,27,ibemichael +12267,17,12910,27,igelkott255 +12267,17,12910,27,ikar2002 +12267,17,12910,27,ishield +12267,17,12910,27,jambogav +12267,17,12910,27,jearles +12267,17,12910,27,jemact +12267,17,12910,27,jfroistad +12267,17,12910,27,jgadelange +12267,17,12910,27,joeshmoe301 +12267,17,12910,27,johnpriebe +12267,17,12910,27,jolly_rogers_258 +12267,17,12910,27,jsallay +12267,17,12910,27,jsmullins87 +12267,17,12910,27,jugadorinicial +12267,17,12910,27,juusie97 +12267,17,12910,27,karagol +12267,17,12910,27,katanatea +12267,17,12910,27,kimdoh +12267,17,12910,27,knobdoctor +12267,17,12910,27,kudde +12267,17,12910,27,lexifer +12267,17,12910,27,lindoras +12267,17,12910,27,linsivvi7 +12267,17,12910,27,linvincibilejus +12267,17,12910,27,lohroffc +12267,17,12910,27,loisar +12267,17,12910,27,lord_piet +12267,17,12910,27,lordhong +12267,17,12910,27,lothlor83 +12267,17,12910,27,lowercase_de +12267,17,12910,27,m2boy +12267,17,12910,27,m_jeff +12267,17,12910,27,maciej skowronek +12267,17,12910,27,madigailfarm +12267,17,12910,27,marisks +12267,17,12910,27,markus r +12267,17,12910,27,marliv +12267,17,12910,27,mc_esher +12267,17,12910,27,mcorrea +12267,17,12910,27,michael_j +12267,17,12910,27,miczi92 +12267,17,12910,27,monkeytigerhive +12267,17,12910,27,msherwoo +12267,17,12910,27,multimelissa +12267,17,12910,27,mynameismaestro +12267,17,12910,27,mytagen +12267,17,12910,27,necio +12267,17,12910,27,notjeff +12267,17,12910,27,ouseuris +12267,17,12910,27,palplaysgames +12267,17,12910,27,paulrrahn +12267,17,12910,27,pauwl +12267,17,12910,27,pedrotronic +12267,17,12910,27,pfenn1tw +12267,17,12910,27,polishninja +12267,17,12910,27,questhunter +12267,17,12910,27,rawes6 +12267,17,12910,27,rayman1971 +12267,17,12910,27,rbfx +12267,17,12910,27,rfrank +12267,17,12910,27,rneumann +12267,17,12910,27,robertgs82 +12267,17,12910,27,robman +12267,17,12910,27,rombie +12267,17,12910,27,ropes4u +12267,17,12910,27,roustabout +12267,17,12910,27,rrd2 +12267,17,12910,27,rtpmark +12267,17,12910,27,ryanchegwidden +12267,17,12910,27,salazar1990 +12267,17,12910,27,sam1975 +12267,17,12910,27,samus98 +12267,17,12910,27,sauerwj +12267,17,12910,27,schn1co +12267,17,12910,27,scottandkimr +12267,17,12910,27,sctreno +12267,17,12910,27,sdstasko +12267,17,12910,27,sekwof +12267,17,12910,27,shadowfox324 +12267,17,12910,27,shanse +12267,17,12910,27,siathryn +12267,17,12910,27,simpledamon +12267,17,12910,27,sir_yaro +12267,17,12910,27,sjacobsen159 +12267,17,12910,27,sjtollie +12267,17,12910,27,snobbydolphin +12267,17,12910,27,softhook +12267,17,12910,27,stemayf +12267,17,12910,27,stickytoe +12267,17,12910,27,tarmin8 +12267,17,12910,27,themadvulcan +12267,17,12910,27,tiffany_severs +12267,17,12910,27,tigrr +12267,17,12910,27,tmontonen +12267,17,12910,27,tomatojim +12267,17,12910,27,tonione87 +12267,17,12910,27,tothrmate +12267,17,12910,27,tubesteak +12267,17,12910,27,turnstiller +12267,17,12910,27,ubrtstcl +12267,17,12910,27,underscore +12267,17,12910,27,veles +12267,17,12910,27,vidgar87 +12267,17,12910,27,whistleblower +12267,17,12910,27,winniethepoonbear +12267,17,12910,27,winoneday +12267,17,12910,27,xalons +12267,17,12910,27,zoro_vs_sanji +12267,17,14030,26,abss +12267,17,14030,26,achal +12267,17,14030,26,acolyte +12267,17,14030,26,ahriman3 +12267,17,14030,26,akivoy +12267,17,14030,26,alexsdalton +12267,17,14030,26,alicialaura +12267,17,14030,26,andastra +12267,17,14030,26,andre1981 +12267,17,14030,26,andy roid +12267,17,14030,26,anubys1984 +12267,17,14030,26,ariva +12267,17,14030,26,asaarto +12267,17,14030,26,asaldarriaga +12267,17,14030,26,atimrogers +12267,17,14030,26,awptilla +12267,17,14030,26,aya_zholvax +12267,17,14030,26,bamabookwyrm +12267,17,14030,26,bardbotherer +12267,17,14030,26,biffybeans +12267,17,14030,26,bipolarmonkey +12267,17,14030,26,blathannius +12267,17,14030,26,bliceheart +12267,17,14030,26,bo138ner138 +12267,17,14030,26,boardhoarder +12267,17,14030,26,brandoshido +12267,17,14030,26,branmondelaers +12267,17,14030,26,breki +12267,17,14030,26,brianstokes +12267,17,14030,26,bricktown +12267,17,14030,26,buckeye43026 +12267,17,14030,26,busanya +12267,17,14030,26,cerhob +12267,17,14030,26,chayashida +12267,17,14030,26,cheetohfingers +12267,17,14030,26,chinazo +12267,17,14030,26,chorume +12267,17,14030,26,cleonlives11 +12267,17,14030,26,coralsaw +12267,17,14030,26,cowboypaule +12267,17,14030,26,crawlerius +12267,17,14030,26,crescent +12267,17,14030,26,cwaq +12267,17,14030,26,daedhel +12267,17,14030,26,daggins +12267,17,14030,26,dalinar55 +12267,17,14030,26,danieru03 +12267,17,14030,26,dannosaurusrex +12267,17,14030,26,darke +12267,17,14030,26,darthgilou +12267,17,14030,26,daveyyboyd +12267,17,14030,26,de_aztec +12267,17,14030,26,death4ever +12267,17,14030,26,decanox +12267,17,14030,26,dellarana +12267,17,14030,26,detournemented +12267,17,14030,26,dislexsick +12267,17,14030,26,donborch +12267,17,14030,26,drakestorm +12267,17,14030,26,dtanner4 +12267,17,14030,26,dudikowski +12267,17,14030,26,duncan_mccloud83 +12267,17,14030,26,econ5417 +12267,17,14030,26,eddiebebe +12267,17,14030,26,edzzzz +12267,17,14030,26,eikeb89 +12267,17,14030,26,elendil3 +12267,17,14030,26,eruannehosta +12267,17,14030,26,eveline2017 +12267,17,14030,26,eviljelloman +12267,17,14030,26,famfrit il nembo +12267,17,14030,26,fatpaulslim +12267,17,14030,26,faytparkour +12267,17,14030,26,feanan +12267,17,14030,26,ferymo +12267,17,14030,26,firyar +12267,17,14030,26,fisherfuture +12267,17,14030,26,fleyboock +12267,17,14030,26,floyd_riverwoo +12267,17,14030,26,francescpique +12267,17,14030,26,freekr +12267,17,14030,26,frundock +12267,17,14030,26,gcatt +12267,17,14030,26,ggan +12267,17,14030,26,gleidisonlb +12267,17,14030,26,gmcnish +12267,17,14030,26,godfill +12267,17,14030,26,greyarcher +12267,17,14030,26,grimmi87 +12267,17,14030,26,gruenling79 +12267,17,14030,26,halloikama +12267,17,14030,26,halowii +12267,17,14030,26,happyshopper +12267,17,14030,26,harrisv8 +12267,17,14030,26,hederj +12267,17,14030,26,heishiro1976 +12267,17,14030,26,hend +12267,17,14030,26,hurrayweekend +12267,17,14030,26,hwapios +12267,17,14030,26,idahoev +12267,17,14030,26,igabas +12267,17,14030,26,ipgyst +12267,17,14030,26,iradchuk +12267,17,14030,26,jakub879322 +12267,17,14030,26,jas77 +12267,17,14030,26,jason17055 +12267,17,14030,26,jayjai17 +12267,17,14030,26,jbarlow +12267,17,14030,26,jellojt38 +12267,17,14030,26,jessoya +12267,17,14030,26,jhay +12267,17,14030,26,jheaney +12267,17,14030,26,joep83 +12267,17,14030,26,journeyman_j +12267,17,14030,26,jrescan +12267,17,14030,26,jrupe +12267,17,14030,26,jtammel +12267,17,14030,26,juanvilar +12267,17,14030,26,jukkamikael +12267,17,14030,26,k26dp +12267,17,14030,26,kalaheo +12267,17,14030,26,kalius +12267,17,14030,26,kawouin +12267,17,14030,26,kdlecluy +12267,17,14030,26,keleno +12267,17,14030,26,khathaklizm +12267,17,14030,26,klbush +12267,17,14030,26,krazykiwisteve +12267,17,14030,26,laexpls +12267,17,14030,26,leandro zombie +12267,17,14030,26,lemammouth +12267,17,14030,26,lienddw +12267,17,14030,26,little dragon +12267,17,14030,26,llarbal +12267,17,14030,26,lorddavid +12267,17,14030,26,lukeorafferty +12267,17,14030,26,m0dowd +12267,17,14030,26,maltekis +12267,17,14030,26,mantc +12267,17,14030,26,martin ralya +12267,17,14030,26,martunka +12267,17,14030,26,mcjarvis +12267,17,14030,26,mcross +12267,17,14030,26,melpetro +12267,17,14030,26,midde4 +12267,17,14030,26,miltiplayer +12267,17,14030,26,minibubble +12267,17,14030,26,misterpinstripe +12267,17,14030,26,mon_auale +12267,17,14030,26,moncara +12267,17,14030,26,morpheus161186 +12267,17,14030,26,mospinach +12267,17,14030,26,mrfuch +12267,17,14030,26,muaddib77 +12267,17,14030,26,nabla_1981 +12267,17,14030,26,notarita +12267,17,14030,26,pandawan +12267,17,14030,26,parsnipy +12267,17,14030,26,pettimong +12267,17,14030,26,pharao1911 +12267,17,14030,26,philmcd +12267,17,14030,26,phynex +12267,17,14030,26,pitula80 +12267,17,14030,26,pleichty +12267,17,14030,26,plft +12267,17,14030,26,poddster +12267,17,14030,26,psznicx +12267,17,14030,26,ragnarokzero +12267,17,14030,26,raxos +12267,17,14030,26,rcmoore4 +12267,17,14030,26,remyvert +12267,17,14030,26,renevaes +12267,17,14030,26,roadrunn3r +12267,17,14030,26,robotco +12267,17,14030,26,romje +12267,17,14030,26,rorik36 +12267,17,14030,26,rsimiqueli +12267,17,14030,26,ryanmoore +12267,17,14030,26,sailorwets22 +12267,17,14030,26,sakuchta +12267,17,14030,26,scherpaderp +12267,17,14030,26,scholle76 +12267,17,14030,26,scottb +12267,17,14030,26,sdrech +12267,17,14030,26,senso +12267,17,14030,26,sgrant89 +12267,17,14030,26,sharpless +12267,17,14030,26,shebie +12267,17,14030,26,shinobinils +12267,17,14030,26,shlomi +12267,17,14030,26,sirdan221 +12267,17,14030,26,skemmuni +12267,17,14030,26,skuba_skot +12267,17,14030,26,slyestfox +12267,17,14030,26,smachel +12267,17,14030,26,smurphboogie +12267,17,14030,26,spicychum +12267,17,14030,26,star2pilot +12267,17,14030,26,starflame149 +12267,17,14030,26,starpino +12267,17,14030,26,startlingteedee +12267,17,14030,26,stealmonkey +12267,17,14030,26,stugal +12267,17,14030,26,swoony +12267,17,14030,26,symesr +12267,17,14030,26,t_s_sullivan +12267,17,14030,26,tartanllama +12267,17,14030,26,tekar +12267,17,14030,26,terbear +12267,17,14030,26,theflan045 +12267,17,14030,26,thrake +12267,17,14030,26,timbergus7 +12267,17,14030,26,tiny_kitty +12267,17,14030,26,tmac1978 +12267,17,14030,26,tpbremer +12267,17,14030,26,travspackpulls +12267,17,14030,26,tree6eard +12267,17,14030,26,twicethecaffeine +12267,17,14030,26,two sips +12267,17,14030,26,twomexicanmeeples +12267,17,14030,26,tyroll +12267,17,14030,26,utopicus +12267,17,14030,26,valas +12267,17,14030,26,vastop +12267,17,14030,26,vida2001 +12267,17,14030,26,virginiadare +12267,17,14030,26,wellspokenman +12267,17,14030,26,whitebishop +12267,17,14030,26,wilczelyko +12267,17,14030,26,wildshot +12267,17,14030,26,willco +12267,17,14030,26,williamwonka +12267,17,14030,26,wittyticcyray +12267,17,14030,26,wohlrajh +12267,17,14030,26,yarninator +12267,17,14030,26,yopablo +12267,17,14030,26,zupoyahi +12267,17,15326,25,4luvbugs +12267,17,15326,25,aberdeen1977 +12267,17,15326,25,adrian rz1 +12267,17,15326,25,adrian san +12267,17,15326,25,aesopdoom +12267,17,15326,25,aferimcarabin +12267,17,15326,25,agami86 +12267,17,15326,25,agnieszka rz1 +12267,17,15326,25,ahiguera +12267,17,15326,25,aimeer85 +12267,17,15326,25,alettner +12267,17,15326,25,allavalabala +12267,17,15326,25,ambi6 +12267,17,15326,25,apilgrim +12267,17,15326,25,aschenvogel +12267,17,15326,25,babeester +12267,17,15326,25,bacon_bacon +12267,17,15326,25,badpritt +12267,17,15326,25,baschka +12267,17,15326,25,baurfamily +12267,17,15326,25,bbernard +12267,17,15326,25,beefy79 +12267,17,15326,25,benjahmin82 +12267,17,15326,25,benthor +12267,17,15326,25,berzley +12267,17,15326,25,beth02906 +12267,17,15326,25,bigenglish +12267,17,15326,25,billypratt +12267,17,15326,25,biscaia +12267,17,15326,25,blackdaz83 +12267,17,15326,25,blackeagle21 +12267,17,15326,25,blackpope +12267,17,15326,25,booshmeister169 +12267,17,15326,25,brokensword09 +12267,17,15326,25,bru87no +12267,17,15326,25,bucolik +12267,17,15326,25,calimar75 +12267,17,15326,25,captnmeeple +12267,17,15326,25,carrous +12267,17,15326,25,casualcasual +12267,17,15326,25,cbbs +12267,17,15326,25,chyga22 +12267,17,15326,25,claycrucible +12267,17,15326,25,cornbreadx +12267,17,15326,25,creepwalker +12267,17,15326,25,cristinatofan +12267,17,15326,25,crystaldillon +12267,17,15326,25,curatesegg +12267,17,15326,25,dangermaus1 +12267,17,15326,25,darrinwilliams +12267,17,15326,25,darthonkel +12267,17,15326,25,daskre +12267,17,15326,25,dav3038 +12267,17,15326,25,daz4126 +12267,17,15326,25,dcflyfpv +12267,17,15326,25,dcrowell +12267,17,15326,25,deadwalker72 +12267,17,15326,25,delcojon +12267,17,15326,25,derekmd33 +12267,17,15326,25,deucejack +12267,17,15326,25,dhshaw22 +12267,17,15326,25,diez +12267,17,15326,25,doc90 +12267,17,15326,25,doekeh +12267,17,15326,25,dominiek +12267,17,15326,25,doub +12267,17,15326,25,dukane +12267,17,15326,25,dulgin +12267,17,15326,25,elacyenwod +12267,17,15326,25,elcapitan76 +12267,17,15326,25,emylovejay +12267,17,15326,25,ender4747 +12267,17,15326,25,essensa +12267,17,15326,25,evomoraes +12267,17,15326,25,ezrageoffor +12267,17,15326,25,fabienc +12267,17,15326,25,fardoche +12267,17,15326,25,fcschmidt +12267,17,15326,25,febadore +12267,17,15326,25,fenghuoma +12267,17,15326,25,ferralferrets +12267,17,15326,25,ferstero +12267,17,15326,25,fgh17 +12267,17,15326,25,fille +12267,17,15326,25,fleax +12267,17,15326,25,florian63 +12267,17,15326,25,funkmobile +12267,17,15326,25,fura sarga +12267,17,15326,25,furt84 +12267,17,15326,25,fusomfei +12267,17,15326,25,fyei +12267,17,15326,25,gamacheclaude +12267,17,15326,25,gamerdork +12267,17,15326,25,ganlron +12267,17,15326,25,garbanso +12267,17,15326,25,gasgraham +12267,17,15326,25,georgiosa +12267,17,15326,25,gonzo47 +12267,17,15326,25,gribbon +12267,17,15326,25,guguizazie +12267,17,15326,25,guicho +12267,17,15326,25,hav0k +12267,17,15326,25,hellsingchris +12267,17,15326,25,hoenir15 +12267,17,15326,25,howiedoit31 +12267,17,15326,25,huxley +12267,17,15326,25,ichbineinspieler +12267,17,15326,25,iggywrestler2 +12267,17,15326,25,jasjefpar +12267,17,15326,25,jasonmarkwebber +12267,17,15326,25,jeffjalb +12267,17,15326,25,jeroen3h +12267,17,15326,25,jersepe +12267,17,15326,25,jfrischetti +12267,17,15326,25,jguritza +12267,17,15326,25,jigulenok +12267,17,15326,25,jimmy_volador +12267,17,15326,25,joetantobr +12267,17,15326,25,jorlbs +12267,17,15326,25,jos_smeets +12267,17,15326,25,jowsep +12267,17,15326,25,jp nz +12267,17,15326,25,jroussecbc +12267,17,15326,25,jschupp +12267,17,15326,25,juleg +12267,17,15326,25,julia_fat +12267,17,15326,25,justanewbie +12267,17,15326,25,jwhyne +12267,17,15326,25,jwquinn +12267,17,15326,25,kabraxxx +12267,17,15326,25,kartigan +12267,17,15326,25,keinkurt +12267,17,15326,25,kibito85 +12267,17,15326,25,kikuchiyo_san +12267,17,15326,25,kintres +12267,17,15326,25,klown_slayer +12267,17,15326,25,koldoredondo +12267,17,15326,25,krisjay +12267,17,15326,25,kryptonite v +12267,17,15326,25,laucion +12267,17,15326,25,laurakaro +12267,17,15326,25,leluhe +12267,17,15326,25,leys +12267,17,15326,25,liskinho +12267,17,15326,25,lit_it +12267,17,15326,25,lordweh +12267,17,15326,25,lucky.dude +12267,17,15326,25,lynch007 +12267,17,15326,25,magicalsushi +12267,17,15326,25,marcusesses +12267,17,15326,25,marypatricejoanne +12267,17,15326,25,mastomies +12267,17,15326,25,mattdillard +12267,17,15326,25,matthijsnl +12267,17,15326,25,mcaster +12267,17,15326,25,mephistopheles78 +12267,17,15326,25,mfenici +12267,17,15326,25,michael_waterstradt +12267,17,15326,25,mistake89 +12267,17,15326,25,modern hedonist +12267,17,15326,25,mope123 +12267,17,15326,25,mountain_nat +12267,17,15326,25,mrmory +12267,17,15326,25,mst3k4ever +12267,17,15326,25,munchhausen +12267,17,15326,25,murmurtwins +12267,17,15326,25,mvalenta +12267,17,15326,25,netmart +12267,17,15326,25,nixit2 +12267,17,15326,25,nori_74 +12267,17,15326,25,olexandrbig +12267,17,15326,25,owen134866 +12267,17,15326,25,pedrowski +12267,17,15326,25,pentheus +12267,17,15326,25,phantomwhale +12267,17,15326,25,pier paolo cordelli +12267,17,15326,25,pikaia +12267,17,15326,25,pinochet +12267,17,15326,25,pktyson +12267,17,15326,25,poke450 +12267,17,15326,25,poulidor +12267,17,15326,25,pricero1 +12267,17,15326,25,princepoul +12267,17,15326,25,raakmavet +12267,17,15326,25,rassilonsghost +12267,17,15326,25,raymondhere +12267,17,15326,25,recro +12267,17,15326,25,reniatp +12267,17,15326,25,retrospektiv +12267,17,15326,25,rexbanner +12267,17,15326,25,ricardohoji +12267,17,15326,25,richlo +12267,17,15326,25,rigidigi +12267,17,15326,25,rjsheets +12267,17,15326,25,romy oh +12267,17,15326,25,rossmartian +12267,17,15326,25,rss11 +12267,17,15326,25,rvalli +12267,17,15326,25,ryanelrichie +12267,17,15326,25,sabreredleg +12267,17,15326,25,salemome +12267,17,15326,25,sampsk1611 +12267,17,15326,25,sant1n +12267,17,15326,25,savagespawn +12267,17,15326,25,schulma3dch3n +12267,17,15326,25,schytte +12267,17,15326,25,scottie771 +12267,17,15326,25,scriptorum +12267,17,15326,25,sha1emade +12267,17,15326,25,shadax +12267,17,15326,25,shaman74 +12267,17,15326,25,sharpstrite +12267,17,15326,25,sheafify +12267,17,15326,25,simaax +12267,17,15326,25,sirajch +12267,17,15326,25,sjengske +12267,17,15326,25,skudd +12267,17,15326,25,sleevan +12267,17,15326,25,sngt +12267,17,15326,25,sorenk23 +12267,17,15326,25,spider222 +12267,17,15326,25,spike8888 +12267,17,15326,25,stas +12267,17,15326,25,stechpalme +12267,17,15326,25,steinthor95 +12267,17,15326,25,stellahobbitsie +12267,17,15326,25,sujorrific +12267,17,15326,25,tarkwiniusz +12267,17,15326,25,tdaver +12267,17,15326,25,tdvincent20 +12267,17,15326,25,thenormalone +12267,17,15326,25,thoddy_80 +12267,17,15326,25,thoumyvision +12267,17,15326,25,timo42 +12267,17,15326,25,timthetree +12267,17,15326,25,tomkat87 +12267,17,15326,25,trepoadiktus +12267,17,15326,25,trif +12267,17,15326,25,troszek +12267,17,15326,25,tschulz413 +12267,17,15326,25,tsrayjr +12267,17,15326,25,tuncomaclovio +12267,17,15326,25,uknowwho +12267,17,15326,25,utdawson0 +12267,17,15326,25,vackor6 +12267,17,15326,25,vrdy +12267,17,15326,25,wademitchell +12267,17,15326,25,welshgiggsy +12267,17,15326,25,wing_17v +12267,17,15326,25,winn81 +12267,17,15326,25,wkusau +12267,17,15326,25,wuyingren +12267,17,15326,25,xstophe +12267,17,15326,25,yarnchef +12267,17,15326,25,yellek +12267,17,15326,25,yodawis +12267,17,15326,25,ytter +12267,17,15326,25,ziih +12267,17,16710,24,4th stringer +12267,17,16710,24,abismald +12267,17,16710,24,adams2108 +12267,17,16710,24,afortunecookie +12267,17,16710,24,agatita_m +12267,17,16710,24,agentdib +12267,17,16710,24,alveng +12267,17,16710,24,amazingintern +12267,17,16710,24,andyleonardi +12267,17,16710,24,angua2105 +12267,17,16710,24,anthonygt +12267,17,16710,24,anubis9 +12267,17,16710,24,arthemix +12267,17,16710,24,atavist +12267,17,16710,24,b4ttousa1 +12267,17,16710,24,babiboubabibou +12267,17,16710,24,bad1788 +12267,17,16710,24,baditude +12267,17,16710,24,barongrim +12267,17,16710,24,barry_luo +12267,17,16710,24,benevolentweasl +12267,17,16710,24,benjazz +12267,17,16710,24,bensaidscott +12267,17,16710,24,bianka +12267,17,16710,24,bigbossjose +12267,17,16710,24,biker1999 +12267,17,16710,24,blacknight_13 +12267,17,16710,24,bloggymorgan +12267,17,16710,24,boardsalive +12267,17,16710,24,brockst4r +12267,17,16710,24,buffoolo +12267,17,16710,24,carlcasan +12267,17,16710,24,catherineicecold +12267,17,16710,24,channeller +12267,17,16710,24,chebinche +12267,17,16710,24,chococrossie +12267,17,16710,24,clockworkmoxie +12267,17,16710,24,cmateose +12267,17,16710,24,conan99 +12267,17,16710,24,crynyd +12267,17,16710,24,crzybeliever +12267,17,16710,24,csiq101 +12267,17,16710,24,danielcg +12267,17,16710,24,danieldelima8 +12267,17,16710,24,dantomet +12267,17,16710,24,darkmelion +12267,17,16710,24,davidpol52 +12267,17,16710,24,deitywanderer +12267,17,16710,24,diegodemoraes +12267,17,16710,24,dkrees +12267,17,16710,24,domovityi +12267,17,16710,24,dosia91 +12267,17,16710,24,drbeaker13 +12267,17,16710,24,drjwhiteside +12267,17,16710,24,drupalviking +12267,17,16710,24,eaglesixty6 +12267,17,16710,24,eclipse129 +12267,17,16710,24,ecoline +12267,17,16710,24,ecw1014 +12267,17,16710,24,edroz +12267,17,16710,24,edugon +12267,17,16710,24,elijahscherz +12267,17,16710,24,emperorsclub +12267,17,16710,24,en8800gts +12267,17,16710,24,eolindel +12267,17,16710,24,fewwdragon +12267,17,16710,24,fingerlicker +12267,17,16710,24,finite_infinitegames +12267,17,16710,24,fireballed +12267,17,16710,24,fizberry +12267,17,16710,24,fx euzet +12267,17,16710,24,galort +12267,17,16710,24,gast30 +12267,17,16710,24,geofhar +12267,17,16710,24,gerde +12267,17,16710,24,gergl1958 +12267,17,16710,24,ghcstr +12267,17,16710,24,gnome log +12267,17,16710,24,grandat +12267,17,16710,24,graphia_69 +12267,17,16710,24,grundhest +12267,17,16710,24,gthreepwood +12267,17,16710,24,hafheim +12267,17,16710,24,hana18 +12267,17,16710,24,happysteve +12267,17,16710,24,hatch1968 +12267,17,16710,24,hjsuh84 +12267,17,16710,24,hotshoe918 +12267,17,16710,24,houb +12267,17,16710,24,iamrubocop +12267,17,16710,24,iarsang +12267,17,16710,24,ijoaqi +12267,17,16710,24,iltommy +12267,17,16710,24,inconsiderate +12267,17,16710,24,ipm1234 +12267,17,16710,24,ivoryswings +12267,17,16710,24,janm +12267,17,16710,24,janxspirit +12267,17,16710,24,jayetg +12267,17,16710,24,jbkaj1 +12267,17,16710,24,jbrecken +12267,17,16710,24,jeromier +12267,17,16710,24,jftaylor21 +12267,17,16710,24,jj3eng +12267,17,16710,24,jorkaif +12267,17,16710,24,jtstrott +12267,17,16710,24,kaibis +12267,17,16710,24,karenv731 +12267,17,16710,24,kasshern +12267,17,16710,24,kattvippa +12267,17,16710,24,kibbu +12267,17,16710,24,kiko8442 +12267,17,16710,24,kirkwojl +12267,17,16710,24,klausbh +12267,17,16710,24,kyh362 +12267,17,16710,24,lebotin +12267,17,16710,24,legendarydave +12267,17,16710,24,lgb-johndoe +12267,17,16710,24,liv_loureiro +12267,17,16710,24,llaros +12267,17,16710,24,lmaschio +12267,17,16710,24,lordswayvill +12267,17,16710,24,m3lchior3 +12267,17,16710,24,macnial +12267,17,16710,24,madvikingking +12267,17,16710,24,mangup3000 +12267,17,16710,24,marlnobor +12267,17,16710,24,maskleto +12267,17,16710,24,massenburger +12267,17,16710,24,mbgalarneau +12267,17,16710,24,mcbs +12267,17,16710,24,meech +12267,17,16710,24,melcherroy +12267,17,16710,24,melomorphox +12267,17,16710,24,mg92 +12267,17,16710,24,mhost2 +12267,17,16710,24,miattei +12267,17,16710,24,mig_c10 +12267,17,16710,24,mikegoodrick +12267,17,16710,24,mipedtor +12267,17,16710,24,mjbulldog +12267,17,16710,24,mmakay +12267,17,16710,24,moggie_r +12267,17,16710,24,mojayhawk +12267,17,16710,24,morail +12267,17,16710,24,mossquito +12267,17,16710,24,moza101 +12267,17,16710,24,mpr joe +12267,17,16710,24,mrparadise_ +12267,17,16710,24,mrpiet +12267,17,16710,24,mtg3992 +12267,17,16710,24,mthompson +12267,17,16710,24,n8biangel +12267,17,16710,24,ninipaulin +12267,17,16710,24,nkbryan +12267,17,16710,24,nsyakfisher +12267,17,16710,24,nwind +12267,17,16710,24,oksu +12267,17,16710,24,olekg +12267,17,16710,24,oliver.adam +12267,17,16710,24,oowick +12267,17,16710,24,patontheback +12267,17,16710,24,paulphoenix +12267,17,16710,24,phboard +12267,17,16710,24,pioneerer +12267,17,16710,24,piotrest +12267,17,16710,24,piusfung +12267,17,16710,24,plakkers +12267,17,16710,24,ploken +12267,17,16710,24,poldecak +12267,17,16710,24,puhmaus +12267,17,16710,24,quail_daddy +12267,17,16710,24,raabeyes +12267,17,16710,24,raja_of_the_ganges +12267,17,16710,24,ramenou +12267,17,16710,24,rderr27 +12267,17,16710,24,ritterludolph +12267,17,16710,24,rkeswani +12267,17,16710,24,robdmd +12267,17,16710,24,rompa +12267,17,16710,24,rosdj +12267,17,16710,24,s3ktor +12267,17,16710,24,sac48738 +12267,17,16710,24,sburrezo +12267,17,16710,24,schlubo +12267,17,16710,24,schluderer +12267,17,16710,24,scottbragato +12267,17,16710,24,sgtopippers +12267,17,16710,24,shaggi30 +12267,17,16710,24,sharkeydna +12267,17,16710,24,shinsengumi +12267,17,16710,24,shoone +12267,17,16710,24,sir pent +12267,17,16710,24,sjane +12267,17,16710,24,skaboy +12267,17,16710,24,slpd0614 +12267,17,16710,24,smuffin89 +12267,17,16710,24,snzh +12267,17,16710,24,sorcerak +12267,17,16710,24,sras1977 +12267,17,16710,24,sroets +12267,17,16710,24,stevescc6 +12267,17,16710,24,stormrage81 +12267,17,16710,24,sullengirl +12267,17,16710,24,svalladolid +12267,17,16710,24,swiffie +12267,17,16710,24,synd1r +12267,17,16710,24,tejup +12267,17,16710,24,thawat +12267,17,16710,24,thededalus +12267,17,16710,24,thelegopirate +12267,17,16710,24,thewaytimmoves +12267,17,16710,24,thomsonbriand +12267,17,16710,24,timtix +12267,17,16710,24,tinoooooo +12267,17,16710,24,tinydave666 +12267,17,16710,24,toleg +12267,17,16710,24,tomhoward87 +12267,17,16710,24,torgie +12267,17,16710,24,trollboroda +12267,17,16710,24,truthsdeceit +12267,17,16710,24,tsukumo +12267,17,16710,24,tube_driver +12267,17,16710,24,twopips +12267,17,16710,24,umbe79 +12267,17,16710,24,user235 +12267,17,16710,24,uzza +12267,17,16710,24,valzi +12267,17,16710,24,verridian +12267,17,16710,24,ververken +12267,17,16710,24,vodzoo +12267,17,16710,24,von falkenheyn +12267,17,16710,24,wakertwojerk +12267,17,16710,24,wallspider77 +12267,17,16710,24,waynea +12267,17,16710,24,weir_doe +12267,17,16710,24,whattheproblemis +12267,17,16710,24,wobbuffet +12267,17,16710,24,wtrollkin2000 +12267,17,16710,24,xandorra +12267,17,16710,24,xeelee +12267,17,16710,24,xgruber +12267,17,16710,24,ysso +12267,17,16710,24,zee5001 +12267,17,16710,24,zuiol +12267,17,18170,23,2bithero +12267,17,18170,23,adavidson +12267,17,18170,23,alextnorris +12267,17,18170,23,alpinegamer +12267,17,18170,23,annaradresa +12267,17,18170,23,argathan +12267,17,18170,23,arianneh +12267,17,18170,23,arnbold +12267,17,18170,23,artexich +12267,17,18170,23,assaali +12267,17,18170,23,athenianflower +12267,17,18170,23,baileywitt3 +12267,17,18170,23,banin +12267,17,18170,23,bari2213 +12267,17,18170,23,bbgs +12267,17,18170,23,bercesben +12267,17,18170,23,bershi +12267,17,18170,23,bloodwolf +12267,17,18170,23,blotter108 +12267,17,18170,23,bluemcreen +12267,17,18170,23,bosstime +12267,17,18170,23,butilheiro +12267,17,18170,23,ca1zones +12267,17,18170,23,candor +12267,17,18170,23,capture +12267,17,18170,23,carannar +12267,17,18170,23,cartchamp +12267,17,18170,23,casterman +12267,17,18170,23,catmogwai +12267,17,18170,23,chaddbergland +12267,17,18170,23,ched80 +12267,17,18170,23,chuckster1970 +12267,17,18170,23,cleitus_magnum +12267,17,18170,23,colmustard21 +12267,17,18170,23,colonelchook +12267,17,18170,23,coryschlack +12267,17,18170,23,crazyhannes +12267,17,18170,23,ctpuk +12267,17,18170,23,curwen +12267,17,18170,23,dannymuskens +12267,17,18170,23,dannyvl +12267,17,18170,23,dantedelgado +12267,17,18170,23,dariverdg +12267,17,18170,23,davedude77 +12267,17,18170,23,daybreak +12267,17,18170,23,ddash +12267,17,18170,23,deep chunk +12267,17,18170,23,deinodon +12267,17,18170,23,den_bond +12267,17,18170,23,diluca +12267,17,18170,23,dimaradona +12267,17,18170,23,dimitri722 +12267,17,18170,23,djberg96 +12267,17,18170,23,dougbass68 +12267,17,18170,23,dozymuppet +12267,17,18170,23,drech777 +12267,17,18170,23,drunkendoy +12267,17,18170,23,dsem +12267,17,18170,23,dstroke +12267,17,18170,23,elbarbo +12267,17,18170,23,elcid91 +12267,17,18170,23,ellindi +12267,17,18170,23,erikhulbert +12267,17,18170,23,espoon82 +12267,17,18170,23,exuldur +12267,17,18170,23,finite jester +12267,17,18170,23,frenchwolfie +12267,17,18170,23,fury +12267,17,18170,23,futhee +12267,17,18170,23,gameritisguy +12267,17,18170,23,gauravroy +12267,17,18170,23,generic_resource +12267,17,18170,23,gola +12267,17,18170,23,gongismo +12267,17,18170,23,grooverkm +12267,17,18170,23,halfvoid +12267,17,18170,23,hamface +12267,17,18170,23,happycannibal +12267,17,18170,23,hector82 +12267,17,18170,23,hellskitch +12267,17,18170,23,hemu +12267,17,18170,23,hglcky +12267,17,18170,23,hogweed +12267,17,18170,23,honome +12267,17,18170,23,hotrod27 +12267,17,18170,23,howdiebelg +12267,17,18170,23,ihwarrior +12267,17,18170,23,imayayo +12267,17,18170,23,javierpotente +12267,17,18170,23,jaxxl +12267,17,18170,23,jaytee2206 +12267,17,18170,23,jazzrizz +12267,17,18170,23,jdbc59 +12267,17,18170,23,jemboard +12267,17,18170,23,jetdolemite +12267,17,18170,23,jmduran +12267,17,18170,23,joellenbecker +12267,17,18170,23,johnnyg +12267,17,18170,23,jondodd82 +12267,17,18170,23,jreast +12267,17,18170,23,jumacz +12267,17,18170,23,jussadreamer +12267,17,18170,23,jwcy +12267,17,18170,23,jwyseu +12267,17,18170,23,jürgen karla +12267,17,18170,23,kauffman +12267,17,18170,23,kennyoneseven +12267,17,18170,23,kevintlee +12267,17,18170,23,kezemans +12267,17,18170,23,kfly1234 +12267,17,18170,23,kindaworking +12267,17,18170,23,klos_x +12267,17,18170,23,kniziacollection +12267,17,18170,23,kositp +12267,17,18170,23,kozlan +12267,17,18170,23,ksmkovacs +12267,17,18170,23,ktuluh +12267,17,18170,23,kutterek +12267,17,18170,23,ldaponte +12267,17,18170,23,leafs77 +12267,17,18170,23,lechen +12267,17,18170,23,leon_noel +12267,17,18170,23,librinsky +12267,17,18170,23,liza91 +12267,17,18170,23,loscules1 +12267,17,18170,23,lukedgh +12267,17,18170,23,lupitajones7 +12267,17,18170,23,madpaubv +12267,17,18170,23,maduar +12267,17,18170,23,malarrama +12267,17,18170,23,manningm01 +12267,17,18170,23,manylock +12267,17,18170,23,martin12005 +12267,17,18170,23,matt drown +12267,17,18170,23,mcbeth +12267,17,18170,23,mcdavis +12267,17,18170,23,mdjd +12267,17,18170,23,meepleist +12267,17,18170,23,mhindmarch +12267,17,18170,23,mickytoons +12267,17,18170,23,mmaxwellhoward +12267,17,18170,23,monforts4 +12267,17,18170,23,moogey +12267,17,18170,23,moxel +12267,17,18170,23,moyilo +12267,17,18170,23,mr_tricatel +12267,17,18170,23,mrbaird +12267,17,18170,23,msoh +12267,17,18170,23,mts7 +12267,17,18170,23,mussels +12267,17,18170,23,mystery2000 +12267,17,18170,23,mystinenhm +12267,17,18170,23,napattack +12267,17,18170,23,nastywarnob +12267,17,18170,23,nattjohn +12267,17,18170,23,need_more_tea +12267,17,18170,23,nickbudz +12267,17,18170,23,no_way301 +12267,17,18170,23,obo_bb +12267,17,18170,23,oliverkinne +12267,17,18170,23,omnicot +12267,17,18170,23,ossessione +12267,17,18170,23,paedra +12267,17,18170,23,panzerhelp +12267,17,18170,23,patrick603 +12267,17,18170,23,pedro777 +12267,17,18170,23,pentaroo +12267,17,18170,23,peterhelm +12267,17,18170,23,pierpelz +12267,17,18170,23,play4play +12267,17,18170,23,powermad +12267,17,18170,23,radshawballer +12267,17,18170,23,randyhoyt +12267,17,18170,23,rao86 +12267,17,18170,23,rayklerx +12267,17,18170,23,reesmeister +12267,17,18170,23,reneeh1 +12267,17,18170,23,rfleming71 +12267,17,18170,23,riever32 +12267,17,18170,23,rio4445 +12267,17,18170,23,rlai +12267,17,18170,23,rojocai +12267,17,18170,23,roliander +12267,17,18170,23,rrodrick +12267,17,18170,23,s3r1alz +12267,17,18170,23,safehanded +12267,17,18170,23,saintemperor +12267,17,18170,23,samblake +12267,17,18170,23,sandow +12267,17,18170,23,sangediver +12267,17,18170,23,sbass +12267,17,18170,23,scotmattison +12267,17,18170,23,sdiberar +12267,17,18170,23,seanspielt +12267,17,18170,23,sefirotme +12267,17,18170,23,setonhall10 +12267,17,18170,23,sfordinc +12267,17,18170,23,shadowkou +12267,17,18170,23,shujinko +12267,17,18170,23,sk927 +12267,17,18170,23,skur78 +12267,17,18170,23,slafingnose +12267,17,18170,23,slavo36 +12267,17,18170,23,sparthan +12267,17,18170,23,ssalko2 +12267,17,18170,23,standsure +12267,17,18170,23,stantem +12267,17,18170,23,t3mp +12267,17,18170,23,tagrious +12267,17,18170,23,tajemniczyzyly +12267,17,18170,23,tanguyserra +12267,17,18170,23,tavernkeep +12267,17,18170,23,the bored gamer +12267,17,18170,23,thigr +12267,17,18170,23,thumper1369 +12267,17,18170,23,tiagoluchini +12267,17,18170,23,tkeep13 +12267,17,18170,23,tortion +12267,17,18170,23,trickyricky2121 +12267,17,18170,23,tyfo +12267,17,18170,23,tywhiz +12267,17,18170,23,ulycious +12267,17,18170,23,urbaer +12267,17,18170,23,vagu6 +12267,17,18170,23,vanadamme +12267,17,18170,23,vierastalo +12267,17,18170,23,vmanfor3 +12267,17,18170,23,vulcan_princess +12267,17,18170,23,vvv099 +12267,17,18170,23,wallofshame +12267,17,18170,23,waxena +12267,17,18170,23,we3die +12267,17,18170,23,willsnow +12267,17,18170,23,winvayren +12267,17,18170,23,xoanarozarena +12267,17,18170,23,xombe +12267,17,18170,23,xpolizeix +12267,17,18170,23,xxpoulesxx +12267,17,18170,23,yacoff +12267,17,18170,23,zanaboza +12267,17,18170,23,zardoz8 +12267,17,18170,23,zeegarcia +12267,17,19906,22,3urogamer +12267,17,19906,22,alejandroag +12267,17,19906,22,alexboardgamer +12267,17,19906,22,alexsobolewska +12267,17,19906,22,alexsr +12267,17,19906,22,alyssa oolacile +12267,17,19906,22,amolinn +12267,17,19906,22,amtorgerson +12267,17,19906,22,angia93 +12267,17,19906,22,archon_hd +12267,17,19906,22,ardrosis +12267,17,19906,22,areeves +12267,17,19906,22,arkhamhorrorfan +12267,17,19906,22,arsaghar +12267,17,19906,22,awolffy +12267,17,19906,22,azjauthor +12267,17,19906,22,bacardeus +12267,17,19906,22,bankypie +12267,17,19906,22,belborough +12267,17,19906,22,birglor +12267,17,19906,22,bis minami +12267,17,19906,22,bjo80 +12267,17,19906,22,bloberglawp +12267,17,19906,22,bloodmage +12267,17,19906,22,brewerseth +12267,17,19906,22,bridgetvh +12267,17,19906,22,brunoccaetano +12267,17,19906,22,cantau +12267,17,19906,22,cariboo +12267,17,19906,22,chama_81 +12267,17,19906,22,chipmafia +12267,17,19906,22,coffeemom04 +12267,17,19906,22,crazyclark +12267,17,19906,22,cristianstenico +12267,17,19906,22,cyrj1804 +12267,17,19906,22,danevilparker +12267,17,19906,22,darthmoeder +12267,17,19906,22,davestephens +12267,17,19906,22,defemc2 +12267,17,19906,22,dersky +12267,17,19906,22,dgjodon +12267,17,19906,22,dlearn +12267,17,19906,22,donquejote +12267,17,19906,22,druknoll +12267,17,19906,22,dvdmck +12267,17,19906,22,elinboyan +12267,17,19906,22,emezera +12267,17,19906,22,ericdefilippo +12267,17,19906,22,erljordan +12267,17,19906,22,espresso +12267,17,19906,22,f0rkstab +12267,17,19906,22,filesje +12267,17,19906,22,fishlikejc +12267,17,19906,22,fokuleh +12267,17,19906,22,franksk +12267,17,19906,22,fslade +12267,17,19906,22,gbreeden +12267,17,19906,22,genadiy +12267,17,19906,22,gorazd +12267,17,19906,22,gottwuerfeltnicht +12267,17,19906,22,grain +12267,17,19906,22,gruftknecht +12267,17,19906,22,halloween13 +12267,17,19906,22,hllamas +12267,17,19906,22,hvkjr +12267,17,19906,22,igknight +12267,17,19906,22,iqer +12267,17,19906,22,jackytheripper +12267,17,19906,22,jarranzi +12267,17,19906,22,jdellutro4 +12267,17,19906,22,jdthehutt +12267,17,19906,22,jen_8884 +12267,17,19906,22,jennpete +12267,17,19906,22,jenratio42 +12267,17,19906,22,jgm72 +12267,17,19906,22,jgregoire49 +12267,17,19906,22,jjthejetplane +12267,17,19906,22,joavdb +12267,17,19906,22,joedog +12267,17,19906,22,johnnypollame +12267,17,19906,22,jojoplato +12267,17,19906,22,jsmid6 +12267,17,19906,22,jstalica +12267,17,19906,22,jstare +12267,17,19906,22,jtflv +12267,17,19906,22,jvalj +12267,17,19906,22,kelpa +12267,17,19906,22,kenkon +12267,17,19906,22,kerrywalter +12267,17,19906,22,kevinpdx +12267,17,19906,22,kexos +12267,17,19906,22,keyser815 +12267,17,19906,22,korhil_nz +12267,17,19906,22,koutynhu +12267,17,19906,22,koz79 +12267,17,19906,22,krollig +12267,17,19906,22,kschod22 +12267,17,19906,22,kurodutch +12267,17,19906,22,lafari +12267,17,19906,22,lawmama +12267,17,19906,22,leppy +12267,17,19906,22,leroyx +12267,17,19906,22,lontany +12267,17,19906,22,looksun +12267,17,19906,22,ludo1 +12267,17,19906,22,lukerk +12267,17,19906,22,martamf24ss +12267,17,19906,22,matsvangestel +12267,17,19906,22,maxrokotansky +12267,17,19906,22,melodie707 +12267,17,19906,22,mguo1108 +12267,17,19906,22,mich0807 +12267,17,19906,22,michalji +12267,17,19906,22,mko777 +12267,17,19906,22,modjo231 +12267,17,19906,22,mollysticks +12267,17,19906,22,moogle310 +12267,17,19906,22,motromo +12267,17,19906,22,mushinnoshin +12267,17,19906,22,nedrab +12267,17,19906,22,negatrev +12267,17,19906,22,nerdytom +12267,17,19906,22,niedzwiedz +12267,17,19906,22,nlshelton +12267,17,19906,22,nodagoscha +12267,17,19906,22,noisycrow +12267,17,19906,22,npr227 +12267,17,19906,22,onefullturn +12267,17,19906,22,osmydog +12267,17,19906,22,outarde +12267,17,19906,22,paattymaton +12267,17,19906,22,pexgolder +12267,17,19906,22,pj2304 +12267,17,19906,22,ppiechuu +12267,17,19906,22,racarraca +12267,17,19906,22,raven_snow +12267,17,19906,22,raygun1966 +12267,17,19906,22,rendel +12267,17,19906,22,rexchow2015 +12267,17,19906,22,ricce89 +12267,17,19906,22,ringofire80 +12267,17,19906,22,robert coelho +12267,17,19906,22,robhj +12267,17,19906,22,rogadanar +12267,17,19906,22,rrichar3 +12267,17,19906,22,rubinhox +12267,17,19906,22,saint13 +12267,17,19906,22,samuelw3 +12267,17,19906,22,saseki3 +12267,17,19906,22,schieba +12267,17,19906,22,scientia +12267,17,19906,22,scottmacm +12267,17,19906,22,seabear2000 +12267,17,19906,22,sefton +12267,17,19906,22,serspec +12267,17,19906,22,sirtacowatson +12267,17,19906,22,skalexboard +12267,17,19906,22,skyjoker +12267,17,19906,22,sleip +12267,17,19906,22,socksrule +12267,17,19906,22,sophrosynyte +12267,17,19906,22,stackface +12267,17,19906,22,stephanieke159 +12267,17,19906,22,sumpfratte +12267,17,19906,22,tellerium +12267,17,19906,22,testa29 +12267,17,19906,22,thedief +12267,17,19906,22,thomtech +12267,17,19906,22,tobyip3110 +12267,17,19906,22,trekkermj +12267,17,19906,22,trifthanos +12267,17,19906,22,trulep +12267,17,19906,22,untitleddocument +12267,17,19906,22,vikingowa +12267,17,19906,22,virgi_ +12267,17,19906,22,vthor +12267,17,19906,22,webs05 +12267,17,19906,22,willowdewey +12267,17,19906,22,wojtast +12267,17,19906,22,wooble +12267,17,19906,22,wozenilek +12267,17,19906,22,xandaigua +12267,17,19906,22,xdallanxd +12267,17,19906,22,yildun +12267,17,19906,22,z7852 +12267,17,19906,22,zach66827 +12267,17,19906,22,zackt +12267,17,19906,22,zalendar +12267,17,19906,22,zecafoz +12267,17,19906,22,zelarvi +12267,17,21713,21,abane +12267,17,21713,21,aga2508 +12267,17,21713,21,agathaadri +12267,17,21713,21,aggiefanatic95 +12267,17,21713,21,albix1296 +12267,17,21713,21,alpartorok +12267,17,21713,21,averivera +12267,17,21713,21,babylon_bwoy +12267,17,21713,21,bakosjuci +12267,17,21713,21,bbol24 +12267,17,21713,21,byzhonskis +12267,17,21713,21,capableturnip +12267,17,21713,21,chris1744 +12267,17,21713,21,christm25 +12267,17,21713,21,citricmx +12267,17,21713,21,clownshark +12267,17,21713,21,coffeegnerd +12267,17,21713,21,conundrum44 +12267,17,21713,21,countinggardens +12267,17,21713,21,dangrant88 +12267,17,21713,21,danny whipp +12267,17,21713,21,daria_szy +12267,17,21713,21,dark son +12267,17,21713,21,davidbull +12267,17,21713,21,dcsellers38 +12267,17,21713,21,debeerzerker +12267,17,21713,21,drduck +12267,17,21713,21,durend +12267,17,21713,21,faith4ev3r +12267,17,21713,21,fatjackwhite +12267,17,21713,21,fatkitten +12267,17,21713,21,fjc1992 +12267,17,21713,21,flowermaiden +12267,17,21713,21,gamerwonderwoman +12267,17,21713,21,gertieter +12267,17,21713,21,gmfred +12267,17,21713,21,gothmark +12267,17,21713,21,grundalow +12267,17,21713,21,izzar +12267,17,21713,21,jaredo155 +12267,17,21713,21,jelledaems +12267,17,21713,21,jhinkle +12267,17,21713,21,kevetoile +12267,17,21713,21,kimochi +12267,17,21713,21,kjangas20 +12267,17,21713,21,knitolution +12267,17,21713,21,kortemaki +12267,17,21713,21,lancany +12267,17,21713,21,lionrampant +12267,17,21713,21,littleandsons +12267,17,21713,21,lowry_sam +12267,17,21713,21,lrsjohnson +12267,17,21713,21,lyubko44 +12267,17,21713,21,madwookiee +12267,17,21713,21,manuel74 +12267,17,21713,21,marq zilleum +12267,17,21713,21,mattandjulie +12267,17,21713,21,matteo_perin +12267,17,21713,21,mike3838 +12267,17,21713,21,mokka coffee +12267,17,21713,21,morpheus4 +12267,17,21713,21,naterrs +12267,17,21713,21,nedzhik +12267,17,21713,21,old_wyrm +12267,17,21713,21,olstockings +12267,17,21713,21,oogie da bruce +12267,17,21713,21,operon +12267,17,21713,21,originalyeti +12267,17,21713,21,pazzo +12267,17,21713,21,petrillo +12267,17,21713,21,pupina84 +12267,17,21713,21,rdogg +12267,17,21713,21,redtabby +12267,17,21713,21,rockstar379 +12267,17,21713,21,rycorin +12267,17,21713,21,sibizkit +12267,17,21713,21,sienva +12267,17,21713,21,sinn104 +12267,17,21713,21,sir kelsag +12267,17,21713,21,slonko_3 +12267,17,21713,21,solis +12267,17,21713,21,steveoliverc +12267,17,21713,21,supermilox +12267,17,21713,21,swamibansi +12267,17,21713,21,thebigm +12267,17,21713,21,vantastic +12267,17,21713,21,webbe +12267,17,21713,21,zdral +12267,17,23640,20,6gunns77 +12267,17,23640,20,ant_1sama +12267,17,23640,20,axcid +12267,17,23640,20,babone +12267,17,23640,20,bbcbreno +12267,17,23640,20,beerbully +12267,17,23640,20,bellynice +12267,17,23640,20,bobseixas +12267,17,23640,20,canerive +12267,17,23640,20,chrysagondelacroix +12267,17,23640,20,craigvolpe +12267,17,23640,20,danperrault +12267,17,23640,20,finalarrow +12267,17,23640,20,fran moli +12267,17,23640,20,hyrumli +12267,17,23640,20,jamco +12267,17,23640,20,jcar178 +12267,17,23640,20,jdgroovy +12267,17,23640,20,jglasson +12267,17,23640,20,joematti +12267,17,23640,20,jp1394 +12267,17,23640,20,lookohlook +12267,17,23640,20,magicninja7 +12267,17,23640,20,mahalanobis +12267,17,23640,20,marygameroom +12267,17,23640,20,miguelpas +12267,17,23640,20,mmerlier +12267,17,23640,20,moliver +12267,17,23640,20,pacodana +12267,17,23640,20,pastoreo +12267,17,23640,20,phunter +12267,17,23640,20,poeticparson +12267,17,23640,20,poltrox +12267,17,23640,20,privatemeggido +12267,17,23640,20,readyplayerone +12267,17,23640,20,rohmu +12267,17,23640,20,srebotnjak +12267,17,23640,20,stagedoorjohnie +12267,17,23640,20,thompspa +12267,17,23640,20,wolfkin +12267,17,23640,20,writethesky +12267,17,25880,19,dolph3n +12267,17,25880,19,monisstout +12267,17,28174,18,johnwilliams30 +12267,17,30791,17,sommerkl +14397,16,50,126,xiglixx +14397,16,68,114,leximusmaximus +14397,16,79,110,jclancy15 +14397,16,361,77,goblingrrl +14397,16,473,73,goalum +14397,16,559,70,klip22 +14397,16,652,67,todddeanmark +14397,16,741,65,copsbroughtpizza +14397,16,914,62,brygmann17 +14397,16,970,61,alyniana +14397,16,970,61,chadgibbons +14397,16,970,61,metdick +14397,16,1034,60,kingmanzoo +14397,16,1109,59,bpovis +14397,16,1276,57,aceof86 +14397,16,1276,57,percepter +14397,16,1568,54,matteo_poile +14397,16,1674,53,martybjsg +14397,16,1674,53,ordu +14397,16,1792,52,bethielizard +14397,16,1792,52,bobolo +14397,16,1792,52,strahleo +14397,16,1906,51,claptonist +14397,16,1906,51,iphun +14397,16,2351,48,bonez1972 +14397,16,2351,48,xoque +14397,16,2555,47,grainknight +14397,16,2555,47,jersey dawg +14397,16,2555,47,jmcl63 +14397,16,2758,46,cmaaarrr +14397,16,2758,46,dcorbin13 +14397,16,2758,46,morteigan +14397,16,2758,46,raafje +14397,16,2969,45,lepigagi +14397,16,3216,44,manos_tzatz +14397,16,3216,44,markus29 +14397,16,3216,44,rock15182 +14397,16,3514,43,dazek +14397,16,3514,43,hierax +14397,16,3514,43,lhcper +14397,16,3514,43,ludiqsmacker +14397,16,3514,43,mrsuitcase +14397,16,3514,43,peki25 +14397,16,3514,43,vhailor13 +14397,16,3815,42,bakabaka design +14397,16,3815,42,blinking_line +14397,16,3815,42,dragana0 +14397,16,3815,42,dukeboy +14397,16,3815,42,elliothsmith +14397,16,3815,42,mrroy +14397,16,4092,41,dseagle +14397,16,4092,41,etopp62 +14397,16,4092,41,martystrub969 +14397,16,4092,41,rotharan +14397,16,4092,41,tyrnevar +14397,16,4092,41,xren +14397,16,4426,40,axwill +14397,16,4426,40,biochicco +14397,16,4426,40,ceteris +14397,16,4426,40,guuuuude +14397,16,4426,40,hone +14397,16,4426,40,jeronimon +14397,16,4426,40,netmanq +14397,16,4782,39,actc +14397,16,4782,39,alkaline13 +14397,16,4782,39,fcboyd +14397,16,4782,39,filippos +14397,16,4782,39,shrike316 +14397,16,4782,39,ta56636 +14397,16,5150,38,abazar +14397,16,5150,38,debuxman +14397,16,5150,38,dzak90 +14397,16,5150,38,gamesinplay +14397,16,5150,38,madhamish +14397,16,5150,38,nisanchez +14397,16,5150,38,pateke +14397,16,5150,38,ranapuer +14397,16,5624,37,awele +14397,16,5624,37,bobolink +14397,16,5624,37,cjbowser +14397,16,5624,37,clarity86 +14397,16,5624,37,heatseeker96 +14397,16,5624,37,nelsonallover +14397,16,5624,37,robigo +14397,16,5624,37,tornath +14397,16,6063,36,bobbarnetson +14397,16,6063,36,emlyn72 +14397,16,6063,36,geekgirl1001000 +14397,16,6063,36,hezequiel +14397,16,6063,36,jarniek +14397,16,6063,36,jigmelingpa +14397,16,6063,36,jiing +14397,16,6063,36,kuni +14397,16,6063,36,maijin +14397,16,6063,36,mikipe2 +14397,16,6063,36,nereos314 +14397,16,6063,36,petfles +14397,16,6063,36,pridurki +14397,16,6063,36,robbus37 +14397,16,6063,36,robcsi90 +14397,16,6063,36,stormzbowler +14397,16,6063,36,thierry lefranc +14397,16,6063,36,titanxxh +14397,16,6063,36,virgile000 +14397,16,6063,36,yadyam +14397,16,6573,35,alialkabah +14397,16,6573,35,beltog +14397,16,6573,35,cannister +14397,16,6573,35,casperthegoth +14397,16,6573,35,channel419 +14397,16,6573,35,dash1282 +14397,16,6573,35,deeug +14397,16,6573,35,halmaris +14397,16,6573,35,iron_x +14397,16,6573,35,kamen +14397,16,6573,35,nineedgefirst +14397,16,6573,35,remember-ows- +14397,16,6573,35,seventdog +14397,16,6573,35,sgranz +14397,16,6573,35,sherecountry +14397,16,6573,35,teebagger +14397,16,6573,35,topdecker +14397,16,6573,35,uthoroc +14397,16,6573,35,vgaboo +14397,16,6573,35,zc1993 +14397,16,6573,35,zrafidi +14397,16,7100,34,bender_mania +14397,16,7100,34,bigredgamer +14397,16,7100,34,cmdr_g +14397,16,7100,34,czarnyklocek +14397,16,7100,34,giustino98 +14397,16,7100,34,gramzel +14397,16,7100,34,hique +14397,16,7100,34,jern +14397,16,7100,34,jesimpson4 +14397,16,7100,34,johnathan ray +14397,16,7100,34,js3b +14397,16,7100,34,karallan +14397,16,7100,34,longsilver +14397,16,7100,34,maikz +14397,16,7100,34,marluc08 +14397,16,7100,34,maroonedmorlock +14397,16,7100,34,matowai +14397,16,7100,34,metalmind +14397,16,7100,34,metaphora +14397,16,7100,34,mrwub +14397,16,7100,34,narrow gate games +14397,16,7100,34,raspberrywrath7 +14397,16,7100,34,redpit_sanders +14397,16,7100,34,schatir +14397,16,7100,34,sire_nv +14397,16,7100,34,sirmanatee +14397,16,7100,34,sloan lee +14397,16,7100,34,theman1977 +14397,16,7100,34,tomfisher +14397,16,7679,33,andersgabrielsson +14397,16,7679,33,bambrough +14397,16,7679,33,bas00 +14397,16,7679,33,benjamin1109 +14397,16,7679,33,blazemyass +14397,16,7679,33,bone4lyf +14397,16,7679,33,concreek +14397,16,7679,33,djcornetto +14397,16,7679,33,faustus327 +14397,16,7679,33,flobob +14397,16,7679,33,gethar +14397,16,7679,33,gmeista +14397,16,7679,33,jason_ftw +14397,16,7679,33,le_bort +14397,16,7679,33,malopezg +14397,16,7679,33,milegyenanevem +14397,16,7679,33,mlvanbie +14397,16,7679,33,nicolo +14397,16,7679,33,originaljambo +14397,16,7679,33,pygamer +14397,16,7679,33,ratchou +14397,16,7679,33,samuraiman +14397,16,7679,33,svysockih +14397,16,7679,33,teppicamonxxviii +14397,16,7679,33,theskill +14397,16,8351,32,alanblaha +14397,16,8351,32,arkofdan +14397,16,8351,32,betasub +14397,16,8351,32,blackleadalchemist +14397,16,8351,32,buci210 +14397,16,8351,32,claymationdude +14397,16,8351,32,curiousgrugg +14397,16,8351,32,datasteal +14397,16,8351,32,diesel314159 +14397,16,8351,32,edged27 +14397,16,8351,32,eorel +14397,16,8351,32,frog3 +14397,16,8351,32,garbagefan +14397,16,8351,32,geordienp +14397,16,8351,32,gideonn +14397,16,8351,32,greywind +14397,16,8351,32,harrycalder +14397,16,8351,32,jake697 +14397,16,8351,32,jasonofindy +14397,16,8351,32,jfardette +14397,16,8351,32,jorge saavedra +14397,16,8351,32,junnu11 +14397,16,8351,32,longbow +14397,16,8351,32,longshanx +14397,16,8351,32,mcoll81 +14397,16,8351,32,mithrandir88 +14397,16,8351,32,mogli +14397,16,8351,32,monkey007 +14397,16,8351,32,mtngrown +14397,16,8351,32,remote009 +14397,16,8351,32,rougail974 +14397,16,8351,32,sandwichman +14397,16,8351,32,shayan_sa +14397,16,8351,32,sj880226 +14397,16,8351,32,texaswashington +14397,16,8351,32,thiagoguido_ +14397,16,8351,32,transportowiec96 +14397,16,8351,32,uberneil +14397,16,8351,32,wolftruck +14397,16,9086,31,anionx +14397,16,9086,31,beefisok +14397,16,9086,31,boo_n_cass +14397,16,9086,31,boredaghast +14397,16,9086,31,btufeld +14397,16,9086,31,buurmanruud +14397,16,9086,31,dibsinator +14397,16,9086,31,djee1 +14397,16,9086,31,do10hedron +14397,16,9086,31,dude163 +14397,16,9086,31,dwarf +14397,16,9086,31,elenabob +14397,16,9086,31,fantasmagori +14397,16,9086,31,felixgoki +14397,16,9086,31,g799 +14397,16,9086,31,grudunza +14397,16,9086,31,gurski +14397,16,9086,31,hjchadd +14397,16,9086,31,irazorworks +14397,16,9086,31,jack spirio +14397,16,9086,31,jerry_j +14397,16,9086,31,kreikkaturkulainen +14397,16,9086,31,kroqgar +14397,16,9086,31,last_writes25 +14397,16,9086,31,lateralus82 +14397,16,9086,31,maaati +14397,16,9086,31,malicemalyen +14397,16,9086,31,mattdehlinger +14397,16,9086,31,micahclay +14397,16,9086,31,mohank +14397,16,9086,31,oldergamer79 +14397,16,9086,31,pda79 +14397,16,9086,31,personwholives +14397,16,9086,31,pienczyk +14397,16,9086,31,preiselbeer +14397,16,9086,31,rualf123 +14397,16,9086,31,salorak +14397,16,9086,31,saroule14 +14397,16,9086,31,spike111 +14397,16,9086,31,stgpinback +14397,16,9086,31,svarthand +14397,16,9086,31,theweaponx +14397,16,9086,31,v_uk +14397,16,9086,31,vigocarpatian +14397,16,9086,31,yanadil +14397,16,9086,31,zyrus +14397,16,9910,30,acooper1004 +14397,16,9910,30,alooney +14397,16,9910,30,andrewroy39 +14397,16,9910,30,awakening +14397,16,9910,30,benj_gabitan +14397,16,9910,30,bootylactin +14397,16,9910,30,bradwurstdk +14397,16,9910,30,cronox +14397,16,9910,30,cyknight118 +14397,16,9910,30,danielksan81 +14397,16,9910,30,darkstar952 +14397,16,9910,30,devylmare +14397,16,9910,30,dominik73 +14397,16,9910,30,doverboy +14397,16,9910,30,drewcula +14397,16,9910,30,drummiex +14397,16,9910,30,eugeniojuan +14397,16,9910,30,eurox +14397,16,9910,30,fathermad +14397,16,9910,30,flynryan +14397,16,9910,30,frarosimnew +14397,16,9910,30,gameroadie +14397,16,9910,30,giumangi +14397,16,9910,30,greenhill +14397,16,9910,30,hannajohn +14397,16,9910,30,henryboarder +14397,16,9910,30,holycopralite +14397,16,9910,30,hromar +14397,16,9910,30,hunoz +14397,16,9910,30,ikaroed +14397,16,9910,30,ironrobotman +14397,16,9910,30,ironspy +14397,16,9910,30,jacobgorman20 +14397,16,9910,30,japes6 +14397,16,9910,30,jirkar +14397,16,9910,30,kankui +14397,16,9910,30,krimzin +14397,16,9910,30,lancetaylor +14397,16,9910,30,lightningjak +14397,16,9910,30,mattnaik +14397,16,9910,30,maverickreborn +14397,16,9910,30,mrmikkl +14397,16,9910,30,omegaslam +14397,16,9910,30,orionx +14397,16,9910,30,oxmann9699 +14397,16,9910,30,pastiness +14397,16,9910,30,penny79 +14397,16,9910,30,peter_hroba +14397,16,9910,30,pwwaring +14397,16,9910,30,r0btimus +14397,16,9910,30,rajatz +14397,16,9910,30,robogamer +14397,16,9910,30,rodrigopr +14397,16,9910,30,romuald_c35 +14397,16,9910,30,rostolaza +14397,16,9910,30,rrperezc +14397,16,9910,30,saintsharkk +14397,16,9910,30,scorpion0x17 +14397,16,9910,30,sfrr +14397,16,9910,30,shelob93 +14397,16,9910,30,shenannigan +14397,16,9910,30,shu1984 +14397,16,9910,30,sigismundoh +14397,16,9910,30,sirkerry +14397,16,9910,30,smug +14397,16,9910,30,superschwinni +14397,16,9910,30,umbre_tombetoile +14397,16,9910,30,valniir +14397,16,9910,30,vits +14397,16,9910,30,wojtyla +14397,16,9910,30,wolfsknight81 +14397,16,9910,30,wurzelpfrumph +14397,16,9910,30,xlr8 +14397,16,9910,30,yodi +14397,16,9910,30,zxqueb +14397,16,10868,29,agiusti3 +14397,16,10868,29,aj4646 +14397,16,10868,29,akaymarch +14397,16,10868,29,alanias +14397,16,10868,29,amarum +14397,16,10868,29,amekins +14397,16,10868,29,b0g0 +14397,16,10868,29,barcasebi +14397,16,10868,29,betakaiser +14397,16,10868,29,bluejangles +14397,16,10868,29,bngabletofly +14397,16,10868,29,brightonfoxdave +14397,16,10868,29,cabbage1012 +14397,16,10868,29,carnaxcce +14397,16,10868,29,checco +14397,16,10868,29,chial97 +14397,16,10868,29,chris-d +14397,16,10868,29,cloudboy +14397,16,10868,29,corvus25 +14397,16,10868,29,csletko +14397,16,10868,29,daevv +14397,16,10868,29,danithaca +14397,16,10868,29,dhailey +14397,16,10868,29,dingus +14397,16,10868,29,draethan +14397,16,10868,29,drago74 +14397,16,10868,29,dthurston +14397,16,10868,29,dzorden +14397,16,10868,29,echomateria +14397,16,10868,29,enjayem +14397,16,10868,29,ewack16 +14397,16,10868,29,falcon82 +14397,16,10868,29,fenners +14397,16,10868,29,gavingva +14397,16,10868,29,gittes +14397,16,10868,29,ignisdominu5 +14397,16,10868,29,indenture +14397,16,10868,29,jaregner +14397,16,10868,29,jepsulliand +14397,16,10868,29,jerryfinegan +14397,16,10868,29,jfeast +14397,16,10868,29,jomaster +14397,16,10868,29,juggernaut1 +14397,16,10868,29,kamarainen +14397,16,10868,29,kevtron23 +14397,16,10868,29,kuspijoonas +14397,16,10868,29,ladywolf_ +14397,16,10868,29,lathspell +14397,16,10868,29,legion_310513 +14397,16,10868,29,localhourglass +14397,16,10868,29,majohnny +14397,16,10868,29,marcinmichalak +14397,16,10868,29,mauhler31 +14397,16,10868,29,mavweirdo +14397,16,10868,29,minsc1610 +14397,16,10868,29,mkozlows +14397,16,10868,29,mlkn +14397,16,10868,29,mrdawg +14397,16,10868,29,mrguinea +14397,16,10868,29,nepo +14397,16,10868,29,nix603 +14397,16,10868,29,oleve +14397,16,10868,29,pedritogil +14397,16,10868,29,perenetre +14397,16,10868,29,psychozulu +14397,16,10868,29,pvtparts +14397,16,10868,29,radicalbytes +14397,16,10868,29,revengeisnotjustice +14397,16,10868,29,rgalazka +14397,16,10868,29,rick mckown +14397,16,10868,29,ryanleaf +14397,16,10868,29,sarahkohl +14397,16,10868,29,shozman +14397,16,10868,29,sireck +14397,16,10868,29,slaapgraag +14397,16,10868,29,tex_conway +14397,16,10868,29,thal3z +14397,16,10868,29,the1hodgy +14397,16,10868,29,trachalio +14397,16,10868,29,turkilas +14397,16,10868,29,tuttleboy +14397,16,10868,29,ukstoneleaf +14397,16,10868,29,warrenyorick +14397,16,10868,29,wartorn409 +14397,16,10868,29,wavretzio +14397,16,10868,29,wesbaker +14397,16,10868,29,yoelvn +14397,16,10868,29,zenthain +14397,16,11831,28,achire +14397,16,11831,28,acrotide +14397,16,11831,28,adamburnage +14397,16,11831,28,adrianopolous +14397,16,11831,28,ainverso +14397,16,11831,28,akira_74 +14397,16,11831,28,alberttrombone +14397,16,11831,28,alexandret +14397,16,11831,28,allltag +14397,16,11831,28,andlat +14397,16,11831,28,asena +14397,16,11831,28,aspiringloser +14397,16,11831,28,bellis208 +14397,16,11831,28,boaz0norton +14397,16,11831,28,bowlofbgg +14397,16,11831,28,bpanting +14397,16,11831,28,brudo +14397,16,11831,28,capachoochoo +14397,16,11831,28,castlereigh +14397,16,11831,28,chalos13 +14397,16,11831,28,charlesmingus +14397,16,11831,28,chibulls3267 +14397,16,11831,28,cmdrsils +14397,16,11831,28,couplesplayinbdgames +14397,16,11831,28,custom golf clubs +14397,16,11831,28,d4nick +14397,16,11831,28,dans +14397,16,11831,28,davelaw +14397,16,11831,28,davelenain +14397,16,11831,28,dibbler +14397,16,11831,28,docgeo1 +14397,16,11831,28,doomfarer +14397,16,11831,28,dozokot +14397,16,11831,28,egnielsen92 +14397,16,11831,28,einehund +14397,16,11831,28,elirlandes +14397,16,11831,28,elstephe +14397,16,11831,28,emptierset +14397,16,11831,28,emunkki +14397,16,11831,28,ernstkomma +14397,16,11831,28,fogghuman +14397,16,11831,28,fongyy +14397,16,11831,28,fusionpro +14397,16,11831,28,gadium +14397,16,11831,28,gamejunkie3 +14397,16,11831,28,gaspounet +14397,16,11831,28,gilesg +14397,16,11831,28,glitterbandemissary +14397,16,11831,28,goteamventure +14397,16,11831,28,grzdyll +14397,16,11831,28,hank_d_gorilla +14397,16,11831,28,henryfatass +14397,16,11831,28,ichiruishu +14397,16,11831,28,imploded +14397,16,11831,28,jamiedysnaldi +14397,16,11831,28,jmiller +14397,16,11831,28,johnnyboyb +14397,16,11831,28,jorvik +14397,16,11831,28,juanmakine +14397,16,11831,28,kamaradclimber +14397,16,11831,28,kapteinmaake +14397,16,11831,28,kasuga04 +14397,16,11831,28,kattenkolder +14397,16,11831,28,kcallbeck +14397,16,11831,28,kimgoldbaek +14397,16,11831,28,kuquami +14397,16,11831,28,lagnis +14397,16,11831,28,leanai +14397,16,11831,28,lidiahuesca +14397,16,11831,28,liesspruit +14397,16,11831,28,loukas753 +14397,16,11831,28,magicpepper +14397,16,11831,28,momsspaghetti +14397,16,11831,28,monart +14397,16,11831,28,muad dib +14397,16,11831,28,murkser00 +14397,16,11831,28,narsil0420 +14397,16,11831,28,newtypeace +14397,16,11831,28,pintainho +14397,16,11831,28,ppsacco +14397,16,11831,28,prodsupport +14397,16,11831,28,raereigames +14397,16,11831,28,rcastells +14397,16,11831,28,redminoko66 +14397,16,11831,28,reigusez +14397,16,11831,28,rjtauer +14397,16,11831,28,robbin 1 +14397,16,11831,28,rolandltu +14397,16,11831,28,ruthen +14397,16,11831,28,scales_ +14397,16,11831,28,scotthinze +14397,16,11831,28,scsuhusky75 +14397,16,11831,28,shellbell +14397,16,11831,28,silvylea +14397,16,11831,28,simmegoe +14397,16,11831,28,slayerbarosh +14397,16,11831,28,snake01515 +14397,16,11831,28,sodaklady +14397,16,11831,28,sterober +14397,16,11831,28,stevepwalker +14397,16,11831,28,stigh +14397,16,11831,28,syrinx2112 +14397,16,11831,28,templar +14397,16,11831,28,tengmalm +14397,16,11831,28,the bilge rat +14397,16,11831,28,theatre steve +14397,16,11831,28,thegeneral3000 +14397,16,11831,28,tomciak +14397,16,11831,28,tomik +14397,16,11831,28,utvol13 +14397,16,11831,28,vadim20021 +14397,16,11831,28,verrous +14397,16,11831,28,vikinggeek +14397,16,11831,28,vogelap +14397,16,11831,28,x411811x +14397,16,11831,28,xgamerms999 +14397,16,11831,28,xsylarx +14397,16,11831,28,yaiz55 +14397,16,11831,28,ygtyrt +14397,16,11831,28,youbifox +14397,16,11831,28,zaawrldo +14397,16,11831,28,zric +14397,16,12910,27,1905_ce3 +14397,16,12910,27,alexica +14397,16,12910,27,aredhel +14397,16,12910,27,arktusfrost +14397,16,12910,27,artimus +14397,16,12910,27,ask277 +14397,16,12910,27,aurele +14397,16,12910,27,beruska278 +14397,16,12910,27,bethesda +14397,16,12910,27,bubba83 +14397,16,12910,27,captsammich +14397,16,12910,27,cd8dman +14397,16,12910,27,chrisrob +14397,16,12910,27,clorinius +14397,16,12910,27,colinmarsh +14397,16,12910,27,comaestro +14397,16,12910,27,courtjus +14397,16,12910,27,crazyhorse +14397,16,12910,27,crook11 +14397,16,12910,27,daddydonglegs +14397,16,12910,27,daft wullie +14397,16,12910,27,dememer +14397,16,12910,27,derik +14397,16,12910,27,docchills +14397,16,12910,27,dragorakiba +14397,16,12910,27,drwill666 +14397,16,12910,27,dvenyercsan +14397,16,12910,27,fdob0001 +14397,16,12910,27,finch007 +14397,16,12910,27,frazierfraz +14397,16,12910,27,fredjebono +14397,16,12910,27,frunge +14397,16,12910,27,galthorian +14397,16,12910,27,gdapkus +14397,16,12910,27,gelee_royale +14397,16,12910,27,grayparkholl +14397,16,12910,27,gusriva +14397,16,12910,27,h6001748 +14397,16,12910,27,hansho +14397,16,12910,27,highlandmaestro +14397,16,12910,27,hossjr +14397,16,12910,27,janus +14397,16,12910,27,jediyoda57 +14397,16,12910,27,jmmurphy +14397,16,12910,27,joe_schmo +14397,16,12910,27,jrigkvn1229 +14397,16,12910,27,julezz +14397,16,12910,27,jwferg +14397,16,12910,27,kalelskywalker +14397,16,12910,27,kevain32 +14397,16,12910,27,kilfara +14397,16,12910,27,laurinski29 +14397,16,12910,27,lennartmeri +14397,16,12910,27,lenya78 +14397,16,12910,27,leonhnoel +14397,16,12910,27,lohengrin75 +14397,16,12910,27,luar10 +14397,16,12910,27,luckbfern +14397,16,12910,27,lyma14 +14397,16,12910,27,m3phy +14397,16,12910,27,marasaurio +14397,16,12910,27,marciormello +14397,16,12910,27,markgc +14397,16,12910,27,masterdo +14397,16,12910,27,matdog007 +14397,16,12910,27,mattyb22 +14397,16,12910,27,may23rd2007 +14397,16,12910,27,mefist0 +14397,16,12910,27,metalgalgo +14397,16,12910,27,mister_green +14397,16,12910,27,mlock +14397,16,12910,27,mlongbow +14397,16,12910,27,mutilatedlips +14397,16,12910,27,mykl +14397,16,12910,27,myth1c +14397,16,12910,27,nedotykomka +14397,16,12910,27,netrinogr +14397,16,12910,27,nickpes +14397,16,12910,27,nodemon +14397,16,12910,27,ohitszong +14397,16,12910,27,onenappyninja +14397,16,12910,27,opcksheff +14397,16,12910,27,parabolic +14397,16,12910,27,phildinius +14397,16,12910,27,photux +14397,16,12910,27,pitac +14397,16,12910,27,pkughost +14397,16,12910,27,plamash +14397,16,12910,27,pohrawg +14397,16,12910,27,raindrop77 +14397,16,12910,27,raine91 +14397,16,12910,27,rasmusdj +14397,16,12910,27,rihnoswirl +14397,16,12910,27,rishi +14397,16,12910,27,rodrigo santander +14397,16,12910,27,roguishrose +14397,16,12910,27,ronin_bonebreaker +14397,16,12910,27,routier +14397,16,12910,27,ryan1701e +14397,16,12910,27,s7rin +14397,16,12910,27,s_siegel +14397,16,12910,27,samduarte +14397,16,12910,27,sarkothelsheyd +14397,16,12910,27,saxisto +14397,16,12910,27,sbconstant +14397,16,12910,27,sgtskeese +14397,16,12910,27,shiningnegro +14397,16,12910,27,sirideain +14397,16,12910,27,slamin +14397,16,12910,27,starkriller +14397,16,12910,27,szedmond01 +14397,16,12910,27,taeryn +14397,16,12910,27,taquitobandito +14397,16,12910,27,tdelme +14397,16,12910,27,thediceyreview +14397,16,12910,27,thegreenbear +14397,16,12910,27,timnellz +14397,16,12910,27,tom23as +14397,16,12910,27,travdaddy11 +14397,16,12910,27,tyson2015 +14397,16,12910,27,vathalos +14397,16,12910,27,vengefulpickle +14397,16,12910,27,vince londini +14397,16,12910,27,vpuck84 +14397,16,12910,27,waffel +14397,16,12910,27,yorkrambler +14397,16,14030,26,__black +14397,16,14030,26,a_akimbo +14397,16,14030,26,alaxmo13 +14397,16,14030,26,andrei vladeanu +14397,16,14030,26,apper +14397,16,14030,26,archbold +14397,16,14030,26,auguststapput +14397,16,14030,26,beckerc +14397,16,14030,26,bjorn ds +14397,16,14030,26,blaneyd +14397,16,14030,26,bpasmeny +14397,16,14030,26,braggart +14397,16,14030,26,brettpfosten +14397,16,14030,26,brouhaha +14397,16,14030,26,budsbalkan +14397,16,14030,26,bullseyetm +14397,16,14030,26,carliss89 +14397,16,14030,26,casual_offender +14397,16,14030,26,chasisaac +14397,16,14030,26,chesneylittle +14397,16,14030,26,cktenhoff +14397,16,14030,26,cloro +14397,16,14030,26,cmdroverbite +14397,16,14030,26,cromcruac +14397,16,14030,26,dani_tani +14397,16,14030,26,davidhorm +14397,16,14030,26,dbelcher +14397,16,14030,26,derbaron +14397,16,14030,26,devilsthumb +14397,16,14030,26,dfetz3 +14397,16,14030,26,dicetosserwebbs +14397,16,14030,26,die_kueppi +14397,16,14030,26,discordjack +14397,16,14030,26,dmoser22 +14397,16,14030,26,doctor poo +14397,16,14030,26,dr.mrow +14397,16,14030,26,drammff +14397,16,14030,26,drazz +14397,16,14030,26,dustinward +14397,16,14030,26,efrazier +14397,16,14030,26,elemenek +14397,16,14030,26,elmerifudd +14397,16,14030,26,eratos +14397,16,14030,26,evildee +14397,16,14030,26,evolad9738 +14397,16,14030,26,farwelk +14397,16,14030,26,feelgoodnd +14397,16,14030,26,fergus_mac +14397,16,14030,26,flowpiux +14397,16,14030,26,fransissimo +14397,16,14030,26,fs1973 +14397,16,14030,26,gambit1486x +14397,16,14030,26,geffizozo +14397,16,14030,26,georgesus +14397,16,14030,26,gobruno +14397,16,14030,26,grayson17knott +14397,16,14030,26,gregz +14397,16,14030,26,grimly_34 +14397,16,14030,26,grzesko27 +14397,16,14030,26,hajducakmarek +14397,16,14030,26,hamsta180 +14397,16,14030,26,hockeyathlete +14397,16,14030,26,hotrodqt +14397,16,14030,26,hrolf29 +14397,16,14030,26,hutchin +14397,16,14030,26,imarx +14397,16,14030,26,jarynis +14397,16,14030,26,jbreidfjord +14397,16,14030,26,jedijundi +14397,16,14030,26,jeffculligan +14397,16,14030,26,jewr +14397,16,14030,26,jim40percent +14397,16,14030,26,jippot +14397,16,14030,26,jooor +14397,16,14030,26,jordicapde +14397,16,14030,26,joseph hill +14397,16,14030,26,kattakk +14397,16,14030,26,kcenturion +14397,16,14030,26,kimoscar +14397,16,14030,26,kittenls +14397,16,14030,26,kmontzka +14397,16,14030,26,laister +14397,16,14030,26,lalloq +14397,16,14030,26,laoghan +14397,16,14030,26,lbleicher +14397,16,14030,26,leesmitty51 +14397,16,14030,26,leonadter +14397,16,14030,26,lobosmainman +14397,16,14030,26,lordrings +14397,16,14030,26,lpporto +14397,16,14030,26,m vindictus +14397,16,14030,26,madmemba +14397,16,14030,26,manchotpi +14397,16,14030,26,margaridaferreira +14397,16,14030,26,maribmf +14397,16,14030,26,mark_pugner +14397,16,14030,26,marknewlyn +14397,16,14030,26,mastadont +14397,16,14030,26,meldread +14397,16,14030,26,mhzmaster +14397,16,14030,26,mica76 +14397,16,14030,26,mickelmonk +14397,16,14030,26,mind4u2c +14397,16,14030,26,missiol +14397,16,14030,26,momquab +14397,16,14030,26,mr freedly +14397,16,14030,26,mvovik +14397,16,14030,26,mwm1975mwm1975 +14397,16,14030,26,nahkriin16 +14397,16,14030,26,nikos35mk +14397,16,14030,26,ninbarbu +14397,16,14030,26,nivelheim +14397,16,14030,26,nomad_fet +14397,16,14030,26,oap3ud +14397,16,14030,26,obervet03 +14397,16,14030,26,odmu +14397,16,14030,26,onecrazycanuck +14397,16,14030,26,ovidutz +14397,16,14030,26,paddyno +14397,16,14030,26,pathetic loser +14397,16,14030,26,pawelacb +14397,16,14030,26,peckspiro +14397,16,14030,26,pinkleprechaun +14397,16,14030,26,pjn5 +14397,16,14030,26,pockifish +14397,16,14030,26,pumbaa666 +14397,16,14030,26,r00b +14397,16,14030,26,rafalm +14397,16,14030,26,ricdarn +14397,16,14030,26,ricochetrita +14397,16,14030,26,riki39561 +14397,16,14030,26,roboman +14397,16,14030,26,rockkcor +14397,16,14030,26,rorschach9 +14397,16,14030,26,rstevens32 +14397,16,14030,26,sapper_sb +14397,16,14030,26,sault +14397,16,14030,26,sch21c +14397,16,14030,26,scoota75 +14397,16,14030,26,senor_b +14397,16,14030,26,sg181 +14397,16,14030,26,simonh +14397,16,14030,26,skunktoe +14397,16,14030,26,slapshot12 +14397,16,14030,26,smiticus +14397,16,14030,26,snowboardgamer +14397,16,14030,26,soledade +14397,16,14030,26,solidspace +14397,16,14030,26,soonertom +14397,16,14030,26,sorrowsjudge +14397,16,14030,26,stig1972 +14397,16,14030,26,subzero007 +14397,16,14030,26,sumguyv5 +14397,16,14030,26,syrio forel +14397,16,14030,26,tazzmann +14397,16,14030,26,the boom 117 +14397,16,14030,26,thecostcutter +14397,16,14030,26,thepen15 +14397,16,14030,26,therealpdh +14397,16,14030,26,tinwe +14397,16,14030,26,tkcandrade +14397,16,14030,26,tobsch +14397,16,14030,26,toffi85 +14397,16,14030,26,tomb66 +14397,16,14030,26,trufolo +14397,16,14030,26,tudada +14397,16,14030,26,tycalt +14397,16,14030,26,ushernx +14397,16,14030,26,vatukka +14397,16,14030,26,weezoh +14397,16,14030,26,whiskyjack21 +14397,16,14030,26,wilco_13 +14397,16,14030,26,wilseph +14397,16,14030,26,xmastree +14397,16,14030,26,xoniago +14397,16,14030,26,yair86 +14397,16,14030,26,yogibbear +14397,16,15326,25,8bit geezer +14397,16,15326,25,actionman +14397,16,15326,25,adrianocola +14397,16,15326,25,aeroflynn +14397,16,15326,25,ahouston +14397,16,15326,25,akakus +14397,16,15326,25,angrynerd +14397,16,15326,25,antatrix +14397,16,15326,25,antje hirsch +14397,16,15326,25,auevans78 +14397,16,15326,25,bapts +14397,16,15326,25,belial1134 +14397,16,15326,25,bibteclasala +14397,16,15326,25,big bad lex +14397,16,15326,25,big_dadd1 +14397,16,15326,25,bigmike85 +14397,16,15326,25,bkabelka +14397,16,15326,25,blackduty +14397,16,15326,25,blue_sauerkraut +14397,16,15326,25,bonxie +14397,16,15326,25,bpsymington +14397,16,15326,25,brandonj84 +14397,16,15326,25,brettspielminister +14397,16,15326,25,brg1007 +14397,16,15326,25,brisse +14397,16,15326,25,broco +14397,16,15326,25,bvoodoo +14397,16,15326,25,bwjeep4 +14397,16,15326,25,bzskmrc +14397,16,15326,25,capecastle +14397,16,15326,25,captaincaveman +14397,16,15326,25,captwhat +14397,16,15326,25,carlos9898 +14397,16,15326,25,catwalker72 +14397,16,15326,25,cdegaray +14397,16,15326,25,celestialwillow +14397,16,15326,25,chaoscreature +14397,16,15326,25,chelchen +14397,16,15326,25,chepl +14397,16,15326,25,chezsnark +14397,16,15326,25,claire1970 +14397,16,15326,25,clash101ers +14397,16,15326,25,cliff clavin +14397,16,15326,25,colors +14397,16,15326,25,custard_t +14397,16,15326,25,d0gb0t +14397,16,15326,25,danleyfalls +14397,16,15326,25,danlicata +14397,16,15326,25,daudex +14397,16,15326,25,demonetrigan007 +14397,16,15326,25,denngeki +14397,16,15326,25,der_bob +14397,16,15326,25,digitalculture +14397,16,15326,25,djedy +14397,16,15326,25,donkeyryan +14397,16,15326,25,dvys +14397,16,15326,25,ekaiser1901 +14397,16,15326,25,enviro +14397,16,15326,25,epokal +14397,16,15326,25,escher0 +14397,16,15326,25,excellentfjord +14397,16,15326,25,extrememedium +14397,16,15326,25,ezel +14397,16,15326,25,fall87 +14397,16,15326,25,ferdinand +14397,16,15326,25,fingerk4 +14397,16,15326,25,fjaellraeven +14397,16,15326,25,followinadistantstar +14397,16,15326,25,franksb71 +14397,16,15326,25,fret_gurglo +14397,16,15326,25,frienetic +14397,16,15326,25,fvervial +14397,16,15326,25,g00die +14397,16,15326,25,gabine +14397,16,15326,25,gagacek +14397,16,15326,25,gazpar +14397,16,15326,25,ghost cat +14397,16,15326,25,gimlianon +14397,16,15326,25,gizmu +14397,16,15326,25,gkrieg +14397,16,15326,25,gordon_shumway +14397,16,15326,25,greyheart +14397,16,15326,25,h_dzso +14397,16,15326,25,hgcoleman +14397,16,15326,25,hightouch +14397,16,15326,25,ilm4nu +14397,16,15326,25,jasonquek +14397,16,15326,25,jedisilentbob +14397,16,15326,25,jeremy sherwood +14397,16,15326,25,jeremy_p +14397,16,15326,25,jesseh +14397,16,15326,25,jessicasavannah +14397,16,15326,25,jgoody +14397,16,15326,25,jjcf89 +14397,16,15326,25,jonassvedas +14397,16,15326,25,josif +14397,16,15326,25,jowolf +14397,16,15326,25,juan-agustin +14397,16,15326,25,kakapobeaver +14397,16,15326,25,katanan +14397,16,15326,25,kiloforce +14397,16,15326,25,kimv +14397,16,15326,25,kingofloons +14397,16,15326,25,kma256 +14397,16,15326,25,kollathat +14397,16,15326,25,kuroko29 +14397,16,15326,25,levientje +14397,16,15326,25,loafboy +14397,16,15326,25,lodzic +14397,16,15326,25,lomax1983 +14397,16,15326,25,luislobo81 +14397,16,15326,25,lv20commoner +14397,16,15326,25,machinegun joe +14397,16,15326,25,markkahrs +14397,16,15326,25,markowka +14397,16,15326,25,matt09 +14397,16,15326,25,mattridding +14397,16,15326,25,mayonesa4659 +14397,16,15326,25,mbauer8286 +14397,16,15326,25,mbedard99 +14397,16,15326,25,metanoia72 +14397,16,15326,25,mightmatt15 +14397,16,15326,25,mikester9809 +14397,16,15326,25,mister matched +14397,16,15326,25,mobilesuit101 +14397,16,15326,25,moik +14397,16,15326,25,morillas +14397,16,15326,25,mr_babau +14397,16,15326,25,mrwhite22 +14397,16,15326,25,murraculous +14397,16,15326,25,mustafapl +14397,16,15326,25,myaale1 +14397,16,15326,25,nachofan +14397,16,15326,25,ndujovne +14397,16,15326,25,nemo_75 +14397,16,15326,25,nerdinmich +14397,16,15326,25,ngai +14397,16,15326,25,nico p +14397,16,15326,25,nimitstexan +14397,16,15326,25,nodens77 +14397,16,15326,25,nyahm +14397,16,15326,25,oddipus +14397,16,15326,25,oddityoverseer13 +14397,16,15326,25,oktobull +14397,16,15326,25,oldmanriver +14397,16,15326,25,pablopoche +14397,16,15326,25,painkeeper +14397,16,15326,25,pcsajbok +14397,16,15326,25,pedorro17 +14397,16,15326,25,peleverde +14397,16,15326,25,phill278 +14397,16,15326,25,philouhk +14397,16,15326,25,phleemuncher +14397,16,15326,25,praxus +14397,16,15326,25,prodromoi +14397,16,15326,25,profiterole +14397,16,15326,25,pumar +14397,16,15326,25,quelbo +14397,16,15326,25,quirogal +14397,16,15326,25,r3sp4wn +14397,16,15326,25,rachelthfirst +14397,16,15326,25,rangkok +14397,16,15326,25,red 6 +14397,16,15326,25,rhtmddn100 +14397,16,15326,25,rikrak +14397,16,15326,25,rjpomeroy +14397,16,15326,25,sabathius42 +14397,16,15326,25,sabq_ +14397,16,15326,25,satchmoz +14397,16,15326,25,scherzo +14397,16,15326,25,scketcham +14397,16,15326,25,semo_alv +14397,16,15326,25,sephi84 +14397,16,15326,25,serendip01 +14397,16,15326,25,severalowlbears +14397,16,15326,25,sf13sh +14397,16,15326,25,sgt62e +14397,16,15326,25,shsmith +14397,16,15326,25,sinscerly +14397,16,15326,25,sirkarlg +14397,16,15326,25,sis79 +14397,16,15326,25,sleightahand +14397,16,15326,25,sniderd +14397,16,15326,25,spartan104 +14397,16,15326,25,srecko +14397,16,15326,25,steve5332 +14397,16,15326,25,str1b0g +14397,16,15326,25,str4d +14397,16,15326,25,stridervc +14397,16,15326,25,t72on1 +14397,16,15326,25,tarao666 +14397,16,15326,25,taronco +14397,16,15326,25,tehard +14397,16,15326,25,thamos von nostria +14397,16,15326,25,the manx loiner +14397,16,15326,25,theinfamousang +14397,16,15326,25,thesiles +14397,16,15326,25,ticktockrob +14397,16,15326,25,tigerguitarist +14397,16,15326,25,tiltedkilt +14397,16,15326,25,tinkerhd +14397,16,15326,25,tobiasschenke +14397,16,15326,25,toineton +14397,16,15326,25,tom violence +14397,16,15326,25,trenttsd +14397,16,15326,25,trondkla +14397,16,15326,25,tulkass +14397,16,15326,25,turleythepage +14397,16,15326,25,turtlecolor +14397,16,15326,25,tyjyoung +14397,16,15326,25,uve3tres +14397,16,15326,25,vaevictis1918 +14397,16,15326,25,vazkez_javi +14397,16,15326,25,vicolas +14397,16,15326,25,vrosen1029 +14397,16,15326,25,w2_boardgames +14397,16,15326,25,white stone +14397,16,15326,25,womzilla +14397,16,15326,25,xanwan +14397,16,15326,25,xetrov76 +14397,16,15326,25,xord +14397,16,15326,25,yatz101 +14397,16,15326,25,yberico +14397,16,15326,25,z0an +14397,16,16710,24,a_traveler +14397,16,16710,24,abex17 +14397,16,16710,24,accession +14397,16,16710,24,adoublej +14397,16,16710,24,ahiksking +14397,16,16710,24,ahnenspross +14397,16,16710,24,alraris +14397,16,16710,24,alrynn +14397,16,16710,24,amarillo114 +14397,16,16710,24,animezis +14397,16,16710,24,ansatsusha +14397,16,16710,24,arctic jack +14397,16,16710,24,argand +14397,16,16710,24,arthurrobky +14397,16,16710,24,ashild +14397,16,16710,24,axerunner +14397,16,16710,24,baconburgerdog +14397,16,16710,24,baloo12 +14397,16,16710,24,batz +14397,16,16710,24,beerandboard +14397,16,16710,24,bengriffiths +14397,16,16710,24,benny gee +14397,16,16710,24,benuar +14397,16,16710,24,berghman +14397,16,16710,24,bernardasaur +14397,16,16710,24,bioboom +14397,16,16710,24,biscuiteater +14397,16,16710,24,blackwingedgod +14397,16,16710,24,bmanhanke +14397,16,16710,24,bond8089 +14397,16,16710,24,bradbruso +14397,16,16710,24,bufferunderflow +14397,16,16710,24,captain pew pew +14397,16,16710,24,carmoniusmort +14397,16,16710,24,carolsnotebook +14397,16,16710,24,carontissimo +14397,16,16710,24,chadwaller +14397,16,16710,24,challindra +14397,16,16710,24,champalaune +14397,16,16710,24,chesterlarue +14397,16,16710,24,chrisss82 +14397,16,16710,24,co1980 +14397,16,16710,24,coin22 +14397,16,16710,24,crazygigan +14397,16,16710,24,creamy_seas +14397,16,16710,24,cryvens +14397,16,16710,24,damo1818 +14397,16,16710,24,datlan +14397,16,16710,24,deanbob +14397,16,16710,24,dediboy91 +14397,16,16710,24,dewats7 +14397,16,16710,24,dondogo +14397,16,16710,24,dourden +14397,16,16710,24,draghost +14397,16,16710,24,drstrnge +14397,16,16710,24,dustygator +14397,16,16710,24,dyeyk2000 +14397,16,16710,24,ecsf2008 +14397,16,16710,24,edupomper +14397,16,16710,24,eggtron +14397,16,16710,24,elizaanne +14397,16,16710,24,els76 +14397,16,16710,24,engarde +14397,16,16710,24,envfriction +14397,16,16710,24,etalker13 +14397,16,16710,24,euribbo +14397,16,16710,24,express_d +14397,16,16710,24,falzir +14397,16,16710,24,fennecus +14397,16,16710,24,fireflashx32 +14397,16,16710,24,fireseed +14397,16,16710,24,fiskke +14397,16,16710,24,freek93 +14397,16,16710,24,frousaud +14397,16,16710,24,fuerstcm +14397,16,16710,24,fyl 20 +14397,16,16710,24,gamedad +14397,16,16710,24,ghosthack +14397,16,16710,24,grafpoo +14397,16,16710,24,grogurt +14397,16,16710,24,guinnessone +14397,16,16710,24,gurig +14397,16,16710,24,gutrix +14397,16,16710,24,hadesleprechaun +14397,16,16710,24,hamfast_chubbukkit +14397,16,16710,24,hannet +14397,16,16710,24,hcdunn +14397,16,16710,24,hcehlers88 +14397,16,16710,24,herrprofesor +14397,16,16710,24,hocke723 +14397,16,16710,24,hokuto_su +14397,16,16710,24,hrakus +14397,16,16710,24,huesao +14397,16,16710,24,ianwat +14397,16,16710,24,ibjones +14397,16,16710,24,ilaks +14397,16,16710,24,ilopez10 +14397,16,16710,24,indy81 +14397,16,16710,24,irenesmober +14397,16,16710,24,iskierek +14397,16,16710,24,jacun +14397,16,16710,24,janekbossko +14397,16,16710,24,jari58 +14397,16,16710,24,jaydash808 +14397,16,16710,24,jedijay +14397,16,16710,24,jgravitt +14397,16,16710,24,jgrieve81 +14397,16,16710,24,jimjal +14397,16,16710,24,jmbaril +14397,16,16710,24,jodehi +14397,16,16710,24,jorad +14397,16,16710,24,jospanther +14397,16,16710,24,jplay +14397,16,16710,24,kalayna +14397,16,16710,24,karmatic +14397,16,16710,24,kaspah +14397,16,16710,24,kbi_kbi +14397,16,16710,24,kirkbauer +14397,16,16710,24,kookymonster89 +14397,16,16710,24,latazza1 +14397,16,16710,24,lcsandman8301 +14397,16,16710,24,leifsmart +14397,16,16710,24,leighbob +14397,16,16710,24,lj1983 +14397,16,16710,24,louminous +14397,16,16710,24,lucasreis3000 +14397,16,16710,24,lunandrez +14397,16,16710,24,malakim0 +14397,16,16710,24,mamut +14397,16,16710,24,marfried +14397,16,16710,24,mariho +14397,16,16710,24,materpillar +14397,16,16710,24,matthean +14397,16,16710,24,mattramsey +14397,16,16710,24,megabytex +14397,16,16710,24,melsana +14397,16,16710,24,merovingio15 +14397,16,16710,24,messiah88 +14397,16,16710,24,mguollo +14397,16,16710,24,mishi +14397,16,16710,24,mishko +14397,16,16710,24,mm76 +14397,16,16710,24,mod_xxii +14397,16,16710,24,mrmaigo +14397,16,16710,24,mynth +14397,16,16710,24,nabokjerring +14397,16,16710,24,namtabandy +14397,16,16710,24,napakleen +14397,16,16710,24,nartie +14397,16,16710,24,neanderglo +14397,16,16710,24,nedpatrick +14397,16,16710,24,nguthrie +14397,16,16710,24,ninja_squirrel2 +14397,16,16710,24,ninniach83 +14397,16,16710,24,nique77 +14397,16,16710,24,nyriv +14397,16,16710,24,onishin +14397,16,16710,24,ostrichjo +14397,16,16710,24,paloma88p +14397,16,16710,24,paperfred +14397,16,16710,24,patries_k +14397,16,16710,24,pcstam +14397,16,16710,24,phelonius +14397,16,16710,24,plervik +14397,16,16710,24,polka +14397,16,16710,24,preacherush +14397,16,16710,24,prorock +14397,16,16710,24,raika11182 +14397,16,16710,24,raptorsquid +14397,16,16710,24,rebyaakov +14397,16,16710,24,red_gamster +14397,16,16710,24,reverendunclebastard +14397,16,16710,24,richpizor +14397,16,16710,24,richtoosoon +14397,16,16710,24,richvaso +14397,16,16710,24,ridors +14397,16,16710,24,rikx81 +14397,16,16710,24,riton +14397,16,16710,24,rnewhook +14397,16,16710,24,robertopellizini +14397,16,16710,24,rofle +14397,16,16710,24,roibeard +14397,16,16710,24,ruikoto +14397,16,16710,24,rustyknight +14397,16,16710,24,san daniel +14397,16,16710,24,sdsinger +14397,16,16710,24,sephirot_86 +14397,16,16710,24,sgu123456 +14397,16,16710,24,sharpiez +14397,16,16710,24,shawnewing +14397,16,16710,24,sighlance +14397,16,16710,24,sillent +14397,16,16710,24,skaapie +14397,16,16710,24,skidmark27 +14397,16,16710,24,slinty +14397,16,16710,24,smitty1966 +14397,16,16710,24,spohieb19 +14397,16,16710,24,starbuck7660 +14397,16,16710,24,steph_noack +14397,16,16710,24,supergman +14397,16,16710,24,surion +14397,16,16710,24,sveinmain +14397,16,16710,24,swing +14397,16,16710,24,szbajusz +14397,16,16710,24,tako +14397,16,16710,24,tanori +14397,16,16710,24,tbodinar +14397,16,16710,24,thazdingo +14397,16,16710,24,the_mook_man +14397,16,16710,24,thebrocksummers +14397,16,16710,24,thezage +14397,16,16710,24,toadstool +14397,16,16710,24,tom13132 +14397,16,16710,24,tonydorrf +14397,16,16710,24,traditz +14397,16,16710,24,trebor61 +14397,16,16710,24,trotamor +14397,16,16710,24,troydub +14397,16,16710,24,tudodo +14397,16,16710,24,twistedbydesign82 +14397,16,16710,24,tyrel12 +14397,16,16710,24,varlsack +14397,16,16710,24,vavourvas +14397,16,16710,24,vidare +14397,16,16710,24,vinnalott +14397,16,16710,24,vlcaczech +14397,16,16710,24,voerschda +14397,16,16710,24,weezelz +14397,16,16710,24,wensp +14397,16,16710,24,wiew1987 +14397,16,16710,24,wildmoon +14397,16,16710,24,wolfpack1994 +14397,16,16710,24,wrathchilde +14397,16,16710,24,yeroon +14397,16,16710,24,yoyoboy170 +14397,16,16710,24,zergo +14397,16,18170,23,3rail +14397,16,18170,23,54245 +14397,16,18170,23,abeldanger +14397,16,18170,23,ablamor +14397,16,18170,23,acetate3 +14397,16,18170,23,adam.skinner +14397,16,18170,23,adibendot +14397,16,18170,23,afeg +14397,16,18170,23,ajshred7 +14397,16,18170,23,alexanderbanning +14397,16,18170,23,alexdev +14397,16,18170,23,alienka +14397,16,18170,23,almostaboardgamer +14397,16,18170,23,alparcero +14397,16,18170,23,alzami +14397,16,18170,23,amhadde +14397,16,18170,23,amnnate +14397,16,18170,23,andrechapman +14397,16,18170,23,andrewerickson +14397,16,18170,23,andrux +14397,16,18170,23,andy457 +14397,16,18170,23,andybeta +14397,16,18170,23,aosuna +14397,16,18170,23,arctarus +14397,16,18170,23,arcubal +14397,16,18170,23,arkthatcher +14397,16,18170,23,augusto_tenorio +14397,16,18170,23,avatar_insane +14397,16,18170,23,bbachman +14397,16,18170,23,beaniebee +14397,16,18170,23,behemoth32 +14397,16,18170,23,bill_gallon +14397,16,18170,23,blackmetalsheep +14397,16,18170,23,bluesboy +14397,16,18170,23,bo hovgaard thomasen +14397,16,18170,23,boardgamenerds +14397,16,18170,23,borisignjatovic +14397,16,18170,23,boss trojan +14397,16,18170,23,bradray +14397,16,18170,23,brewsaki +14397,16,18170,23,brodieman +14397,16,18170,23,brokasaphasia +14397,16,18170,23,bryyo003 +14397,16,18170,23,budfox +14397,16,18170,23,buggsuperstar +14397,16,18170,23,buoneacque +14397,16,18170,23,carlosrocca +14397,16,18170,23,cass0526 +14397,16,18170,23,cbrua +14397,16,18170,23,cerberus138 +14397,16,18170,23,charliemnemonic +14397,16,18170,23,chaste86 +14397,16,18170,23,chichisbud +14397,16,18170,23,chonbola +14397,16,18170,23,chrisi81 +14397,16,18170,23,clanger +14397,16,18170,23,cloudsurfer +14397,16,18170,23,conmanau +14397,16,18170,23,conrad1978 +14397,16,18170,23,cosmic fanatic +14397,16,18170,23,crazybluedwarf +14397,16,18170,23,crosenkrantz +14397,16,18170,23,crother +14397,16,18170,23,cubesquared +14397,16,18170,23,cubillas +14397,16,18170,23,cwozniak +14397,16,18170,23,cytosis89 +14397,16,18170,23,dadnz +14397,16,18170,23,danodan +14397,16,18170,23,darthv8r +14397,16,18170,23,daylightgambler +14397,16,18170,23,deborahjeanne +14397,16,18170,23,deceiver00 +14397,16,18170,23,devinthegrand +14397,16,18170,23,django94 +14397,16,18170,23,djfraggle +14397,16,18170,23,doerrhb +14397,16,18170,23,dqoder +14397,16,18170,23,drdo2little +14397,16,18170,23,drenlin +14397,16,18170,23,dstephens +14397,16,18170,23,dungeonlord17 +14397,16,18170,23,eatingtree +14397,16,18170,23,elessea +14397,16,18170,23,elmay70 +14397,16,18170,23,eltey42 +14397,16,18170,23,emoreau +14397,16,18170,23,etlau +14397,16,18170,23,euchrid1 +14397,16,18170,23,evenger +14397,16,18170,23,evilwhaleboy +14397,16,18170,23,f_rabbit +14397,16,18170,23,ferd1923 +14397,16,18170,23,filcha +14397,16,18170,23,filippozz +14397,16,18170,23,firstfletch +14397,16,18170,23,foxwithtwotales +14397,16,18170,23,g6grim +14397,16,18170,23,galeelox +14397,16,18170,23,gamesatchel +14397,16,18170,23,gamingcavalry +14397,16,18170,23,gandalf1975 +14397,16,18170,23,gargll +14397,16,18170,23,gazsi24 +14397,16,18170,23,gbe275 +14397,16,18170,23,geigersplat +14397,16,18170,23,glcnet +14397,16,18170,23,gmoore19 +14397,16,18170,23,gmx02 +14397,16,18170,23,goatwhisperer +14397,16,18170,23,graewolfe +14397,16,18170,23,gromer +14397,16,18170,23,guybrush +14397,16,18170,23,haarrrgh +14397,16,18170,23,hanmaboogie +14397,16,18170,23,hannibal barca +14397,16,18170,23,harihirsch +14397,16,18170,23,harshoxymoron +14397,16,18170,23,hellblaser +14397,16,18170,23,hexexmeister +14397,16,18170,23,hjdploeg +14397,16,18170,23,hoardingdwarf +14397,16,18170,23,icarus +14397,16,18170,23,idragonfire +14397,16,18170,23,ikazuchi +14397,16,18170,23,iuli212 +14397,16,18170,23,jameush +14397,16,18170,23,jamm1970 +14397,16,18170,23,janpy +14397,16,18170,23,javiertajes +14397,16,18170,23,jayshan +14397,16,18170,23,jb80 +14397,16,18170,23,jeffb007 +14397,16,18170,23,jeffbeckinc +14397,16,18170,23,jefimeyerhoff +14397,16,18170,23,jensli +14397,16,18170,23,jeromebettis +14397,16,18170,23,jimbei7 +14397,16,18170,23,jimf +14397,16,18170,23,jinjabredboy +14397,16,18170,23,jinkeizaman +14397,16,18170,23,jksasser +14397,16,18170,23,jmulldome +14397,16,18170,23,jnorris +14397,16,18170,23,joao104 +14397,16,18170,23,jochen05 +14397,16,18170,23,johnasaurs +14397,16,18170,23,johrfet +14397,16,18170,23,jomileal +14397,16,18170,23,jonto78i +14397,16,18170,23,jordanscott +14397,16,18170,23,josenet777 +14397,16,18170,23,joshtherouser +14397,16,18170,23,judoka +14397,16,18170,23,jwbyrdman +14397,16,18170,23,kaluga +14397,16,18170,23,kamixx +14397,16,18170,23,kapi +14397,16,18170,23,kaufman1981 +14397,16,18170,23,kcjones330 +14397,16,18170,23,kenasam +14397,16,18170,23,keso55 +14397,16,18170,23,kindredsprites +14397,16,18170,23,kingd21 +14397,16,18170,23,kliuna +14397,16,18170,23,kloves +14397,16,18170,23,kmd7 +14397,16,18170,23,kneumann +14397,16,18170,23,kommandeur mumm +14397,16,18170,23,kurtensen +14397,16,18170,23,kyrilin +14397,16,18170,23,kywerd +14397,16,18170,23,larryonov +14397,16,18170,23,larsmanenschijn +14397,16,18170,23,lascimmiasultavolo +14397,16,18170,23,le yann +14397,16,18170,23,leoli +14397,16,18170,23,lobomoss +14397,16,18170,23,luluchia +14397,16,18170,23,lyndon_p +14397,16,18170,23,macabee +14397,16,18170,23,macbeth +14397,16,18170,23,majicbaby +14397,16,18170,23,male_co_nieco +14397,16,18170,23,marco gazolla +14397,16,18170,23,markrasker +14397,16,18170,23,marsonauta +14397,16,18170,23,matt1848h +14397,16,18170,23,matyek92 +14397,16,18170,23,mavilnet +14397,16,18170,23,maxigd23 +14397,16,18170,23,maxlds +14397,16,18170,23,maxleh67100 +14397,16,18170,23,mcik +14397,16,18170,23,mcjoe +14397,16,18170,23,mcstabbity +14397,16,18170,23,mdelesd1 +14397,16,18170,23,melliemd +14397,16,18170,23,mercyful +14397,16,18170,23,mgaudion +14397,16,18170,23,mi_butters +14397,16,18170,23,michaelb +14397,16,18170,23,michaelparnell +14397,16,18170,23,michy1234 +14397,16,18170,23,mictratrejax +14397,16,18170,23,misguidedbow +14397,16,18170,23,mister p +14397,16,18170,23,mitorious +14397,16,18170,23,moon_dog +14397,16,18170,23,mooseica8 +14397,16,18170,23,morm91 +14397,16,18170,23,moss_icon +14397,16,18170,23,mpeacock1967 +14397,16,18170,23,mpmelanchthon +14397,16,18170,23,mrbreak +14397,16,18170,23,mrchigger +14397,16,18170,23,mrgrumtastic +14397,16,18170,23,mrozing +14397,16,18170,23,msfacco +14397,16,18170,23,munkey_ninja +14397,16,18170,23,murgui +14397,16,18170,23,neil palfreyman +14397,16,18170,23,nestorsnor +14397,16,18170,23,nevest +14397,16,18170,23,nidale +14397,16,18170,23,nightchild +14397,16,18170,23,nverter +14397,16,18170,23,oli1kenobi +14397,16,18170,23,oriolfb +14397,16,18170,23,orzog +14397,16,18170,23,ourmrmajestyk +14397,16,18170,23,pablodelavista +14397,16,18170,23,pacificodaniel +14397,16,18170,23,pandelis +14397,16,18170,23,panheadx +14397,16,18170,23,papadyrektor +14397,16,18170,23,partyab +14397,16,18170,23,pascual74 +14397,16,18170,23,patrick cloughley +14397,16,18170,23,pelzkugel +14397,16,18170,23,pepetenis +14397,16,18170,23,perturabo +14397,16,18170,23,photocurio +14397,16,18170,23,pierowmaniac +14397,16,18170,23,pierrepolet +14397,16,18170,23,pir4t +14397,16,18170,23,pissopossum +14397,16,18170,23,pixel hunter +14397,16,18170,23,preacherman05 +14397,16,18170,23,priscilakiba +14397,16,18170,23,prisonmonkeys +14397,16,18170,23,prrudy +14397,16,18170,23,prwned +14397,16,18170,23,pyroscope +14397,16,18170,23,quible +14397,16,18170,23,quosa +14397,16,18170,23,rainydays7 +14397,16,18170,23,randomzone +14397,16,18170,23,ratatin +14397,16,18170,23,reffip +14397,16,18170,23,rewslaun +14397,16,18170,23,ricker +14397,16,18170,23,riogodella +14397,16,18170,23,rizzat +14397,16,18170,23,rjfluck +14397,16,18170,23,rofther +14397,16,18170,23,ron_rancor +14397,16,18170,23,ronci +14397,16,18170,23,ropo12 +14397,16,18170,23,roscoerush +14397,16,18170,23,ruizduck +14397,16,18170,23,scarlettfiree +14397,16,18170,23,schmitter +14397,16,18170,23,sciflyer +14397,16,18170,23,serketa +14397,16,18170,23,setual +14397,16,18170,23,sh_superhero +14397,16,18170,23,sharpie1313 +14397,16,18170,23,shezzy +14397,16,18170,23,sir_willson +14397,16,18170,23,siresa1980 +14397,16,18170,23,slick_otter +14397,16,18170,23,slubbertking +14397,16,18170,23,smudgepuss +14397,16,18170,23,snow27 +14397,16,18170,23,sonicyubin +14397,16,18170,23,soporificeffect +14397,16,18170,23,soundcity +14397,16,18170,23,sparr0 +14397,16,18170,23,spectre3988 +14397,16,18170,23,spinalpap +14397,16,18170,23,sszgsa +14397,16,18170,23,starkelion +14397,16,18170,23,stegaton +14397,16,18170,23,stephanied24 +14397,16,18170,23,suburbius +14397,16,18170,23,sumpfork +14397,16,18170,23,suric42 +14397,16,18170,23,synchro191 +14397,16,18170,23,t2_spt +14397,16,18170,23,tahearn +14397,16,18170,23,tenpintom +14397,16,18170,23,tezza +14397,16,18170,23,the_monk +14397,16,18170,23,thejameskiller +14397,16,18170,23,thevgmole +14397,16,18170,23,threeeyedsloth +14397,16,18170,23,thutrian thell +14397,16,18170,23,tiamat997 +14397,16,18170,23,topansky +14397,16,18170,23,topstefan +14397,16,18170,23,tordengud +14397,16,18170,23,totoroni +14397,16,18170,23,trowabailey +14397,16,18170,23,tyrell3535 +14397,16,18170,23,uglyfoot +14397,16,18170,23,valashas +14397,16,18170,23,vandamm +14397,16,18170,23,velvetvoulge +14397,16,18170,23,vitaly1981 +14397,16,18170,23,vodpod +14397,16,18170,23,voodoochyl +14397,16,18170,23,vuis +14397,16,18170,23,walex +14397,16,18170,23,wayne 3 +14397,16,18170,23,weyscoggin +14397,16,18170,23,wibs +14397,16,18170,23,worldslayer1890 +14397,16,18170,23,wyrdcatgaming +14397,16,18170,23,xwilcoxx +14397,16,18170,23,yaagma +14397,16,18170,23,zarsten +14397,16,18170,23,zingibertram +14397,16,18170,23,zirkvandenberg +14397,16,18170,23,zogmund +14397,16,18170,23,zoomink +14397,16,19906,22,11dete +14397,16,19906,22,ablehat +14397,16,19906,22,absteensen +14397,16,19906,22,achilles1910 +14397,16,19906,22,ahforever +14397,16,19906,22,aisne +14397,16,19906,22,akssota +14397,16,19906,22,anakinou +14397,16,19906,22,anavrinn +14397,16,19906,22,androssguile +14397,16,19906,22,apedog +14397,16,19906,22,ar147 +14397,16,19906,22,ara_pacis +14397,16,19906,22,aratar +14397,16,19906,22,asaru +14397,16,19906,22,astalis +14397,16,19906,22,atlduke +14397,16,19906,22,atreyu999 +14397,16,19906,22,baldr7 +14397,16,19906,22,bamsey +14397,16,19906,22,baranek84 +14397,16,19906,22,bathduck +14397,16,19906,22,beardricj +14397,16,19906,22,belruel +14397,16,19906,22,biasedisland +14397,16,19906,22,bigbosss +14397,16,19906,22,bisonlover +14397,16,19906,22,bondy034 +14397,16,19906,22,boo st george +14397,16,19906,22,boot2dahead +14397,16,19906,22,brain of morbius +14397,16,19906,22,brandonheyman +14397,16,19906,22,brazol +14397,16,19906,22,brewitus +14397,16,19906,22,brichs +14397,16,19906,22,bugs90 +14397,16,19906,22,cacheless +14397,16,19906,22,carolgomis +14397,16,19906,22,catyrpelius +14397,16,19906,22,ccericola +14397,16,19906,22,cgmitchell83 +14397,16,19906,22,chanwoo_park +14397,16,19906,22,chinitaraq +14397,16,19906,22,chritam +14397,16,19906,22,chyrondave +14397,16,19906,22,cjdiller +14397,16,19906,22,claudermilk +14397,16,19906,22,cloudstrife85 +14397,16,19906,22,cola_demono +14397,16,19906,22,colethuun +14397,16,19906,22,comrad1337 +14397,16,19906,22,connercp +14397,16,19906,22,crashnct +14397,16,19906,22,crepuscularmelissa +14397,16,19906,22,danjliv7 +14397,16,19906,22,darthgamer +14397,16,19906,22,darzebass +14397,16,19906,22,daveshaerf +14397,16,19906,22,davispigeon +14397,16,19906,22,deezynah +14397,16,19906,22,denlow +14397,16,19906,22,devilson +14397,16,19906,22,divedeeper +14397,16,19906,22,djalina +14397,16,19906,22,djna83 +14397,16,19906,22,djscribbles +14397,16,19906,22,dolphineke +14397,16,19906,22,douglasfir +14397,16,19906,22,drewgang +14397,16,19906,22,dtayntor +14397,16,19906,22,dylanbradshaw +14397,16,19906,22,dylandbeforetime +14397,16,19906,22,easterly1 +14397,16,19906,22,eastfire +14397,16,19906,22,edytwinky +14397,16,19906,22,eightbit +14397,16,19906,22,ekskafeas +14397,16,19906,22,emisan +14397,16,19906,22,enricodonaggio +14397,16,19906,22,erewnt +14397,16,19906,22,ericjensencpa +14397,16,19906,22,eschaton1000 +14397,16,19906,22,etcjensen +14397,16,19906,22,ethidium +14397,16,19906,22,fabiofubini +14397,16,19906,22,family_home_evening +14397,16,19906,22,fduch10 +14397,16,19906,22,fermanowar +14397,16,19906,22,flashburn +14397,16,19906,22,flomen_muc +14397,16,19906,22,friendlywombat +14397,16,19906,22,frosty747 +14397,16,19906,22,furious d +14397,16,19906,22,gaisan +14397,16,19906,22,gamershwang +14397,16,19906,22,gamesnightnews +14397,16,19906,22,gen1400 +14397,16,19906,22,gfactor +14397,16,19906,22,giorgiarelly +14397,16,19906,22,gisli +14397,16,19906,22,goolsnut +14397,16,19906,22,guanolol +14397,16,19906,22,gutt67 +14397,16,19906,22,habakuk155 +14397,16,19906,22,haep +14397,16,19906,22,hallow +14397,16,19906,22,hefe +14397,16,19906,22,heidebrechtluke +14397,16,19906,22,herjan +14397,16,19906,22,horus83 +14397,16,19906,22,iain_benson +14397,16,19906,22,ilicitus +14397,16,19906,22,incurableham +14397,16,19906,22,iphinto +14397,16,19906,22,izzatopia +14397,16,19906,22,jaceycole +14397,16,19906,22,jahhhk +14397,16,19906,22,james_blair +14397,16,19906,22,jannekvack +14397,16,19906,22,janon +14397,16,19906,22,jasonbrooks +14397,16,19906,22,jayg72 +14397,16,19906,22,jbliii +14397,16,19906,22,jcampbell133 +14397,16,19906,22,jcphenom +14397,16,19906,22,jeffrhind +14397,16,19906,22,jeroen vd horst +14397,16,19906,22,jessy3691 +14397,16,19906,22,jevcamp +14397,16,19906,22,jguder +14397,16,19906,22,jimnius +14397,16,19906,22,joantretze +14397,16,19906,22,joeaubrey +14397,16,19906,22,jojorace +14397,16,19906,22,jos34p +14397,16,19906,22,juflosolo +14397,16,19906,22,julibey +14397,16,19906,22,k_town +14397,16,19906,22,karrdedg +14397,16,19906,22,katfisch +14397,16,19906,22,kavispires +14397,16,19906,22,kazk +14397,16,19906,22,keating603 +14397,16,19906,22,kehl +14397,16,19906,22,kelsin +14397,16,19906,22,kerchoc +14397,16,19906,22,kioskbier +14397,16,19906,22,kitalb +14397,16,19906,22,kkrieger +14397,16,19906,22,koalalica +14397,16,19906,22,konrut +14397,16,19906,22,kotro +14397,16,19906,22,kpasaman +14397,16,19906,22,krikri +14397,16,19906,22,kwcham +14397,16,19906,22,lauz +14397,16,19906,22,letterchau +14397,16,19906,22,livinus +14397,16,19906,22,lmizutani +14397,16,19906,22,lordbukka +14397,16,19906,22,lufemanu +14397,16,19906,22,luish +14397,16,19906,22,lumiotso +14397,16,19906,22,lunacat +14397,16,19906,22,mabg +14397,16,19906,22,mad zombie +14397,16,19906,22,madamzzz +14397,16,19906,22,mafh +14397,16,19906,22,makamura +14397,16,19906,22,malenblack +14397,16,19906,22,mar777 +14397,16,19906,22,marc0fthebeast +14397,16,19906,22,mariotorrone +14397,16,19906,22,mark_bodnar +14397,16,19906,22,marpaj123 +14397,16,19906,22,matt62702 +14397,16,19906,22,meepleschubser +14397,16,19906,22,mega84 +14397,16,19906,22,mekko6 +14397,16,19906,22,mgoddard +14397,16,19906,22,mherms +14397,16,19906,22,mibel +14397,16,19906,22,mich4l +14397,16,19906,22,michaeln +14397,16,19906,22,michaldurovic52 +14397,16,19906,22,michelz +14397,16,19906,22,micpi +14397,16,19906,22,mightygeekpants +14397,16,19906,22,mihalis23 +14397,16,19906,22,mihra +14397,16,19906,22,mike2316 +14397,16,19906,22,miymmyo +14397,16,19906,22,mkultra +14397,16,19906,22,monkeydelaney +14397,16,19906,22,mooknee +14397,16,19906,22,moondog_norra +14397,16,19906,22,mopsmann +14397,16,19906,22,morrandir +14397,16,19906,22,mreddy +14397,16,19906,22,msparkyd +14397,16,19906,22,myndskrew +14397,16,19906,22,narthor +14397,16,19906,22,neanhim +14397,16,19906,22,necromancer666 +14397,16,19906,22,neildt +14397,16,19906,22,neser +14397,16,19906,22,netspawn +14397,16,19906,22,nevov +14397,16,19906,22,nickk88 +14397,16,19906,22,nikeaer +14397,16,19906,22,nikosmavros +14397,16,19906,22,noahrj +14397,16,19906,22,northstarny +14397,16,19906,22,notyourturn +14397,16,19906,22,nyenyec +14397,16,19906,22,okean +14397,16,19906,22,olav.mueller +14397,16,19906,22,one_ring +14397,16,19906,22,oninoyakamo +14397,16,19906,22,otek10 +14397,16,19906,22,otruji +14397,16,19906,22,ottto +14397,16,19906,22,p0pcult +14397,16,19906,22,panda9093 +14397,16,19906,22,paradox20 +14397,16,19906,22,paranoid lurker +14397,16,19906,22,pedro_colarum +14397,16,19906,22,pegi007 +14397,16,19906,22,pepe79 +14397,16,19906,22,pghpresbyterian +14397,16,19906,22,picoti +14397,16,19906,22,piehr +14397,16,19906,22,pjolmstead +14397,16,19906,22,pmeadows +14397,16,19906,22,porousnapkin +14397,16,19906,22,pschulman +14397,16,19906,22,pseudacris +14397,16,19906,22,psycho_inge +14397,16,19906,22,pyrytus +14397,16,19906,22,randast +14397,16,19906,22,rasam +14397,16,19906,22,rasniffy +14397,16,19906,22,regnad kcin +14397,16,19906,22,renza22 +14397,16,19906,22,rhonja +14397,16,19906,22,ringo84 +14397,16,19906,22,rlassu +14397,16,19906,22,rubens1515 +14397,16,19906,22,rufio +14397,16,19906,22,rusty1980 +14397,16,19906,22,rvelascor +14397,16,19906,22,sabatasmurf +14397,16,19906,22,sandro +14397,16,19906,22,scendert +14397,16,19906,22,schlawiner +14397,16,19906,22,schlotto +14397,16,19906,22,seattledan +14397,16,19906,22,selisegator +14397,16,19906,22,seppelelch +14397,16,19906,22,serse +14397,16,19906,22,shmonkey +14397,16,19906,22,silence83 +14397,16,19906,22,silverlove +14397,16,19906,22,skoll69 +14397,16,19906,22,sofge +14397,16,19906,22,sole79 +14397,16,19906,22,sorrowsend +14397,16,19906,22,sotetmessias +14397,16,19906,22,soydarah +14397,16,19906,22,spidersylar +14397,16,19906,22,spieleuli +14397,16,19906,22,sputnick77 +14397,16,19906,22,srkishy +14397,16,19906,22,steady +14397,16,19906,22,stegosaur +14397,16,19906,22,stoop76 +14397,16,19906,22,sunkencheerio +14397,16,19906,22,sunny9713 +14397,16,19906,22,supersight +14397,16,19906,22,swinkelp +14397,16,19906,22,sylverrat +14397,16,19906,22,tata_duende +14397,16,19906,22,taxers +14397,16,19906,22,tbookman +14397,16,19906,22,tbrollsoccer +14397,16,19906,22,thel +14397,16,19906,22,themightyfoxes +14397,16,19906,22,themis +14397,16,19906,22,thompjak +14397,16,19906,22,tim love +14397,16,19906,22,tim synge +14397,16,19906,22,tlrobrn +14397,16,19906,22,tmarizzle +14397,16,19906,22,tokameroke +14397,16,19906,22,tonypowell +14397,16,19906,22,torolu +14397,16,19906,22,tpancoast +14397,16,19906,22,trizz251 +14397,16,19906,22,tryggvib +14397,16,19906,22,turzin +14397,16,19906,22,tusketerwe +14397,16,19906,22,twinkeling +14397,16,19906,22,tylerdurden8 +14397,16,19906,22,unsweet_casey +14397,16,19906,22,urchin +14397,16,19906,22,urielrakarth +14397,16,19906,22,uriens1981 +14397,16,19906,22,ushijager +14397,16,19906,22,ussura +14397,16,19906,22,valsimot8645653 +14397,16,19906,22,vappor +14397,16,19906,22,vballboy51 +14397,16,19906,22,veganjay +14397,16,19906,22,versting +14397,16,19906,22,vhorvath +14397,16,19906,22,victorywt +14397,16,19906,22,vincentp +14397,16,19906,22,violet_iris +14397,16,19906,22,voxel59 +14397,16,19906,22,weirdojax +14397,16,19906,22,whiteandromeda +14397,16,19906,22,winchmatt3 +14397,16,19906,22,wizy +14397,16,19906,22,wps61 +14397,16,19906,22,wspier +14397,16,19906,22,wvusteel87 +14397,16,19906,22,xbino +14397,16,19906,22,yohz +14397,16,19906,22,yonostudio +14397,16,19906,22,zackdale +14397,16,19906,22,zanarax +14397,16,19906,22,zaphoduk +14397,16,19906,22,zaprowsdower8 +14397,16,19906,22,zautman +14397,16,19906,22,ze_stom +14397,16,19906,22,zhell +14397,16,19906,22,zodiac +14397,16,19906,22,zuurkool +14397,16,21713,21,aabouzeid +14397,16,21713,21,aahz339 +14397,16,21713,21,abruk +14397,16,21713,21,acemanbr +14397,16,21713,21,acutus +14397,16,21713,21,adeslovac +14397,16,21713,21,aharris88 +14397,16,21713,21,alexvodessa +14397,16,21713,21,almedinaramos +14397,16,21713,21,althreen +14397,16,21713,21,amireen +14397,16,21713,21,anakha88 +14397,16,21713,21,andreh76 +14397,16,21713,21,angryredhead +14397,16,21713,21,angrywarhol +14397,16,21713,21,apaneto28 +14397,16,21713,21,barndawg72 +14397,16,21713,21,bartjes +14397,16,21713,21,bbolch +14397,16,21713,21,bdec +14397,16,21713,21,bencsak +14397,16,21713,21,beorndog +14397,16,21713,21,bertrand pelissier +14397,16,21713,21,bill_gheyts +14397,16,21713,21,bjanze +14397,16,21713,21,bkelly17 +14397,16,21713,21,blackoth +14397,16,21713,21,blacksad +14397,16,21713,21,blouzbee +14397,16,21713,21,boomdagger +14397,16,21713,21,breakfastcore +14397,16,21713,21,brendanjthomson +14397,16,21713,21,brobinson +14397,16,21713,21,brokam +14397,16,21713,21,broslam +14397,16,21713,21,brother walach +14397,16,21713,21,brucew_o +14397,16,21713,21,budosbunko +14397,16,21713,21,bunnyoo +14397,16,21713,21,bwarner34 +14397,16,21713,21,cayeti +14397,16,21713,21,cboz27 +14397,16,21713,21,cchamp29 +14397,16,21713,21,cdbroyles +14397,16,21713,21,cdunn85 +14397,16,21713,21,chazfield +14397,16,21713,21,chbates +14397,16,21713,21,chesko7 +14397,16,21713,21,chopkins828 +14397,16,21713,21,choulacouette +14397,16,21713,21,chrisbrewer916 +14397,16,21713,21,cocomantix +14397,16,21713,21,corgan05 +14397,16,21713,21,cortezn +14397,16,21713,21,cowellm +14397,16,21713,21,crozzo +14397,16,21713,21,crucialplotpoint +14397,16,21713,21,cteague3 +14397,16,21713,21,cthulhu1 +14397,16,21713,21,cubesonamap +14397,16,21713,21,cybernaboo +14397,16,21713,21,daddy-o +14397,16,21713,21,daddys_home +14397,16,21713,21,dailylax35 +14397,16,21713,21,daniekj +14397,16,21713,21,dariuscanton +14397,16,21713,21,dcr619 +14397,16,21713,21,demosin +14397,16,21713,21,depressedmonk3y +14397,16,21713,21,dettonator11 +14397,16,21713,21,dimbus +14397,16,21713,21,dizzyl +14397,16,21713,21,donkeyjay +14397,16,21713,21,draxous +14397,16,21713,21,drcrow +14397,16,21713,21,dream_rpg +14397,16,21713,21,drm295 +14397,16,21713,21,dtrx +14397,16,21713,21,dukeeish +14397,16,21713,21,dunda +14397,16,21713,21,dutchmountains +14397,16,21713,21,dzianiskrauchuk +14397,16,21713,21,eddiebaby +14397,16,21713,21,el gordo +14397,16,21713,21,elkaintmoose +14397,16,21713,21,enzian1 +14397,16,21713,21,epiccowmaster +14397,16,21713,21,epitrapezios_greece +14397,16,21713,21,explodingsnail +14397,16,21713,21,eyeplayjust4fun +14397,16,21713,21,fabio +14397,16,21713,21,farydia +14397,16,21713,21,fredriq +14397,16,21713,21,fscb +14397,16,21713,21,fukuro +14397,16,21713,21,fynbo +14397,16,21713,21,gaddiel +14397,16,21713,21,gagundrio +14397,16,21713,21,galthran +14397,16,21713,21,gemaskerde muchacho +14397,16,21713,21,gern299 +14397,16,21713,21,gixguy +14397,16,21713,21,gringogamer +14397,16,21713,21,groinheart +14397,16,21713,21,guilou05 +14397,16,21713,21,haliga +14397,16,21713,21,heinousd +14397,16,21713,21,heirtopendragon +14397,16,21713,21,helvitismaddi +14397,16,21713,21,hitaltkey +14397,16,21713,21,hiteck30 +14397,16,21713,21,homemadehugmachine +14397,16,21713,21,hotrodjimmy +14397,16,21713,21,ico77 +14397,16,21713,21,instriker +14397,16,21713,21,iod12 +14397,16,21713,21,jallanson +14397,16,21713,21,jasonw567 +14397,16,21713,21,jaworkooo +14397,16,21713,21,jaysvice +14397,16,21713,21,jb1013x +14397,16,21713,21,jeanduart +14397,16,21713,21,jhcuatro +14397,16,21713,21,jhousen +14397,16,21713,21,jingowawa +14397,16,21713,21,jmr33090 +14397,16,21713,21,joestin +14397,16,21713,21,johnny808 +14397,16,21713,21,johnnyg007 +14397,16,21713,21,jonniv +14397,16,21713,21,joshuapfulton +14397,16,21713,21,jphonek +14397,16,21713,21,juicedkoala +14397,16,21713,21,justinscheffers +14397,16,21713,21,kaigrass +14397,16,21713,21,kcnabrev +14397,16,21713,21,keiths001 +14397,16,21713,21,kestril +14397,16,21713,21,khuba +14397,16,21713,21,kingmob +14397,16,21713,21,knuffi1964 +14397,16,21713,21,ktweezy13 +14397,16,21713,21,lasertravis +14397,16,21713,21,lazarushan +14397,16,21713,21,leadera +14397,16,21713,21,lescarp2 +14397,16,21713,21,lezerp +14397,16,21713,21,linneascabal +14397,16,21713,21,locou +14397,16,21713,21,lolo_phoenix +14397,16,21713,21,lotheg +14397,16,21713,21,lttlkng +14397,16,21713,21,lucamilion +14397,16,21713,21,luckystina +14397,16,21713,21,macomgaine +14397,16,21713,21,maffe tante +14397,16,21713,21,magmarti +14397,16,21713,21,magole +14397,16,21713,21,majbrown22 +14397,16,21713,21,malarkey +14397,16,21713,21,mannym +14397,16,21713,21,marevin +14397,16,21713,21,markussamuel +14397,16,21713,21,martinsun +14397,16,21713,21,mattyoung27 +14397,16,21713,21,maytepam +14397,16,21713,21,mdluigi +14397,16,21713,21,meeplelover +14397,16,21713,21,microstat +14397,16,21713,21,miiru +14397,16,21713,21,minic00p +14397,16,21713,21,moby +14397,16,21713,21,monskers +14397,16,21713,21,morganza +14397,16,21713,21,mrinlumino +14397,16,21713,21,mrmerlin +14397,16,21713,21,mrtremblay +14397,16,21713,21,nategohome +14397,16,21713,21,nestoridae +14397,16,21713,21,nikolaskar +14397,16,21713,21,nomesr +14397,16,21713,21,notclive +14397,16,21713,21,nynaevealmeara +14397,16,21713,21,orlam +14397,16,21713,21,orophin +14397,16,21713,21,pakanrakentaja +14397,16,21713,21,palkotoxin +14397,16,21713,21,pecellosi +14397,16,21713,21,peteyandycreek +14397,16,21713,21,ping9x +14397,16,21713,21,pixeldrake +14397,16,21713,21,ploucas +14397,16,21713,21,pmiles +14397,16,21713,21,propane train +14397,16,21713,21,puseyad +14397,16,21713,21,pyduc +14397,16,21713,21,rajungamer +14397,16,21713,21,raquelps +14397,16,21713,21,raynie123 +14397,16,21713,21,razer05 +14397,16,21713,21,redarmyian +14397,16,21713,21,retainerbox +14397,16,21713,21,revragnarok +14397,16,21713,21,rhopkins +14397,16,21713,21,rjsamson +14397,16,21713,21,rkblake +14397,16,21713,21,rlux202 +14397,16,21713,21,rmasta +14397,16,21713,21,robbyo +14397,16,21713,21,rothro +14397,16,21713,21,ruminator +14397,16,21713,21,sagittariusastar +14397,16,21713,21,sakal +14397,16,21713,21,sapoljackson +14397,16,21713,21,saxophone +14397,16,21713,21,sbehnke +14397,16,21713,21,scotthk +14397,16,21713,21,seby19 +14397,16,21713,21,seckind +14397,16,21713,21,seisguy +14397,16,21713,21,serranito_deluxe +14397,16,21713,21,silverhawkminiatures +14397,16,21713,21,sir_ramirez +14397,16,21713,21,skytostar +14397,16,21713,21,slavrut +14397,16,21713,21,smurfmans +14397,16,21713,21,snipercatz +14397,16,21713,21,somefatkid +14397,16,21713,21,sorlin +14397,16,21713,21,spinacci +14397,16,21713,21,spukky +14397,16,21713,21,squidguru +14397,16,21713,21,subitamente +14397,16,21713,21,sungod +14397,16,21713,21,surlyduff +14397,16,21713,21,szymonjot +14397,16,21713,21,tdenaranja +14397,16,21713,21,tengubis +14397,16,21713,21,the grey pilgrim +14397,16,21713,21,thedarkharvest +14397,16,21713,21,thenfg182line +14397,16,21713,21,thinkingthatsall +14397,16,21713,21,thoozee +14397,16,21713,21,tigga +14397,16,21713,21,tomasgudm +14397,16,21713,21,tombot +14397,16,21713,21,tomcat0 +14397,16,21713,21,travelrisk +14397,16,21713,21,ttallan +14397,16,21713,21,ungolyant +14397,16,21713,21,urhixidur +14397,16,21713,21,v3rt1g0 +14397,16,21713,21,valdoonican +14397,16,21713,21,veemonroe +14397,16,21713,21,ventisca +14397,16,21713,21,vickytick +14397,16,21713,21,vise +14397,16,21713,21,wacii +14397,16,21713,21,wittyreaderli +14397,16,21713,21,x3dclick +14397,16,21713,21,xtrovurt +14397,16,21713,21,yomiyomi +14397,16,21713,21,zenbananaslug +14397,16,21713,21,ziph4 +14397,16,21713,21,zipsforbananas +14397,16,23640,20,2lip +14397,16,23640,20,acc13 +14397,16,23640,20,alamb1101 +14397,16,23640,20,albamk +14397,16,23640,20,alex_lobo +14397,16,23640,20,alexvil +14397,16,23640,20,altoman +14397,16,23640,20,anaman +14397,16,23640,20,andrewsl +14397,16,23640,20,android +14397,16,23640,20,andyleggett88 +14397,16,23640,20,angrom +14397,16,23640,20,arthuriy +14397,16,23640,20,b3uh +14397,16,23640,20,bayden +14397,16,23640,20,bbilsen +14397,16,23640,20,bezidejni +14397,16,23640,20,bigleaguecreative +14397,16,23640,20,bioleta +14397,16,23640,20,blingmygames +14397,16,23640,20,bradeliss +14397,16,23640,20,captainlavender +14397,16,23640,20,carrot1983 +14397,16,23640,20,castlevanio +14397,16,23640,20,cherey +14397,16,23640,20,chimona +14397,16,23640,20,chowdah +14397,16,23640,20,cloud9lcs +14397,16,23640,20,coraval +14397,16,23640,20,coudloc +14397,16,23640,20,dancaix +14397,16,23640,20,dexter19 +14397,16,23640,20,dimpel +14397,16,23640,20,dkopff +14397,16,23640,20,efoxtrot +14397,16,23640,20,elggun +14397,16,23640,20,eneida5 +14397,16,23640,20,engdy +14397,16,23640,20,fargow +14397,16,23640,20,fiftycentpoker +14397,16,23640,20,foppe +14397,16,23640,20,fred ink +14397,16,23640,20,fredtilley89 +14397,16,23640,20,fremako +14397,16,23640,20,friedb73 +14397,16,23640,20,futza +14397,16,23640,20,gen0 +14397,16,23640,20,gf1954 +14397,16,23640,20,glebg +14397,16,23640,20,gramps +14397,16,23640,20,gtothevo +14397,16,23640,20,h2201430 +14397,16,23640,20,happyminion +14397,16,23640,20,hervotonheny +14397,16,23640,20,highexodus +14397,16,23640,20,hipsterweasel +14397,16,23640,20,hodarispiele +14397,16,23640,20,hojusimpson +14397,16,23640,20,iadena +14397,16,23640,20,ichi87 +14397,16,23640,20,inginheiro +14397,16,23640,20,itsalebeau +14397,16,23640,20,janglemangle +14397,16,23640,20,jazztaco +14397,16,23640,20,jcdisciple +14397,16,23640,20,jdholt10 +14397,16,23640,20,jdpeters +14397,16,23640,20,jefat +14397,16,23640,20,jeremyvs +14397,16,23640,20,jfr1975 +14397,16,23640,20,jmp80 +14397,16,23640,20,johanesyamakawa +14397,16,23640,20,jon solo +14397,16,23640,20,jonny_lenny +14397,16,23640,20,jorgefmteixeira +14397,16,23640,20,judit420 +14397,16,23640,20,keith zman +14397,16,23640,20,kevmann +14397,16,23640,20,kf972 +14397,16,23640,20,kguerin287 +14397,16,23640,20,kollieme +14397,16,23640,20,kreiva +14397,16,23640,20,krsnaji +14397,16,23640,20,kurtw94 +14397,16,23640,20,lafo80 +14397,16,23640,20,laloutre87 +14397,16,23640,20,lamesarectangular +14397,16,23640,20,lermi +14397,16,23640,20,lipro +14397,16,23640,20,lobonoir +14397,16,23640,20,lollypop917 +14397,16,23640,20,lsnate +14397,16,23640,20,lucie0406 +14397,16,23640,20,madvogel +14397,16,23640,20,manelosky1984 +14397,16,23640,20,markbr +14397,16,23640,20,martynf +14397,16,23640,20,matthew bower +14397,16,23640,20,mauritzvddorf +14397,16,23640,20,mhor +14397,16,23640,20,micbuc +14397,16,23640,20,milo6006 +14397,16,23640,20,mmolinam +14397,16,23640,20,mojo70 +14397,16,23640,20,mowlinn +14397,16,23640,20,mryanbarber +14397,16,23640,20,msorio +14397,16,23640,20,mthdsrfr +14397,16,23640,20,muchobueno +14397,16,23640,20,namtabmi +14397,16,23640,20,nikyblack +14397,16,23640,20,ninokid +14397,16,23640,20,nintengotte +14397,16,23640,20,paddycasy +14397,16,23640,20,painkiller35 +14397,16,23640,20,phaedrock +14397,16,23640,20,pjstadig +14397,16,23640,20,plumpythimble +14397,16,23640,20,pompadour74 +14397,16,23640,20,professor plum +14397,16,23640,20,quaseymoto +14397,16,23640,20,ramenramon +14397,16,23640,20,rascozion +14397,16,23640,20,rawhideronan +14397,16,23640,20,rawinn +14397,16,23640,20,rednax +14397,16,23640,20,rherna39 +14397,16,23640,20,richard m +14397,16,23640,20,riddhish +14397,16,23640,20,rillaith +14397,16,23640,20,robairreg +14397,16,23640,20,rogerramjet3361 +14397,16,23640,20,schilma1 +14397,16,23640,20,sebastianzim +14397,16,23640,20,seeuw +14397,16,23640,20,senefelder +14397,16,23640,20,shadowrogue75 +14397,16,23640,20,sheldbarn +14397,16,23640,20,shikokuinu +14397,16,23640,20,sickpriest +14397,16,23640,20,sirloup +14397,16,23640,20,slagamander +14397,16,23640,20,sloop john v +14397,16,23640,20,slp2dream +14397,16,23640,20,stealman +14397,16,23640,20,steinbb +14397,16,23640,20,stormy_dog +14397,16,23640,20,t3rm1n4t0r +14397,16,23640,20,tarzanaw +14397,16,23640,20,teemutra +14397,16,23640,20,tengelic +14397,16,23640,20,termynus +14397,16,23640,20,theschaitel +14397,16,23640,20,tinman41 +14397,16,23640,20,tops2 +14397,16,23640,20,transmuter +14397,16,23640,20,trojandan +14397,16,23640,20,tsnake57 +14397,16,23640,20,tunn300 +14397,16,23640,20,valkien82 +14397,16,23640,20,vamrich +14397,16,23640,20,vicam76 +14397,16,23640,20,vladnov +14397,16,23640,20,wabner +14397,16,23640,20,woohoo1 +14397,16,23640,20,yanathema +14397,16,23640,20,yolace +14397,16,23640,20,zeusofarc +14397,16,23640,20,zhym +14397,16,23640,20,zielous +14397,16,23640,20,zorri +14397,16,23640,20,zottirgen +14397,16,25880,19,acousticfan +14397,16,25880,19,adamtattoo +14397,16,25880,19,akdhul +14397,16,25880,19,alquerque +14397,16,25880,19,azuler +14397,16,25880,19,baguety +14397,16,25880,19,bgfreakdag2pt +14397,16,25880,19,bhodili7 +14397,16,25880,19,blurryguy +14397,16,25880,19,bpeace +14397,16,25880,19,bwanajs +14397,16,25880,19,cainayato +14397,16,25880,19,cwmassey +14397,16,25880,19,dainharper +14397,16,25880,19,darthoneill715 +14397,16,25880,19,dghughes +14397,16,25880,19,dsvejda +14397,16,25880,19,dvsergio +14397,16,25880,19,efecka +14397,16,25880,19,egwene15 +14397,16,25880,19,erthule +14397,16,25880,19,fera_nemora +14397,16,25880,19,frota +14397,16,25880,19,gangsterbach +14397,16,25880,19,goblinauctioneer +14397,16,25880,19,harlandas +14397,16,25880,19,hilariousdwarf +14397,16,25880,19,izajsek +14397,16,25880,19,jamessinden +14397,16,25880,19,jeffreyerikson +14397,16,25880,19,jesse terrell +14397,16,25880,19,jrec +14397,16,25880,19,kalidor +14397,16,25880,19,komirowsky +14397,16,25880,19,lefrom +14397,16,25880,19,ludwig seitz +14397,16,25880,19,migmeister +14397,16,25880,19,oridyne +14397,16,25880,19,pigeon34 +14397,16,25880,19,plang42 +14397,16,25880,19,purpleapplejuice +14397,16,25880,19,ra_god +14397,16,25880,19,reo77 +14397,16,25880,19,revolutionchinese +14397,16,25880,19,rragsnaff +14397,16,25880,19,screaming silence +14397,16,25880,19,sirius91 +14397,16,25880,19,sonjademan +14397,16,25880,19,superabobo +14397,16,25880,19,sxrxnrr +14397,16,25880,19,t0n3 +14397,16,25880,19,tburklin +14397,16,25880,19,thirdspaced +14397,16,25880,19,tv0r +14397,16,25880,19,uzieblo +14397,16,25880,19,venent +14397,16,25880,19,vincelnx +14397,16,25880,19,vincentblack +14397,16,25880,19,wings fan +14397,16,25880,19,woodwinder99 +14397,16,28174,18,balrogas +14397,16,28174,18,borodine +14397,16,28174,18,dryicebomb +14397,16,28174,18,jaaraakki +14397,16,28174,18,jasonc213 +14397,16,28174,18,mountainboardgamer +14397,16,28174,18,nephiw +14397,16,28174,18,oasisflyer +14397,16,28174,18,paedolos +14397,16,28174,18,rclyburn +14397,16,28174,18,redprince +14397,16,28174,18,ruedi05 +14397,16,28174,18,shingalana1 +14397,16,28174,18,urnaim +14397,16,30791,17,dilnok +14397,16,30791,17,drednya +14397,16,30791,17,schiavonir +16898,15,6,232,gsr165 +16898,15,37,141,deemoding +16898,15,155,95,grognard1914 +16898,15,170,93,houserules +16898,15,180,92,sawhat +16898,15,298,81,artforger +16898,15,298,81,myrmidion +16898,15,438,74,mennodio +16898,15,741,65,vanya_deveraux +16898,15,843,63,claesar_ +16898,15,843,63,razzmonid +16898,15,1034,60,mike george +16898,15,1034,60,readyplayer4 +16898,15,1109,59,izyumoff +16898,15,1202,58,vetochka +16898,15,1362,56,brasov +16898,15,1362,56,rjan55 +16898,15,1674,53,martinstever +16898,15,1792,52,gabrieleud +16898,15,1792,52,richard holster +16898,15,2204,49,cosmosiskwik +16898,15,2204,49,dmitry pazyuk +16898,15,2204,49,mavs fan +16898,15,2351,48,gr33kdude +16898,15,2555,47,ardexx +16898,15,2555,47,danieljs +16898,15,2758,46,beholder00 +16898,15,2758,46,billykabob +16898,15,2969,45,derbiederbie +16898,15,2969,45,nicholasiii +16898,15,2969,45,sinamil +16898,15,2969,45,tylorlilley +16898,15,3216,44,grimble grumble +16898,15,3216,44,ufemism +16898,15,3514,43,kobrien29 +16898,15,3514,43,nicnied +16898,15,3514,43,white elk +16898,15,3815,42,aubrix +16898,15,3815,42,marnid25 +16898,15,3815,42,xameleona +16898,15,4092,41,bethesthel +16898,15,4092,41,dsavard +16898,15,4092,41,glmiranda +16898,15,4092,41,rammstein69 +16898,15,4092,41,sirtakedown +16898,15,4092,41,thomasdv +16898,15,4426,40,larrybcn +16898,15,4426,40,lupetto +16898,15,4426,40,marcusround +16898,15,4426,40,morti +16898,15,4426,40,no_problem +16898,15,4426,40,phydoe +16898,15,4426,40,pierce +16898,15,4426,40,ridgerule +16898,15,4426,40,seattlegrognard +16898,15,4426,40,usul68 +16898,15,4426,40,valarus +16898,15,4782,39,danath +16898,15,4782,39,michlod +16898,15,4782,39,nosoup4you +16898,15,4782,39,rentry +16898,15,4782,39,rzorn +16898,15,4782,39,shelberman +16898,15,5150,38,alexisgambara +16898,15,5150,38,andrew71cs +16898,15,5150,38,anovac +16898,15,5150,38,armies +16898,15,5150,38,calidoggg +16898,15,5150,38,cheryck +16898,15,5150,38,chucky_mm +16898,15,5150,38,fjordek +16898,15,5150,38,jlwaz +16898,15,5150,38,kommandant krey +16898,15,5150,38,lonjho +16898,15,5150,38,smoothrocker +16898,15,5150,38,twoeye +16898,15,5624,37,4wallz +16898,15,5624,37,assariel +16898,15,5624,37,bartlett82 +16898,15,5624,37,beeckamm +16898,15,5624,37,limburger59 +16898,15,5624,37,minervatabletop +16898,15,5624,37,nightcrawler79 +16898,15,5624,37,stabagail +16898,15,5624,37,stephenfurmanek +16898,15,5624,37,teepapu +16898,15,5624,37,thescando +16898,15,6063,36,aupasofia +16898,15,6063,36,barmala7 +16898,15,6063,36,eggmanaa +16898,15,6063,36,embrion +16898,15,6063,36,jonah pak +16898,15,6063,36,lbathayde +16898,15,6063,36,ravilz +16898,15,6063,36,remcohaarlem +16898,15,6063,36,robaczyw +16898,15,6063,36,rslecuyer +16898,15,6063,36,sedafoudre +16898,15,6063,36,snapdensing +16898,15,6573,35,agentmeat +16898,15,6573,35,amiral +16898,15,6573,35,ayrton12 +16898,15,6573,35,bigboo +16898,15,6573,35,boko18 +16898,15,6573,35,carnophage35 +16898,15,6573,35,cdextrous +16898,15,6573,35,fletchdizzle +16898,15,6573,35,kraw +16898,15,6573,35,m1tanker +16898,15,6573,35,munever211 +16898,15,6573,35,skeeterpmart +16898,15,6573,35,teaf +16898,15,6573,35,theoldforrest +16898,15,6573,35,tungsten_dioxide +16898,15,7100,34,andivi87 +16898,15,7100,34,andygcpp +16898,15,7100,34,confessor +16898,15,7100,34,geofffs +16898,15,7100,34,guzmo +16898,15,7100,34,hiru +16898,15,7100,34,playbosco +16898,15,7100,34,poeticallybored +16898,15,7100,34,pongboy84 +16898,15,7100,34,smithy +16898,15,7100,34,tiberiusdw +16898,15,7100,34,vantagegt +16898,15,7679,33,adx74 +16898,15,7679,33,csombesz2 +16898,15,7679,33,dbogdanov +16898,15,7679,33,goyens +16898,15,7679,33,heftone +16898,15,7679,33,hiei_rey +16898,15,7679,33,huginandmunin +16898,15,7679,33,invalidusername +16898,15,7679,33,jorfour +16898,15,7679,33,juanmijaen +16898,15,7679,33,mtharp61 +16898,15,7679,33,pblindauer +16898,15,7679,33,peter mccarthy +16898,15,7679,33,renden01 +16898,15,7679,33,seangladding +16898,15,7679,33,smors +16898,15,7679,33,spooksthehorse +16898,15,7679,33,stevenwei +16898,15,7679,33,sumobobfrisco +16898,15,7679,33,teddyjrtan +16898,15,7679,33,thorgal76 +16898,15,7679,33,toneetales +16898,15,7679,33,tybaltgray +16898,15,7679,33,unlimitedpower +16898,15,7679,33,woongy +16898,15,8351,32,arranf +16898,15,8351,32,ayoung72 +16898,15,8351,32,billsimoni +16898,15,8351,32,billtje +16898,15,8351,32,brotherendeavour +16898,15,8351,32,c08mk +16898,15,8351,32,cheryllion +16898,15,8351,32,chikitomvp +16898,15,8351,32,chris manning +16898,15,8351,32,derkyderk +16898,15,8351,32,flanderb +16898,15,8351,32,forcefalcon77 +16898,15,8351,32,gabexorn +16898,15,8351,32,grrblarg +16898,15,8351,32,hopped +16898,15,8351,32,ironlegacy77 +16898,15,8351,32,jaax +16898,15,8351,32,jamcrmm +16898,15,8351,32,jasoncarlough +16898,15,8351,32,jll57 +16898,15,8351,32,knusperbaer +16898,15,8351,32,lorndiril +16898,15,8351,32,louise54 +16898,15,8351,32,magehammer +16898,15,8351,32,mark.watson +16898,15,8351,32,milomilo122 +16898,15,8351,32,randumtoon +16898,15,8351,32,riodill +16898,15,8351,32,s3chaos +16898,15,8351,32,sajuro +16898,15,8351,32,schnapp +16898,15,8351,32,seraphael +16898,15,8351,32,son of frankenstein +16898,15,8351,32,terjul +16898,15,8351,32,theinformedgut +16898,15,8351,32,threshold +16898,15,8351,32,trevorjpearson +16898,15,8351,32,whizkid +16898,15,8351,32,wytebear358 +16898,15,8351,32,ziomalek78 +16898,15,9086,31,aingeru +16898,15,9086,31,bernhard vierthaler +16898,15,9086,31,caladran +16898,15,9086,31,choadwolf +16898,15,9086,31,clintjackson101 +16898,15,9086,31,da l0c +16898,15,9086,31,da senzai +16898,15,9086,31,darkscratchy +16898,15,9086,31,giannisoad +16898,15,9086,31,hawaiianmint +16898,15,9086,31,inari44 +16898,15,9086,31,istyar +16898,15,9086,31,jordan3491 +16898,15,9086,31,kayne +16898,15,9086,31,kpackard +16898,15,9086,31,mere64 +16898,15,9086,31,mowri +16898,15,9086,31,mr_gauss +16898,15,9086,31,n3ddy +16898,15,9086,31,neengash +16898,15,9086,31,neyito +16898,15,9086,31,pontior +16898,15,9086,31,quincyc +16898,15,9086,31,rdhan +16898,15,9086,31,rogerkrk +16898,15,9086,31,rulesjd +16898,15,9086,31,sbd2hug +16898,15,9086,31,truizlop +16898,15,9086,31,wdgrant +16898,15,9910,30,ace anno +16898,15,9910,30,alexgettup +16898,15,9910,30,anakha1907 +16898,15,9910,30,angel40k +16898,15,9910,30,asturia +16898,15,9910,30,brudmike7 +16898,15,9910,30,calvoroso +16898,15,9910,30,chechuvr +16898,15,9910,30,chris_mcguckin +16898,15,9910,30,crimsonfox +16898,15,9910,30,cwj2102 +16898,15,9910,30,darkredwyrmling +16898,15,9910,30,divada +16898,15,9910,30,drea1785 +16898,15,9910,30,gizmo3133 +16898,15,9910,30,hakamaro +16898,15,9910,30,heimdallr75 +16898,15,9910,30,ivanch +16898,15,9910,30,jespen +16898,15,9910,30,jester6641 +16898,15,9910,30,judaus +16898,15,9910,30,kaermo +16898,15,9910,30,knoel +16898,15,9910,30,larva_the_shinma +16898,15,9910,30,malagon +16898,15,9910,30,marcelopt +16898,15,9910,30,montipithon +16898,15,9910,30,moviglez +16898,15,9910,30,mulhacen +16898,15,9910,30,murdoc2d96 +16898,15,9910,30,oimamalion +16898,15,9910,30,pacemaker67 +16898,15,9910,30,paristb +16898,15,9910,30,pennysue +16898,15,9910,30,piet wenings +16898,15,9910,30,r3gamer +16898,15,9910,30,razanae +16898,15,9910,30,redfive +16898,15,9910,30,rven +16898,15,9910,30,schylling +16898,15,9910,30,sgor +16898,15,9910,30,sydanta +16898,15,9910,30,the roadkill +16898,15,9910,30,thunderbluss +16898,15,9910,30,thundergoat +16898,15,9910,30,tibbel +16898,15,9910,30,tigertailz +16898,15,9910,30,tniris +16898,15,9910,30,traininthedistance +16898,15,9910,30,walrii +16898,15,9910,30,wolfterry +16898,15,10868,29,akh21 +16898,15,10868,29,albert threepwood +16898,15,10868,29,anucha_darkangel +16898,15,10868,29,archibaldo +16898,15,10868,29,bauerpower1998 +16898,15,10868,29,bertmat +16898,15,10868,29,bitatmoonl +16898,15,10868,29,capnfore +16898,15,10868,29,carlossqs +16898,15,10868,29,darrenhunt +16898,15,10868,29,darthquigon +16898,15,10868,29,dinomasterfrance +16898,15,10868,29,dmsherrill +16898,15,10868,29,el_chuncho +16898,15,10868,29,enderrevan +16898,15,10868,29,flutter_elle +16898,15,10868,29,geckoglow +16898,15,10868,29,goncrisdi +16898,15,10868,29,guilleyeuge +16898,15,10868,29,hegelbj +16898,15,10868,29,ironhawk +16898,15,10868,29,jasoncarlsonmocny +16898,15,10868,29,jessfrogger88 +16898,15,10868,29,josan88 +16898,15,10868,29,jredd +16898,15,10868,29,jvidal +16898,15,10868,29,kevruth +16898,15,10868,29,lesheep +16898,15,10868,29,lifer4700 +16898,15,10868,29,machia +16898,15,10868,29,martavp91 +16898,15,10868,29,palurien +16898,15,10868,29,pespinogomez +16898,15,10868,29,poldi +16898,15,10868,29,princemousey +16898,15,10868,29,prosperus +16898,15,10868,29,samgeorgemoore +16898,15,10868,29,samthere +16898,15,10868,29,sanro +16898,15,10868,29,sergijaraiz +16898,15,10868,29,shroomie +16898,15,10868,29,socrates1 +16898,15,10868,29,solkarhaneri +16898,15,10868,29,sonlumpy +16898,15,10868,29,spink10 +16898,15,10868,29,stuhemmings +16898,15,10868,29,stvstein +16898,15,10868,29,suniviadal +16898,15,10868,29,szewster +16898,15,10868,29,tiagotempera +16898,15,10868,29,tofuji +16898,15,10868,29,tonantzin +16898,15,10868,29,trenttopolis +16898,15,10868,29,vislanders +16898,15,10868,29,white knight +16898,15,10868,29,worshipgeek +16898,15,10868,29,wyatt bogan +16898,15,11831,28,91mephisto +16898,15,11831,28,alex_andrew +16898,15,11831,28,alexander_stolnikov +16898,15,11831,28,andadam +16898,15,11831,28,andris0321 +16898,15,11831,28,bakersdozenth +16898,15,11831,28,baron_von_hansen +16898,15,11831,28,bigb0420 +16898,15,11831,28,billjazzer +16898,15,11831,28,bpierce72 +16898,15,11831,28,brdparker +16898,15,11831,28,bruno rocha +16898,15,11831,28,capucine25 +16898,15,11831,28,carlton +16898,15,11831,28,chillusmaximus +16898,15,11831,28,coolloony123 +16898,15,11831,28,crazykoper +16898,15,11831,28,darius van duyn +16898,15,11831,28,deej1115 +16898,15,11831,28,dgerm36 +16898,15,11831,28,diebfaenger +16898,15,11831,28,dsbetula +16898,15,11831,28,fbird18 +16898,15,11831,28,fopa +16898,15,11831,28,gellide +16898,15,11831,28,gen13 +16898,15,11831,28,glax +16898,15,11831,28,hedisch +16898,15,11831,28,hiswill98 +16898,15,11831,28,josefferrer +16898,15,11831,28,js1729 +16898,15,11831,28,jwlahn +16898,15,11831,28,kanyipi +16898,15,11831,28,kentmonkey +16898,15,11831,28,majo2193 +16898,15,11831,28,marduk360 +16898,15,11831,28,mikevad +16898,15,11831,28,moondraco +16898,15,11831,28,morhaljen +16898,15,11831,28,mynameispaul +16898,15,11831,28,namdh0809 +16898,15,11831,28,nemobil +16898,15,11831,28,nickfortin +16898,15,11831,28,orckimedes +16898,15,11831,28,pablitocg +16898,15,11831,28,pacific1derland +16898,15,11831,28,pallidbat +16898,15,11831,28,portcrash +16898,15,11831,28,puppybrat +16898,15,11831,28,qaima +16898,15,11831,28,rainhair +16898,15,11831,28,ramis +16898,15,11831,28,roguejedi234 +16898,15,11831,28,sagar +16898,15,11831,28,skayne +16898,15,11831,28,ss brewcrew +16898,15,11831,28,tirelli +16898,15,11831,28,torbenc +16898,15,11831,28,viehmagnat +16898,15,11831,28,vishnianini +16898,15,11831,28,whitehouse982002 +16898,15,11831,28,xachan +16898,15,11831,28,yooric +16898,15,11831,28,zorander +16898,15,12910,27,agltbialik +16898,15,12910,27,aimless +16898,15,12910,27,akuba +16898,15,12910,27,alan stern +16898,15,12910,27,ama deus +16898,15,12910,27,amusedleg +16898,15,12910,27,androgeus +16898,15,12910,27,angelochek +16898,15,12910,27,apando +16898,15,12910,27,atanner12 +16898,15,12910,27,beanoxbates +16898,15,12910,27,blackfold12 +16898,15,12910,27,blackhawk9 +16898,15,12910,27,carbas +16898,15,12910,27,cardboardtime +16898,15,12910,27,carja +16898,15,12910,27,carson_mccullers +16898,15,12910,27,cbucher +16898,15,12910,27,coyote13 +16898,15,12910,27,crashprime +16898,15,12910,27,cyberholmes +16898,15,12910,27,danchi +16898,15,12910,27,deeken +16898,15,12910,27,devinvm +16898,15,12910,27,drsmashty +16898,15,12910,27,elektropg +16898,15,12910,27,empedocle +16898,15,12910,27,esquilo80br +16898,15,12910,27,exetergeek +16898,15,12910,27,fabs +16898,15,12910,27,fidasek +16898,15,12910,27,ftanjuatco +16898,15,12910,27,funkenstein +16898,15,12910,27,galdor83 +16898,15,12910,27,gamermommom +16898,15,12910,27,gingerconspiracy +16898,15,12910,27,graz86 +16898,15,12910,27,hclerx +16898,15,12910,27,hobermallow +16898,15,12910,27,houdinimaster11 +16898,15,12910,27,hphwnz +16898,15,12910,27,iandstewart +16898,15,12910,27,jamael +16898,15,12910,27,jcm211 +16898,15,12910,27,jellyfishbish +16898,15,12910,27,jess13 +16898,15,12910,27,joetee +16898,15,12910,27,kamikaze123 +16898,15,12910,27,kellogs510 +16898,15,12910,27,luiszacatum +16898,15,12910,27,makota002 +16898,15,12910,27,mbfrancesc +16898,15,12910,27,mdelisio +16898,15,12910,27,mdmccu2 +16898,15,12910,27,merlin08 +16898,15,12910,27,metttyu +16898,15,12910,27,mgraphman +16898,15,12910,27,mjtarry +16898,15,12910,27,myloor +16898,15,12910,27,nighthawk +16898,15,12910,27,otnira +16898,15,12910,27,paraplus +16898,15,12910,27,passif +16898,15,12910,27,pnovell +16898,15,12910,27,powlich +16898,15,12910,27,raydash +16898,15,12910,27,redeemedegg +16898,15,12910,27,renzovincenti +16898,15,12910,27,scfishman +16898,15,12910,27,sdobby +16898,15,12910,27,silvergoose +16898,15,12910,27,sinedd +16898,15,12910,27,snowonacactus +16898,15,12910,27,solaulo +16898,15,12910,27,soldadinho +16898,15,12910,27,solrax +16898,15,12910,27,squishylink +16898,15,12910,27,swyrlyn +16898,15,12910,27,synapticacid +16898,15,12910,27,thebeesknees +16898,15,12910,27,thedeadaremany +16898,15,12910,27,thomasklm +16898,15,12910,27,wyrminarrd +16898,15,12910,27,xcnapo +16898,15,12910,27,xfortner +16898,15,14030,26,abby_etz +16898,15,14030,26,abstone +16898,15,14030,26,aelentyr +16898,15,14030,26,aldenbell +16898,15,14030,26,alestagna +16898,15,14030,26,annihalus +16898,15,14030,26,anothnio +16898,15,14030,26,artvandelay71 +16898,15,14030,26,belugas +16898,15,14030,26,bertmccloud +16898,15,14030,26,bethemey +16898,15,14030,26,billy_whizz +16898,15,14030,26,bittakos +16898,15,14030,26,bmf0 +16898,15,14030,26,boardgameshiker +16898,15,14030,26,bob utrecht +16898,15,14030,26,boneroller +16898,15,14030,26,boothestar +16898,15,14030,26,brian_sulak +16898,15,14030,26,cabelly +16898,15,14030,26,cardboardjunkie +16898,15,14030,26,celadorn +16898,15,14030,26,celebros +16898,15,14030,26,cire76 +16898,15,14030,26,codenaga +16898,15,14030,26,cyborgosaur +16898,15,14030,26,cypherx +16898,15,14030,26,dalrik +16898,15,14030,26,darthhugo +16898,15,14030,26,djfooboo +16898,15,14030,26,dokmatrix +16898,15,14030,26,dragonshiq +16898,15,14030,26,drowsydoc +16898,15,14030,26,drulive99 +16898,15,14030,26,dukedavius +16898,15,14030,26,earlgreyrene +16898,15,14030,26,eblis37 +16898,15,14030,26,edandme +16898,15,14030,26,edknam +16898,15,14030,26,el duderino1980 +16898,15,14030,26,erichallett +16898,15,14030,26,eslepak +16898,15,14030,26,fllicker +16898,15,14030,26,frode76 +16898,15,14030,26,gava1n +16898,15,14030,26,gberggeit +16898,15,14030,26,gi0ny +16898,15,14030,26,grape ape +16898,15,14030,26,gregski +16898,15,14030,26,grif66642 +16898,15,14030,26,grizzlynl +16898,15,14030,26,gurnball +16898,15,14030,26,gvdwest +16898,15,14030,26,haggerty1 +16898,15,14030,26,haightenator +16898,15,14030,26,hyperionecta +16898,15,14030,26,ivankazakov +16898,15,14030,26,janhweber +16898,15,14030,26,jensoldenburg +16898,15,14030,26,jerryfriend +16898,15,14030,26,jerrysclix +16898,15,14030,26,jgmorgan +16898,15,14030,26,jmhexi +16898,15,14030,26,jmories +16898,15,14030,26,johnny5 +16898,15,14030,26,js500 +16898,15,14030,26,jschiewe +16898,15,14030,26,jsnell +16898,15,14030,26,justcallmered +16898,15,14030,26,kamil018 +16898,15,14030,26,kenwang42 +16898,15,14030,26,krazsaiko +16898,15,14030,26,krizzz +16898,15,14030,26,lespaul0816 +16898,15,14030,26,lordwade +16898,15,14030,26,loswochos +16898,15,14030,26,lscrock +16898,15,14030,26,majornet +16898,15,14030,26,master_luke +16898,15,14030,26,maxp1977 +16898,15,14030,26,mbphm +16898,15,14030,26,medunek +16898,15,14030,26,meeplestar +16898,15,14030,26,michaeljb +16898,15,14030,26,mini_lauren +16898,15,14030,26,mmazala +16898,15,14030,26,mobilecad +16898,15,14030,26,molsonman +16898,15,14030,26,moosemann +16898,15,14030,26,morppi +16898,15,14030,26,mrmaxmrmax +16898,15,14030,26,mrn0mbre +16898,15,14030,26,muxed +16898,15,14030,26,nakago +16898,15,14030,26,naos +16898,15,14030,26,nick12203 +16898,15,14030,26,nietzoscar +16898,15,14030,26,nounet +16898,15,14030,26,onyxo +16898,15,14030,26,openair +16898,15,14030,26,osquared +16898,15,14030,26,owenedwards +16898,15,14030,26,palantri +16898,15,14030,26,paultro +16898,15,14030,26,peapicker +16898,15,14030,26,peashooter +16898,15,14030,26,pelitron +16898,15,14030,26,pepperhead +16898,15,14030,26,phoxtrot +16898,15,14030,26,plissk3n +16898,15,14030,26,poetryforanimals +16898,15,14030,26,pryde551 +16898,15,14030,26,puckman16 +16898,15,14030,26,pwhy5 +16898,15,14030,26,quinndalf +16898,15,14030,26,showyi0203 +16898,15,14030,26,siraesop +16898,15,14030,26,skillet_135 +16898,15,14030,26,sn00pst9le +16898,15,14030,26,sorutj +16898,15,14030,26,spiritfingerz3 +16898,15,14030,26,summer76 +16898,15,14030,26,swedishspur +16898,15,14030,26,tarras8 +16898,15,14030,26,tavosalba +16898,15,14030,26,telfords319 +16898,15,14030,26,tienmari +16898,15,14030,26,torana113 +16898,15,14030,26,trexrina +16898,15,14030,26,tristar_trick_taker +16898,15,14030,26,true_dave +16898,15,14030,26,turtalater +16898,15,14030,26,tyvek +16898,15,14030,26,vares +16898,15,14030,26,wannaoreo +16898,15,14030,26,wysire +16898,15,14030,26,zelig2 +16898,15,14030,26,zerjyo89 +16898,15,15326,25,1wif +16898,15,15326,25,a_live +16898,15,15326,25,abbyp +16898,15,15326,25,adrimetum +16898,15,15326,25,afurtwengler +16898,15,15326,25,aimii +16898,15,15326,25,alexisrf007 +16898,15,15326,25,annanicolesmith +16898,15,15326,25,aravis88 +16898,15,15326,25,arphillips +16898,15,15326,25,astrovios +16898,15,15326,25,astuart730 +16898,15,15326,25,awp243 +16898,15,15326,25,bart henry +16898,15,15326,25,basilius +16898,15,15326,25,bernddui +16898,15,15326,25,black knigget +16898,15,15326,25,blacksol +16898,15,15326,25,boomdooger +16898,15,15326,25,brenthenson +16898,15,15326,25,brettles81 +16898,15,15326,25,briand72us +16898,15,15326,25,browcat +16898,15,15326,25,cahu +16898,15,15326,25,carccatan +16898,15,15326,25,carlitobrigante +16898,15,15326,25,chavelosky +16898,15,15326,25,chemslayer +16898,15,15326,25,chetil +16898,15,15326,25,chlet +16898,15,15326,25,claytron33 +16898,15,15326,25,corum +16898,15,15326,25,cyamate +16898,15,15326,25,cyberx60 +16898,15,15326,25,cylira +16898,15,15326,25,dafadlush +16898,15,15326,25,daniskywalker +16898,15,15326,25,danom +16898,15,15326,25,danwarr +16898,15,15326,25,darth kitty +16898,15,15326,25,dave martin +16898,15,15326,25,daveoh +16898,15,15326,25,dorrance +16898,15,15326,25,dsc14 +16898,15,15326,25,dtwiley +16898,15,15326,25,duldico +16898,15,15326,25,duncan1dah0 +16898,15,15326,25,egillespie +16898,15,15326,25,elandil84 +16898,15,15326,25,elenitza +16898,15,15326,25,elitusprime +16898,15,15326,25,eloraket +16898,15,15326,25,elpazar +16898,15,15326,25,enderw9 +16898,15,15326,25,epmikida +16898,15,15326,25,ercderua +16898,15,15326,25,esben_arild +16898,15,15326,25,eurominded +16898,15,15326,25,evilexnumber3 +16898,15,15326,25,fluffy +16898,15,15326,25,frotes +16898,15,15326,25,goliat1591 +16898,15,15326,25,gotbeer +16898,15,15326,25,gq__ +16898,15,15326,25,graycatgames +16898,15,15326,25,guitarbarrios +16898,15,15326,25,hansdk +16898,15,15326,25,hariseldon86 +16898,15,15326,25,heatcliff +16898,15,15326,25,heidlang +16898,15,15326,25,hellionus +16898,15,15326,25,herbertml +16898,15,15326,25,herknittiness +16898,15,15326,25,herulf +16898,15,15326,25,hharengel +16898,15,15326,25,hobastian +16898,15,15326,25,icculusthewise +16898,15,15326,25,imarllo +16898,15,15326,25,jaakima +16898,15,15326,25,james goldfinch +16898,15,15326,25,jankku +16898,15,15326,25,jasperh +16898,15,15326,25,javamouses +16898,15,15326,25,jfurni +16898,15,15326,25,jmeac111 +16898,15,15326,25,jo_98 +16898,15,15326,25,jorritfaes +16898,15,15326,25,jovason75 +16898,15,15326,25,jtp4e +16898,15,15326,25,junnyyo +16898,15,15326,25,k_oroviev +16898,15,15326,25,kachiri102 +16898,15,15326,25,kai_sauerwein +16898,15,15326,25,kamiel +16898,15,15326,25,kcroyalguru +16898,15,15326,25,ketail +16898,15,15326,25,kickassseb +16898,15,15326,25,kildare +16898,15,15326,25,knightqc +16898,15,15326,25,knightthyme +16898,15,15326,25,koreymcmurtrey +16898,15,15326,25,kymbles +16898,15,15326,25,lunedor +16898,15,15326,25,madamewrest +16898,15,15326,25,madtimmy +16898,15,15326,25,magisterludi +16898,15,15326,25,mahalalel +16898,15,15326,25,majoturc +16898,15,15326,25,malterre +16898,15,15326,25,marckuiper +16898,15,15326,25,markusneedham +16898,15,15326,25,mechainquisitor +16898,15,15326,25,mjy01 +16898,15,15326,25,mkmccarty +16898,15,15326,25,monkeyman99 +16898,15,15326,25,moonbug +16898,15,15326,25,moonhg9 +16898,15,15326,25,morgenfrue +16898,15,15326,25,mos79 +16898,15,15326,25,moses157 +16898,15,15326,25,mratn +16898,15,15326,25,mschonen +16898,15,15326,25,nachtfalter +16898,15,15326,25,nenaza13 +16898,15,15326,25,netscape10 +16898,15,15326,25,neumo +16898,15,15326,25,norairo +16898,15,15326,25,november +16898,15,15326,25,nrit +16898,15,15326,25,nz1836 +16898,15,15326,25,oaklestat +16898,15,15326,25,obiwannab +16898,15,15326,25,odd_texan +16898,15,15326,25,p106 +16898,15,15326,25,pausti +16898,15,15326,25,pedor +16898,15,15326,25,pepperhed +16898,15,15326,25,pgrossman001 +16898,15,15326,25,pierrecarette +16898,15,15326,25,pikaraph +16898,15,15326,25,pilgrimnorm +16898,15,15326,25,pocketatomic +16898,15,15326,25,pocketpool399 +16898,15,15326,25,pudsey +16898,15,15326,25,raclark68 +16898,15,15326,25,ragnaros87 +16898,15,15326,25,rbarr2000 +16898,15,15326,25,renantd +16898,15,15326,25,rheingauner +16898,15,15326,25,robot +16898,15,15326,25,rown2k4 +16898,15,15326,25,runkiller +16898,15,15326,25,ryang +16898,15,15326,25,sanchopata +16898,15,15326,25,saraccog1 +16898,15,15326,25,sebaran +16898,15,15326,25,shadowchi +16898,15,15326,25,signy +16898,15,15326,25,sirmarmight +16898,15,15326,25,sleepow +16898,15,15326,25,sleipmaersk +16898,15,15326,25,sourwyrm +16898,15,15326,25,soxidus +16898,15,15326,25,stavros79 +16898,15,15326,25,strategygamegirl +16898,15,15326,25,sxenia +16898,15,15326,25,tberman +16898,15,15326,25,thalric +16898,15,15326,25,thatotherguy501 +16898,15,15326,25,thecrazypiper +16898,15,15326,25,thedl +16898,15,15326,25,thelibrarian07 +16898,15,15326,25,therealqwade +16898,15,15326,25,thonik26 +16898,15,15326,25,tnelson300 +16898,15,15326,25,tombonator +16898,15,15326,25,tomvg +16898,15,15326,25,tricologan +16898,15,15326,25,triplejalltheway +16898,15,15326,25,turbo986 +16898,15,15326,25,vagabond_t23 +16898,15,15326,25,vitozen +16898,15,15326,25,vvverna +16898,15,15326,25,wachunga +16898,15,15326,25,watshisname08 +16898,15,15326,25,wildlife +16898,15,15326,25,wolandzeno +16898,15,15326,25,woodland_alliance +16898,15,15326,25,xerberzandor1982 +16898,15,15326,25,xnesx +16898,15,15326,25,yego +16898,15,15326,25,yoel42 +16898,15,15326,25,zaczaczaczac +16898,15,15326,25,zarqeon +16898,15,15326,25,zomboni +16898,15,16710,24,42qark +16898,15,16710,24,adam jsn +16898,15,16710,24,adverb +16898,15,16710,24,aerowoodbury +16898,15,16710,24,afenwick +16898,15,16710,24,agentshimmi +16898,15,16710,24,al3c82 +16898,15,16710,24,albinomnky +16898,15,16710,24,alex awesome +16898,15,16710,24,almo2001 +16898,15,16710,24,amu14 +16898,15,16710,24,andybarnett +16898,15,16710,24,anguslee +16898,15,16710,24,anselmecho +16898,15,16710,24,antonioasik +16898,15,16710,24,aolimpi +16898,15,16710,24,apitala +16898,15,16710,24,aronske417 +16898,15,16710,24,artemisa_15 +16898,15,16710,24,b3nnyj +16898,15,16710,24,baccalla +16898,15,16710,24,balooster +16898,15,16710,24,barfightbill +16898,15,16710,24,beowulfzero +16898,15,16710,24,biggitybogle +16898,15,16710,24,blue_squirrel17 +16898,15,16710,24,boanerges +16898,15,16710,24,bobkalinowski +16898,15,16710,24,boureyborin +16898,15,16710,24,cabag +16898,15,16710,24,cabal81 +16898,15,16710,24,canopy +16898,15,16710,24,casoto08 +16898,15,16710,24,cat_librarian +16898,15,16710,24,cheshiek +16898,15,16710,24,chrissifischer22 +16898,15,16710,24,chukinas +16898,15,16710,24,cle138 +16898,15,16710,24,code21 +16898,15,16710,24,coffeedude +16898,15,16710,24,coffmanmedia +16898,15,16710,24,copta +16898,15,16710,24,cous09 +16898,15,16710,24,crala +16898,15,16710,24,cshelton +16898,15,16710,24,ctuncan +16898,15,16710,24,curlyneil75 +16898,15,16710,24,cvlw +16898,15,16710,24,cynek +16898,15,16710,24,daclown +16898,15,16710,24,dallix +16898,15,16710,24,daltonovich +16898,15,16710,24,darkstormpb +16898,15,16710,24,davidgatheral +16898,15,16710,24,dawsonc +16898,15,16710,24,dbigbob +16898,15,16710,24,derdiplomat +16898,15,16710,24,djason +16898,15,16710,24,dntilis +16898,15,16710,24,dobbin2 +16898,15,16710,24,doctorw +16898,15,16710,24,douche burger +16898,15,16710,24,dragonmommy +16898,15,16710,24,dreadgor +16898,15,16710,24,drjankenstein +16898,15,16710,24,ecs2910 +16898,15,16710,24,edat444 +16898,15,16710,24,ehartnett00 +16898,15,16710,24,eherowesley +16898,15,16710,24,ehowe99 +16898,15,16710,24,eklp fistronek +16898,15,16710,24,electronsonmars +16898,15,16710,24,enavico +16898,15,16710,24,entwistlejohn +16898,15,16710,24,erdwolf +16898,15,16710,24,ergalana +16898,15,16710,24,etchasketch2001 +16898,15,16710,24,eumji3 +16898,15,16710,24,evalkos +16898,15,16710,24,fets raptor +16898,15,16710,24,fistje +16898,15,16710,24,freeflow13 +16898,15,16710,24,frendus +16898,15,16710,24,fstrzala +16898,15,16710,24,fullmoon +16898,15,16710,24,fuzzyfife +16898,15,16710,24,fuzzyfox +16898,15,16710,24,fxlotus +16898,15,16710,24,garion0000 +16898,15,16710,24,golgotha +16898,15,16710,24,gordomg +16898,15,16710,24,graycross +16898,15,16710,24,grey dragon +16898,15,16710,24,gtrepus02 +16898,15,16710,24,guliwier +16898,15,16710,24,hansg +16898,15,16710,24,heropon +16898,15,16710,24,herr dr +16898,15,16710,24,hummasti +16898,15,16710,24,hursty3 +16898,15,16710,24,hydermen +16898,15,16710,24,hygrom +16898,15,16710,24,i_agoe +16898,15,16710,24,ianf +16898,15,16710,24,icelook62 +16898,15,16710,24,idziol91 +16898,15,16710,24,ihatemeeple +16898,15,16710,24,iioiooioo +16898,15,16710,24,intim +16898,15,16710,24,irri68 +16898,15,16710,24,jaretmorlan +16898,15,16710,24,jbrad11 +16898,15,16710,24,jdvillan +16898,15,16710,24,jellynut +16898,15,16710,24,jmaydet +16898,15,16710,24,johntheking2000 +16898,15,16710,24,jolnarfanatic +16898,15,16710,24,jppe5 +16898,15,16710,24,juliefacine +16898,15,16710,24,jw42 +16898,15,16710,24,kamchatka +16898,15,16710,24,keidash +16898,15,16710,24,kekrops +16898,15,16710,24,kendo190407 +16898,15,16710,24,kentonda +16898,15,16710,24,killersonpro +16898,15,16710,24,klavedesol +16898,15,16710,24,kolovicdegrote +16898,15,16710,24,kreusfel +16898,15,16710,24,kryz +16898,15,16710,24,ladyarcher1 +16898,15,16710,24,laudiffred +16898,15,16710,24,lauf8 +16898,15,16710,24,lehavrefanatic99 +16898,15,16710,24,leimbistyle +16898,15,16710,24,leomar +16898,15,16710,24,lmarburger +16898,15,16710,24,loiosh13 +16898,15,16710,24,lomn +16898,15,16710,24,lu1982 +16898,15,16710,24,macike +16898,15,16710,24,madeyematthew +16898,15,16710,24,majiken +16898,15,16710,24,makecraftgame +16898,15,16710,24,malinmaes +16898,15,16710,24,malisent +16898,15,16710,24,mandingas1 +16898,15,16710,24,marlonn +16898,15,16710,24,matic1996 +16898,15,16710,24,mazooch45 +16898,15,16710,24,mccanna23 +16898,15,16710,24,mcguit +16898,15,16710,24,mectron +16898,15,16710,24,mehester26 +16898,15,16710,24,meroselli +16898,15,16710,24,mesudfrey +16898,15,16710,24,metalnmath +16898,15,16710,24,michelbouwens +16898,15,16710,24,mikehhh +16898,15,16710,24,mikehibbert +16898,15,16710,24,miketango +16898,15,16710,24,mitohai +16898,15,16710,24,mjheinrich +16898,15,16710,24,mnmerritt +16898,15,16710,24,morenate +16898,15,16710,24,mrcichy +16898,15,16710,24,mrsch +16898,15,16710,24,mrseth +16898,15,16710,24,mumford +16898,15,16710,24,mvm9289 +16898,15,16710,24,n7_silvershroud +16898,15,16710,24,naan_con_locro +16898,15,16710,24,nadgamgee +16898,15,16710,24,natronics +16898,15,16710,24,nazftw +16898,15,16710,24,negoc +16898,15,16710,24,neonblue +16898,15,16710,24,nersi +16898,15,16710,24,noxgames +16898,15,16710,24,nuccio86 +16898,15,16710,24,nugfish +16898,15,16710,24,nurumor +16898,15,16710,24,nyhil +16898,15,16710,24,olferuk +16898,15,16710,24,olsszak +16898,15,16710,24,one fat pug +16898,15,16710,24,oscarbachtiar759 +16898,15,16710,24,pafnutiy +16898,15,16710,24,pandabro14 +16898,15,16710,24,patracus +16898,15,16710,24,patx15 +16898,15,16710,24,periodicchaos +16898,15,16710,24,phegnax +16898,15,16710,24,phiberoptik +16898,15,16710,24,philouxgr +16898,15,16710,24,pinback +16898,15,16710,24,pjaj +16898,15,16710,24,ponchoman +16898,15,16710,24,posco +16898,15,16710,24,preston40 +16898,15,16710,24,professorchaos +16898,15,16710,24,purple123 +16898,15,16710,24,puyal1984 +16898,15,16710,24,qhuhn314 +16898,15,16710,24,queenzentar +16898,15,16710,24,quella627 +16898,15,16710,24,qv92 +16898,15,16710,24,rainpoiss +16898,15,16710,24,randomstrategy +16898,15,16710,24,ranveer +16898,15,16710,24,rattenfanger88 +16898,15,16710,24,reuniteireland +16898,15,16710,24,rikonelli +16898,15,16710,24,robert blake +16898,15,16710,24,rottenjeeves +16898,15,16710,24,rukasu +16898,15,16710,24,salsateacher07 +16898,15,16710,24,samuelk +16898,15,16710,24,samwisethebrave +16898,15,16710,24,sand_man +16898,15,16710,24,schmiggy22 +16898,15,16710,24,scorius +16898,15,16710,24,scottsnew1 +16898,15,16710,24,secretfool +16898,15,16710,24,sergismc77 +16898,15,16710,24,sfox +16898,15,16710,24,shadowthr0ne +16898,15,16710,24,shattenjager +16898,15,16710,24,shepdog69 +16898,15,16710,24,sir melancholie +16898,15,16710,24,sirdadelot +16898,15,16710,24,sonic113 +16898,15,16710,24,spikiii +16898,15,16710,24,splenformingtunes +16898,15,16710,24,steve_alst0n +16898,15,16710,24,sultanio +16898,15,16710,24,superhansi +16898,15,16710,24,superkowboy +16898,15,16710,24,supertoboh +16898,15,16710,24,tajs +16898,15,16710,24,tallahassee +16898,15,16710,24,tatti +16898,15,16710,24,taune007 +16898,15,16710,24,teamfindleyrm +16898,15,16710,24,tefieltromuxo +16898,15,16710,24,thedah +16898,15,16710,24,thorstar +16898,15,16710,24,timhetland +16898,15,16710,24,tinghim +16898,15,16710,24,tmkd +16898,15,16710,24,tobih +16898,15,16710,24,tremor1776 +16898,15,16710,24,tsmith18256 +16898,15,16710,24,tuertox +16898,15,16710,24,tuvalu +16898,15,16710,24,uhtoff +16898,15,16710,24,ulrich +16898,15,16710,24,vouncher +16898,15,16710,24,waffell +16898,15,16710,24,warc0 +16898,15,16710,24,warcroft +16898,15,16710,24,warm +16898,15,16710,24,warpozio +16898,15,16710,24,weirdlaugh +16898,15,16710,24,wenchwogg +16898,15,16710,24,wkdshogun +16898,15,16710,24,wm72 +16898,15,16710,24,wodemoneke +16898,15,16710,24,wolfpackee +16898,15,16710,24,xontorh +16898,15,16710,24,xxorathaa +16898,15,16710,24,yovee +16898,15,16710,24,zaxer +16898,15,16710,24,zogotounga +16898,15,16710,24,zombub +16898,15,18170,23,acrophilic +16898,15,18170,23,adrianucho +16898,15,18170,23,adsfefxcv9 +16898,15,18170,23,aernold +16898,15,18170,23,agonilinx +16898,15,18170,23,agrandfield +16898,15,18170,23,ajaeger50 +16898,15,18170,23,alfagt +16898,15,18170,23,alienux +16898,15,18170,23,almi +16898,15,18170,23,apodojil +16898,15,18170,23,april6 +16898,15,18170,23,aragon_othar +16898,15,18170,23,arbust0 +16898,15,18170,23,arnoldjudicerimmer +16898,15,18170,23,artur777111 +16898,15,18170,23,atherien +16898,15,18170,23,barren_sky +16898,15,18170,23,bassoon201 +16898,15,18170,23,bearformdruid +16898,15,18170,23,bearnomnom +16898,15,18170,23,bebelito +16898,15,18170,23,benedictusdeus +16898,15,18170,23,benoitl33 +16898,15,18170,23,bernardo_silveira +16898,15,18170,23,bhudson1972 +16898,15,18170,23,big__rhino +16898,15,18170,23,birki69 +16898,15,18170,23,bizi26 +16898,15,18170,23,blasiakp +16898,15,18170,23,blasterfodder +16898,15,18170,23,blochjo6 +16898,15,18170,23,blueatheart +16898,15,18170,23,bluecubeboardgames +16898,15,18170,23,boardgamechemistry +16898,15,18170,23,boardgamer_june_bug +16898,15,18170,23,bobbieraz +16898,15,18170,23,bomstan +16898,15,18170,23,bowser_jr +16898,15,18170,23,bryan rankin +16898,15,18170,23,bujur +16898,15,18170,23,burdkingo +16898,15,18170,23,bv6082 +16898,15,18170,23,caitirilt +16898,15,18170,23,camifran +16898,15,18170,23,carmelogons +16898,15,18170,23,caster53 +16898,15,18170,23,catanathon7 +16898,15,18170,23,ccorwin12 +16898,15,18170,23,charlesworth +16898,15,18170,23,chiphall72 +16898,15,18170,23,chris59 +16898,15,18170,23,cicconox +16898,15,18170,23,codexmatt +16898,15,18170,23,colinv +16898,15,18170,23,condemor +16898,15,18170,23,conquest23 +16898,15,18170,23,corbine +16898,15,18170,23,coroner +16898,15,18170,23,cosmicbeet +16898,15,18170,23,cpthomp +16898,15,18170,23,crjgibson +16898,15,18170,23,crusherbee +16898,15,18170,23,csb_iv +16898,15,18170,23,cturnitsa +16898,15,18170,23,cvlucas +16898,15,18170,23,cwsparke +16898,15,18170,23,dainule +16898,15,18170,23,dannaeil +16898,15,18170,23,dat008 +16898,15,18170,23,davidhomol1930 +16898,15,18170,23,desertrat2020 +16898,15,18170,23,deviser +16898,15,18170,23,dgrafols +16898,15,18170,23,dizzy2d +16898,15,18170,23,dkaratekid +16898,15,18170,23,drassainhtc +16898,15,18170,23,dubepelli +16898,15,18170,23,dune2009 +16898,15,18170,23,dwilson11 +16898,15,18170,23,eclectic minnesotan +16898,15,18170,23,ekh_86 +16898,15,18170,23,elflum +16898,15,18170,23,elwatoplus +16898,15,18170,23,elzaberino +16898,15,18170,23,emandbri +16898,15,18170,23,embernov +16898,15,18170,23,emmavdv +16898,15,18170,23,emvee77 +16898,15,18170,23,endlsdremr +16898,15,18170,23,ennekes +16898,15,18170,23,enz0 +16898,15,18170,23,epicviking +16898,15,18170,23,fabchess +16898,15,18170,23,faerun +16898,15,18170,23,felivar +16898,15,18170,23,filobravo +16898,15,18170,23,finex +16898,15,18170,23,fionawhim +16898,15,18170,23,fl0po +16898,15,18170,23,forfeardan +16898,15,18170,23,fowlerj +16898,15,18170,23,franklome +16898,15,18170,23,freakishlily +16898,15,18170,23,freduard +16898,15,18170,23,fridaice +16898,15,18170,23,fusseymoore +16898,15,18170,23,gab4tac +16898,15,18170,23,gameh2 +16898,15,18170,23,gamer_moose +16898,15,18170,23,genbenkenob1 +16898,15,18170,23,generalmac +16898,15,18170,23,generalpotato +16898,15,18170,23,geniusimmortal +16898,15,18170,23,gentle_kraken +16898,15,18170,23,geyseyadvisor +16898,15,18170,23,girreaver +16898,15,18170,23,gonv +16898,15,18170,23,gregf +16898,15,18170,23,grizz_wald +16898,15,18170,23,gti70 +16898,15,18170,23,h3lm1 +16898,15,18170,23,hader008 +16898,15,18170,23,hadz +16898,15,18170,23,happymike +16898,15,18170,23,hawk +16898,15,18170,23,hensanson +16898,15,18170,23,heyvince +16898,15,18170,23,himerion +16898,15,18170,23,hiresch +16898,15,18170,23,hodoliiiii +16898,15,18170,23,hoolio +16898,15,18170,23,hrky000 +16898,15,18170,23,htimsda +16898,15,18170,23,hughwyeth +16898,15,18170,23,huuuze +16898,15,18170,23,imaginek +16898,15,18170,23,indiana27 +16898,15,18170,23,innroadsmike +16898,15,18170,23,issh +16898,15,18170,23,jas39 +16898,15,18170,23,jasin715 +16898,15,18170,23,jaume12 +16898,15,18170,23,jdpm +16898,15,18170,23,jediwashuu +16898,15,18170,23,jenezis +16898,15,18170,23,jenncarter +16898,15,18170,23,jmccue +16898,15,18170,23,jocava +16898,15,18170,23,jordid +16898,15,18170,23,jowheely +16898,15,18170,23,jrastillero +16898,15,18170,23,juanjonarc +16898,15,18170,23,jugadista +16898,15,18170,23,junkweb +16898,15,18170,23,jwcolo +16898,15,18170,23,kaiman620 +16898,15,18170,23,kamfer +16898,15,18170,23,kamimark +16898,15,18170,23,kampi +16898,15,18170,23,karameikos007 +16898,15,18170,23,keyesboy +16898,15,18170,23,kingplayer14 +16898,15,18170,23,kjetil a tangen +16898,15,18170,23,kmanjamz +16898,15,18170,23,ksysiu9000 +16898,15,18170,23,laisren +16898,15,18170,23,lakart +16898,15,18170,23,lambee5990 +16898,15,18170,23,lebastard +16898,15,18170,23,lecinephile +16898,15,18170,23,legogamer +16898,15,18170,23,letala +16898,15,18170,23,levante111 +16898,15,18170,23,loanna +16898,15,18170,23,logicalgambit +16898,15,18170,23,lucag19823008 +16898,15,18170,23,madelf +16898,15,18170,23,madmav +16898,15,18170,23,maelic001 +16898,15,18170,23,maggibot +16898,15,18170,23,magmenus +16898,15,18170,23,markie816 +16898,15,18170,23,maruja +16898,15,18170,23,matharrison +16898,15,18170,23,maxeltazar +16898,15,18170,23,maxsettings +16898,15,18170,23,mbarratt +16898,15,18170,23,menelmakar +16898,15,18170,23,mick1717 +16898,15,18170,23,miesnerk +16898,15,18170,23,miguelmichan +16898,15,18170,23,monsieurmops +16898,15,18170,23,montalvo +16898,15,18170,23,morkandmindy +16898,15,18170,23,moses11235 +16898,15,18170,23,mpalframan +16898,15,18170,23,munin +16898,15,18170,23,mzmr +16898,15,18170,23,nakedbuddha +16898,15,18170,23,natsy80 +16898,15,18170,23,nelsonio +16898,15,18170,23,nestogal +16898,15,18170,23,nittobg +16898,15,18170,23,nottplayinga_ttrpg +16898,15,18170,23,obernell +16898,15,18170,23,odbz +16898,15,18170,23,ohallorm +16898,15,18170,23,oivind22 +16898,15,18170,23,olgombo +16898,15,18170,23,olsen6 +16898,15,18170,23,ominaeyu +16898,15,18170,23,ookami86 +16898,15,18170,23,osh kosh 7 +16898,15,18170,23,oslot +16898,15,18170,23,ownsby +16898,15,18170,23,paco paco +16898,15,18170,23,paipai +16898,15,18170,23,papapolski +16898,15,18170,23,patricechiniara +16898,15,18170,23,pedromdf +16898,15,18170,23,peltonen +16898,15,18170,23,pepetoth +16898,15,18170,23,pertuty +16898,15,18170,23,phenyx82 +16898,15,18170,23,philemonism +16898,15,18170,23,philk82 +16898,15,18170,23,plaks +16898,15,18170,23,pochy +16898,15,18170,23,porter402 +16898,15,18170,23,predicated +16898,15,18170,23,pswissler +16898,15,18170,23,radovaan +16898,15,18170,23,raiknold +16898,15,18170,23,rak5632 +16898,15,18170,23,random_person +16898,15,18170,23,randomlogic +16898,15,18170,23,realfist +16898,15,18170,23,realgabriel +16898,15,18170,23,relindor +16898,15,18170,23,retrompis +16898,15,18170,23,reverend gb +16898,15,18170,23,rickmtl29 +16898,15,18170,23,rippo +16898,15,18170,23,rlphay +16898,15,18170,23,rockerrullz +16898,15,18170,23,rockwhisperer +16898,15,18170,23,ronngren +16898,15,18170,23,rstruve +16898,15,18170,23,rupertg +16898,15,18170,23,salaberge +16898,15,18170,23,sammy2 +16898,15,18170,23,sandevid +16898,15,18170,23,saugust +16898,15,18170,23,schachtelhalm +16898,15,18170,23,scott pasha +16898,15,18170,23,selsar +16898,15,18170,23,shadowgorn +16898,15,18170,23,simpsqo +16898,15,18170,23,sirumi +16898,15,18170,23,skarecrow7 +16898,15,18170,23,skillsxiii +16898,15,18170,23,skogenskonung +16898,15,18170,23,slade_the_dragon +16898,15,18170,23,smuge +16898,15,18170,23,sniezka_ja +16898,15,18170,23,snuplass +16898,15,18170,23,sodoffbaldrick +16898,15,18170,23,sofievm +16898,15,18170,23,solony +16898,15,18170,23,sonyblack +16898,15,18170,23,spionskummis +16898,15,18170,23,srlarkin +16898,15,18170,23,stiffy2014 +16898,15,18170,23,stinkycabbage +16898,15,18170,23,strmtrper6 +16898,15,18170,23,stupha +16898,15,18170,23,su4nost_ +16898,15,18170,23,sugoi_tuffy +16898,15,18170,23,sunnylelik +16898,15,18170,23,suvix +16898,15,18170,23,swee8320 +16898,15,18170,23,sweetjane13 +16898,15,18170,23,talesofcardboard +16898,15,18170,23,tdjmz +16898,15,18170,23,thadcar +16898,15,18170,23,the eye +16898,15,18170,23,thegordon +16898,15,18170,23,theshays +16898,15,18170,23,thethornofcamorr +16898,15,18170,23,tienlevy +16898,15,18170,23,tiets +16898,15,18170,23,tmredden +16898,15,18170,23,trholmes0 +16898,15,18170,23,tryme51 +16898,15,18170,23,tuburulo +16898,15,18170,23,tuennes11 +16898,15,18170,23,twinsenlba +16898,15,18170,23,vader2097 +16898,15,18170,23,valeryan +16898,15,18170,23,valpocarnie +16898,15,18170,23,vap0r +16898,15,18170,23,velocipastor +16898,15,18170,23,veneli +16898,15,18170,23,vergilius +16898,15,18170,23,verglas +16898,15,18170,23,vernacoolars +16898,15,18170,23,vervet +16898,15,18170,23,vilarchao +16898,15,18170,23,viridovilas +16898,15,18170,23,voidhawker +16898,15,18170,23,wasyl +16898,15,18170,23,wavedog98 +16898,15,18170,23,wboonsot +16898,15,18170,23,whoshuffledthis +16898,15,18170,23,williamkoppe +16898,15,18170,23,wordjammer +16898,15,18170,23,xelissa +16898,15,18170,23,xlqt +16898,15,18170,23,xorron +16898,15,18170,23,yingxiansheng +16898,15,18170,23,zachmillertime +16898,15,18170,23,zebambara +16898,15,18170,23,zenistar +16898,15,18170,23,zyx0xyz +16898,15,19906,22,123abc +16898,15,19906,22,1blindi +16898,15,19906,22,22764636 +16898,15,19906,22,7quark +16898,15,19906,22,a2b2c517 +16898,15,19906,22,abovethelawson +16898,15,19906,22,abselon +16898,15,19906,22,absolomon +16898,15,19906,22,abyssaldancer +16898,15,19906,22,acecool +16898,15,19906,22,achirimotedo +16898,15,19906,22,achunkeemunkee +16898,15,19906,22,aduka +16898,15,19906,22,ajocksch +16898,15,19906,22,alanblair +16898,15,19906,22,almendrino +16898,15,19906,22,almilcar +16898,15,19906,22,alshter +16898,15,19906,22,alvaror85 +16898,15,19906,22,amongfriends +16898,15,19906,22,antiphony +16898,15,19906,22,anziano32 +16898,15,19906,22,arara +16898,15,19906,22,atriss +16898,15,19906,22,atsina +16898,15,19906,22,atus +16898,15,19906,22,baguio_beans +16898,15,19906,22,balard40k +16898,15,19906,22,banelingbaneling +16898,15,19906,22,bardopondo +16898,15,19906,22,bario +16898,15,19906,22,behrytov +16898,15,19906,22,belcun +16898,15,19906,22,bellsandwhistle +16898,15,19906,22,belsj +16898,15,19906,22,bettermoodboardgames +16898,15,19906,22,bggwinken +16898,15,19906,22,bilbut +16898,15,19906,22,bkelly401 +16898,15,19906,22,blaine101 +16898,15,19906,22,bleki +16898,15,19906,22,blisscore +16898,15,19906,22,blue62 +16898,15,19906,22,bobbo84 +16898,15,19906,22,bobonthecob +16898,15,19906,22,bola! +16898,15,19906,22,bookerdewitt77 +16898,15,19906,22,brehm77 +16898,15,19906,22,brich83 +16898,15,19906,22,brookeside1 +16898,15,19906,22,bshirley +16898,15,19906,22,bstalf21 +16898,15,19906,22,bugfix +16898,15,19906,22,bugscheese +16898,15,19906,22,bumrobot +16898,15,19906,22,callosum +16898,15,19906,22,campanadave +16898,15,19906,22,carbon_dragon +16898,15,19906,22,carlosfapresto +16898,15,19906,22,cavaliero +16898,15,19906,22,ccostin +16898,15,19906,22,ceejlekabeejle +16898,15,19906,22,chango +16898,15,19906,22,charliebrown12 +16898,15,19906,22,cho_papa +16898,15,19906,22,chrisdr +16898,15,19906,22,chriswen42 +16898,15,19906,22,chrys5 +16898,15,19906,22,ckirkman +16898,15,19906,22,clarky1429 +16898,15,19906,22,crazydad33 +16898,15,19906,22,crb31 +16898,15,19906,22,crimsynseraph +16898,15,19906,22,crookedcandle +16898,15,19906,22,cube88 +16898,15,19906,22,cuberthunder +16898,15,19906,22,cyc10ne +16898,15,19906,22,d3a7h13 +16898,15,19906,22,d3adite +16898,15,19906,22,danace42 +16898,15,19906,22,dandechino +16898,15,19906,22,danohofmann +16898,15,19906,22,darkfire3xx +16898,15,19906,22,darkpaper +16898,15,19906,22,darwinsrib +16898,15,19906,22,dbaustin +16898,15,19906,22,ddes0918 +16898,15,19906,22,deanrthomas +16898,15,19906,22,decard1979 +16898,15,19906,22,devin3279 +16898,15,19906,22,dhomister +16898,15,19906,22,dice_of_mice_and_men +16898,15,19906,22,dingo21 +16898,15,19906,22,dingobats +16898,15,19906,22,dispe +16898,15,19906,22,docbrock87 +16898,15,19906,22,dudewiththeface +16898,15,19906,22,dullshimmer +16898,15,19906,22,dutchmaster1214 +16898,15,19906,22,eazydoor +16898,15,19906,22,eengstrom +16898,15,19906,22,el4ith +16898,15,19906,22,el_mago8 +16898,15,19906,22,ereboro +16898,15,19906,22,estragon +16898,15,19906,22,exora +16898,15,19906,22,farton +16898,15,19906,22,fdergrosse +16898,15,19906,22,felipemac +16898,15,19906,22,fenestrata +16898,15,19906,22,fishmountains +16898,15,19906,22,fodi13 +16898,15,19906,22,fohammer +16898,15,19906,22,francorest +16898,15,19906,22,freibert +16898,15,19906,22,fumblingbeeble +16898,15,19906,22,fuzzydice82 +16898,15,19906,22,galatea +16898,15,19906,22,galdor +16898,15,19906,22,galghamon +16898,15,19906,22,geekedupgaming +16898,15,19906,22,geekgameralan +16898,15,19906,22,gemzi +16898,15,19906,22,geo1184 +16898,15,19906,22,geoff8695 +16898,15,19906,22,ghostcastle +16898,15,19906,22,gia187 +16898,15,19906,22,giffordark +16898,15,19906,22,gigi +16898,15,19906,22,gitfeatures +16898,15,19906,22,goldfish2163 +16898,15,19906,22,gospraf0 +16898,15,19906,22,gothicroks +16898,15,19906,22,gresty +16898,15,19906,22,grouchylemur +16898,15,19906,22,guidobaldus +16898,15,19906,22,gustavofadda +16898,15,19906,22,guyjb1989 +16898,15,19906,22,hanneliev +16898,15,19906,22,hawk727 +16898,15,19906,22,hectorcaraballo +16898,15,19906,22,henning macmanaman +16898,15,19906,22,hma319 +16898,15,19906,22,holdmykidney +16898,15,19906,22,hugolefou +16898,15,19906,22,iesua +16898,15,19906,22,iiactyx +16898,15,19906,22,insomnis +16898,15,19906,22,iskus +16898,15,19906,22,itsdoooopey +16898,15,19906,22,j00nbrains +16898,15,19906,22,jabberbjorn +16898,15,19906,22,jajoste +16898,15,19906,22,jammer99 +16898,15,19906,22,janahall323 +16898,15,19906,22,jaydee1988 +16898,15,19906,22,jaynova +16898,15,19906,22,jbelis +16898,15,19906,22,jeanne k +16898,15,19906,22,jegan22280 +16898,15,19906,22,jeremydrover +16898,15,19906,22,jima +16898,15,19906,22,jiminpa +16898,15,19906,22,jimmyff +16898,15,19906,22,jmullett +16898,15,19906,22,jmw90 +16898,15,19906,22,joekneebgoode +16898,15,19906,22,jokermanjs +16898,15,19906,22,jonahucsb +16898,15,19906,22,jonsu_brassen +16898,15,19906,22,jordez +16898,15,19906,22,joshk1977 +16898,15,19906,22,joshklaz +16898,15,19906,22,joykiller +16898,15,19906,22,justin_cheney +16898,15,19906,22,k_knight +16898,15,19906,22,kaiyoot +16898,15,19906,22,kawdjer +16898,15,19906,22,keeganflavio +16898,15,19906,22,kempeth +16898,15,19906,22,kianv +16898,15,19906,22,killgore +16898,15,19906,22,kiloga84 +16898,15,19906,22,kim5574 +16898,15,19906,22,kjreidsa +16898,15,19906,22,knacks +16898,15,19906,22,kohee +16898,15,19906,22,kovray +16898,15,19906,22,krazydman +16898,15,19906,22,kylethestyle +16898,15,19906,22,lambo13 +16898,15,19906,22,laurip +16898,15,19906,22,lbouma +16898,15,19906,22,leagle89 +16898,15,19906,22,leespa +16898,15,19906,22,leo1988 +16898,15,19906,22,livion +16898,15,19906,22,llos69 +16898,15,19906,22,lowjinx +16898,15,19906,22,ludopata +16898,15,19906,22,lunus +16898,15,19906,22,lynn255 +16898,15,19906,22,mabenedi +16898,15,19906,22,mabmuc +16898,15,19906,22,macattack11 +16898,15,19906,22,madpowah +16898,15,19906,22,majkos +16898,15,19906,22,maloy8920 +16898,15,19906,22,mangleddragon +16898,15,19906,22,mantaro +16898,15,19906,22,mariespei +16898,15,19906,22,mariks +16898,15,19906,22,matfr +16898,15,19906,22,mattdavisfla +16898,15,19906,22,matthewgeom +16898,15,19906,22,maturinydomanova +16898,15,19906,22,maxixe +16898,15,19906,22,mchacal +16898,15,19906,22,megawidget +16898,15,19906,22,melibabe +16898,15,19906,22,mestreferreiro +16898,15,19906,22,metzenjsr +16898,15,19906,22,mhidda +16898,15,19906,22,michaeldavidcox +16898,15,19906,22,michaeljjackson +16898,15,19906,22,midgard11 +16898,15,19906,22,miemer +16898,15,19906,22,migdolas +16898,15,19906,22,mitchthedm +16898,15,19906,22,mjabardo +16898,15,19906,22,mjgames +16898,15,19906,22,mjuarez +16898,15,19906,22,momaw22 +16898,15,19906,22,moniquebabcock +16898,15,19906,22,moremeeples +16898,15,19906,22,morg1710 +16898,15,19906,22,mpogel +16898,15,19906,22,mr_schnoizelbert +16898,15,19906,22,mrouser +16898,15,19906,22,muselament +16898,15,19906,22,muyf +16898,15,19906,22,nandop +16898,15,19906,22,navanya +16898,15,19906,22,ncbarbos +16898,15,19906,22,nedika +16898,15,19906,22,neoncandle +16898,15,19906,22,nevermaybe +16898,15,19906,22,nicholasho +16898,15,19906,22,nickmul +16898,15,19906,22,nik592 +16898,15,19906,22,nodensdaniel +16898,15,19906,22,nskeener +16898,15,19906,22,ocemax +16898,15,19906,22,odinatos +16898,15,19906,22,offcunia +16898,15,19906,22,offwater +16898,15,19906,22,oliturtle +16898,15,19906,22,onua +16898,15,19906,22,otter_bad +16898,15,19906,22,pagamer +16898,15,19906,22,paiorlolo +16898,15,19906,22,panicc +16898,15,19906,22,paqueteam +16898,15,19906,22,patthews +16898,15,19906,22,paul_otter +16898,15,19906,22,paulao +16898,15,19906,22,peteyboy100 +16898,15,19906,22,pfour048 +16898,15,19906,22,plucky_nz +16898,15,19906,22,porbs +16898,15,19906,22,ppeek +16898,15,19906,22,principevaca +16898,15,19906,22,pure fight +16898,15,19906,22,radikal +16898,15,19906,22,ramchito +16898,15,19906,22,ramonsitges +16898,15,19906,22,rasa +16898,15,19906,22,rayzaau +16898,15,19906,22,revjasonkennedy +16898,15,19906,22,revya +16898,15,19906,22,rgatti +16898,15,19906,22,robin221 +16898,15,19906,22,rossty +16898,15,19906,22,ruen270 +16898,15,19906,22,ruestchm +16898,15,19906,22,ruud2009 +16898,15,19906,22,ryan8625 +16898,15,19906,22,ryansproshop +16898,15,19906,22,s3kt0r +16898,15,19906,22,sabrinapi +16898,15,19906,22,salagon +16898,15,19906,22,salvadore21 +16898,15,19906,22,sanny +16898,15,19906,22,sarebear62 +16898,15,19906,22,saume +16898,15,19906,22,scallamander +16898,15,19906,22,schwabilon +16898,15,19906,22,scottredracecar +16898,15,19906,22,scottyrobotty +16898,15,19906,22,sdnphotography +16898,15,19906,22,seedliu +16898,15,19906,22,senya +16898,15,19906,22,sev73 +16898,15,19906,22,shevden +16898,15,19906,22,shivan32 +16898,15,19906,22,shoelessjoe1919 +16898,15,19906,22,silverpenny +16898,15,19906,22,skyden +16898,15,19906,22,sogtul +16898,15,19906,22,soundmerc +16898,15,19906,22,spadini +16898,15,19906,22,sr_sayv +16898,15,19906,22,starscream +16898,15,19906,22,staublunge +16898,15,19906,22,steadzy +16898,15,19906,22,stinebean +16898,15,19906,22,stotzi +16898,15,19906,22,sugarbelly +16898,15,19906,22,swoxks +16898,15,19906,22,sylwiast +16898,15,19906,22,syras +16898,15,19906,22,szabiszasz26 +16898,15,19906,22,szczeka +16898,15,19906,22,tarscien +16898,15,19906,22,tbrofromspace +16898,15,19906,22,tchouchen +16898,15,19906,22,tcole15 +16898,15,19906,22,teamdan +16898,15,19906,22,temp3ror +16898,15,19906,22,thanoob81 +16898,15,19906,22,thegoodmariner +16898,15,19906,22,thegreatgayaspie +16898,15,19906,22,theinsphere +16898,15,19906,22,thorgn +16898,15,19906,22,toastp13pm4tz +16898,15,19906,22,toledoesilva +16898,15,19906,22,tomhusky +16898,15,19906,22,topcat5 +16898,15,19906,22,torkium +16898,15,19906,22,tortafogo +16898,15,19906,22,tortellino_bolognese +16898,15,19906,22,towersalez +16898,15,19906,22,trignolo80 +16898,15,19906,22,vandevijverke +16898,15,19906,22,varoknight +16898,15,19906,22,vaxis2113 +16898,15,19906,22,victorrios +16898,15,19906,22,vikingz +16898,15,19906,22,vimaacon +16898,15,19906,22,vinizama +16898,15,19906,22,visinurland +16898,15,19906,22,vucora +16898,15,19906,22,waaru +16898,15,19906,22,wechselbalg +16898,15,19906,22,welgen +16898,15,19906,22,werewullf +16898,15,19906,22,wesley_noorhoff +16898,15,19906,22,whipplesj +16898,15,19906,22,wilczyc +16898,15,19906,22,wiredpilot12 +16898,15,19906,22,wiscowilz +16898,15,19906,22,x7xbraindeadx7x +16898,15,19906,22,ximo_valencia +16898,15,19906,22,yandrak +16898,15,19906,22,yezoz +16898,15,19906,22,yojan +16898,15,19906,22,zarzu +16898,15,19906,22,zickvi +16898,15,19906,22,zmaster2003 +16898,15,21713,21,a_bates +16898,15,21713,21,abot09 +16898,15,21713,21,aboveriver +16898,15,21713,21,afull +16898,15,21713,21,agonba +16898,15,21713,21,alberic +16898,15,21713,21,alfadanne +16898,15,21713,21,aliensb +16898,15,21713,21,alphawog +16898,15,21713,21,alyogali +16898,15,21713,21,amazingdan +16898,15,21713,21,amorpheus +16898,15,21713,21,anamcara +16898,15,21713,21,andyhowell +16898,15,21713,21,ao625711 +16898,15,21713,21,ariane14 +16898,15,21713,21,arolf60 +16898,15,21713,21,arthy +16898,15,21713,21,asdnart +16898,15,21713,21,atinzad +16898,15,21713,21,audiofreek +16898,15,21713,21,aunrea +16898,15,21713,21,auzzy +16898,15,21713,21,awausegg +16898,15,21713,21,azrugger +16898,15,21713,21,badninja4452 +16898,15,21713,21,balargon +16898,15,21713,21,barcsaba +16898,15,21713,21,bart2d2 +16898,15,21713,21,bart8111 +16898,15,21713,21,bcseda +16898,15,21713,21,beedersen +16898,15,21713,21,beldar88 +16898,15,21713,21,benfairbank +16898,15,21713,21,benny275 +16898,15,21713,21,benterdimensional +16898,15,21713,21,benwcook +16898,15,21713,21,berghai +16898,15,21713,21,biggy_serg +16898,15,21713,21,binarypretzel +16898,15,21713,21,blairbear90 +16898,15,21713,21,blokie1982 +16898,15,21713,21,bloodyigor +16898,15,21713,21,bluedi +16898,15,21713,21,bluewasp +16898,15,21713,21,boardgametonic +16898,15,21713,21,boga82 +16898,15,21713,21,bohdominator +16898,15,21713,21,bohmoplata +16898,15,21713,21,bookqueen +16898,15,21713,21,bpoynter1281 +16898,15,21713,21,breiflabb +16898,15,21713,21,brianrlarsen +16898,15,21713,21,bruneleschi +16898,15,21713,21,bundass +16898,15,21713,21,busmannn +16898,15,21713,21,callionymuslyra +16898,15,21713,21,candide3693 +16898,15,21713,21,capnbob0618 +16898,15,21713,21,capohofmann +16898,15,21713,21,cblackaus +16898,15,21713,21,cesar_vk +16898,15,21713,21,cgkgbg13 +16898,15,21713,21,charliew65 +16898,15,21713,21,chemsoldier +16898,15,21713,21,chordnine +16898,15,21713,21,chuggst3r +16898,15,21713,21,cindywilliams720 +16898,15,21713,21,climbon321 +16898,15,21713,21,clusters +16898,15,21713,21,clydedyed +16898,15,21713,21,cmckinnon +16898,15,21713,21,colemaninho +16898,15,21713,21,colossus777 +16898,15,21713,21,cordwangle +16898,15,21713,21,cornjerker +16898,15,21713,21,coxeter +16898,15,21713,21,cree47 +16898,15,21713,21,crismo +16898,15,21713,21,crissurey +16898,15,21713,21,cstags10 +16898,15,21713,21,cutyangel009 +16898,15,21713,21,czeczot +16898,15,21713,21,czeje99 +16898,15,21713,21,danielwmendes +16898,15,21713,21,darilium +16898,15,21713,21,dario271081 +16898,15,21713,21,darkplanedm +16898,15,21713,21,daron_harkon +16898,15,21713,21,davem1 +16898,15,21713,21,deadpool1503 +16898,15,21713,21,defendernes +16898,15,21713,21,delpiero79 +16898,15,21713,21,demifille +16898,15,21713,21,devilcomander +16898,15,21713,21,diehard4life +16898,15,21713,21,dirtyfighting +16898,15,21713,21,dixiec +16898,15,21713,21,domnall +16898,15,21713,21,doomsdarkseid +16898,15,21713,21,draddict +16898,15,21713,21,dredry toenail +16898,15,21713,21,dricarii +16898,15,21713,21,drjmcmillan +16898,15,21713,21,drruin +16898,15,21713,21,drunkerio +16898,15,21713,21,duartec +16898,15,21713,21,duo1733 +16898,15,21713,21,dwculp +16898,15,21713,21,earnur +16898,15,21713,21,eisenphx +16898,15,21713,21,elayeth +16898,15,21713,21,eldi +16898,15,21713,21,elgie08 +16898,15,21713,21,elijah_weerts +16898,15,21713,21,emeraf +16898,15,21713,21,erniej +16898,15,21713,21,evabelle +16898,15,21713,21,evankobe +16898,15,21713,21,evilevan +16898,15,21713,21,eysihoon +16898,15,21713,21,fezzwick +16898,15,21713,21,fink242 +16898,15,21713,21,finkin +16898,15,21713,21,flavius +16898,15,21713,21,floyd101 +16898,15,21713,21,focone76 +16898,15,21713,21,forthur +16898,15,21713,21,francescopela +16898,15,21713,21,frch0603 +16898,15,21713,21,freitag +16898,15,21713,21,gaaldo +16898,15,21713,21,gamachexx +16898,15,21713,21,gamerjeremy +16898,15,21713,21,gaminggiz +16898,15,21713,21,gapsxever +16898,15,21713,21,garuses +16898,15,21713,21,geeklette +16898,15,21713,21,gerdeve +16898,15,21713,21,giliam +16898,15,21713,21,gisyd84 +16898,15,21713,21,gloomypop +16898,15,21713,21,gnoosh +16898,15,21713,21,gogtad +16898,15,21713,21,gokubc +16898,15,21713,21,got_game +16898,15,21713,21,granturismo87 +16898,15,21713,21,grapesinacake +16898,15,21713,21,gwydion the quick +16898,15,21713,21,hallfi +16898,15,21713,21,hancocj3 +16898,15,21713,21,heislegend +16898,15,21713,21,heldronplaysgames +16898,15,21713,21,hepworthnot +16898,15,21713,21,hhgttg +16898,15,21713,21,hobold +16898,15,21713,21,hratner +16898,15,21713,21,iamjman00793 +16898,15,21713,21,ianhornbaker +16898,15,21713,21,itsmarty +16898,15,21713,21,jackofredclubs +16898,15,21713,21,jaroo +16898,15,21713,21,jason_sydiaha +16898,15,21713,21,jasonjaytwaddle +16898,15,21713,21,jasonm76 +16898,15,21713,21,jbmallus +16898,15,21713,21,jecarcon +16898,15,21713,21,jeremylgunter +16898,15,21713,21,jhcallahan +16898,15,21713,21,jiaflu +16898,15,21713,21,jingsquared +16898,15,21713,21,jjrodriguez +16898,15,21713,21,jkirkendall +16898,15,21713,21,jlowe +16898,15,21713,21,jochi +16898,15,21713,21,joedon +16898,15,21713,21,jolo37 +16898,15,21713,21,jonesturtle +16898,15,21713,21,jop_09 +16898,15,21713,21,josafatz +16898,15,21713,21,josmil1 +16898,15,21713,21,jp29 +16898,15,21713,21,jpf1982 +16898,15,21713,21,jredekop +16898,15,21713,21,juiced +16898,15,21713,21,julian8 +16898,15,21713,21,julika35 +16898,15,21713,21,junglejoker +16898,15,21713,21,kantti +16898,15,21713,21,kasparkabellnissen +16898,15,21713,21,katzengold +16898,15,21713,21,keithoz +16898,15,21713,21,kelsith +16898,15,21713,21,kerosene +16898,15,21713,21,kevan +16898,15,21713,21,kidsplinter +16898,15,21713,21,kingstarshow +16898,15,21713,21,kiwifirst +16898,15,21713,21,kojohan +16898,15,21713,21,korkide +16898,15,21713,21,krec +16898,15,21713,21,krx007 +16898,15,21713,21,kryy +16898,15,21713,21,kuningas +16898,15,21713,21,kwangara +16898,15,21713,21,landshark4321 +16898,15,21713,21,laserdeockham +16898,15,21713,21,laventura +16898,15,21713,21,lb4269 +16898,15,21713,21,leary81 +16898,15,21713,21,lethan +16898,15,21713,21,lifesnotasong +16898,15,21713,21,lkerszulis +16898,15,21713,21,logangr +16898,15,21713,21,lordr +16898,15,21713,21,lotrscaper +16898,15,21713,21,ltraven +16898,15,21713,21,ludigirl +16898,15,21713,21,luj23 +16898,15,21713,21,macrian +16898,15,21713,21,madax66 +16898,15,21713,21,madmardigan__1 +16898,15,21713,21,maffoe +16898,15,21713,21,maigret71 +16898,15,21713,21,maltebrigge +16898,15,21713,21,mancorte +16898,15,21713,21,mandelbot +16898,15,21713,21,manix123 +16898,15,21713,21,mantra6 +16898,15,21713,21,marcodj +16898,15,21713,21,marcosroca +16898,15,21713,21,marjacstein +16898,15,21713,21,mark442 +16898,15,21713,21,martellmoyle +16898,15,21713,21,matelencse +16898,15,21713,21,mathematicalcoffee +16898,15,21713,21,mattiasgeisler +16898,15,21713,21,maxjustice +16898,15,21713,21,mazolete +16898,15,21713,21,md commish +16898,15,21713,21,medew +16898,15,21713,21,meli4n +16898,15,21713,21,merimac +16898,15,21713,21,mfront +16898,15,21713,21,michalq +16898,15,21713,21,mikewest235 +16898,15,21713,21,mikeytheblack +16898,15,21713,21,missp1ggy +16898,15,21713,21,mokona +16898,15,21713,21,mommameeple +16898,15,21713,21,monkeyface69 +16898,15,21713,21,morsac +16898,15,21713,21,mr popp +16898,15,21713,21,mr_west +16898,15,21713,21,mraloha +16898,15,21713,21,mrhiker +16898,15,21713,21,mrissling +16898,15,21713,21,msiew +16898,15,21713,21,mst3k4l +16898,15,21713,21,music_meeples +16898,15,21713,21,n349 +16898,15,21713,21,nagfactor +16898,15,21713,21,narsilmed +16898,15,21713,21,nat418 +16898,15,21713,21,nataly23 +16898,15,21713,21,ndhurler55 +16898,15,21713,21,necrohexel +16898,15,21713,21,neil fallon +16898,15,21713,21,nie_ogarniam +16898,15,21713,21,nienkekuipers +16898,15,21713,21,nikitaypipo +16898,15,21713,21,nisimmo +16898,15,21713,21,nomadic bear +16898,15,21713,21,nonamnon +16898,15,21713,21,norkle +16898,15,21713,21,noscoo +16898,15,21713,21,nospace +16898,15,21713,21,nostradunwhich +16898,15,21713,21,nurdowen +16898,15,21713,21,nyte +16898,15,21713,21,oliia +16898,15,21713,21,ooze9 +16898,15,21713,21,orcslayer60 +16898,15,21713,21,ozon_pl +16898,15,21713,21,padeha +16898,15,21713,21,pastor3 +16898,15,21713,21,pbbbb +16898,15,21713,21,pearscw +16898,15,21713,21,pedrodeavlon +16898,15,21713,21,pepilot +16898,15,21713,21,peps43 +16898,15,21713,21,perashaman +16898,15,21713,21,petoly +16898,15,21713,21,phantasmag +16898,15,21713,21,phyphor +16898,15,21713,21,pinkzer0 +16898,15,21713,21,pinokio1993 +16898,15,21713,21,playeronyourleft +16898,15,21713,21,ploedminka +16898,15,21713,21,prospero1012 +16898,15,21713,21,punfu +16898,15,21713,21,radziszz +16898,15,21713,21,rafaelcamine +16898,15,21713,21,ramonazon +16898,15,21713,21,ranld +16898,15,21713,21,ratovan +16898,15,21713,21,reallytomato +16898,15,21713,21,redredwhitered +16898,15,21713,21,redv +16898,15,21713,21,reneg8d +16898,15,21713,21,repairmanjack +16898,15,21713,21,revmarques +16898,15,21713,21,ri_cewind +16898,15,21713,21,riomusicshow +16898,15,21713,21,ritajesus +16898,15,21713,21,robsteady +16898,15,21713,21,rollinregg +16898,15,21713,21,ropagnani +16898,15,21713,21,rosien_hoh +16898,15,21713,21,rsanzzio +16898,15,21713,21,rufus stone +16898,15,21713,21,russwakelin +16898,15,21713,21,sabsi1402 +16898,15,21713,21,sakoguru +16898,15,21713,21,sameoldfriend +16898,15,21713,21,samielde +16898,15,21713,21,saranac +16898,15,21713,21,schlinger +16898,15,21713,21,serinde73 +16898,15,21713,21,seterolos +16898,15,21713,21,shadowen +16898,15,21713,21,shigadeyo +16898,15,21713,21,sigrlami +16898,15,21713,21,silviu2390 +16898,15,21713,21,simland +16898,15,21713,21,sjeyaraman +16898,15,21713,21,slayde +16898,15,21713,21,slipperyjoaquin +16898,15,21713,21,smeedear +16898,15,21713,21,smittyohio +16898,15,21713,21,snunemaker +16898,15,21713,21,solbero +16898,15,21713,21,spacenut10 +16898,15,21713,21,sparse_rework +16898,15,21713,21,spencerdub +16898,15,21713,21,spookydann +16898,15,21713,21,spowellau +16898,15,21713,21,squipso +16898,15,21713,21,stohot +16898,15,21713,21,subido +16898,15,21713,21,suntzu01 +16898,15,21713,21,super_rookie +16898,15,21713,21,superiorperformer +16898,15,21713,21,suro +16898,15,21713,21,szaboferenc80 +16898,15,21713,21,t3nn0 +16898,15,21713,21,taiorojas +16898,15,21713,21,tartantari +16898,15,21713,21,teentacle +16898,15,21713,21,tellingson00 +16898,15,21713,21,terrorpin +16898,15,21713,21,the-orc +16898,15,21713,21,thedrew12 +16898,15,21713,21,thegameplayer +16898,15,21713,21,thekryten +16898,15,21713,21,theoddlinguist +16898,15,21713,21,theshadowedone +16898,15,21713,21,thewelshdragon +16898,15,21713,21,thomas1168 +16898,15,21713,21,thopalkra +16898,15,21713,21,timobe +16898,15,21713,21,tjberry_1 +16898,15,21713,21,tofuburrito +16898,15,21713,21,tomibombi +16898,15,21713,21,tomoewroc +16898,15,21713,21,trevorusprime +16898,15,21713,21,trocmagic +16898,15,21713,21,turtlefalcon +16898,15,21713,21,twroveto +16898,15,21713,21,twshearer +16898,15,21713,21,ukcody34 +16898,15,21713,21,upadly_bankowiec +16898,15,21713,21,uveemebe +16898,15,21713,21,v_m_t_b +16898,15,21713,21,vampyur +16898,15,21713,21,velo333 +16898,15,21713,21,velvetcompadre +16898,15,21713,21,viljanne +16898,15,21713,21,voidez +16898,15,21713,21,vonepp +16898,15,21713,21,vwspeed32 +16898,15,21713,21,wagnard +16898,15,21713,21,wallawalla53 +16898,15,21713,21,warhief +16898,15,21713,21,wemufatard +16898,15,21713,21,wendyjo73 +16898,15,21713,21,wettstein +16898,15,21713,21,whiteshadow +16898,15,21713,21,wingabouts +16898,15,21713,21,wjw900 +16898,15,21713,21,xandradp +16898,15,21713,21,xenongames +16898,15,21713,21,xopc +16898,15,21713,21,xostra +16898,15,21713,21,yadviga +16898,15,21713,21,yrfhcnerf +16898,15,21713,21,zid70 +16898,15,21713,21,zjm23 +16898,15,21713,21,zoddone +16898,15,21713,21,zorrla +16898,15,21713,21,zyklotron +16898,15,23640,20,abbio +16898,15,23640,20,acecorleone +16898,15,23640,20,adamsd +16898,15,23640,20,adanedhel +16898,15,23640,20,adris +16898,15,23640,20,airamand +16898,15,23640,20,allesklar +16898,15,23640,20,amoena +16898,15,23640,20,amp the meeple +16898,15,23640,20,andorlover +16898,15,23640,20,annabelled +16898,15,23640,20,antonioboderakis +16898,15,23640,20,anubis_cuk +16898,15,23640,20,anze7 +16898,15,23640,20,arase +16898,15,23640,20,archetype +16898,15,23640,20,argue +16898,15,23640,20,astamatis06 +16898,15,23640,20,avschoor +16898,15,23640,20,axelca22 +16898,15,23640,20,azphek +16898,15,23640,20,b1g_red +16898,15,23640,20,basem2502 +16898,15,23640,20,beardou +16898,15,23640,20,beaver5 +16898,15,23640,20,begru +16898,15,23640,20,ben_ethus +16898,15,23640,20,benoftomorrow +16898,15,23640,20,berserkrnr +16898,15,23640,20,bigmaddrongo +16898,15,23640,20,bigphis +16898,15,23640,20,billsboardgames +16898,15,23640,20,boardgamequebec +16898,15,23640,20,boby0nenyc +16898,15,23640,20,bokkel +16898,15,23640,20,bonapart +16898,15,23640,20,boogerwhale +16898,15,23640,20,borghal +16898,15,23640,20,brave_keldorn +16898,15,23640,20,brdg4melvr +16898,15,23640,20,brezel85 +16898,15,23640,20,brokensaint333 +16898,15,23640,20,bubslug +16898,15,23640,20,buschitanor +16898,15,23640,20,bvault +16898,15,23640,20,bwtcf +16898,15,23640,20,cadane +16898,15,23640,20,cass7 +16898,15,23640,20,catalin_cc +16898,15,23640,20,catomatic +16898,15,23640,20,ccarlton +16898,15,23640,20,cekkins +16898,15,23640,20,chevalric +16898,15,23640,20,chileangumbino +16898,15,23640,20,cirden +16898,15,23640,20,clavicule +16898,15,23640,20,cloudchamploo +16898,15,23640,20,cmmayo +16898,15,23640,20,cmwest +16898,15,23640,20,crumpledfish +16898,15,23640,20,curlysteve +16898,15,23640,20,cygnatch +16898,15,23640,20,daliles +16898,15,23640,20,dallincoons +16898,15,23640,20,danmaul +16898,15,23640,20,danricc +16898,15,23640,20,darkwingza +16898,15,23640,20,darnocris +16898,15,23640,20,darthpilgrim +16898,15,23640,20,darthverder +16898,15,23640,20,david80 +16898,15,23640,20,davidgra81 +16898,15,23640,20,davorgekko +16898,15,23640,20,dbucklee +16898,15,23640,20,dcorban +16898,15,23640,20,dee_doc +16898,15,23640,20,denvergreene +16898,15,23640,20,dericksen +16898,15,23640,20,derkroesus +16898,15,23640,20,diffler +16898,15,23640,20,dirkt +16898,15,23640,20,dirtyharry2489 +16898,15,23640,20,disposable.superhero +16898,15,23640,20,dissi +16898,15,23640,20,doodlezook +16898,15,23640,20,doumlevesque +16898,15,23640,20,dr doom +16898,15,23640,20,dr_yule +16898,15,23640,20,draaken +16898,15,23640,20,dragonpumpkin +16898,15,23640,20,dreamwrecker +16898,15,23640,20,drobison +16898,15,23640,20,drprozac +16898,15,23640,20,eathlinn +16898,15,23640,20,edammp +16898,15,23640,20,edlomax +16898,15,23640,20,egrim +16898,15,23640,20,ehagedorn +16898,15,23640,20,einbrettspieler +16898,15,23640,20,eliasmg +16898,15,23640,20,eljudhnir +16898,15,23640,20,emcglohon +16898,15,23640,20,emunion +16898,15,23640,20,enderthegamer +16898,15,23640,20,enricospada +16898,15,23640,20,ericfaris +16898,15,23640,20,errolan +16898,15,23640,20,ervwalter +16898,15,23640,20,esayitch +16898,15,23640,20,esperare +16898,15,23640,20,etoilia +16898,15,23640,20,eulersarmy +16898,15,23640,20,eyrehead +16898,15,23640,20,ezildor +16898,15,23640,20,fat tony +16898,15,23640,20,ferrari355348 +16898,15,23640,20,finth +16898,15,23640,20,fiurilli +16898,15,23640,20,flaney +16898,15,23640,20,flashflood52 +16898,15,23640,20,florisofzo +16898,15,23640,20,flosr81 +16898,15,23640,20,foonisha +16898,15,23640,20,footcow +16898,15,23640,20,fr69o2rs +16898,15,23640,20,fralim +16898,15,23640,20,frank17882 +16898,15,23640,20,frenchsensation +16898,15,23640,20,frico +16898,15,23640,20,funattic channel +16898,15,23640,20,fuzzwakka +16898,15,23640,20,gaborambo +16898,15,23640,20,gaddons +16898,15,23640,20,galender +16898,15,23640,20,gamegirl7 +16898,15,23640,20,garept +16898,15,23640,20,gildor0 +16898,15,23640,20,giorgoskaravidas +16898,15,23640,20,glandulanl +16898,15,23640,20,gloesch +16898,15,23640,20,gobanshee +16898,15,23640,20,goober_357 +16898,15,23640,20,goobersapien +16898,15,23640,20,goophball3 +16898,15,23640,20,graydon_armstrong +16898,15,23640,20,grunherz +16898,15,23640,20,guim0015 +16898,15,23640,20,gukned +16898,15,23640,20,gunnar on games +16898,15,23640,20,gversace +16898,15,23640,20,haggbartslark +16898,15,23640,20,harry_cigar +16898,15,23640,20,hatcher +16898,15,23640,20,hawkeye37 +16898,15,23640,20,henrikh32 +16898,15,23640,20,hesna +16898,15,23640,20,hexaphim +16898,15,23640,20,hgozilla +16898,15,23640,20,holyhead +16898,15,23640,20,hoosierfanatic +16898,15,23640,20,horripilated333 +16898,15,23640,20,horstivarius +16898,15,23640,20,hrkpe +16898,15,23640,20,ianman95 +16898,15,23640,20,iceweasel007 +16898,15,23640,20,illustr8or +16898,15,23640,20,illut3 +16898,15,23640,20,imralin +16898,15,23640,20,indianajones2588 +16898,15,23640,20,infininight +16898,15,23640,20,irisrenckens +16898,15,23640,20,isaque85 +16898,15,23640,20,jaimani +16898,15,23640,20,james1979 +16898,15,23640,20,jasonrmax +16898,15,23640,20,jaypasamonte1986 +16898,15,23640,20,jaysen +16898,15,23640,20,jazzfan99 +16898,15,23640,20,jdbullock +16898,15,23640,20,jenny70 +16898,15,23640,20,jesman77 +16898,15,23640,20,jflm10 +16898,15,23640,20,jfrank +16898,15,23640,20,jimmcmahon +16898,15,23640,20,jneug +16898,15,23640,20,jnowakowski116 +16898,15,23640,20,john margerum +16898,15,23640,20,john812 +16898,15,23640,20,jokemanjim +16898,15,23640,20,jondickinson +16898,15,23640,20,jordiu +16898,15,23640,20,jorgen99 +16898,15,23640,20,josvent +16898,15,23640,20,jowelle +16898,15,23640,20,jpeter +16898,15,23640,20,jprett2 +16898,15,23640,20,jspiel +16898,15,23640,20,jsrino +16898,15,23640,20,juanikoct +16898,15,23640,20,kaacee +16898,15,23640,20,kalafatas +16898,15,23640,20,kalipa +16898,15,23640,20,karamazov19 +16898,15,23640,20,karl von bahnhof +16898,15,23640,20,keenanja +16898,15,23640,20,kelly_homz +16898,15,23640,20,ken at sunrise +16898,15,23640,20,kentdavies +16898,15,23640,20,kentrisk +16898,15,23640,20,kenzlo +16898,15,23640,20,khelar +16898,15,23640,20,khhhhaaaannnnn +16898,15,23640,20,kibald +16898,15,23640,20,kid norway +16898,15,23640,20,kiko2k +16898,15,23640,20,kilian stawson +16898,15,23640,20,kiliz +16898,15,23640,20,kingofcomedy +16898,15,23640,20,kiskablitz +16898,15,23640,20,kitchendon +16898,15,23640,20,kklinkk +16898,15,23640,20,kman1988 +16898,15,23640,20,kudosphil +16898,15,23640,20,kuswylie +16898,15,23640,20,ladybaynes +16898,15,23640,20,laggis +16898,15,23640,20,lanib2 +16898,15,23640,20,laslow +16898,15,23640,20,laurastephen +16898,15,23640,20,legato147 +16898,15,23640,20,leminex +16898,15,23640,20,leonardquirm +16898,15,23640,20,lfitq +16898,15,23640,20,lianalynx +16898,15,23640,20,lizmari +16898,15,23640,20,llyrric +16898,15,23640,20,locksley +16898,15,23640,20,lolo22lolo +16898,15,23640,20,lsplitz33 +16898,15,23640,20,luckygirlkris +16898,15,23640,20,ludotecaro +16898,15,23640,20,lukasz631 +16898,15,23640,20,lukeotfin +16898,15,23640,20,mad200647 +16898,15,23640,20,majmalfunction +16898,15,23640,20,makesh1ft_m1l1t1a +16898,15,23640,20,marcofiset +16898,15,23640,20,mareczekz19801 +16898,15,23640,20,mathewsdad +16898,15,23640,20,matt_oesterling +16898,15,23640,20,maurogibertoni +16898,15,23640,20,mavrick593 +16898,15,23640,20,mcdood +16898,15,23640,20,merc007 +16898,15,23640,20,mikeb13603 +16898,15,23640,20,mikras13 +16898,15,23640,20,mindbend +16898,15,23640,20,missdragonara +16898,15,23640,20,misternatural +16898,15,23640,20,mit82 +16898,15,23640,20,mjortman +16898,15,23640,20,mohok +16898,15,23640,20,moleman55 +16898,15,23640,20,monchi22 +16898,15,23640,20,monkeykenobi +16898,15,23640,20,moonlight87 +16898,15,23640,20,moonwillow +16898,15,23640,20,mp3pintyo +16898,15,23640,20,mrsnaki +16898,15,23640,20,mudjumper41 +16898,15,23640,20,mugge +16898,15,23640,20,muncleuncle +16898,15,23640,20,nacholadri +16898,15,23640,20,nakard +16898,15,23640,20,naoma81 +16898,15,23640,20,nate252 +16898,15,23640,20,natto710 +16898,15,23640,20,nesser1981 +16898,15,23640,20,nfld +16898,15,23640,20,nikitka21 +16898,15,23640,20,ning1 +16898,15,23640,20,nossirom2004 +16898,15,23640,20,nxfoli8ingloofa +16898,15,23640,20,orandwil +16898,15,23640,20,orcflesh +16898,15,23640,20,orcgreen +16898,15,23640,20,orioncrescent +16898,15,23640,20,orionthunder +16898,15,23640,20,ortolan +16898,15,23640,20,palfergoy +16898,15,23640,20,panchosintuiter +16898,15,23640,20,pberg +16898,15,23640,20,peephee +16898,15,23640,20,persathesecond +16898,15,23640,20,petehere2 +16898,15,23640,20,philmurdock +16898,15,23640,20,photonstorm +16898,15,23640,20,pirateclem +16898,15,23640,20,pityu21 +16898,15,23640,20,polyoculus +16898,15,23640,20,pomomojo +16898,15,23640,20,pomona_girl +16898,15,23640,20,ponchik87 +16898,15,23640,20,poogman +16898,15,23640,20,progrummer +16898,15,23640,20,prutser77 +16898,15,23640,20,psich7 +16898,15,23640,20,pzoblisein +16898,15,23640,20,rafab0 +16898,15,23640,20,rafal1991 +16898,15,23640,20,railanbrandelero +16898,15,23640,20,raph27 +16898,15,23640,20,raptore39 +16898,15,23640,20,raven273 +16898,15,23640,20,reaper73 +16898,15,23640,20,rhythmofthenight +16898,15,23640,20,rishka +16898,15,23640,20,risingtide +16898,15,23640,20,rodego +16898,15,23640,20,roger threepwood +16898,15,23640,20,round_robin +16898,15,23640,20,ryanphillipthompson +16898,15,23640,20,rylmets12 +16898,15,23640,20,rytrepanier +16898,15,23640,20,sabruquitas +16898,15,23640,20,saeros melian +16898,15,23640,20,saibotflar +16898,15,23640,20,sargatraktor +16898,15,23640,20,sasquatchcc +16898,15,23640,20,scawt +16898,15,23640,20,schwibb +16898,15,23640,20,scottsweat +16898,15,23640,20,sebiroe +16898,15,23640,20,shawn_kehoe +16898,15,23640,20,shawnandleah +16898,15,23640,20,sidjmt +16898,15,23640,20,sidleicious +16898,15,23640,20,sigizmund +16898,15,23640,20,sinadeau44 +16898,15,23640,20,sintaura +16898,15,23640,20,sirimande +16898,15,23640,20,sirjustinb +16898,15,23640,20,smithkevinc +16898,15,23640,20,sooner811 +16898,15,23640,20,speltor +16898,15,23640,20,spinli +16898,15,23640,20,splittingred +16898,15,23640,20,spqr1 +16898,15,23640,20,spudbudly +16898,15,23640,20,sriber +16898,15,23640,20,stanmanly +16898,15,23640,20,steff13356 +16898,15,23640,20,sticktak +16898,15,23640,20,stjackson +16898,15,23640,20,stuc +16898,15,23640,20,subversive_influence +16898,15,23640,20,sune74 +16898,15,23640,20,superbini +16898,15,23640,20,sycon +16898,15,23640,20,tahitiangabriel +16898,15,23640,20,tangleword +16898,15,23640,20,tbrown1079 +16898,15,23640,20,tchelorock +16898,15,23640,20,tdhsmith +16898,15,23640,20,tehspookeh +16898,15,23640,20,teratya +16898,15,23640,20,the_made_man +16898,15,23640,20,thegamer +16898,15,23640,20,thegh05t +16898,15,23640,20,thejsmaster +16898,15,23640,20,thekillshirt +16898,15,23640,20,themadraider +16898,15,23640,20,thesonoftherock +16898,15,23640,20,thetragicallytim +16898,15,23640,20,theyachtingclam +16898,15,23640,20,thisisadamj +16898,15,23640,20,timchalice +16898,15,23640,20,tjaball +16898,15,23640,20,tracy lindauer +16898,15,23640,20,travistdale +16898,15,23640,20,trigun1 +16898,15,23640,20,trinity1501 +16898,15,23640,20,trivela77 +16898,15,23640,20,turing70 +16898,15,23640,20,uberjoi +16898,15,23640,20,udoeli +16898,15,23640,20,unhooked +16898,15,23640,20,ursasmar +16898,15,23640,20,ussrocker +16898,15,23640,20,vanduynamite +16898,15,23640,20,vedderjam +16898,15,23640,20,vegandodo0 +16898,15,23640,20,verbal255 +16898,15,23640,20,vonweitzel +16898,15,23640,20,wahoffelmadenga +16898,15,23640,20,whlheart +16898,15,23640,20,wildjagter +16898,15,23640,20,wildycard58 +16898,15,23640,20,william4192 +16898,15,23640,20,xaltheos +16898,15,23640,20,xandros_gr +16898,15,23640,20,xistonxiston +16898,15,23640,20,xmikhaelx +16898,15,23640,20,yechlo +16898,15,23640,20,yridos +16898,15,23640,20,zamparor +16898,15,23640,20,zb1035 +16898,15,23640,20,zephon55 +16898,15,23640,20,zoop +16898,15,25880,19,212666pnd +16898,15,25880,19,abyssal_tome +16898,15,25880,19,adami +16898,15,25880,19,adlingtont +16898,15,25880,19,agent17 +16898,15,25880,19,alexhart7 +16898,15,25880,19,alighieri1971 +16898,15,25880,19,andrenatam +16898,15,25880,19,aragami1982 +16898,15,25880,19,archerhawke +16898,15,25880,19,arislan667 +16898,15,25880,19,arkane239 +16898,15,25880,19,artificier +16898,15,25880,19,astroyd +16898,15,25880,19,azrael85 +16898,15,25880,19,baertj +16898,15,25880,19,barannik +16898,15,25880,19,bassplayern8 +16898,15,25880,19,batcarl2000 +16898,15,25880,19,bearfarmer +16898,15,25880,19,becaud +16898,15,25880,19,benbarrios87 +16898,15,25880,19,biffta +16898,15,25880,19,billiv15 +16898,15,25880,19,bite13 +16898,15,25880,19,bj_speedy +16898,15,25880,19,bjuret +16898,15,25880,19,blackjackgeary +16898,15,25880,19,blake_mc +16898,15,25880,19,bncnick +16898,15,25880,19,boardgamecait +16898,15,25880,19,bobby_jo +16898,15,25880,19,bobpony +16898,15,25880,19,brienc +16898,15,25880,19,buhtolog +16898,15,25880,19,cakespeare +16898,15,25880,19,catsnmaths +16898,15,25880,19,caviness +16898,15,25880,19,cereo +16898,15,25880,19,chaoticseraph +16898,15,25880,19,charras01 +16898,15,25880,19,chaton27 +16898,15,25880,19,chichewa63 +16898,15,25880,19,craig d +16898,15,25880,19,crazybunnyguy +16898,15,25880,19,crimsoncomet +16898,15,25880,19,cristianpbo +16898,15,25880,19,dancingdice +16898,15,25880,19,danijel2008 +16898,15,25880,19,darthmalgus85 +16898,15,25880,19,dcummins81 +16898,15,25880,19,desbov +16898,15,25880,19,devyogi +16898,15,25880,19,domquixote +16898,15,25880,19,donnin +16898,15,25880,19,dpwells +16898,15,25880,19,drfunk +16898,15,25880,19,ech pi el +16898,15,25880,19,ecorryn +16898,15,25880,19,ecspiegel +16898,15,25880,19,eeworld +16898,15,25880,19,el_noir +16898,15,25880,19,elston +16898,15,25880,19,emoht +16898,15,25880,19,es_sabbi +16898,15,25880,19,europa3355 +16898,15,25880,19,evilfrogger +16898,15,25880,19,ezzvaldez +16898,15,25880,19,felixschroeter +16898,15,25880,19,fenedin +16898,15,25880,19,fhgbofi +16898,15,25880,19,figgyroo +16898,15,25880,19,firestrife +16898,15,25880,19,fischerz +16898,15,25880,19,fitzanor +16898,15,25880,19,flamtzer +16898,15,25880,19,fourmyle21 +16898,15,25880,19,frank fahnrich +16898,15,25880,19,frankgth +16898,15,25880,19,freezenfire +16898,15,25880,19,frohike +16898,15,25880,19,g3ck092 +16898,15,25880,19,gamergriff +16898,15,25880,19,giuliomeda +16898,15,25880,19,goingtopshelf +16898,15,25880,19,greatgravy +16898,15,25880,19,guilhermelba +16898,15,25880,19,gulliver_dgf +16898,15,25880,19,h4angel +16898,15,25880,19,hasturmind +16898,15,25880,19,hataa +16898,15,25880,19,helix743 +16898,15,25880,19,hiphoi +16898,15,25880,19,hkproc +16898,15,25880,19,hoolammi +16898,15,25880,19,hvrbarr +16898,15,25880,19,iamdave +16898,15,25880,19,igornik74 +16898,15,25880,19,ikehouserock +16898,15,25880,19,ilovecomix +16898,15,25880,19,j_chambel +16898,15,25880,19,jajkos +16898,15,25880,19,jakobian87 +16898,15,25880,19,james_sanheim +16898,15,25880,19,jareman +16898,15,25880,19,javajunky +16898,15,25880,19,jaw6 +16898,15,25880,19,jeff_rdg +16898,15,25880,19,jenss +16898,15,25880,19,jimmyjoe70 +16898,15,25880,19,joeyjj +16898,15,25880,19,johnorr3 +16898,15,25880,19,johnson512 +16898,15,25880,19,josef +16898,15,25880,19,jswoboda +16898,15,25880,19,jtgorman +16898,15,25880,19,jure +16898,15,25880,19,jvhemert +16898,15,25880,19,kadashim +16898,15,25880,19,kainolagoni +16898,15,25880,19,kayaker0703 +16898,15,25880,19,kayyy +16898,15,25880,19,kikiah +16898,15,25880,19,koningwoning +16898,15,25880,19,ktoloday +16898,15,25880,19,landjorden +16898,15,25880,19,laurocris +16898,15,25880,19,lcarus +16898,15,25880,19,leftysings429 +16898,15,25880,19,leglaude +16898,15,25880,19,lesiok +16898,15,25880,19,lidlesseye343 +16898,15,25880,19,lmoose +16898,15,25880,19,loopoo +16898,15,25880,19,lucha74 +16898,15,25880,19,lustra +16898,15,25880,19,mad_fox +16898,15,25880,19,magicarl3974 +16898,15,25880,19,maginomicon +16898,15,25880,19,mathieuviii +16898,15,25880,19,matthldn +16898,15,25880,19,mattphew +16898,15,25880,19,maxbrung +16898,15,25880,19,mazinho +16898,15,25880,19,mearmada +16898,15,25880,19,meph78 +16898,15,25880,19,metheoris +16898,15,25880,19,michaelibk +16898,15,25880,19,midwestmcd +16898,15,25880,19,mikewhit +16898,15,25880,19,mister_poppy +16898,15,25880,19,mjginger +16898,15,25880,19,mmpeuchen +16898,15,25880,19,mononoke +16898,15,25880,19,mood barnable +16898,15,25880,19,morhits +16898,15,25880,19,mortimer0 +16898,15,25880,19,moukydup +16898,15,25880,19,mudsoccer +16898,15,25880,19,muel wisdom +16898,15,25880,19,mummydaddy +16898,15,25880,19,napsyd +16898,15,25880,19,narcher007 +16898,15,25880,19,narval7 +16898,15,25880,19,natalya_murseeva +16898,15,25880,19,nathandbrown1 +16898,15,25880,19,nightfoxx +16898,15,25880,19,no_jedi +16898,15,25880,19,nohjo +16898,15,25880,19,notbrian +16898,15,25880,19,nyarly362 +16898,15,25880,19,oedingsche +16898,15,25880,19,oliver1974 +16898,15,25880,19,optmsprim2 +16898,15,25880,19,oselp +16898,15,25880,19,otto1980 +16898,15,25880,19,patcleaver +16898,15,25880,19,perlbo +16898,15,25880,19,perry_ +16898,15,25880,19,peterpax +16898,15,25880,19,petrknapp +16898,15,25880,19,petworthdc +16898,15,25880,19,phalanx72 +16898,15,25880,19,phule +16898,15,25880,19,polle1006 +16898,15,25880,19,puffinslayer +16898,15,25880,19,raistlinjedyny +16898,15,25880,19,ralpher +16898,15,25880,19,ramahadji +16898,15,25880,19,ratpasta79 +16898,15,25880,19,rayvax65 +16898,15,25880,19,rhox +16898,15,25880,19,ripperek +16898,15,25880,19,robscot75 +16898,15,25880,19,rodicio +16898,15,25880,19,roger_ +16898,15,25880,19,rsolmes +16898,15,25880,19,rustycage73 +16898,15,25880,19,ryanmoore0325 +16898,15,25880,19,s0ul01 +16898,15,25880,19,s_hammer +16898,15,25880,19,saintstu +16898,15,25880,19,salamandre999 +16898,15,25880,19,sarhik +16898,15,25880,19,sasquatchdjh +16898,15,25880,19,satch83 +16898,15,25880,19,sawmody +16898,15,25880,19,scooby12345 +16898,15,25880,19,sed001 +16898,15,25880,19,sentencia_jg +16898,15,25880,19,shalian +16898,15,25880,19,shoko86 +16898,15,25880,19,shugarray +16898,15,25880,19,sibelius +16898,15,25880,19,sofaux +16898,15,25880,19,soobis +16898,15,25880,19,spallen21 +16898,15,25880,19,spelfreak +16898,15,25880,19,squaredeh +16898,15,25880,19,stevieram +16898,15,25880,19,taliesin444 +16898,15,25880,19,taraba +16898,15,25880,19,tbrown8239 +16898,15,25880,19,the_id +16898,15,25880,19,thecrazedmadman +16898,15,25880,19,thedragonstomb +16898,15,25880,19,themaster408 +16898,15,25880,19,threescoopz +16898,15,25880,19,tiballs +16898,15,25880,19,tirada de riesgo +16898,15,25880,19,tkpaulo +16898,15,25880,19,tomusher +16898,15,25880,19,traeyu +16898,15,25880,19,triebegram +16898,15,25880,19,troia +16898,15,25880,19,troopermanowar +16898,15,25880,19,tubbsoc +16898,15,25880,19,twinfreak +16898,15,25880,19,txemis72 +16898,15,25880,19,urplan +16898,15,25880,19,vic_ita +16898,15,25880,19,vincesparrow2 +16898,15,25880,19,vomisacaasi +16898,15,25880,19,vyking +16898,15,25880,19,warrioragrippa +16898,15,25880,19,wchris +16898,15,25880,19,wolverutto +16898,15,25880,19,wullewupp +16898,15,25880,19,yves427 +16898,15,25880,19,zampfich +16898,15,25880,19,zinar7 +16898,15,25880,19,ziomartin +16898,15,28174,18,alberto21984 +16898,15,28174,18,alczee +16898,15,28174,18,alex200095382 +16898,15,28174,18,anatoll +16898,15,28174,18,annsa +16898,15,28174,18,apparatus +16898,15,28174,18,arkhanne +16898,15,28174,18,ashkai +16898,15,28174,18,aspudde +16898,15,28174,18,avjax +16898,15,28174,18,aym14 +16898,15,28174,18,berlinsven +16898,15,28174,18,bggmatje +16898,15,28174,18,bigjoet +16898,15,28174,18,blakstar +16898,15,28174,18,bongers +16898,15,28174,18,bozzolom +16898,15,28174,18,brentandbecca +16898,15,28174,18,breobiker +16898,15,28174,18,broken clock +16898,15,28174,18,buffybot +16898,15,28174,18,cannolo +16898,15,28174,18,capmatt43 +16898,15,28174,18,carnodingo +16898,15,28174,18,carpa1981 +16898,15,28174,18,changeling316 +16898,15,28174,18,citadel +16898,15,28174,18,clautz23 +16898,15,28174,18,crossy +16898,15,28174,18,crymantis +16898,15,28174,18,csanner +16898,15,28174,18,csfloser +16898,15,28174,18,culvan +16898,15,28174,18,cyberphin +16898,15,28174,18,dangoodheart +16898,15,28174,18,darohrer +16898,15,28174,18,deferu +16898,15,28174,18,dhogar +16898,15,28174,18,dracopardo +16898,15,28174,18,drianball +16898,15,28174,18,ed_5150 +16898,15,28174,18,el_chevi +16898,15,28174,18,emanhall +16898,15,28174,18,ephastion +16898,15,28174,18,feendrendor +16898,15,28174,18,freakyjp +16898,15,28174,18,g026r +16898,15,28174,18,ggaiotto +16898,15,28174,18,goreliann +16898,15,28174,18,gwb007 +16898,15,28174,18,helios1337 +16898,15,28174,18,houron +16898,15,28174,18,hseldon +16898,15,28174,18,hugo_pf +16898,15,28174,18,hummelm +16898,15,28174,18,hybry +16898,15,28174,18,ianw12345 +16898,15,28174,18,infinita_first +16898,15,28174,18,irmachilton +16898,15,28174,18,ivan_diaz +16898,15,28174,18,jakeheil85 +16898,15,28174,18,jalopy +16898,15,28174,18,janninedb +16898,15,28174,18,jimhart3000 +16898,15,28174,18,jklewis +16898,15,28174,18,jotafe +16898,15,28174,18,jsori84 +16898,15,28174,18,jttm +16898,15,28174,18,kaepone +16898,15,28174,18,kastel +16898,15,28174,18,kemearg +16898,15,28174,18,kisakisaki +16898,15,28174,18,kissellmissile +16898,15,28174,18,kjhealey +16898,15,28174,18,ktslayer +16898,15,28174,18,kuhlschrank +16898,15,28174,18,lacueva +16898,15,28174,18,maelstromuk +16898,15,28174,18,marchill92 +16898,15,28174,18,matthias025 +16898,15,28174,18,maueze +16898,15,28174,18,mdaffonso +16898,15,28174,18,milkbottle_beckett +16898,15,28174,18,nazgoth +16898,15,28174,18,nickftfw +16898,15,28174,18,nikomdocmanda +16898,15,28174,18,nsoetens +16898,15,28174,18,ocellum +16898,15,28174,18,optimo65 +16898,15,28174,18,pdxloki +16898,15,28174,18,pez105 +16898,15,28174,18,phoenixgeek +16898,15,28174,18,pugmaster +16898,15,28174,18,queenofall +16898,15,28174,18,rabool +16898,15,28174,18,rhythmdev9 +16898,15,28174,18,ringojohn +16898,15,28174,18,robina_bsw +16898,15,28174,18,rocky cheng +16898,15,28174,18,sealpupswag +16898,15,28174,18,sharrrp +16898,15,28174,18,sir222 +16898,15,28174,18,soapermania123 +16898,15,28174,18,soundsnaive +16898,15,28174,18,spateman1 +16898,15,28174,18,sqkhenderson +16898,15,28174,18,sunfish +16898,15,28174,18,sunnyshynie +16898,15,28174,18,t3sk3y +16898,15,28174,18,tillmannen +16898,15,28174,18,tleb88 +16898,15,28174,18,tobina +16898,15,28174,18,trevor03 +16898,15,28174,18,tuosu +16898,15,28174,18,txarlinhos +16898,15,28174,18,vfizzotti +16898,15,28174,18,waltari7 +16898,15,28174,18,wattman74 +16898,15,28174,18,wilfired +16898,15,28174,18,wonko101010 +16898,15,28174,18,xiaomas +16898,15,28174,18,yrnotyrkhakis +16898,15,28174,18,zorlacz +16898,15,30791,17,alphonse95 +16898,15,30791,17,ateh +16898,15,30791,17,blacknwhite484 +16898,15,30791,17,boudreaux00 +16898,15,30791,17,cally73 +16898,15,30791,17,conmoy +16898,15,30791,17,davinfernal +16898,15,30791,17,deionarra_ +16898,15,30791,17,deliverator +16898,15,30791,17,dmitriy +16898,15,30791,17,dtroyano +16898,15,30791,17,fhomess +16898,15,30791,17,foofan +16898,15,30791,17,foofymonkey +16898,15,30791,17,gamingcouplega +16898,15,30791,17,geek71 +16898,15,30791,17,golgoth 13 +16898,15,30791,17,hammerheart82 +16898,15,30791,17,hman +16898,15,30791,17,hoostus +16898,15,30791,17,javid_rad +16898,15,30791,17,niamor +16898,15,30791,17,rianess +16898,15,30791,17,sandroc +16898,15,30791,17,sasanito +16898,15,30791,17,thecharmofit +16898,15,30791,17,zeak187 +16898,15,30791,17,zombie_cataclysm +16898,15,33518,16,kukugames +16898,15,33518,16,manu9099 +16898,15,33518,16,riotactor10 +16898,15,33518,16,theorycrack +16898,15,36419,15,mr_tsavs +16898,15,36419,15,pseudopserious +19906,14,94,107,bodblugh +19906,14,131,99,pike70 +19906,14,180,92,aandjso +19906,14,196,90,brrrmanza +19906,14,230,87,bigbadbgu +19906,14,230,87,miguelamores10 +19906,14,289,82,heroperffig +19906,14,914,62,curtish +19906,14,970,61,jamesed84 +19906,14,1109,59,korrun +19906,14,1202,58,griever667 +19906,14,1276,57,misulache01 +19906,14,1362,56,thgustafson +19906,14,1674,53,col_forbin +19906,14,1674,53,wbgfun +19906,14,1792,52,ghanaka +19906,14,1792,52,tokou +19906,14,2053,50,kevinwho +19906,14,2204,49,adriagc +19906,14,2351,48,scwont +19906,14,2758,46,flyrink +19906,14,2969,45,polomint +19906,14,3216,44,barl9758 +19906,14,3216,44,c0nst +19906,14,3216,44,joegameon +19906,14,3514,43,gibraan10 +19906,14,3514,43,heirodule +19906,14,3514,43,jfbgg +19906,14,3514,43,lukastajic +19906,14,3514,43,norev +19906,14,3815,42,bladeless +19906,14,3815,42,donriddick +19906,14,3815,42,neurosion +19906,14,3815,42,rayr +19906,14,3815,42,shruthless +19906,14,4092,41,commissar_piotr +19906,14,4092,41,kinkou +19906,14,4092,41,mister jaybee +19906,14,4092,41,monstercarl +19906,14,4092,41,sturmpanzer +19906,14,4092,41,subaruchan +19906,14,4092,41,swirek +19906,14,4092,41,y00shi +19906,14,4426,40,asderiphel +19906,14,4426,40,darth_rulless +19906,14,4426,40,the maroz +19906,14,4426,40,whitt4 +19906,14,4782,39,hellhammer2 +19906,14,4782,39,knave +19906,14,4782,39,willliao +19906,14,5150,38,bruno des montagnes +19906,14,5150,38,c3gaming +19906,14,5150,38,hicham vanborm +19906,14,5150,38,jocknroll +19906,14,5150,38,maddest hatter +19906,14,5624,37,allanon1001 +19906,14,5624,37,araym +19906,14,5624,37,blakeak43 +19906,14,5624,37,c_cutlip +19906,14,5624,37,choon +19906,14,5624,37,jhunter101 +19906,14,5624,37,ours_des_tavernes +19906,14,5624,37,rikdumzaki +19906,14,6063,36,darksan +19906,14,6063,36,joruiru +19906,14,6063,36,lebo +19906,14,6063,36,pixlfrend +19906,14,6573,35,dragonstout +19906,14,6573,35,gossamerica +19906,14,6573,35,jepp +19906,14,6573,35,jesse +19906,14,6573,35,kjncl +19906,14,7100,34,alen2 +19906,14,7100,34,crisisover +19906,14,7100,34,danman007 +19906,14,7100,34,drogon889 +19906,14,7100,34,eldestransom +19906,14,7100,34,kareyn01 +19906,14,7100,34,lux_interior +19906,14,7100,34,miss_valerion +19906,14,7100,34,nivek1385 +19906,14,7100,34,spazin +19906,14,7100,34,temujin1206 +19906,14,7679,33,arneem +19906,14,7679,33,biene_123 +19906,14,7679,33,blameless +19906,14,7679,33,daliman13 +19906,14,7679,33,dionissis +19906,14,7679,33,dmartin1982 +19906,14,7679,33,dramatheurgist +19906,14,7679,33,ezor55 +19906,14,7679,33,jaimeb +19906,14,7679,33,miro1977 +19906,14,7679,33,patchouli18 +19906,14,7679,33,penguin_girl +19906,14,7679,33,pgeo36 +19906,14,7679,33,schaden +19906,14,7679,33,simgermann +19906,14,7679,33,thesmallman +19906,14,7679,33,yc10010103 +19906,14,8351,32,aronne71 +19906,14,8351,32,bsquareda2 +19906,14,8351,32,cimadon +19906,14,8351,32,dustingood +19906,14,8351,32,georgech7713 +19906,14,8351,32,jammydee513 +19906,14,8351,32,jarosz +19906,14,8351,32,julioblake +19906,14,8351,32,krwawisz +19906,14,8351,32,leo moonstriker +19906,14,8351,32,lorlen +19906,14,8351,32,redtree247 +19906,14,8351,32,ryno8 +19906,14,8351,32,the u +19906,14,8351,32,zephyr9010 +19906,14,9086,31,archaetect +19906,14,9086,31,bolter +19906,14,9086,31,charvelsocal +19906,14,9086,31,dalestephenson +19906,14,9086,31,flangust +19906,14,9086,31,gloompaul +19906,14,9086,31,golf4george +19906,14,9086,31,gostapopoulos +19906,14,9086,31,great raldo +19906,14,9086,31,jimpax +19906,14,9086,31,joelbehne +19906,14,9086,31,jonogo +19906,14,9086,31,joshthegamer +19906,14,9086,31,kenneth_paltrow +19906,14,9086,31,kingmaker fan +19906,14,9086,31,latzko +19906,14,9086,31,losthorizons +19906,14,9086,31,luigi54 +19906,14,9086,31,mvrichthofen +19906,14,9086,31,npuldon +19906,14,9086,31,orbmac +19906,14,9086,31,patat8020 +19906,14,9086,31,pikigeek +19906,14,9086,31,sherlock65 +19906,14,9086,31,spacenut +19906,14,9086,31,vykron +19906,14,9086,31,walkingdeadmann +19906,14,9086,31,zikinhio +19906,14,9910,30,alexcastle +19906,14,9910,30,alwayslast +19906,14,9910,30,antoinedebruxelles +19906,14,9910,30,artkamtos +19906,14,9910,30,blazej480 +19906,14,9910,30,century +19906,14,9910,30,czyrkagames +19906,14,9910,30,gonzybe +19906,14,9910,30,icemanek +19906,14,9910,30,iwinsometimes +19906,14,9910,30,jamodamo +19906,14,9910,30,jetjagaa +19906,14,9910,30,jimmysoul +19906,14,9910,30,kefalokef +19906,14,9910,30,kleidokrator +19906,14,9910,30,luznyj +19906,14,9910,30,marschi22 +19906,14,9910,30,mister_peon +19906,14,9910,30,ninjakenta +19906,14,9910,30,nordaka +19906,14,9910,30,paguile2011 +19906,14,9910,30,pierreboberg +19906,14,9910,30,radaeron +19906,14,9910,30,ravekev +19906,14,9910,30,roscoethebard +19906,14,9910,30,shadowian +19906,14,9910,30,tattoo7510 +19906,14,9910,30,ubertoast +19906,14,9910,30,wuschel2312 +19906,14,9910,30,zmartianov +19906,14,10868,29,alstewart04 +19906,14,10868,29,badcobber +19906,14,10868,29,bearslayerlv +19906,14,10868,29,beefheart +19906,14,10868,29,brightbluesky +19906,14,10868,29,chaderic20 +19906,14,10868,29,convert23 +19906,14,10868,29,fxxiii +19906,14,10868,29,guyomarj +19906,14,10868,29,hadi_n +19906,14,10868,29,julian.simpson +19906,14,10868,29,jwemett +19906,14,10868,29,karaush +19906,14,10868,29,kilianjornet +19906,14,10868,29,kl_cheng88 +19906,14,10868,29,laellin +19906,14,10868,29,lara42 +19906,14,10868,29,metalapollo +19906,14,10868,29,miniarmstrong +19906,14,10868,29,mongol +19906,14,10868,29,mrpoodlepants +19906,14,10868,29,mutajon +19906,14,10868,29,nathanbeitler +19906,14,10868,29,oakman80 +19906,14,10868,29,oliverjn +19906,14,10868,29,opks22 +19906,14,10868,29,ozzman1 +19906,14,10868,29,pinkunicorn +19906,14,10868,29,pnh20 +19906,14,10868,29,preacher +19906,14,10868,29,reticencrew +19906,14,10868,29,rexus grim +19906,14,10868,29,ryandude3 +19906,14,10868,29,s_craig_zahler +19906,14,10868,29,sikflux +19906,14,10868,29,tassinar +19906,14,10868,29,thatmarkguy +19906,14,10868,29,theanalogkid +19906,14,10868,29,tilde72 +19906,14,10868,29,topbananamart +19906,14,10868,29,tuethuc +19906,14,10868,29,tyrek +19906,14,10868,29,venatoritas +19906,14,10868,29,venger0 +19906,14,10868,29,weidenbaum +19906,14,10868,29,xgorin +19906,14,10868,29,yinzadi +19906,14,11831,28,aranubis +19906,14,11831,28,cardante +19906,14,11831,28,ctaynton +19906,14,11831,28,edsmorg +19906,14,11831,28,emmaelisabeth +19906,14,11831,28,esswedl +19906,14,11831,28,flrecord +19906,14,11831,28,gabrielbuendiah +19906,14,11831,28,goblin_insane +19906,14,11831,28,gustavosolana +19906,14,11831,28,hitien +19906,14,11831,28,jobadiah +19906,14,11831,28,joey12ostrander +19906,14,11831,28,kidi +19906,14,11831,28,klausknechtskern +19906,14,11831,28,kroz +19906,14,11831,28,marcyk +19906,14,11831,28,martin2 +19906,14,11831,28,mcjc +19906,14,11831,28,mheintze +19906,14,11831,28,miloshot +19906,14,11831,28,msdyt20 +19906,14,11831,28,ow1eye +19906,14,11831,28,phineas77 +19906,14,11831,28,pimpi +19906,14,11831,28,potaesarat +19906,14,11831,28,prancingpwny +19906,14,11831,28,pstr +19906,14,11831,28,qfem3 +19906,14,11831,28,reefandsea +19906,14,11831,28,robertoele +19906,14,11831,28,saul +19906,14,11831,28,serge_le_fou +19906,14,11831,28,sillywalks25 +19906,14,11831,28,spieler01 +19906,14,11831,28,tcheumo +19906,14,11831,28,theadamglass +19906,14,11831,28,thronesmasher +19906,14,11831,28,tidus1000 +19906,14,11831,28,wrenhong +19906,14,11831,28,xonim +19906,14,11831,28,xthawx +19906,14,12910,27,andrewmeda +19906,14,12910,27,anomalyinflow +19906,14,12910,27,badosito +19906,14,12910,27,blimbo99 +19906,14,12910,27,bob_buttersworth +19906,14,12910,27,borjo14 +19906,14,12910,27,braxtonbragg +19906,14,12910,27,cbase +19906,14,12910,27,chyy +19906,14,12910,27,crysifio +19906,14,12910,27,dcroxton +19906,14,12910,27,dhrendor +19906,14,12910,27,dr brian +19906,14,12910,27,duha +19906,14,12910,27,eladnl +19906,14,12910,27,eragorn +19906,14,12910,27,eugene18 +19906,14,12910,27,falconscarlet +19906,14,12910,27,fran bs +19906,14,12910,27,fredzgreen +19906,14,12910,27,funkhauser +19906,14,12910,27,gabri_96 +19906,14,12910,27,grob34 +19906,14,12910,27,hobbsch +19906,14,12910,27,itophd +19906,14,12910,27,jennochicken +19906,14,12910,27,jesusramos +19906,14,12910,27,jpveit +19906,14,12910,27,jugglindan +19906,14,12910,27,kasha_ +19906,14,12910,27,kentreuber +19906,14,12910,27,konelkone +19906,14,12910,27,lloydgm +19906,14,12910,27,madpretorian +19906,14,12910,27,marauder +19906,14,12910,27,maria_z +19906,14,12910,27,mindphaser1 +19906,14,12910,27,mmnash84 +19906,14,12910,27,muhlenkamper +19906,14,12910,27,nrclarkson +19906,14,12910,27,nukedisk +19906,14,12910,27,oflood +19906,14,12910,27,omegalife2002 +19906,14,12910,27,onceler +19906,14,12910,27,organicroadmap +19906,14,12910,27,poomchucker +19906,14,12910,27,rcsv_ +19906,14,12910,27,rognor +19906,14,12910,27,santiago +19906,14,12910,27,setan +19906,14,12910,27,silvermuse +19906,14,12910,27,spindrift +19906,14,12910,27,springline +19906,14,12910,27,stangeman +19906,14,12910,27,starletphoenix +19906,14,12910,27,steved1979 +19906,14,12910,27,stinkfoot71 +19906,14,12910,27,strykerj +19906,14,12910,27,supereusebius +19906,14,12910,27,tdwyer25 +19906,14,12910,27,vekoma +19906,14,12910,27,webanck +19906,14,12910,27,wererat +19906,14,12910,27,wonski94 +19906,14,12910,27,xoep +19906,14,12910,27,yiweiyonghu +19906,14,14030,26,aegistoast +19906,14,14030,26,anttik +19906,14,14030,26,aohbass +19906,14,14030,26,barrie voice +19906,14,14030,26,bauldric +19906,14,14030,26,bendercube +19906,14,14030,26,berpelina +19906,14,14030,26,bitbracht +19906,14,14030,26,bittenapple +19906,14,14030,26,bluekae +19906,14,14030,26,bschremp +19906,14,14030,26,capalouest +19906,14,14030,26,cbouche +19906,14,14030,26,collapsedcodex +19906,14,14030,26,conorchinitz +19906,14,14030,26,crappyjacks +19906,14,14030,26,d0nkarnage +19906,14,14030,26,ddavis12 +19906,14,14030,26,deboor +19906,14,14030,26,dofin +19906,14,14030,26,donchristopho +19906,14,14030,26,drtrygga +19906,14,14030,26,edwardsbc +19906,14,14030,26,ellivision +19906,14,14030,26,elvamikarion +19906,14,14030,26,erinwolth +19906,14,14030,26,evildrsmith +19906,14,14030,26,expfcwintergreen +19906,14,14030,26,feffer17 +19906,14,14030,26,ferniklo +19906,14,14030,26,finnlehuman +19906,14,14030,26,flubuh +19906,14,14030,26,foxdalegames +19906,14,14030,26,frolessrunner +19906,14,14030,26,glenne13 +19906,14,14030,26,grakkus +19906,14,14030,26,hermeticmage +19906,14,14030,26,hroost +19906,14,14030,26,huntaat +19906,14,14030,26,ishnekk +19906,14,14030,26,jaranika +19906,14,14030,26,jefferion11 +19906,14,14030,26,jeroenb +19906,14,14030,26,joakims +19906,14,14030,26,jorch79 +19906,14,14030,26,justtoni +19906,14,14030,26,kahapreclo +19906,14,14030,26,kamog +19906,14,14030,26,kingdenver +19906,14,14030,26,lightdr +19906,14,14030,26,ltgustl +19906,14,14030,26,luftuar +19906,14,14030,26,manozaidimai +19906,14,14030,26,martincze +19906,14,14030,26,mattchu +19906,14,14030,26,merino11 +19906,14,14030,26,mgagan +19906,14,14030,26,moonnoise +19906,14,14030,26,morgifier +19906,14,14030,26,nachtschatten +19906,14,14030,26,nat saamanen +19906,14,14030,26,odohexe +19906,14,14030,26,parsethal +19906,14,14030,26,pbalzac +19906,14,14030,26,philsinner +19906,14,14030,26,puperman +19906,14,14030,26,pythagosaurus +19906,14,14030,26,rastak +19906,14,14030,26,rorwig123 +19906,14,14030,26,ryanmaesen +19906,14,14030,26,seladric +19906,14,14030,26,shellin +19906,14,14030,26,sirjeyhmis +19906,14,14030,26,spelledaren +19906,14,14030,26,stavros +19906,14,14030,26,sumofallfail +19906,14,14030,26,supercanuck +19906,14,14030,26,szordrin +19906,14,14030,26,teproc +19906,14,14030,26,teryg +19906,14,14030,26,theeskhaton +19906,14,14030,26,tigantango +19906,14,14030,26,trimmer +19906,14,14030,26,tumatan +19906,14,14030,26,twilightdruid +19906,14,14030,26,unclelion +19906,14,14030,26,vanflet2 +19906,14,14030,26,vincivader +19906,14,14030,26,wjfargo +19906,14,14030,26,wojgajewski +19906,14,14030,26,wojteck +19906,14,14030,26,yoddalet +19906,14,15326,25,ant_zen23 +19906,14,15326,25,aranjaeger +19906,14,15326,25,aratai +19906,14,15326,25,auroros +19906,14,15326,25,avto +19906,14,15326,25,barbie21 +19906,14,15326,25,bariscan26 +19906,14,15326,25,bionighty +19906,14,15326,25,bombus terrestris +19906,14,15326,25,bugga! +19906,14,15326,25,callow +19906,14,15326,25,caltham +19906,14,15326,25,caszanovakid +19906,14,15326,25,chivilryman2 +19906,14,15326,25,come +19906,14,15326,25,csimalo +19906,14,15326,25,danhund +19906,14,15326,25,daniel a l +19906,14,15326,25,darkvaati +19906,14,15326,25,djevo65 +19906,14,15326,25,djr44 +19906,14,15326,25,dkwd +19906,14,15326,25,doktortroll +19906,14,15326,25,drodriguez82 +19906,14,15326,25,dvigex +19906,14,15326,25,dynomis +19906,14,15326,25,edgar83 +19906,14,15326,25,el guia +19906,14,15326,25,eracer68 +19906,14,15326,25,eyel1ner +19906,14,15326,25,fawful +19906,14,15326,25,fightinburrito +19906,14,15326,25,fjmaniega +19906,14,15326,25,frostmist +19906,14,15326,25,gamervp +19906,14,15326,25,garci651 +19906,14,15326,25,glansofgloff +19906,14,15326,25,gowselka +19906,14,15326,25,grubbyfunseeker +19906,14,15326,25,guppy71 +19906,14,15326,25,gusjustgus1 +19906,14,15326,25,gwohlers +19906,14,15326,25,herdisco +19906,14,15326,25,hoeke +19906,14,15326,25,hugh_g_rection +19906,14,15326,25,ilroberto88 +19906,14,15326,25,imyourskribe +19906,14,15326,25,infinitymars +19906,14,15326,25,janeeners +19906,14,15326,25,jarev +19906,14,15326,25,jeffv135 +19906,14,15326,25,jerpet +19906,14,15326,25,jpat +19906,14,15326,25,kikogol +19906,14,15326,25,kimhs355 +19906,14,15326,25,kirotsu +19906,14,15326,25,klausderfuchs +19906,14,15326,25,kunz +19906,14,15326,25,ladyboardgame +19906,14,15326,25,leptoquark +19906,14,15326,25,lhurgoyf +19906,14,15326,25,lironbz +19906,14,15326,25,luboy +19906,14,15326,25,magikmax +19906,14,15326,25,majami +19906,14,15326,25,maljking +19906,14,15326,25,manimal +19906,14,15326,25,manji232 +19906,14,15326,25,mark_singer +19906,14,15326,25,marrok777 +19906,14,15326,25,meeplemonkey +19906,14,15326,25,mihaly +19906,14,15326,25,mikethechamp +19906,14,15326,25,mintira +19906,14,15326,25,mirandainghelbrecht +19906,14,15326,25,morellibuendia +19906,14,15326,25,mrvaldez +19906,14,15326,25,n_butcher27 +19906,14,15326,25,nevin +19906,14,15326,25,orccc +19906,14,15326,25,osadnik +19906,14,15326,25,panderps +19906,14,15326,25,philam +19906,14,15326,25,r3drav3n +19906,14,15326,25,random_phobosis +19906,14,15326,25,rcbricey +19906,14,15326,25,reddbeard +19906,14,15326,25,rg258 +19906,14,15326,25,robandkate +19906,14,15326,25,rpardoe +19906,14,15326,25,sahava +19906,14,15326,25,sam n +19906,14,15326,25,sarculare +19906,14,15326,25,schoky +19906,14,15326,25,scooters76 +19906,14,15326,25,seanmccabe +19906,14,15326,25,sesch77 +19906,14,15326,25,siersciu +19906,14,15326,25,sporkbrigade +19906,14,15326,25,stomski +19906,14,15326,25,superpcs +19906,14,15326,25,tartag +19906,14,15326,25,team pixie +19906,14,15326,25,the maniac +19906,14,15326,25,theriddlerone +19906,14,15326,25,tim_hornet +19906,14,15326,25,travnazt +19906,14,15326,25,vln4beth +19906,14,15326,25,wapniak +19906,14,16710,24,abijen +19906,14,16710,24,abishop23 +19906,14,16710,24,admiral_ahab +19906,14,16710,24,agusmetz +19906,14,16710,24,ajwitkowski +19906,14,16710,24,alexcannon +19906,14,16710,24,alexpoole +19906,14,16710,24,amongdragons +19906,14,16710,24,amos_keeto +19906,14,16710,24,andrewbarber +19906,14,16710,24,antaresdev +19906,14,16710,24,anuprightman +19906,14,16710,24,apuity +19906,14,16710,24,arch1200 +19906,14,16710,24,arisuomi +19906,14,16710,24,babykins +19906,14,16710,24,baron162 +19906,14,16710,24,betty86 +19906,14,16710,24,billarama +19906,14,16710,24,bluefrog5 +19906,14,16710,24,borlancaster347 +19906,14,16710,24,brainjamin +19906,14,16710,24,brianzx1982 +19906,14,16710,24,brocks +19906,14,16710,24,butik +19906,14,16710,24,cgrater +19906,14,16710,24,coug +19906,14,16710,24,cutoutllama +19906,14,16710,24,cyranos +19906,14,16710,24,dahdcear +19906,14,16710,24,damien_stoker +19906,14,16710,24,darwingeek +19906,14,16710,24,derekkandk +19906,14,16710,24,detinn +19906,14,16710,24,dirtypunkmonkey +19906,14,16710,24,dragonflei1989 +19906,14,16710,24,dunnagh +19906,14,16710,24,efvehem +19906,14,16710,24,eggo +19906,14,16710,24,eilidhisla +19906,14,16710,24,eitetsukb +19906,14,16710,24,elban +19906,14,16710,24,epawlowski +19906,14,16710,24,excusy +19906,14,16710,24,fairer sex +19906,14,16710,24,fanaka66 +19906,14,16710,24,felipe123 +19906,14,16710,24,fenrhys +19906,14,16710,24,foteini +19906,14,16710,24,francisbergeron +19906,14,16710,24,ftloser +19906,14,16710,24,fuxs +19906,14,16710,24,giveemhellweg +19906,14,16710,24,gosia_kamil +19906,14,16710,24,gossamersolid +19906,14,16710,24,goteki45 +19906,14,16710,24,gueneevere +19906,14,16710,24,guilhermefll +19906,14,16710,24,hareesh +19906,14,16710,24,ikarus +19906,14,16710,24,ironearth +19906,14,16710,24,ironmanwaring +19906,14,16710,24,jackieandley +19906,14,16710,24,janthis +19906,14,16710,24,javidiozz +19906,14,16710,24,jboggs2814 +19906,14,16710,24,jcparis +19906,14,16710,24,jeremy r +19906,14,16710,24,jockegson +19906,14,16710,24,jords26 +19906,14,16710,24,joshuaacosta +19906,14,16710,24,jtb_at_the_gcb +19906,14,16710,24,justinvamp15 +19906,14,16710,24,karibou77 +19906,14,16710,24,kaushikkem +19906,14,16710,24,killinmilk +19906,14,16710,24,knitabook +19906,14,16710,24,kolder +19906,14,16710,24,kschlabach +19906,14,16710,24,kylesilva +19906,14,16710,24,lakker +19906,14,16710,24,larsdavidsson +19906,14,16710,24,lisamc2 +19906,14,16710,24,livesurge +19906,14,16710,24,luisssssssss +19906,14,16710,24,luiyo +19906,14,16710,24,mad_cat_1306 +19906,14,16710,24,madster321 +19906,14,16710,24,malef +19906,14,16710,24,marianovl123 +19906,14,16710,24,mark_va +19906,14,16710,24,marshall_watson +19906,14,16710,24,marys88 +19906,14,16710,24,melchett +19906,14,16710,24,michielty +19906,14,16710,24,michigun +19906,14,16710,24,mimo70 +19906,14,16710,24,misteradequate +19906,14,16710,24,moebiuss +19906,14,16710,24,mwallenf +19906,14,16710,24,narfbuster +19906,14,16710,24,nilstillander +19906,14,16710,24,noleinaggieland +19906,14,16710,24,only2ndplace +19906,14,16710,24,papadjango +19906,14,16710,24,pey81 +19906,14,16710,24,philsstein +19906,14,16710,24,porkchop1367 +19906,14,16710,24,progmode +19906,14,16710,24,prunella +19906,14,16710,24,rakelbcn2 +19906,14,16710,24,raoc3 +19906,14,16710,24,redwol +19906,14,16710,24,rodigee +19906,14,16710,24,rowboat cop +19906,14,16710,24,salomonpunk +19906,14,16710,24,salou +19906,14,16710,24,scud-o +19906,14,16710,24,segalda +19906,14,16710,24,senalis +19906,14,16710,24,serbridge +19906,14,16710,24,serisu +19906,14,16710,24,sevencer +19906,14,16710,24,shannon2708 +19906,14,16710,24,sharpster71 +19906,14,16710,24,shfinfrock +19906,14,16710,24,shidara +19906,14,16710,24,sigizmand +19906,14,16710,24,skagerud +19906,14,16710,24,smartacus +19906,14,16710,24,sonny1030 +19906,14,16710,24,spocks_grandpa +19906,14,16710,24,stephenhanbury +19906,14,16710,24,sword256 +19906,14,16710,24,talentedmrripley +19906,14,16710,24,talonzero +19906,14,16710,24,tanos +19906,14,16710,24,tarpit82 +19906,14,16710,24,tcadams18 +19906,14,16710,24,the greenelf +19906,14,16710,24,the_fezig +19906,14,16710,24,the_garbage_man +19906,14,16710,24,therealred5 +19906,14,16710,24,thiessi +19906,14,16710,24,tim_wild +19906,14,16710,24,toad +19906,14,16710,24,tomw2005 +19906,14,16710,24,tomx2s +19906,14,16710,24,torontoraptors +19906,14,16710,24,trimox +19906,14,16710,24,virogi +19906,14,16710,24,vorland777 +19906,14,16710,24,wellsroderick +19906,14,16710,24,willyteebee +19906,14,16710,24,wooloo1 +19906,14,16710,24,wylie96 +19906,14,16710,24,zauker +19906,14,18170,23,__yo +19906,14,18170,23,_ctk +19906,14,18170,23,_the_inquiry_ +19906,14,18170,23,aarkas +19906,14,18170,23,abbundimighe +19906,14,18170,23,acestep44 +19906,14,18170,23,adonita +19906,14,18170,23,aethertower +19906,14,18170,23,afterburnnl +19906,14,18170,23,agoodman +19906,14,18170,23,ascensx +19906,14,18170,23,asger77 +19906,14,18170,23,asqueao +19906,14,18170,23,astinsinius +19906,14,18170,23,avyssaleos +19906,14,18170,23,awesem +19906,14,18170,23,baalrukh +19906,14,18170,23,bannsnger +19906,14,18170,23,bartas24 +19906,14,18170,23,battle of durak +19906,14,18170,23,bdkwombat +19906,14,18170,23,beavart +19906,14,18170,23,bethe123 +19906,14,18170,23,bigbadcam +19906,14,18170,23,blackemperor +19906,14,18170,23,bluesol +19906,14,18170,23,blutigers +19906,14,18170,23,boots01 +19906,14,18170,23,bubu78 +19906,14,18170,23,buso +19906,14,18170,23,captain houdini +19906,14,18170,23,cathony +19906,14,18170,23,celtic +19906,14,18170,23,charliewoodhead +19906,14,18170,23,clementote +19906,14,18170,23,collons2de1deu +19906,14,18170,23,corlic +19906,14,18170,23,crazybear and honey +19906,14,18170,23,daracon +19906,14,18170,23,darkmang6 +19906,14,18170,23,dbaric +19906,14,18170,23,dfurt +19906,14,18170,23,dizzydevil +19906,14,18170,23,djdsc7 +19906,14,18170,23,dorsett_case +19906,14,18170,23,draftstyle +19906,14,18170,23,drydoc +19906,14,18170,23,dsoccer5 +19906,14,18170,23,dueta +19906,14,18170,23,dulok +19906,14,18170,23,durandir +19906,14,18170,23,dusty27 +19906,14,18170,23,ealpendre +19906,14,18170,23,ebonair +19906,14,18170,23,eljugadorz +19906,14,18170,23,elvelux +19906,14,18170,23,elyklord +19906,14,18170,23,emeraldyam +19906,14,18170,23,entice +19906,14,18170,23,epicureanheron +19906,14,18170,23,erostal +19906,14,18170,23,erskinew2 +19906,14,18170,23,etagimbo +19906,14,18170,23,evilpanda +19906,14,18170,23,fatgreta +19906,14,18170,23,feroz azim +19906,14,18170,23,francoisx +19906,14,18170,23,frankblack789 +19906,14,18170,23,freezerpen +19906,14,18170,23,frelian +19906,14,18170,23,frodrig +19906,14,18170,23,fwagler +19906,14,18170,23,gallorojo +19906,14,18170,23,gameboy84 +19906,14,18170,23,gayananas +19906,14,18170,23,gecouc +19906,14,18170,23,gelo11 +19906,14,18170,23,geretcz +19906,14,18170,23,ghostkinggeorge +19906,14,18170,23,giantredmonkey +19906,14,18170,23,gladiatorus +19906,14,18170,23,glead89 +19906,14,18170,23,graciegracegrace +19906,14,18170,23,grendel +19906,14,18170,23,guillemrobi +19906,14,18170,23,gwenhwyvar +19906,14,18170,23,hazegiant +19906,14,18170,23,hpgeek +19906,14,18170,23,jack66 +19906,14,18170,23,jakejackpot +19906,14,18170,23,janjjd +19906,14,18170,23,jcmeeple3d +19906,14,18170,23,jdober77 +19906,14,18170,23,jeffmurdock01 +19906,14,18170,23,jenf +19906,14,18170,23,jfrantz +19906,14,18170,23,jimkok +19906,14,18170,23,jimnukuwai +19906,14,18170,23,jogintas +19906,14,18170,23,jsharp +19906,14,18170,23,juicious +19906,14,18170,23,kaerazy +19906,14,18170,23,kandras78 +19906,14,18170,23,kangaroochicken +19906,14,18170,23,kingtentacleau +19906,14,18170,23,kleinerm +19906,14,18170,23,lanadove +19906,14,18170,23,lawrence_s +19906,14,18170,23,leeannemccoy +19906,14,18170,23,lejaspi +19906,14,18170,23,longtom +19906,14,18170,23,lukesko +19906,14,18170,23,luminarious +19906,14,18170,23,lydon +19906,14,18170,23,maek +19906,14,18170,23,magicl89 +19906,14,18170,23,mariuscarey +19906,14,18170,23,marsop +19906,14,18170,23,matrixrenegade +19906,14,18170,23,mattg +19906,14,18170,23,mcjazz +19906,14,18170,23,mcmarker +19906,14,18170,23,michelkamp77 +19906,14,18170,23,micquebec +19906,14,18170,23,milank +19906,14,18170,23,mindmgmt +19906,14,18170,23,mithrandir61 +19906,14,18170,23,mlriley +19906,14,18170,23,mmartosdbz +19906,14,18170,23,moberho +19906,14,18170,23,mohem +19906,14,18170,23,moody152 +19906,14,18170,23,mr_hamish +19906,14,18170,23,mulder70 +19906,14,18170,23,murukthegreat +19906,14,18170,23,mwricketson +19906,14,18170,23,mymenda +19906,14,18170,23,mythoturge +19906,14,18170,23,nachosgrande +19906,14,18170,23,nagara_venteel +19906,14,18170,23,nalexa +19906,14,18170,23,nangie85 +19906,14,18170,23,narjan +19906,14,18170,23,narta1993 +19906,14,18170,23,natac +19906,14,18170,23,nellyh99 +19906,14,18170,23,nfgrapsas +19906,14,18170,23,nickht +19906,14,18170,23,nkfrank +19906,14,18170,23,ommny +19906,14,18170,23,oralmeida +19906,14,18170,23,outbackranger +19906,14,18170,23,outside lime +19906,14,18170,23,pakwan +19906,14,18170,23,pcvoigtag +19906,14,18170,23,pedram +19906,14,18170,23,peldik +19906,14,18170,23,petr_kovar +19906,14,18170,23,prolaborsocialist +19906,14,18170,23,pufonthis +19906,14,18170,23,qlczas +19906,14,18170,23,radman2k8 +19906,14,18170,23,rainordvd +19906,14,18170,23,rblichfeldt +19906,14,18170,23,recklessdreams +19906,14,18170,23,redisher +19906,14,18170,23,redwlfjsc +19906,14,18170,23,roast_chicken +19906,14,18170,23,rodiak +19906,14,18170,23,rowol +19906,14,18170,23,rowskin +19906,14,18170,23,ryodoan +19906,14,18170,23,ryuukami +19906,14,18170,23,scapgoat +19906,14,18170,23,schamppu +19906,14,18170,23,scratchmarx +19906,14,18170,23,sharzade +19906,14,18170,23,shzshazzy +19906,14,18170,23,skoposa +19906,14,18170,23,slimzl +19906,14,18170,23,slotracer +19906,14,18170,23,slum13er +19906,14,18170,23,spikethedog +19906,14,18170,23,springo87 +19906,14,18170,23,ssj71 +19906,14,18170,23,stepan_ +19906,14,18170,23,sunnyfield +19906,14,18170,23,superfafa +19906,14,18170,23,supermario426 +19906,14,18170,23,susubear +19906,14,18170,23,teamblue +19906,14,18170,23,teamgoatchris +19906,14,18170,23,the little geek +19906,14,18170,23,themurphyfella +19906,14,18170,23,thepurger +19906,14,18170,23,throkda +19906,14,18170,23,thrond +19906,14,18170,23,tigerherz +19906,14,18170,23,toonii2mc +19906,14,18170,23,toussaint +19906,14,18170,23,trecebicis +19906,14,18170,23,trol69 +19906,14,18170,23,tumos +19906,14,18170,23,tweetlebeetle +19906,14,18170,23,uferan +19906,14,18170,23,uffdah +19906,14,18170,23,unaone +19906,14,18170,23,uszat44 +19906,14,18170,23,valarmorghulisv +19906,14,18170,23,valinak +19906,14,18170,23,valiver +19906,14,18170,23,venator78 +19906,14,18170,23,venn +19906,14,18170,23,vspiker +19906,14,18170,23,wacko santa +19906,14,18170,23,warblefly81 +19906,14,18170,23,webalong +19906,14,18170,23,wendigohexe +19906,14,18170,23,wickoc +19906,14,18170,23,womkat +19906,14,18170,23,xsoul +19906,14,18170,23,yevaud +19906,14,18170,23,yogidiver +19906,14,18170,23,youkinafirefly +19906,14,18170,23,zenarchist +19906,14,18170,23,zowie +19906,14,18170,23,zychu_ +19906,14,19906,22,20 yards of linen +19906,14,19906,22,2yellow +19906,14,19906,22,aardvarkius +19906,14,19906,22,aaronphf +19906,14,19906,22,adeseon +19906,14,19906,22,adl1960 +19906,14,19906,22,ahenrick +19906,14,19906,22,aimike +19906,14,19906,22,alexmerwin13 +19906,14,19906,22,alimarie84 +19906,14,19906,22,allenw82 +19906,14,19906,22,amajugar +19906,14,19906,22,ambiryan13 +19906,14,19906,22,amor55 +19906,14,19906,22,andes_47v +19906,14,19906,22,antherem +19906,14,19906,22,apathy +19906,14,19906,22,area51 +19906,14,19906,22,arecas13 +19906,14,19906,22,aresicter92 +19906,14,19906,22,arlantldr +19906,14,19906,22,artemiswild +19906,14,19906,22,aruba3000 +19906,14,19906,22,ashavan +19906,14,19906,22,ashton210z +19906,14,19906,22,autem_n_amp +19906,14,19906,22,badrito +19906,14,19906,22,banxee +19906,14,19906,22,barreka +19906,14,19906,22,bartapu +19906,14,19906,22,bb666 +19906,14,19906,22,beatu +19906,14,19906,22,beazel_b +19906,14,19906,22,beefythepug +19906,14,19906,22,bemark1221 +19906,14,19906,22,benski +19906,14,19906,22,berit76 +19906,14,19906,22,bertil +19906,14,19906,22,bicienzu +19906,14,19906,22,bigdaddyb +19906,14,19906,22,bigonroad +19906,14,19906,22,bloke_over_there +19906,14,19906,22,boardgamefrank +19906,14,19906,22,bob_tracer +19906,14,19906,22,boredgamesco +19906,14,19906,22,braiden +19906,14,19906,22,brerfox +19906,14,19906,22,brianneuls +19906,14,19906,22,bubbag792852249 +19906,14,19906,22,bullfrogggy +19906,14,19906,22,cabbage_boy +19906,14,19906,22,cammuppetry +19906,14,19906,22,cannuckchick +19906,14,19906,22,carighan +19906,14,19906,22,ceh245 +19906,14,19906,22,cheddarx +19906,14,19906,22,cheesechick +19906,14,19906,22,chelkones +19906,14,19906,22,chewy77 +19906,14,19906,22,chiefnbeef +19906,14,19906,22,chrapaszcz +19906,14,19906,22,chrishacky +19906,14,19906,22,ckaefe +19906,14,19906,22,cliffiesw +19906,14,19906,22,clotoro +19906,14,19906,22,clynderon +19906,14,19906,22,coclea +19906,14,19906,22,colossus1919 +19906,14,19906,22,confusedpup +19906,14,19906,22,conquis7ador +19906,14,19906,22,constant1n3 +19906,14,19906,22,cowod +19906,14,19906,22,crm2001a +19906,14,19906,22,csorgius +19906,14,19906,22,curly_scient +19906,14,19906,22,cwtch +19906,14,19906,22,dalanel +19906,14,19906,22,danto19 +19906,14,19906,22,dark falcon +19906,14,19906,22,darker +19906,14,19906,22,ddarling8 +19906,14,19906,22,delswit +19906,14,19906,22,derianhorgen +19906,14,19906,22,deromit +19906,14,19906,22,deteroc +19906,14,19906,22,deyacht +19906,14,19906,22,dfelker +19906,14,19906,22,djmo +19906,14,19906,22,djstudley +19906,14,19906,22,dnlnwmn +19906,14,19906,22,dooktibs +19906,14,19906,22,dtcoutu +19906,14,19906,22,dynalange129 +19906,14,19906,22,eamo +19906,14,19906,22,el_vis +19906,14,19906,22,elemm +19906,14,19906,22,elhebert +19906,14,19906,22,elvis68 +19906,14,19906,22,emildia +19906,14,19906,22,enaudible +19906,14,19906,22,enrevesado +19906,14,19906,22,eorl +19906,14,19906,22,eurohobbes +19906,14,19906,22,everlong278 +19906,14,19906,22,falcon8664 +19906,14,19906,22,felner +19906,14,19906,22,ferg0013 +19906,14,19906,22,ferion +19906,14,19906,22,feydjm +19906,14,19906,22,figilano +19906,14,19906,22,floppen +19906,14,19906,22,fooljohnson +19906,14,19906,22,frar +19906,14,19906,22,fugitive guy +19906,14,19906,22,gamer_dd +19906,14,19906,22,gashpi +19906,14,19906,22,geoburak +19906,14,19906,22,gloryofthe90s +19906,14,19906,22,goodsound +19906,14,19906,22,gotstank +19906,14,19906,22,grummi +19906,14,19906,22,gvchief +19906,14,19906,22,h00x +19906,14,19906,22,habe +19906,14,19906,22,haggler +19906,14,19906,22,hannahrscott +19906,14,19906,22,hannamckay +19906,14,19906,22,hdeagle71 +19906,14,19906,22,herbipolitaner +19906,14,19906,22,heretic_dave +19906,14,19906,22,hernando_rey +19906,14,19906,22,hickman_75 +19906,14,19906,22,hogger +19906,14,19906,22,hoosierpapa +19906,14,19906,22,houdini117 +19906,14,19906,22,hwki +19906,14,19906,22,hyphz +19906,14,19906,22,iamsauerkraut +19906,14,19906,22,iliad_keys +19906,14,19906,22,ill6 +19906,14,19906,22,imantis +19906,14,19906,22,immortalpaladin +19906,14,19906,22,indig0 +19906,14,19906,22,inj3ction +19906,14,19906,22,ioeh178 +19906,14,19906,22,itff +19906,14,19906,22,ivan76 +19906,14,19906,22,jacobyjd +19906,14,19906,22,jasoncannon +19906,14,19906,22,jburger1981 +19906,14,19906,22,jcapodiferro +19906,14,19906,22,jchobbs +19906,14,19906,22,jj12121616 +19906,14,19906,22,joeyaerts +19906,14,19906,22,johnoswaldkunkelberg +19906,14,19906,22,jonbryon +19906,14,19906,22,juheimbu +19906,14,19906,22,jyrael12 +19906,14,19906,22,kandera +19906,14,19906,22,karazir +19906,14,19906,22,kareds +19906,14,19906,22,karoath +19906,14,19906,22,kasperkenth +19906,14,19906,22,katatonia +19906,14,19906,22,kavond +19906,14,19906,22,kdelp +19906,14,19906,22,keadys15 +19906,14,19906,22,kebrantador +19906,14,19906,22,kerrinaddis +19906,14,19906,22,khammond87 +19906,14,19906,22,kickbut101 +19906,14,19906,22,kittenmcgowan +19906,14,19906,22,kiwtig3 +19906,14,19906,22,knoxxharrington +19906,14,19906,22,kram3r +19906,14,19906,22,kretschmernils +19906,14,19906,22,krupps58 +19906,14,19906,22,kudelicek +19906,14,19906,22,kugelkuno +19906,14,19906,22,kukl +19906,14,19906,22,kveld +19906,14,19906,22,laermor +19906,14,19906,22,landonsquire +19906,14,19906,22,laurella27 +19906,14,19906,22,leedoeden +19906,14,19906,22,leinadoj +19906,14,19906,22,lennys +19906,14,19906,22,lililice +19906,14,19906,22,lithojazzosphere +19906,14,19906,22,livevyne +19906,14,19906,22,locksteed +19906,14,19906,22,lordarthur88 +19906,14,19906,22,madkat +19906,14,19906,22,magnet boy +19906,14,19906,22,manath +19906,14,19906,22,manoforange +19906,14,19906,22,markkawika +19906,14,19906,22,markus91 +19906,14,19906,22,mattcharlton +19906,14,19906,22,mattlong6 +19906,14,19906,22,mattyoung23 +19906,14,19906,22,mbruner1984 +19906,14,19906,22,melhilion +19906,14,19906,22,melissa +19906,14,19906,22,melliarc +19906,14,19906,22,memimo +19906,14,19906,22,mentatyp +19906,14,19906,22,mhuggins123 +19906,14,19906,22,micheloncio +19906,14,19906,22,miguelgm8 +19906,14,19906,22,mika79 +19906,14,19906,22,mika_f1 +19906,14,19906,22,mikek47 +19906,14,19906,22,miss panda +19906,14,19906,22,mjt1 +19906,14,19906,22,mkfifo +19906,14,19906,22,monkeyburger +19906,14,19906,22,mordune +19906,14,19906,22,morgothrond +19906,14,19906,22,mostlyfarmless +19906,14,19906,22,mrblocker +19906,14,19906,22,mrman2k3 +19906,14,19906,22,nematic28 +19906,14,19906,22,nexbot +19906,14,19906,22,neysmeey +19906,14,19906,22,ninjadude +19906,14,19906,22,noelferrer +19906,14,19906,22,nsparks +19906,14,19906,22,ntsilver +19906,14,19906,22,ogrecrusher +19906,14,19906,22,omell +19906,14,19906,22,orionstars +19906,14,19906,22,palomitus +19906,14,19906,22,pgoody +19906,14,19906,22,pitre +19906,14,19906,22,pjvedder +19906,14,19906,22,pjwest +19906,14,19906,22,prousseau +19906,14,19906,22,pugthulhu +19906,14,19906,22,qafyg +19906,14,19906,22,questbird +19906,14,19906,22,rafaelcanario94 +19906,14,19906,22,rafamsilva +19906,14,19906,22,randomcore +19906,14,19906,22,rayell +19906,14,19906,22,realmadbid +19906,14,19906,22,rebelsnowflake +19906,14,19906,22,redtribe +19906,14,19906,22,reytio +19906,14,19906,22,rhedik +19906,14,19906,22,riktus +19906,14,19906,22,rkgibson2 +19906,14,19906,22,rkraus18 +19906,14,19906,22,roman777 +19906,14,19906,22,romassanta +19906,14,19906,22,rpgarcher +19906,14,19906,22,rubygamer +19906,14,19906,22,rufus013 +19906,14,19906,22,ruin_shade +19906,14,19906,22,rxshorty +19906,14,19906,22,rynecchris +19906,14,19906,22,sahd +19906,14,19906,22,sasquatch +19906,14,19906,22,scott38 +19906,14,19906,22,scotte +19906,14,19906,22,sdnorris +19906,14,19906,22,sebadarkside +19906,14,19906,22,shaku91 +19906,14,19906,22,shivanangel +19906,14,19906,22,shonnigford +19906,14,19906,22,sickermae +19906,14,19906,22,silentspoon +19906,14,19906,22,siqvoo +19906,14,19906,22,sirgodwin +19906,14,19906,22,ski72 +19906,14,19906,22,skynard74 +19906,14,19906,22,slinkydink +19906,14,19906,22,slowcorner +19906,14,19906,22,soachy +19906,14,19906,22,son of beo +19906,14,19906,22,spr1ntler +19906,14,19906,22,stefcn44 +19906,14,19906,22,strubs42 +19906,14,19906,22,strygalldwir +19906,14,19906,22,swnoller01 +19906,14,19906,22,tastya1ds +19906,14,19906,22,tealyf +19906,14,19906,22,temar +19906,14,19906,22,tetsam +19906,14,19906,22,thaddeuspwhirl +19906,14,19906,22,thedaath +19906,14,19906,22,theeconomist20 +19906,14,19906,22,theresistance +19906,14,19906,22,thermald +19906,14,19906,22,timolouisse +19906,14,19906,22,toniroura87 +19906,14,19906,22,tornadolover +19906,14,19906,22,toscano +19906,14,19906,22,triviadave +19906,14,19906,22,troynyne +19906,14,19906,22,tryggwe +19906,14,19906,22,twistedviolet +19906,14,19906,22,ubersii +19906,14,19906,22,unsm1le +19906,14,19906,22,uppdal +19906,14,19906,22,v omax +19906,14,19906,22,ve_domingues_ +19906,14,19906,22,veerle2708 +19906,14,19906,22,viresquivel +19906,14,19906,22,vlmarshall +19906,14,19906,22,voynar +19906,14,19906,22,vurtan +19906,14,19906,22,wadealtmeier +19906,14,19906,22,wakasm +19906,14,19906,22,windingroad +19906,14,19906,22,woerlinsel +19906,14,19906,22,wormaap +19906,14,19906,22,xiaolala +19906,14,19906,22,zakimos +19906,14,19906,22,zerimar +19906,14,21713,21,383cherokee +19906,14,21713,21,admiral fisher +19906,14,21713,21,adraven +19906,14,21713,21,akerfeldt +19906,14,21713,21,alebol +19906,14,21713,21,alekhine +19906,14,21713,21,alexon +19906,14,21713,21,alls3 +19906,14,21713,21,alscion +19906,14,21713,21,amanwing +19906,14,21713,21,amurobo +19906,14,21713,21,andreas_42 +19906,14,21713,21,andrebst +19906,14,21713,21,andyski84 +19906,14,21713,21,aneken +19906,14,21713,21,angry_bob +19906,14,21713,21,antihero88 +19906,14,21713,21,applejuicekoala +19906,14,21713,21,apriel +19906,14,21713,21,arduano +19906,14,21713,21,arnaudel +19906,14,21713,21,arneson +19906,14,21713,21,arseny1987 +19906,14,21713,21,arteglam +19906,14,21713,21,ascetrec +19906,14,21713,21,ashnight +19906,14,21713,21,atlemar +19906,14,21713,21,axp13200 +19906,14,21713,21,balowie +19906,14,21713,21,barrumbo +19906,14,21713,21,baylor +19906,14,21713,21,beac82 +19906,14,21713,21,betonsc +19906,14,21713,21,bigo25 +19906,14,21713,21,blaisect +19906,14,21713,21,blipadouzi +19906,14,21713,21,blittle +19906,14,21713,21,bluedude303 +19906,14,21713,21,bmacp +19906,14,21713,21,bnk01 +19906,14,21713,21,bomsor +19906,14,21713,21,bookblogger +19906,14,21713,21,bradlanica +19906,14,21713,21,braffe +19906,14,21713,21,branimirtkalec +19906,14,21713,21,bread24 +19906,14,21713,21,brettner +19906,14,21713,21,bronco_billy +19906,14,21713,21,brunolts +19906,14,21713,21,buck817 +19906,14,21713,21,bunnycatch3r +19906,14,21713,21,burzak +19906,14,21713,21,buskerrhymes +19906,14,21713,21,bwt2q +19906,14,21713,21,caedium +19906,14,21713,21,cafernan73 +19906,14,21713,21,candyshine +19906,14,21713,21,carlos77 +19906,14,21713,21,carlsul +19906,14,21713,21,carnietim +19906,14,21713,21,catadario +19906,14,21713,21,catraga +19906,14,21713,21,cdimaster +19906,14,21713,21,celhya +19906,14,21713,21,chad56s +19906,14,21713,21,chadefin +19906,14,21713,21,chaosabounds +19906,14,21713,21,chaoshat +19906,14,21713,21,cheesedanish +19906,14,21713,21,chiga +19906,14,21713,21,chris_swain +19906,14,21713,21,cinsto +19906,14,21713,21,cjurgens +19906,14,21713,21,claudinee +19906,14,21713,21,clem_achille +19906,14,21713,21,consensio +19906,14,21713,21,cookiemaster57 +19906,14,21713,21,craslorg +19906,14,21713,21,croooooow +19906,14,21713,21,crunchygoat +19906,14,21713,21,cwb1014 +19906,14,21713,21,czmielon +19906,14,21713,21,davedanger +19906,14,21713,21,dcclark +19906,14,21713,21,dedalus78 +19906,14,21713,21,deebotte +19906,14,21713,21,deluxe_247 +19906,14,21713,21,demeter1124 +19906,14,21713,21,desmodus +19906,14,21713,21,detectivesparky +19906,14,21713,21,divicaesar +19906,14,21713,21,dod666 +19906,14,21713,21,doubl +19906,14,21713,21,drag7200 +19906,14,21713,21,dragonreader +19906,14,21713,21,duck1812 +19906,14,21713,21,dzanardana +19906,14,21713,21,easyasapie +19906,14,21713,21,ecirelli +19906,14,21713,21,edgarmolas +19906,14,21713,21,edulg +19906,14,21713,21,egonjoachim +19906,14,21713,21,eklay +19906,14,21713,21,elbowjones +19906,14,21713,21,eldooderino +19906,14,21713,21,elk1313 +19906,14,21713,21,ellart +19906,14,21713,21,enzoone +19906,14,21713,21,erak +19906,14,21713,21,erboka +19906,14,21713,21,ericmpaq +19906,14,21713,21,estynor +19906,14,21713,21,etague +19906,14,21713,21,ever31 +19906,14,21713,21,ezmrcz +19906,14,21713,21,fairlyhyperman +19906,14,21713,21,fher11 +19906,14,21713,21,fips +19906,14,21713,21,fishticuffs +19906,14,21713,21,fp723 +19906,14,21713,21,frankx0r88 +19906,14,21713,21,fraserryanw +19906,14,21713,21,g8_n7 +19906,14,21713,21,gambitfruit +19906,14,21713,21,gamenashon +19906,14,21713,21,gasnyder24 +19906,14,21713,21,gatas +19906,14,21713,21,gaterspiel +19906,14,21713,21,gdesmott +19906,14,21713,21,ggeek +19906,14,21713,21,girlinspace +19906,14,21713,21,gobythebook +19906,14,21713,21,godballe +19906,14,21713,21,gonzxs +19906,14,21713,21,goshawk +19906,14,21713,21,gpetersen +19906,14,21713,21,gralhill +19906,14,21713,21,grammatoncleric +19906,14,21713,21,greemoz +19906,14,21713,21,green404 +19906,14,21713,21,grindmal +19906,14,21713,21,grognard72 +19906,14,21713,21,gskala01 +19906,14,21713,21,gurgeh +19906,14,21713,21,gymclass +19906,14,21713,21,gzuzrocks +19906,14,21713,21,hanno12 +19906,14,21713,21,hardeep +19906,14,21713,21,hawaiihappy +19906,14,21713,21,henrysunset +19906,14,21713,21,hgg11 +19906,14,21713,21,hohi +19906,14,21713,21,holmezzz +19906,14,21713,21,i7evil +19906,14,21713,21,iisamu +19906,14,21713,21,ikaes +19906,14,21713,21,impeira +19906,14,21713,21,imtiaz haider +19906,14,21713,21,inalmama +19906,14,21713,21,incubant +19906,14,21713,21,ironman867 +19906,14,21713,21,isaacmeyergames +19906,14,21713,21,ixleoxi +19906,14,21713,21,jackthorowitz +19906,14,21713,21,jagdcarcajou +19906,14,21713,21,jamillington +19906,14,21713,21,jandarm +19906,14,21713,21,jasonlap +19906,14,21713,21,jaywie16 +19906,14,21713,21,jcheller +19906,14,21713,21,jephque +19906,14,21713,21,jeremyriehl +19906,14,21713,21,jesserwheeler +19906,14,21713,21,jillch +19906,14,21713,21,jnsutt +19906,14,21713,21,johnhqld +19906,14,21713,21,joloma +19906,14,21713,21,jonandkaren +19906,14,21713,21,justinx_nl +19906,14,21713,21,kaligula +19906,14,21713,21,kamiidude +19906,14,21713,21,keeklo +19906,14,21713,21,keigi +19906,14,21713,21,kenzie dark +19906,14,21713,21,kevmo77 +19906,14,21713,21,kingkhaos +19906,14,21713,21,kinkajou79 +19906,14,21713,21,kkbrown +19906,14,21713,21,klaxxiva +19906,14,21713,21,knilob +19906,14,21713,21,koreanpenguin +19906,14,21713,21,kumaheiyama +19906,14,21713,21,landofhov +19906,14,21713,21,langewischd +19906,14,21713,21,lavenderdragon +19906,14,21713,21,lazytribe +19906,14,21713,21,letsolympics +19906,14,21713,21,libonati +19906,14,21713,21,lifeisgooood +19906,14,21713,21,lightrebel +19906,14,21713,21,littlecor +19906,14,21713,21,littleleo5 +19906,14,21713,21,mabell_yah +19906,14,21713,21,madtommy +19906,14,21713,21,madziaperlak +19906,14,21713,21,major sholto +19906,14,21713,21,manissimus +19906,14,21713,21,mardor77 +19906,14,21713,21,mariana +19906,14,21713,21,mastadaddy +19906,14,21713,21,matharos +19906,14,21713,21,mathew753 +19906,14,21713,21,mathieu17 +19906,14,21713,21,mattfantastic +19906,14,21713,21,mbower3 +19906,14,21713,21,meeplenyt +19906,14,21713,21,mementoh +19906,14,21713,21,mentis +19906,14,21713,21,mgnshr +19906,14,21713,21,michelleps +19906,14,21713,21,michii +19906,14,21713,21,mikemkh +19906,14,21713,21,mikep89 +19906,14,21713,21,millicant +19906,14,21713,21,mlmendonca +19906,14,21713,21,mmagalei +19906,14,21713,21,moll +19906,14,21713,21,morg glum +19906,14,21713,21,mquimper +19906,14,21713,21,mr_nick +19906,14,21713,21,mr_papa_x3 +19906,14,21713,21,mr_q +19906,14,21713,21,mrbu5h +19906,14,21713,21,mrdigdoug +19906,14,21713,21,mrjandmrj +19906,14,21713,21,mrnapknman +19906,14,21713,21,mtgirl +19906,14,21713,21,mtp302 +19906,14,21713,21,mugi +19906,14,21713,21,mynameisfourteen +19906,14,21713,21,naferlu +19906,14,21713,21,nemog +19906,14,21713,21,neondreamer +19906,14,21713,21,neskarde +19906,14,21713,21,nestros +19906,14,21713,21,nickfrijters +19906,14,21713,21,niledesign +19906,14,21713,21,niukeko +19906,14,21713,21,nolanbruce +19906,14,21713,21,nymphera +19906,14,21713,21,ocdspectrum +19906,14,21713,21,oceanpig +19906,14,21713,21,ohlookiwonagain +19906,14,21713,21,oldwombat2 +19906,14,21713,21,onedayyou +19906,14,21713,21,onikerubin +19906,14,21713,21,ontheattack +19906,14,21713,21,optimisticmoose +19906,14,21713,21,orange_rhino +19906,14,21713,21,ossx +19906,14,21713,21,otter +19906,14,21713,21,ovaltine jenkins +19906,14,21713,21,pakord +19906,14,21713,21,pantsbooger +19906,14,21713,21,parasiempre +19906,14,21713,21,parsdunk +19906,14,21713,21,paulohi +19906,14,21713,21,pawlom +19906,14,21713,21,peachohs +19906,14,21713,21,peksilon +19906,14,21713,21,perfectzebra +19906,14,21713,21,phaelen2003 +19906,14,21713,21,pheips +19906,14,21713,21,phoenix44 +19906,14,21713,21,pi_matt +19906,14,21713,21,pickselated +19906,14,21713,21,pieces09 +19906,14,21713,21,planeterb +19906,14,21713,21,pombo +19906,14,21713,21,pusherman42 +19906,14,21713,21,quadenstein +19906,14,21713,21,quantumscipio +19906,14,21713,21,rachelcjm +19906,14,21713,21,rafa03 +19906,14,21713,21,rajja29 +19906,14,21713,21,ramadan +19906,14,21713,21,ravenwindu +19906,14,21713,21,readerx20 +19906,14,21713,21,readme_ifyoucan +19906,14,21713,21,reamdepandawan +19906,14,21713,21,renan_rizzo +19906,14,21713,21,resting +19906,14,21713,21,rmcunninghamn +19906,14,21713,21,rmerrill14 +19906,14,21713,21,robza123 +19906,14,21713,21,romantic +19906,14,21713,21,rootbierz +19906,14,21713,21,rorpen86 +19906,14,21713,21,rpanesar +19906,14,21713,21,saikyo79 +19906,14,21713,21,samuel vines +19906,14,21713,21,samurailord +19906,14,21713,21,sanglierfm01 +19906,14,21713,21,sannett +19906,14,21713,21,saua +19906,14,21713,21,schlessier +19906,14,21713,21,schnutenmel +19906,14,21713,21,sdschlager +19906,14,21713,21,seaniefresh101 +19906,14,21713,21,seb3808 +19906,14,21713,21,sfarrell +19906,14,21713,21,sgrull +19906,14,21713,21,shadow17 +19906,14,21713,21,shagy +19906,14,21713,21,shako +19906,14,21713,21,shaxbere +19906,14,21713,21,shrimpink +19906,14,21713,21,shtfck +19906,14,21713,21,simoz +19906,14,21713,21,sirfantato +19906,14,21713,21,skirmish_tactics +19906,14,21713,21,skudfisher +19906,14,21713,21,skybreak +19906,14,21713,21,spacemantompsie +19906,14,21713,21,spellencafemdam +19906,14,21713,21,spidermite +19906,14,21713,21,spielenerds_de +19906,14,21713,21,spinoza +19906,14,21713,21,sqwrl +19906,14,21713,21,ssuchnc +19906,14,21713,21,stagmo +19906,14,21713,21,stancage +19906,14,21713,21,stavo343 +19906,14,21713,21,stephan111 +19906,14,21713,21,stewan +19906,14,21713,21,stonedbeer +19906,14,21713,21,stormcrow42 +19906,14,21713,21,strelok +19906,14,21713,21,superfabio +19906,14,21713,21,superman829 +19906,14,21713,21,supersinsin +19906,14,21713,21,surlepoint +19906,14,21713,21,swiftshadow +19906,14,21713,21,taigoro +19906,14,21713,21,talarius +19906,14,21713,21,teaboy +19906,14,21713,21,techdudetx +19906,14,21713,21,templarjr +19906,14,21713,21,thanos_g +19906,14,21713,21,the_great_dalmuti +19906,14,21713,21,thehowie +19906,14,21713,21,themonkeybear +19906,14,21713,21,therker +19906,14,21713,21,therobedmonds +19906,14,21713,21,thesnyderguy +19906,14,21713,21,thobio87 +19906,14,21713,21,thripster +19906,14,21713,21,thyte +19906,14,21713,21,timbob1907 +19906,14,21713,21,timtim23 +19906,14,21713,21,tlee33 +19906,14,21713,21,tofi15 +19906,14,21713,21,tomasbartl +19906,14,21713,21,toppyoushimonai +19906,14,21713,21,trimall +19906,14,21713,21,trxxx +19906,14,21713,21,turbo789 +19906,14,21713,21,twosi +19906,14,21713,21,tygerzroze +19906,14,21713,21,tzol +19906,14,21713,21,ucacuscus +19906,14,21713,21,ukmatt78 +19906,14,21713,21,usefulgrain2 +19906,14,21713,21,utefan +19906,14,21713,21,utiemyshoes +19906,14,21713,21,vanek13991 +19906,14,21713,21,vanl0003 +19906,14,21713,21,villagemeeple +19906,14,21713,21,volkerracho +19906,14,21713,21,vviandelle +19906,14,21713,21,wacky777 +19906,14,21713,21,wamurrell +19906,14,21713,21,wardancer33 +19906,14,21713,21,watnegutten +19906,14,21713,21,webvader +19906,14,21713,21,weyrbrat +19906,14,21713,21,wiztriktevil +19906,14,21713,21,xraziel117 +19906,14,21713,21,yagami 225 +19906,14,21713,21,yaki55 +19906,14,21713,21,yorkist4 +19906,14,21713,21,yourownhero +19906,14,21713,21,yoyamba +19906,14,21713,21,ytlai +19906,14,21713,21,zabetts +19906,14,21713,21,zachery19 +19906,14,21713,21,zamfirm +19906,14,21713,21,zemacaco +19906,14,21713,21,zemd +19906,14,21713,21,ziraffe +19906,14,21713,21,znapperhead +19906,14,21713,21,zovu +19906,14,21713,21,zzypster +19906,14,23640,20,14cross +19906,14,23640,20,3bcrown +19906,14,23640,20,aassiiaa +19906,14,23640,20,abundance of flowers +19906,14,23640,20,adamcarney +19906,14,23640,20,aghast +19906,14,23640,20,akiramiyake +19906,14,23640,20,alato +19906,14,23640,20,alexkalle +19906,14,23640,20,alexmoreau +19906,14,23640,20,alf1991x +19906,14,23640,20,alrp +19906,14,23640,20,alwaysjoshua +19906,14,23640,20,andrewghost89 +19906,14,23640,20,andystaats +19906,14,23640,20,ap1610 +19906,14,23640,20,archer_13 +19906,14,23640,20,ardagast972 +19906,14,23640,20,arfagid +19906,14,23640,20,asakawski +19906,14,23640,20,athom6227 +19906,14,23640,20,atlassian777 +19906,14,23640,20,atraangelis +19906,14,23640,20,autumnights +19906,14,23640,20,axelbenson +19906,14,23640,20,azu1a +19906,14,23640,20,babbler +19906,14,23640,20,barse +19906,14,23640,20,bb8droid +19906,14,23640,20,bcorne2 +19906,14,23640,20,bd75 +19906,14,23640,20,beachbadger2003 +19906,14,23640,20,bearabl +19906,14,23640,20,beat9946 +19906,14,23640,20,becks83 +19906,14,23640,20,berery +19906,14,23640,20,berny8a +19906,14,23640,20,bilbobaglin +19906,14,23640,20,binauralg +19906,14,23640,20,birdlicious +19906,14,23640,20,blackorange +19906,14,23640,20,blinko +19906,14,23640,20,bloerg +19906,14,23640,20,bluestripe44 +19906,14,23640,20,bobess13 +19906,14,23640,20,bobroberts +19906,14,23640,20,bochi_za_rasu +19906,14,23640,20,bolivina +19906,14,23640,20,borgboss +19906,14,23640,20,brandonwall67 +19906,14,23640,20,brettspielhero +19906,14,23640,20,bromangum +19906,14,23640,20,brosde +19906,14,23640,20,brotherg +19906,14,23640,20,brothervm +19906,14,23640,20,buadb +19906,14,23640,20,bulmung +19906,14,23640,20,bunuel +19906,14,23640,20,burgundy4 +19906,14,23640,20,byby_sm +19906,14,23640,20,c6po +19906,14,23640,20,canadianblackanvil +19906,14,23640,20,capnbishop +19906,14,23640,20,cardboardist +19906,14,23640,20,carnagemd +19906,14,23640,20,cateusk +19906,14,23640,20,catmania +19906,14,23640,20,cavehinds +19906,14,23640,20,ccasin +19906,14,23640,20,cfigueras +19906,14,23640,20,chachi_ws +19906,14,23640,20,chaosman +19906,14,23640,20,charlie tail +19906,14,23640,20,charlie_en +19906,14,23640,20,chase0em0chaser +19906,14,23640,20,chelejuan +19906,14,23640,20,chrisromer +19906,14,23640,20,christizzz +19906,14,23640,20,cinemystic +19906,14,23640,20,cipo3 +19906,14,23640,20,ciroccojones +19906,14,23640,20,ckoutanoy +19906,14,23640,20,clarocque +19906,14,23640,20,clauron +19906,14,23640,20,clodiappp +19906,14,23640,20,coolguitar7 +19906,14,23640,20,cpaladino +19906,14,23640,20,cpt nix +19906,14,23640,20,crazy_dave +19906,14,23640,20,creech +19906,14,23640,20,creynolds6 +19906,14,23640,20,crusader8 +19906,14,23640,20,csaman +19906,14,23640,20,cscutch +19906,14,23640,20,currybay +19906,14,23640,20,dailyrich +19906,14,23640,20,daltonico1 +19906,14,23640,20,darkona +19906,14,23640,20,das_boom +19906,14,23640,20,dashadow +19906,14,23640,20,datrollking +19906,14,23640,20,davidgmlg +19906,14,23640,20,dcheddar +19906,14,23640,20,dedonta +19906,14,23640,20,deempl +19906,14,23640,20,delaneygames +19906,14,23640,20,delun +19906,14,23640,20,delusionalnye +19906,14,23640,20,demoore4 +19906,14,23640,20,dendarii42 +19906,14,23640,20,derrick wildstar +19906,14,23640,20,detrit +19906,14,23640,20,dexvera +19906,14,23640,20,diceanddishes +19906,14,23640,20,diock20 +19906,14,23640,20,djefer +19906,14,23640,20,dosskias +19906,14,23640,20,dr4mor +19906,14,23640,20,drapichrust7 +19906,14,23640,20,drhernan +19906,14,23640,20,duffee +19906,14,23640,20,dumagici +19906,14,23640,20,duvodas +19906,14,23640,20,dw5k +19906,14,23640,20,earlybath +19906,14,23640,20,edefuentes +19906,14,23640,20,edgecrusher100 +19906,14,23640,20,eladio1975 +19906,14,23640,20,eldamir +19906,14,23640,20,emajik +19906,14,23640,20,emmowbee +19906,14,23640,20,emperor jd +19906,14,23640,20,eric_d +19906,14,23640,20,erroneousplanet +19906,14,23640,20,esrohner +19906,14,23640,20,evilandy +19906,14,23640,20,explodedeath +19906,14,23640,20,extantpapa +19906,14,23640,20,eyeguy212 +19906,14,23640,20,fabehi +19906,14,23640,20,falconashe +19906,14,23640,20,farscape811 +19906,14,23640,20,feenix1363 +19906,14,23640,20,filtus +19906,14,23640,20,firefox +19906,14,23640,20,firmino +19906,14,23640,20,fizyk123 +19906,14,23640,20,flovouin +19906,14,23640,20,forcepush28 +19906,14,23640,20,foz90 +19906,14,23640,20,fozdyke999 +19906,14,23640,20,fozware +19906,14,23640,20,freeloading phill +19906,14,23640,20,fuad13 +19906,14,23640,20,fullmetalbruin +19906,14,23640,20,funckydude +19906,14,23640,20,g3p3nk +19906,14,23640,20,gamcub +19906,14,23640,20,gamer17 +19906,14,23640,20,gamerdad74 +19906,14,23640,20,gamerhusband +19906,14,23640,20,gamesnut +19906,14,23640,20,gastonbuenosayres +19906,14,23640,20,gc gamer +19906,14,23640,20,gdogsl +19906,14,23640,20,geerhead +19906,14,23640,20,gemsquem +19906,14,23640,20,genghiswayne +19906,14,23640,20,geoffgibbs +19906,14,23640,20,goldp +19906,14,23640,20,gopherkh +19906,14,23640,20,gorillapancake +19906,14,23640,20,grappler165 +19906,14,23640,20,greenesq +19906,14,23640,20,grenator +19906,14,23640,20,grffiin +19906,14,23640,20,grislan +19906,14,23640,20,grobilla +19906,14,23640,20,grothgar +19906,14,23640,20,guildwa +19906,14,23640,20,guimn +19906,14,23640,20,guizoguille +19906,14,23640,20,gyrokite +19906,14,23640,20,hallojenn +19906,14,23640,20,hattonj +19906,14,23640,20,hcocow +19906,14,23640,20,hed0ne +19906,14,23640,20,herra ukkeli +19906,14,23640,20,homarn +19906,14,23640,20,hugene +19906,14,23640,20,iamsarnix +19906,14,23640,20,ianoble +19906,14,23640,20,igor_f +19906,14,23640,20,imperial settlers +19906,14,23640,20,inkandrage +19906,14,23640,20,intzos +19906,14,23640,20,iris_ +19906,14,23640,20,isabelsweertvaegher +19906,14,23640,20,iseoni +19906,14,23640,20,itbrvilla +19906,14,23640,20,jack90265 +19906,14,23640,20,jackbird +19906,14,23640,20,jacob4408 +19906,14,23640,20,jambyman +19906,14,23640,20,jaredjdj +19906,14,23640,20,jatno +19906,14,23640,20,jconner +19906,14,23640,20,jdion20 +19906,14,23640,20,jeanius1 +19906,14,23640,20,jeremypaul +19906,14,23640,20,jesfen54 +19906,14,23640,20,jesuischapeau +19906,14,23640,20,jfaudy +19906,14,23640,20,jimmygagne1 +19906,14,23640,20,jimwest84 +19906,14,23640,20,jjjoseph +19906,14,23640,20,jjvegber +19906,14,23640,20,jmac +19906,14,23640,20,johnnyoxi +19906,14,23640,20,jokerjedi +19906,14,23640,20,josefm +19906,14,23640,20,jpdillon +19906,14,23640,20,jpfrancum +19906,14,23640,20,juggler42 +19906,14,23640,20,jukeboxjoe +19906,14,23640,20,justindjacobson +19906,14,23640,20,jvsquare +19906,14,23640,20,k0issy +19906,14,23640,20,kajigs +19906,14,23640,20,kasiolek +19906,14,23640,20,kat644 +19906,14,23640,20,katinkaja +19906,14,23640,20,katwood2 +19906,14,23640,20,kbeatz +19906,14,23640,20,kcdude +19906,14,23640,20,keel81 +19906,14,23640,20,kerl24 +19906,14,23640,20,kiemot +19906,14,23640,20,kilgoretroutman +19906,14,23640,20,kinslayer +19906,14,23640,20,kitefan +19906,14,23640,20,kitescreech +19906,14,23640,20,kitobob +19906,14,23640,20,knucklemerchant +19906,14,23640,20,kobsgr +19906,14,23640,20,konman +19906,14,23640,20,korvash81 +19906,14,23640,20,kosic +19906,14,23640,20,kraarma sunsmile +19906,14,23640,20,kromlek +19906,14,23640,20,krypes +19906,14,23640,20,ladybugmeeple +19906,14,23640,20,ladypiruleta +19906,14,23640,20,lampi +19906,14,23640,20,lange +19906,14,23640,20,legrasse81 +19906,14,23640,20,lekky +19906,14,23640,20,leoneravila +19906,14,23640,20,licious +19906,14,23640,20,linrich +19906,14,23640,20,lord mar +19906,14,23640,20,loriansa +19906,14,23640,20,losgismos +19906,14,23640,20,lost1n5pace +19906,14,23640,20,lostnconfused +19906,14,23640,20,lpcheng +19906,14,23640,20,ltbaxter +19906,14,23640,20,lucaso +19906,14,23640,20,luisherbgg +19906,14,23640,20,lukkepelukke +19906,14,23640,20,lupomarinato +19906,14,23640,20,luthos +19906,14,23640,20,lycaon +19906,14,23640,20,lyienneyyves +19906,14,23640,20,m787b +19906,14,23640,20,macliffhanger +19906,14,23640,20,maggiemay6 +19906,14,23640,20,magrilla +19906,14,23640,20,maksek +19906,14,23640,20,marconegrelli +19906,14,23640,20,margus955 +19906,14,23640,20,mars145 +19906,14,23640,20,marvel_gia +19906,14,23640,20,marwa +19906,14,23640,20,mawa +19906,14,23640,20,mcgames920 +19906,14,23640,20,mcmanzi +19906,14,23640,20,mcpires +19906,14,23640,20,medveraptot +19906,14,23640,20,megamrbrown +19906,14,23640,20,merca1 +19906,14,23640,20,mezzin +19906,14,23640,20,mhead37 +19906,14,23640,20,michalmarzeda +19906,14,23640,20,mikeofmay +19906,14,23640,20,mikesanerd +19906,14,23640,20,mikesofl9 +19906,14,23640,20,milla_18 +19906,14,23640,20,milordz98 +19906,14,23640,20,mimikael +19906,14,23640,20,misterpockets +19906,14,23640,20,mjrtom +19906,14,23640,20,mmaadaa +19906,14,23640,20,mocklob +19906,14,23640,20,moduspocus +19906,14,23640,20,montydownunder +19906,14,23640,20,morgansbubble +19906,14,23640,20,mori85 +19906,14,23640,20,morsecrossing +19906,14,23640,20,mounfro +19906,14,23640,20,mqmoxie +19906,14,23640,20,mrister +19906,14,23640,20,mrunicorn +19906,14,23640,20,mscjedi +19906,14,23640,20,mutantraccoon +19906,14,23640,20,mwilliams92 +19906,14,23640,20,myronborgan +19906,14,23640,20,narrenweib +19906,14,23640,20,nate_lockhart +19906,14,23640,20,natzmufc +19906,14,23640,20,negotiator +19906,14,23640,20,neizan +19906,14,23640,20,nellisc +19906,14,23640,20,nemoksha +19906,14,23640,20,neomarcos +19906,14,23640,20,nevhirion +19906,14,23640,20,ngable20 +19906,14,23640,20,nicciadonai +19906,14,23640,20,nickmikh +19906,14,23640,20,nikolai +19906,14,23640,20,ninja_trilobite +19906,14,23640,20,nithgamer +19906,14,23640,20,no1dazy +19906,14,23640,20,nolzen +19906,14,23640,20,northburns +19906,14,23640,20,nowhisky +19906,14,23640,20,nrebelo +19906,14,23640,20,nyaasu +19906,14,23640,20,ogrim +19906,14,23640,20,oldhippie +19906,14,23640,20,omfgitsfrag +19906,14,23640,20,oranje25 +19906,14,23640,20,orkyguy +19906,14,23640,20,owlscowl +19906,14,23640,20,pansonic +19906,14,23640,20,pastorbln +19906,14,23640,20,pat1810 +19906,14,23640,20,pawelkaczorowski87 +19906,14,23640,20,pdkaye01 +19906,14,23640,20,pelgrim007 +19906,14,23640,20,pero666 +19906,14,23640,20,ph_daniel +19906,14,23640,20,philoduc +19906,14,23640,20,phogg +19906,14,23640,20,pieterbus +19906,14,23640,20,pingouin +19906,14,23640,20,pistilli +19906,14,23640,20,pitbullover138 +19906,14,23640,20,pkue +19906,14,23640,20,playedbymli +19906,14,23640,20,polaris zero +19906,14,23640,20,polillaszurdas +19906,14,23640,20,poypoyking +19906,14,23640,20,psjg +19906,14,23640,20,psycho89 +19906,14,23640,20,psychojoe1014 +19906,14,23640,20,qqruz001 +19906,14,23640,20,qui gon jim +19906,14,23640,20,r_b_rt +19906,14,23640,20,rachelfitterer +19906,14,23640,20,rainbowninja +19906,14,23640,20,rand34 +19906,14,23640,20,rejolope +19906,14,23640,20,revengel +19906,14,23640,20,rivendell acorn +19906,14,23640,20,rjucha +19906,14,23640,20,rmanning +19906,14,23640,20,rmclean101 +19906,14,23640,20,rmeloni +19906,14,23640,20,robbiemcarley +19906,14,23640,20,robertcompton +19906,14,23640,20,rockhpi +19906,14,23640,20,rogue2257 +19906,14,23640,20,romerus +19906,14,23640,20,rricardoo +19906,14,23640,20,ru_nd +19906,14,23640,20,rufus22234 +19906,14,23640,20,rychu_lubicz +19906,14,23640,20,saloman +19906,14,23640,20,saltypipeman +19906,14,23640,20,salvasav +19906,14,23640,20,sanderus_2008 +19906,14,23640,20,sandmaker +19906,14,23640,20,saperlotte +19906,14,23640,20,sbagnall +19906,14,23640,20,scythegirl +19906,14,23640,20,seepieceeggshell +19906,14,23640,20,seretyx +19906,14,23640,20,sfbenjamin +19906,14,23640,20,sgtschultz11 +19906,14,23640,20,silvan77 +19906,14,23640,20,sir_henry +19906,14,23640,20,sla82 +19906,14,23640,20,sleap +19906,14,23640,20,snardo +19906,14,23640,20,solsticetide +19906,14,23640,20,sontar +19906,14,23640,20,speschties +19906,14,23640,20,spinthelights +19906,14,23640,20,spirit juggler +19906,14,23640,20,spkn001 +19906,14,23640,20,spoofmann +19906,14,23640,20,stallworth +19906,14,23640,20,sterling_archer +19906,14,23640,20,steve leach +19906,14,23640,20,stmountain +19906,14,23640,20,stockbrot +19906,14,23640,20,stoneghe +19906,14,23640,20,suit sage +19906,14,23640,20,superturtle189 +19906,14,23640,20,svsingh +19906,14,23640,20,sxala +19906,14,23640,20,sysyphus +19906,14,23640,20,talentdepot +19906,14,23640,20,tanion +19906,14,23640,20,tatoolo +19906,14,23640,20,taurai +19906,14,23640,20,thanatorum +19906,14,23640,20,thatswordplay +19906,14,23640,20,the broox +19906,14,23640,20,the_shadow447 +19906,14,23640,20,thedude101 +19906,14,23640,20,themonstersaysrawr +19906,14,23640,20,thepes +19906,14,23640,20,thomaskeel +19906,14,23640,20,thorjulius +19906,14,23640,20,tilbo +19906,14,23640,20,tilouboy +19906,14,23640,20,timeout +19906,14,23640,20,timepieces141 +19906,14,23640,20,timo1980 +19906,14,23640,20,timothyblam +19906,14,23640,20,tnok74 +19906,14,23640,20,tobendertobi +19906,14,23640,20,tofarley +19906,14,23640,20,tofmx21 +19906,14,23640,20,tom strong +19906,14,23640,20,tomaguero +19906,14,23640,20,tomaszzaremba +19906,14,23640,20,tomgazpacho +19906,14,23640,20,tontogamer +19906,14,23640,20,toonshiro +19906,14,23640,20,toukouy +19906,14,23640,20,trelistonisi +19906,14,23640,20,trimpy +19906,14,23640,20,tupelo bound +19906,14,23640,20,turnipsaregreat +19906,14,23640,20,uebeltrager +19906,14,23640,20,uglypsycho +19906,14,23640,20,unclemarty +19906,14,23640,20,unnthor +19906,14,23640,20,unserfamily +19906,14,23640,20,utechle +19906,14,23640,20,uwemup +19906,14,23640,20,vedarta +19906,14,23640,20,vegannudist +19906,14,23640,20,verhagenkava +19906,14,23640,20,vilanova72 +19906,14,23640,20,virre +19906,14,23640,20,vorrobei +19906,14,23640,20,vortling +19906,14,23640,20,wcolegrave +19906,14,23640,20,whargoul +19906,14,23640,20,wharle +19906,14,23640,20,wilfredrhodes +19906,14,23640,20,willison +19906,14,23640,20,wincenzop +19906,14,23640,20,witchoftheeast +19906,14,23640,20,woda +19906,14,23640,20,wsuper +19906,14,23640,20,xithi +19906,14,23640,20,xsteff68 +19906,14,23640,20,xteban +19906,14,23640,20,yvan13 +19906,14,23640,20,za warudo +19906,14,23640,20,zabur +19906,14,23640,20,zaphodbeblebrox +19906,14,23640,20,zepson +19906,14,23640,20,zinger +19906,14,23640,20,zomb7775 +19906,14,23640,20,zulu_warrior +19906,14,25880,19,aalbin +19906,14,25880,19,aboxoftricks +19906,14,25880,19,academic +19906,14,25880,19,acemania +19906,14,25880,19,admiraldick +19906,14,25880,19,afernan919 +19906,14,25880,19,ahalm +19906,14,25880,19,aito +19906,14,25880,19,akathatoneguy +19906,14,25880,19,alvamorelope +19906,14,25880,19,ambrose_grey +19906,14,25880,19,anderlef +19906,14,25880,19,anjuhal +19906,14,25880,19,ariakan182 +19906,14,25880,19,arlekinoua +19906,14,25880,19,arsenicknife +19906,14,25880,19,asblacky +19906,14,25880,19,augusto canto +19906,14,25880,19,aust1e +19906,14,25880,19,avecinol +19906,14,25880,19,ayiana +19906,14,25880,19,b414213562 +19906,14,25880,19,bache0 +19906,14,25880,19,badlt +19906,14,25880,19,balagahn +19906,14,25880,19,bami1020 +19906,14,25880,19,bandit_boy7 +19906,14,25880,19,barrabas73 +19906,14,25880,19,bbacher +19906,14,25880,19,bearventures +19906,14,25880,19,beazer32 +19906,14,25880,19,beckythwaites +19906,14,25880,19,bellaatje +19906,14,25880,19,betoritter +19906,14,25880,19,bg_nerub +19906,14,25880,19,bilbor +19906,14,25880,19,bio_hazard +19906,14,25880,19,bivaterl +19906,14,25880,19,bjornslimbo +19906,14,25880,19,black_rook +19906,14,25880,19,blackrum +19906,14,25880,19,blast09 +19906,14,25880,19,blucky +19906,14,25880,19,boardgamegeorge +19906,14,25880,19,boboset +19906,14,25880,19,boilergod +19906,14,25880,19,bokorember +19906,14,25880,19,bolgarin +19906,14,25880,19,bone_ +19906,14,25880,19,brederic +19906,14,25880,19,brianckabat +19906,14,25880,19,bright_future +19906,14,25880,19,brokenbiro +19906,14,25880,19,buco +19906,14,25880,19,budasan3000 +19906,14,25880,19,buffstar +19906,14,25880,19,bugladen +19906,14,25880,19,bws21 +19906,14,25880,19,cadizestocolmo +19906,14,25880,19,calconey +19906,14,25880,19,cancel623 +19906,14,25880,19,carpatack +19906,14,25880,19,chris31b +19906,14,25880,19,christophyr +19906,14,25880,19,ciceroni +19906,14,25880,19,club amatent +19906,14,25880,19,codinh +19906,14,25880,19,colemanmt1979 +19906,14,25880,19,colinkun +19906,14,25880,19,conawan +19906,14,25880,19,couch +19906,14,25880,19,craigjw +19906,14,25880,19,crimscape +19906,14,25880,19,csibe +19906,14,25880,19,cultofzenith +19906,14,25880,19,cursingmold +19906,14,25880,19,cyb3rron1n +19906,14,25880,19,cyborgkoala +19906,14,25880,19,dalembertian +19906,14,25880,19,danweb +19906,14,25880,19,dapperdano +19906,14,25880,19,darklydave +19906,14,25880,19,darkvid +19906,14,25880,19,darlo13 +19906,14,25880,19,davide_aus_basel +19906,14,25880,19,dbresson +19906,14,25880,19,demonoxide +19906,14,25880,19,denkevin +19906,14,25880,19,denne +19906,14,25880,19,devorus +19906,14,25880,19,dilago +19906,14,25880,19,dimjim7 +19906,14,25880,19,directedevolutionist +19906,14,25880,19,divineauthority +19906,14,25880,19,dlth +19906,14,25880,19,docblizz +19906,14,25880,19,doccool +19906,14,25880,19,docnickle +19906,14,25880,19,doctordoughnut +19906,14,25880,19,donnawiles3 +19906,14,25880,19,dransonk +19906,14,25880,19,dustin miller +19906,14,25880,19,dwarvenfriend +19906,14,25880,19,el zoido +19906,14,25880,19,elberoftorou +19906,14,25880,19,elephantasy +19906,14,25880,19,eliser +19906,14,25880,19,ellanoppu +19906,14,25880,19,elsabethy +19906,14,25880,19,emintas +19906,14,25880,19,endecay +19906,14,25880,19,enich +19906,14,25880,19,eric the gm +19906,14,25880,19,evol +19906,14,25880,19,extevao +19906,14,25880,19,exwallstreetguy +19906,14,25880,19,fabiocastro91 +19906,14,25880,19,fasterface +19906,14,25880,19,feezybeezy +19906,14,25880,19,fenixen +19906,14,25880,19,fernandobuzi +19906,14,25880,19,fervera28 +19906,14,25880,19,fess_ +19906,14,25880,19,filadin +19906,14,25880,19,finalresistance +19906,14,25880,19,fjoachim1340 +19906,14,25880,19,flags_fiend +19906,14,25880,19,flaqi +19906,14,25880,19,fnolis +19906,14,25880,19,forumzwijndrecht +19906,14,25880,19,foxwarcher +19906,14,25880,19,friscoltu959 +19906,14,25880,19,frontliner +19906,14,25880,19,fue +19906,14,25880,19,fxd07 +19906,14,25880,19,gameratom +19906,14,25880,19,gaminggossen +19906,14,25880,19,gar the unjust +19906,14,25880,19,gemlin +19906,14,25880,19,georgeyokai +19906,14,25880,19,ghung392 +19906,14,25880,19,glynspence +19906,14,25880,19,gnocken +19906,14,25880,19,gokuk1lla420 +19906,14,25880,19,goofyaus +19906,14,25880,19,gorfinger +19906,14,25880,19,greeninkpenguin +19906,14,25880,19,gruberstein13 +19906,14,25880,19,gtallberg +19906,14,25880,19,guipu +19906,14,25880,19,guntalvus +19906,14,25880,19,gurgat +19906,14,25880,19,gussfather +19906,14,25880,19,gyongyosi5 +19906,14,25880,19,hacklan07 +19906,14,25880,19,hail_tx +19906,14,25880,19,hakksor +19906,14,25880,19,halden +19906,14,25880,19,halfchickenhalfsteak +19906,14,25880,19,hang jebat +19906,14,25880,19,hanginout79 +19906,14,25880,19,hashbaz +19906,14,25880,19,heavymetalhamster +19906,14,25880,19,hengstrand +19906,14,25880,19,heppy03 +19906,14,25880,19,hiperchuy +19906,14,25880,19,hivemind +19906,14,25880,19,hugocruzvilla +19906,14,25880,19,iamgob +19906,14,25880,19,iazaueba +19906,14,25880,19,imgembo +19906,14,25880,19,iren66lemieux +19906,14,25880,19,isiu +19906,14,25880,19,itung +19906,14,25880,19,jaba11 +19906,14,25880,19,jameason420 +19906,14,25880,19,jamsicle +19906,14,25880,19,javiechevo7 +19906,14,25880,19,javure +19906,14,25880,19,jaysusername +19906,14,25880,19,jaytas +19906,14,25880,19,jckellam +19906,14,25880,19,jerome045 +19906,14,25880,19,jjloc +19906,14,25880,19,jmcgrew85 +19906,14,25880,19,joe bob 008 +19906,14,25880,19,johnkoz +19906,14,25880,19,josemirc +19906,14,25880,19,jreakins +19906,14,25880,19,jribenfors +19906,14,25880,19,jsteim +19906,14,25880,19,jtlindley88 +19906,14,25880,19,juanmaa +19906,14,25880,19,julianhilluk +19906,14,25880,19,jurgenvm +19906,14,25880,19,justicex75 +19906,14,25880,19,kamelkilla23 +19906,14,25880,19,karahkwa +19906,14,25880,19,kayftb +19906,14,25880,19,kemmamama +19906,14,25880,19,kerborg +19906,14,25880,19,khan3 +19906,14,25880,19,khopt +19906,14,25880,19,kingslamma +19906,14,25880,19,kittenhoarder +19906,14,25880,19,klausi300 +19906,14,25880,19,knaveofdiamonds +19906,14,25880,19,kocotero +19906,14,25880,19,kurdor +19906,14,25880,19,kurjakd +19906,14,25880,19,kvanvonderen +19906,14,25880,19,kyuubi86 +19906,14,25880,19,labeste +19906,14,25880,19,lan2711 +19906,14,25880,19,lbcord +19906,14,25880,19,lcpm1992 +19906,14,25880,19,leclem +19906,14,25880,19,levy7482 +19906,14,25880,19,lexpweller +19906,14,25880,19,lieren +19906,14,25880,19,lievelietje +19906,14,25880,19,listerlives +19906,14,25880,19,livewire05 +19906,14,25880,19,ll maurice ll +19906,14,25880,19,lmoran76 +19906,14,25880,19,lnk2626 +19906,14,25880,19,loewenbrau +19906,14,25880,19,loplayer4life +19906,14,25880,19,lord_isra +19906,14,25880,19,lordobsidian +19906,14,25880,19,lorizen +19906,14,25880,19,lucarion +19906,14,25880,19,ludonaut +19906,14,25880,19,ludyee +19906,14,25880,19,luke_4_mls +19906,14,25880,19,lunauri +19906,14,25880,19,luongtiffany +19906,14,25880,19,lupecazaril +19906,14,25880,19,lycanblood +19906,14,25880,19,madelg +19906,14,25880,19,majmcdonald +19906,14,25880,19,maluk1013 +19906,14,25880,19,manbearwilson +19906,14,25880,19,mariekefvg +19906,14,25880,19,mark3275 +19906,14,25880,19,marshall wells +19906,14,25880,19,marzera +19906,14,25880,19,matakano +19906,14,25880,19,mcshinsky90 +19906,14,25880,19,mcwookie +19906,14,25880,19,mdhondt +19906,14,25880,19,mdoom +19906,14,25880,19,meadweizer +19906,14,25880,19,mechanikhil +19906,14,25880,19,meeba +19906,14,25880,19,melaku +19906,14,25880,19,michal4 +19906,14,25880,19,midzu28 +19906,14,25880,19,mija2 +19906,14,25880,19,mikeahell +19906,14,25880,19,mikejuts +19906,14,25880,19,mikijm +19906,14,25880,19,miklo69420 +19906,14,25880,19,mili5797 +19906,14,25880,19,mistermittens +19906,14,25880,19,mkotecha +19906,14,25880,19,molfly +19906,14,25880,19,moniquewir +19906,14,25880,19,mononk +19906,14,25880,19,moosebox +19906,14,25880,19,moramora +19906,14,25880,19,morriander +19906,14,25880,19,mosoma +19906,14,25880,19,mrsel +19906,14,25880,19,mrutledge +19906,14,25880,19,mtheaded04 +19906,14,25880,19,mthornton74 +19906,14,25880,19,mtjake +19906,14,25880,19,mutiemoe +19906,14,25880,19,myrdin t sasnak +19906,14,25880,19,mystquecreature +19906,14,25880,19,myszor +19906,14,25880,19,nachof +19906,14,25880,19,nandes +19906,14,25880,19,nashgoth +19906,14,25880,19,nashional +19906,14,25880,19,natts +19906,14,25880,19,necrotic_caviar +19906,14,25880,19,nienna100 +19906,14,25880,19,nittanyfan12 +19906,14,25880,19,nixtian +19906,14,25880,19,noduh +19906,14,25880,19,noise42 +19906,14,25880,19,nolambar +19906,14,25880,19,nvicente +19906,14,25880,19,obijankenobi83 +19906,14,25880,19,odie73 +19906,14,25880,19,oelgart +19906,14,25880,19,ok1214 +19906,14,25880,19,olaf78800 +19906,14,25880,19,olivierk +19906,14,25880,19,orca_au +19906,14,25880,19,orthogonal_bee +19906,14,25880,19,outbrain +19906,14,25880,19,p8ntball +19906,14,25880,19,pablyllo +19906,14,25880,19,padak84 +19906,14,25880,19,paganbaconsmith +19906,14,25880,19,paladininja +19906,14,25880,19,panteo +19906,14,25880,19,pasquy +19906,14,25880,19,patteca +19906,14,25880,19,petrik94 +19906,14,25880,19,planestupid +19906,14,25880,19,playerone87 +19906,14,25880,19,pleple +19906,14,25880,19,plughead +19906,14,25880,19,pmeyer +19906,14,25880,19,ptarth +19906,14,25880,19,pupselchen +19906,14,25880,19,qualm +19906,14,25880,19,quiji0279 +19906,14,25880,19,rafaelc +19906,14,25880,19,randomx2 +19906,14,25880,19,rarabel +19906,14,25880,19,ravazul +19906,14,25880,19,raynovich +19906,14,25880,19,reapazine64 +19906,14,25880,19,rebuilder +19906,14,25880,19,red_paladin77 +19906,14,25880,19,regislive +19906,14,25880,19,reist_k +19906,14,25880,19,revoan +19906,14,25880,19,rezbak390 +19906,14,25880,19,rick_vallee +19906,14,25880,19,rienar +19906,14,25880,19,rientdrioe +19906,14,25880,19,rlitchfield +19906,14,25880,19,rodt1491 +19906,14,25880,19,roma291192 +19906,14,25880,19,rondero +19906,14,25880,19,ronny82 +19906,14,25880,19,rpolasky +19906,14,25880,19,rsp57 +19906,14,25880,19,rubininio +19906,14,25880,19,rubisel +19906,14,25880,19,ryslaw +19906,14,25880,19,sag0016 +19906,14,25880,19,salovaara +19906,14,25880,19,samc1078 +19906,14,25880,19,samildanach +19906,14,25880,19,saminurmela +19906,14,25880,19,sarbet +19906,14,25880,19,saryrn +19906,14,25880,19,satelitte101 +19906,14,25880,19,saxman24 +19906,14,25880,19,scotwith1t +19906,14,25880,19,scozar52 +19906,14,25880,19,sebki +19906,14,25880,19,seldonita +19906,14,25880,19,setropo +19906,14,25880,19,shademoon64 +19906,14,25880,19,shezzy153 +19906,14,25880,19,sidecargames +19906,14,25880,19,sigiscsi +19906,14,25880,19,silasg +19906,14,25880,19,sindelar +19906,14,25880,19,sjoschko +19906,14,25880,19,skargaard +19906,14,25880,19,skelly9131 +19906,14,25880,19,skyshadow38 +19906,14,25880,19,slvrdragon41 +19906,14,25880,19,smash01 +19906,14,25880,19,smcshaw +19906,14,25880,19,soccastar001 +19906,14,25880,19,solmei +19906,14,25880,19,songbird08 +19906,14,25880,19,spackman +19906,14,25880,19,spattznatt +19906,14,25880,19,specopneeds +19906,14,25880,19,spitznevus +19906,14,25880,19,squid bob +19906,14,25880,19,strategist_x +19906,14,25880,19,stroodle88 +19906,14,25880,19,superkoko +19906,14,25880,19,svenvds +19906,14,25880,19,swpeanut +19906,14,25880,19,taagoe +19906,14,25880,19,tabletobs +19906,14,25880,19,tacic +19906,14,25880,19,taintedlemon +19906,14,25880,19,tanzania +19906,14,25880,19,tapanar +19906,14,25880,19,tattila86 +19906,14,25880,19,teclador +19906,14,25880,19,telmorrpereira +19906,14,25880,19,tempest0011 +19906,14,25880,19,teodorhfb +19906,14,25880,19,terranigma +19906,14,25880,19,thatchristianguy +19906,14,25880,19,the_vinman +19906,14,25880,19,theaverageboardgamer +19906,14,25880,19,theoriginaljwoo +19906,14,25880,19,thewarrider +19906,14,25880,19,thisiskonrad +19906,14,25880,19,throat_rip +19906,14,25880,19,tillyharvey +19906,14,25880,19,timstermon +19906,14,25880,19,toash +19906,14,25880,19,toletole +19906,14,25880,19,toniinmb +19906,14,25880,19,treparcs +19906,14,25880,19,tronin +19906,14,25880,19,trundorn +19906,14,25880,19,ttaddict36 +19906,14,25880,19,ttkttkt +19906,14,25880,19,typebar +19906,14,25880,19,ubermensch21 +19906,14,25880,19,ulysses1980 +19906,14,25880,19,v1pe +19906,14,25880,19,velvlad +19906,14,25880,19,viragkiss +19906,14,25880,19,vitaliya +19906,14,25880,19,vmacedo7 +19906,14,25880,19,vooodooo84 +19906,14,25880,19,voynitsky +19906,14,25880,19,vsurma +19906,14,25880,19,wallen68 +19906,14,25880,19,wbrosius +19906,14,25880,19,weirdai +19906,14,25880,19,whitehawk61 +19906,14,25880,19,wisphunter +19906,14,25880,19,wladek +19906,14,25880,19,wonderwombat +19906,14,25880,19,wyocon99 +19906,14,25880,19,xangxa +19906,14,25880,19,xoko +19906,14,25880,19,yacszur +19906,14,25880,19,zeroshinkiro +19906,14,25880,19,ziggybobenator +19906,14,25880,19,zinabi +19906,14,28174,18,1 family meeple +19906,14,28174,18,1504 +19906,14,28174,18,1welligr +19906,14,28174,18,_yogurt_ +19906,14,28174,18,abrissey +19906,14,28174,18,acenthor +19906,14,28174,18,adamadamadam +19906,14,28174,18,aeln96 +19906,14,28174,18,akemper98 +19906,14,28174,18,aleemonaco +19906,14,28174,18,alekseytushev +19906,14,28174,18,alesc +19906,14,28174,18,alexnicoll +19906,14,28174,18,alonkura +19906,14,28174,18,alyand +19906,14,28174,18,ambiorix666 +19906,14,28174,18,ams7 +19906,14,28174,18,angeleye +19906,14,28174,18,angesplayer +19906,14,28174,18,anviksr +19906,14,28174,18,arcendo +19906,14,28174,18,argantonio +19906,14,28174,18,arron77 +19906,14,28174,18,arthus19xx +19906,14,28174,18,ashaam +19906,14,28174,18,atreju +19906,14,28174,18,awesomeclaw +19906,14,28174,18,b1omntr81 +19906,14,28174,18,b34st +19906,14,28174,18,bakjak +19906,14,28174,18,barbi +19906,14,28174,18,bariothebig +19906,14,28174,18,barnaff +19906,14,28174,18,bartlett010 +19906,14,28174,18,basketball_curry +19906,14,28174,18,batcut +19906,14,28174,18,bel_e_muir +19906,14,28174,18,beltmatt_usa +19906,14,28174,18,benosteen +19906,14,28174,18,bergerbu +19906,14,28174,18,bettynogard +19906,14,28174,18,bignike_ch +19906,14,28174,18,birdos +19906,14,28174,18,bkumanchik +19906,14,28174,18,boardgamecox +19906,14,28174,18,boogchoo +19906,14,28174,18,bookandgame +19906,14,28174,18,botter +19906,14,28174,18,boulderbiker +19906,14,28174,18,boyfromnowhere +19906,14,28174,18,boywithcap +19906,14,28174,18,braidrock +19906,14,28174,18,brbdc +19906,14,28174,18,brncs77 +19906,14,28174,18,brom ironfist +19906,14,28174,18,brupegbor +19906,14,28174,18,bschneckenberger +19906,14,28174,18,bulldogwill +19906,14,28174,18,caderip +19906,14,28174,18,carletto2288 +19906,14,28174,18,carthaginian +19906,14,28174,18,celsius +19906,14,28174,18,choyfs +19906,14,28174,18,christianrehm +19906,14,28174,18,coco rinna +19906,14,28174,18,couz89 +19906,14,28174,18,crocusnza +19906,14,28174,18,crystal2477 +19906,14,28174,18,crystallr +19906,14,28174,18,ctskas +19906,14,28174,18,dacoz +19906,14,28174,18,daeronthehandsome +19906,14,28174,18,dalkinn +19906,14,28174,18,damcree +19906,14,28174,18,dankabam +19906,14,28174,18,datasun_7 +19906,14,28174,18,denis +19906,14,28174,18,dennpars +19906,14,28174,18,detective_ +19906,14,28174,18,digital_tilas +19906,14,28174,18,doc_socrates +19906,14,28174,18,dodya +19906,14,28174,18,domo +19906,14,28174,18,dorothi +19906,14,28174,18,dragos_br +19906,14,28174,18,dt92stang +19906,14,28174,18,duckizz +19906,14,28174,18,dumpty +19906,14,28174,18,dva666 +19906,14,28174,18,dyegoreisa +19906,14,28174,18,edd_hunter +19906,14,28174,18,edgarsargent +19906,14,28174,18,eduardofelipe +19906,14,28174,18,egosumgoofy +19906,14,28174,18,eiska +19906,14,28174,18,electricblanket +19906,14,28174,18,elgringo +19906,14,28174,18,elperroverde81 +19906,14,28174,18,emceeharris +19906,14,28174,18,emperius +19906,14,28174,18,emreturam +19906,14,28174,18,erikclaes1981 +19906,14,28174,18,eskite007 +19906,14,28174,18,ethadr +19906,14,28174,18,faldt +19906,14,28174,18,falkman +19906,14,28174,18,fcastrejon +19906,14,28174,18,flyboy connor +19906,14,28174,18,flynetqc +19906,14,28174,18,forgottenfalcon +19906,14,28174,18,frechi +19906,14,28174,18,frenchy1980ca +19906,14,28174,18,fronzbot +19906,14,28174,18,frostyfirey +19906,14,28174,18,fstfst +19906,14,28174,18,fubuju +19906,14,28174,18,fulcrum_7 +19906,14,28174,18,gabes +19906,14,28174,18,galagaew +19906,14,28174,18,gamemaster_willy +19906,14,28174,18,gamerdinger +19906,14,28174,18,gamergoddess74 +19906,14,28174,18,gamesnake +19906,14,28174,18,geoffropuff +19906,14,28174,18,glennfitz +19906,14,28174,18,glokta +19906,14,28174,18,gmarius +19906,14,28174,18,gnargnar +19906,14,28174,18,go_down_easy +19906,14,28174,18,gonesse +19906,14,28174,18,graham671 +19906,14,28174,18,granpamini +19906,14,28174,18,greedee +19906,14,28174,18,greendayfan333 +19906,14,28174,18,greyweather +19906,14,28174,18,gruenspan47 +19906,14,28174,18,gunman01 +19906,14,28174,18,gurkenhans +19906,14,28174,18,guthorm +19906,14,28174,18,hakuus +19906,14,28174,18,hannamichta +19906,14,28174,18,headfive +19906,14,28174,18,hectorpascal +19906,14,28174,18,hedgepig +19906,14,28174,18,herbal_cheeze +19906,14,28174,18,hetch +19906,14,28174,18,hobbes +19906,14,28174,18,hollywoodd +19906,14,28174,18,homer007 +19906,14,28174,18,hotte01 +19906,14,28174,18,hrive42 +19906,14,28174,18,hummeljt +19906,14,28174,18,hvilein +19906,14,28174,18,hypnos_03 +19906,14,28174,18,icesun +19906,14,28174,18,idlezombie +19906,14,28174,18,ikamuur +19906,14,28174,18,ikno +19906,14,28174,18,inglais +19906,14,28174,18,isarcas +19906,14,28174,18,ivantir +19906,14,28174,18,j10j10 +19906,14,28174,18,jackara +19906,14,28174,18,jackway +19906,14,28174,18,jaimerauma +19906,14,28174,18,janis87 +19906,14,28174,18,jantrisp +19906,14,28174,18,javajoesworld +19906,14,28174,18,javifcrm +19906,14,28174,18,javirex +19906,14,28174,18,jc322 +19906,14,28174,18,jdalprat +19906,14,28174,18,jdmofo +19906,14,28174,18,jedimusic +19906,14,28174,18,jeeger +19906,14,28174,18,jeetra84 +19906,14,28174,18,jhbcampos +19906,14,28174,18,jimi_king +19906,14,28174,18,jimmyc81 +19906,14,28174,18,jjohnst13 +19906,14,28174,18,johnpurdue +19906,14,28174,18,jollosal +19906,14,28174,18,jomppe +19906,14,28174,18,jonbakken +19906,14,28174,18,jonpurkis +19906,14,28174,18,josgeerkin +19906,14,28174,18,joshthemullet +19906,14,28174,18,joyze57 +19906,14,28174,18,juliet +19906,14,28174,18,jyames +19906,14,28174,18,kaminka +19906,14,28174,18,karliee +19906,14,28174,18,kattaklop +19906,14,28174,18,kawen +19906,14,28174,18,kelenyigy +19906,14,28174,18,kenes35 +19906,14,28174,18,kevingston +19906,14,28174,18,kleingemini +19906,14,28174,18,kozinskiy +19906,14,28174,18,laffytaffy +19906,14,28174,18,lauwens +19906,14,28174,18,legobrains +19906,14,28174,18,leto139 +19906,14,28174,18,loddfafnir +19906,14,28174,18,loganbreath +19906,14,28174,18,logeebear +19906,14,28174,18,lolazo +19906,14,28174,18,lomdahl +19906,14,28174,18,loremasterryan +19906,14,28174,18,lotje1990 +19906,14,28174,18,louisdavid +19906,14,28174,18,lurador +19906,14,28174,18,lysander2014 +19906,14,28174,18,malikopi +19906,14,28174,18,margec01 +19906,14,28174,18,marie377 +19906,14,28174,18,marijkes +19906,14,28174,18,maritlisa +19906,14,28174,18,mark_minneapolis +19906,14,28174,18,mashpotassium +19906,14,28174,18,mattbd +19906,14,28174,18,mcninjax +19906,14,28174,18,medraut +19906,14,28174,18,mefiug +19906,14,28174,18,meijerc +19906,14,28174,18,mellizosky +19906,14,28174,18,mentholated +19906,14,28174,18,michigall +19906,14,28174,18,michiganstephen +19906,14,28174,18,mikani +19906,14,28174,18,mikofla22 +19906,14,28174,18,milez +19906,14,28174,18,mingtao +19906,14,28174,18,mirandavanz +19906,14,28174,18,mirth00 +19906,14,28174,18,misodare +19906,14,28174,18,misselby +19906,14,28174,18,missllil +19906,14,28174,18,mistergriffiths +19906,14,28174,18,mobrohinack +19906,14,28174,18,moi! +19906,14,28174,18,morv +19906,14,28174,18,mrbrussels42 +19906,14,28174,18,mrfettuccine +19906,14,28174,18,mrg13 +19906,14,28174,18,msbubblydoom +19906,14,28174,18,mustafaata +19906,14,28174,18,mylastnerv +19906,14,28174,18,nakayamamizuki +19906,14,28174,18,nalex222 +19906,14,28174,18,navshaikh +19906,14,28174,18,nelmani +19906,14,28174,18,neroir +19906,14,28174,18,nick9603 +19906,14,28174,18,nmr_nmr +19906,14,28174,18,nocturn +19906,14,28174,18,nomad515 +19906,14,28174,18,numberswoman +19906,14,28174,18,nunesh +19906,14,28174,18,oma_xtream +19906,14,28174,18,ori096 +19906,14,28174,18,oshfarms +19906,14,28174,18,osunut +19906,14,28174,18,otter187 +19906,14,28174,18,ovix13 +19906,14,28174,18,oysterzed +19906,14,28174,18,ozmo +19906,14,28174,18,p0isson +19906,14,28174,18,p1rat3bun +19906,14,28174,18,paoloalby +19906,14,28174,18,pbchicken5972 +19906,14,28174,18,pepsifizz +19906,14,28174,18,philewis +19906,14,28174,18,phoenixzeal +19906,14,28174,18,piiiinnnngggg +19906,14,28174,18,pincholuis +19906,14,28174,18,pirateariel +19906,14,28174,18,piratplanszowek +19906,14,28174,18,pityka +19906,14,28174,18,podavid +19906,14,28174,18,pommieaussie +19906,14,28174,18,preachersson +19906,14,28174,18,prince of moskova +19906,14,28174,18,puncr0c +19906,14,28174,18,pyranoir +19906,14,28174,18,quik_fix +19906,14,28174,18,quimerico69 +19906,14,28174,18,rad_sci_guy +19906,14,28174,18,rahl481 +19906,14,28174,18,rauschpotato +19906,14,28174,18,ravenburg +19906,14,28174,18,rawfrenzy +19906,14,28174,18,redheadedstep +19906,14,28174,18,reinmar +19906,14,28174,18,renberche +19906,14,28174,18,renke +19906,14,28174,18,rexroom +19906,14,28174,18,rgnet1 +19906,14,28174,18,rherb17 +19906,14,28174,18,ric manns +19906,14,28174,18,rmaia +19906,14,28174,18,rob bendig +19906,14,28174,18,robmderrick +19906,14,28174,18,roelguldentops +19906,14,28174,18,rsillas +19906,14,28174,18,ryanmathis07 +19906,14,28174,18,rycerzortalionu +19906,14,28174,18,sackmandan +19906,14,28174,18,saikas +19906,14,28174,18,sajorjav +19906,14,28174,18,sangralunas +19906,14,28174,18,santos artigas +19906,14,28174,18,sashion +19906,14,28174,18,satoshi0086 +19906,14,28174,18,savageinoz +19906,14,28174,18,scatto78 +19906,14,28174,18,schmaeddes +19906,14,28174,18,scottmc94 +19906,14,28174,18,sctivcrmn +19906,14,28174,18,sertinuno +19906,14,28174,18,shadikhoja +19906,14,28174,18,shadow_bind +19906,14,28174,18,shaven_wookiee +19906,14,28174,18,silentkirtash +19906,14,28174,18,sin city snowman +19906,14,28174,18,sinergie69 +19906,14,28174,18,sitra +19906,14,28174,18,sjel +19906,14,28174,18,skewball +19906,14,28174,18,skjensen1212 +19906,14,28174,18,skyguy1983 +19906,14,28174,18,sloop25 +19906,14,28174,18,slybaby +19906,14,28174,18,snarfdk +19906,14,28174,18,sonichydra +19906,14,28174,18,spieleonkel +19906,14,28174,18,spineisaur +19906,14,28174,18,sslazio +19906,14,28174,18,stanley654321 +19906,14,28174,18,starkiller +19906,14,28174,18,stefan stadler +19906,14,28174,18,steven +19906,14,28174,18,str1anger +19906,14,28174,18,streamflyer +19906,14,28174,18,sulukol +19906,14,28174,18,supa03 +19906,14,28174,18,supermegavega +19906,14,28174,18,sviftrup +19906,14,28174,18,sydstar +19906,14,28174,18,sysphemiagames +19906,14,28174,18,takokawa +19906,14,28174,18,tanone +19906,14,28174,18,tasman001 +19906,14,28174,18,tatsukochi +19906,14,28174,18,terrathe +19906,14,28174,18,the gagarin +19906,14,28174,18,the_mana_leek +19906,14,28174,18,thealmostkid +19906,14,28174,18,thebrokentrees +19906,14,28174,18,theswad +19906,14,28174,18,thiagoabsouza +19906,14,28174,18,thunderinggiraffe +19906,14,28174,18,titeman +19906,14,28174,18,tom_game_sk +19906,14,28174,18,tomax22 +19906,14,28174,18,tommy1983 +19906,14,28174,18,tonyhanna +19906,14,28174,18,toob +19906,14,28174,18,tootstorm +19906,14,28174,18,twotonrampage +19906,14,28174,18,urcamadon +19906,14,28174,18,vanmark +19906,14,28174,18,victorbergamin +19906,14,28174,18,vindit +19906,14,28174,18,volante +19906,14,28174,18,vrael81 +19906,14,28174,18,waitreally +19906,14,28174,18,wetrock +19906,14,28174,18,wight1984 +19906,14,28174,18,wigmaker +19906,14,28174,18,winter_neko +19906,14,28174,18,wjohnston90 +19906,14,28174,18,wstippel +19906,14,28174,18,wyrmwood47 +19906,14,28174,18,xandrius +19906,14,28174,18,xarlos +19906,14,28174,18,xxaviorr +19906,14,28174,18,yamaraus +19906,14,28174,18,yansoul +19906,14,28174,18,yossys_giants +19906,14,28174,18,zecil +19906,14,28174,18,zeppsaw +19906,14,28174,18,zhass +19906,14,28174,18,zjensen3 +19906,14,28174,18,znick85 +19906,14,28174,18,zoodok +19906,14,28174,18,zukier +19906,14,28174,18,zzay +19906,14,30791,17,813061 +19906,14,30791,17,aceasa5 +19906,14,30791,17,acemonster2433 +19906,14,30791,17,ajwargame +19906,14,30791,17,ak72 +19906,14,30791,17,allenlin1110 +19906,14,30791,17,angaho +19906,14,30791,17,angryviking +19906,14,30791,17,anubisdeath666 +19906,14,30791,17,arantxa13 +19906,14,30791,17,arcshot +19906,14,30791,17,arcum +19906,14,30791,17,assad +19906,14,30791,17,athaldor +19906,14,30791,17,autimus +19906,14,30791,17,azaren +19906,14,30791,17,azwandahlan +19906,14,30791,17,bardmaddox +19906,14,30791,17,bart1991 +19906,14,30791,17,bathory74 +19906,14,30791,17,batmatt72 +19906,14,30791,17,benjaminho +19906,14,30791,17,bergee +19906,14,30791,17,bigfootjedi +19906,14,30791,17,bihor +19906,14,30791,17,bille +19906,14,30791,17,brichu +19906,14,30791,17,busterbird +19906,14,30791,17,cant_think54 +19906,14,30791,17,caro13 +19906,14,30791,17,chealing +19906,14,30791,17,chiaradellantonio +19906,14,30791,17,cjfhtagn +19906,14,30791,17,clongstr72 +19906,14,30791,17,coffeentacos +19906,14,30791,17,cookieissmashing +19906,14,30791,17,crazycarrie06 +19906,14,30791,17,cutterbeck +19906,14,30791,17,cutterroberts +19906,14,30791,17,cygnumcrux +19906,14,30791,17,dafink +19906,14,30791,17,danyboyqc +19906,14,30791,17,darineng +19906,14,30791,17,darksha +19906,14,30791,17,deisenhut +19906,14,30791,17,doctor plague +19906,14,30791,17,donchicoree +19906,14,30791,17,dongemon +19906,14,30791,17,dplissken83 +19906,14,30791,17,drewbag84 +19906,14,30791,17,drimm +19906,14,30791,17,eban +19906,14,30791,17,eh_dubs +19906,14,30791,17,ezeewrap66 +19906,14,30791,17,facharbeit +19906,14,30791,17,fdevans +19906,14,30791,17,filden +19906,14,30791,17,freckleonear +19906,14,30791,17,garry +19906,14,30791,17,gemau +19906,14,30791,17,giltleaf +19906,14,30791,17,goldengamer +19906,14,30791,17,gondarvivien +19906,14,30791,17,greatmerlin +19906,14,30791,17,gtogixxer +19906,14,30791,17,habermanm +19906,14,30791,17,hanibalicious +19906,14,30791,17,hanseat +19906,14,30791,17,harnas +19906,14,30791,17,henkv +19906,14,30791,17,hoos2010 +19906,14,30791,17,husseinalhelal +19906,14,30791,17,illuskan +19906,14,30791,17,ipohoney +19906,14,30791,17,ironspider_95 +19906,14,30791,17,jacob32 +19906,14,30791,17,jacobjcoon +19906,14,30791,17,jbouv +19906,14,30791,17,jeanjo77 +19906,14,30791,17,jed1knight +19906,14,30791,17,jenna22 +19906,14,30791,17,jfeldgor +19906,14,30791,17,jorval2016 +19906,14,30791,17,joshypgman +19906,14,30791,17,jurdj +19906,14,30791,17,kaiff +19906,14,30791,17,kaplan82 +19906,14,30791,17,kars +19906,14,30791,17,kaypendragon +19906,14,30791,17,kcrash5 +19906,14,30791,17,kevinruss +19906,14,30791,17,ki_ri_ba_ti +19906,14,30791,17,kingkaa +19906,14,30791,17,kivasfajo +19906,14,30791,17,klemensor +19906,14,30791,17,krompot +19906,14,30791,17,kruck +19906,14,30791,17,kyanna +19906,14,30791,17,lapu +19906,14,30791,17,larrydurbin +19906,14,30791,17,lecsel +19906,14,30791,17,lewhno +19906,14,30791,17,livdaoh +19906,14,30791,17,lobo +19906,14,30791,17,longboardergeek +19906,14,30791,17,lorbull +19906,14,30791,17,lordpeet +19906,14,30791,17,louifxii +19906,14,30791,17,luijkner +19906,14,30791,17,manelc2001 +19906,14,30791,17,mange75 +19906,14,30791,17,maras +19906,14,30791,17,marco99 +19906,14,30791,17,martin518 +19906,14,30791,17,mas_on +19906,14,30791,17,mask +19906,14,30791,17,maybeas13 +19906,14,30791,17,maziken +19906,14,30791,17,mentalshiver +19906,14,30791,17,mezzine +19906,14,30791,17,mikecl +19906,14,30791,17,mindenjo +19906,14,30791,17,minordemon +19906,14,30791,17,mooreofryan +19906,14,30791,17,movieman71 +19906,14,30791,17,mowoki +19906,14,30791,17,mpeebles +19906,14,30791,17,mplsmatt +19906,14,30791,17,mykeran1965 +19906,14,30791,17,n0rsemn +19906,14,30791,17,n4di4 +19906,14,30791,17,ndee321 +19906,14,30791,17,nfirehazzard +19906,14,30791,17,nikola357 +19906,14,30791,17,ninjameepleyt +19906,14,30791,17,noblegrizzly +19906,14,30791,17,onichan +19906,14,30791,17,pablo83 +19906,14,30791,17,pabola +19906,14,30791,17,pack82 +19906,14,30791,17,paladinomonge +19906,14,30791,17,palmee4 +19906,14,30791,17,panter61 +19906,14,30791,17,paperkites +19906,14,30791,17,phantomxistance +19906,14,30791,17,ppgg +19906,14,30791,17,prrt949 +19906,14,30791,17,pwilz +19906,14,30791,17,qwertyrq +19906,14,30791,17,raphaz +19906,14,30791,17,revquest +19906,14,30791,17,rodandshana +19906,14,30791,17,rogdog13 +19906,14,30791,17,salukijeff +19906,14,30791,17,sarruken +19906,14,30791,17,scbarber +19906,14,30791,17,sezzypenguin +19906,14,30791,17,sherm21al +19906,14,30791,17,shouting man +19906,14,30791,17,silomou +19906,14,30791,17,skinnywhiteboy +19906,14,30791,17,snake3 +19906,14,30791,17,spamin76 +19906,14,30791,17,spinknitsarah +19906,14,30791,17,sprackmore +19906,14,30791,17,srysrameeple +19906,14,30791,17,stofke +19906,14,30791,17,stonedsour887 +19906,14,30791,17,stradk +19906,14,30791,17,suzrawrs +19906,14,30791,17,svgarcia +19906,14,30791,17,sychaotik +19906,14,30791,17,sychiang +19906,14,30791,17,ted44bertuzzi +19906,14,30791,17,thecrankyoldgamer +19906,14,30791,17,thesandmancymru +19906,14,30791,17,todestal +19906,14,30791,17,tommo87 +19906,14,30791,17,tonyf55 +19906,14,30791,17,torquin +19906,14,30791,17,tosh_loco +19906,14,30791,17,trippeer +19906,14,30791,17,tso kamel +19906,14,30791,17,twogenerationmeeple +19906,14,30791,17,vickdareaper +19906,14,30791,17,victice +19906,14,30791,17,vikingwarship +19906,14,30791,17,vnlima +19906,14,30791,17,wbc1 +19906,14,30791,17,wetcen +19906,14,30791,17,william where +19906,14,30791,17,windsorgaming +19906,14,30791,17,winterinapril +19906,14,30791,17,woollymamoth +19906,14,30791,17,xer0cool +19906,14,30791,17,yellingkitten +19906,14,30791,17,yldarr +19906,14,30791,17,zeppo007 +19906,14,30791,17,zlimer84 +19906,14,33518,16,aggen +19906,14,33518,16,agrajag4242 +19906,14,33518,16,ahooper239 +19906,14,33518,16,arroyo_9015 +19906,14,33518,16,asmyr42 +19906,14,33518,16,bartlantz +19906,14,33518,16,beavernickle +19906,14,33518,16,bernie-paul +19906,14,33518,16,blueanimal +19906,14,33518,16,burning_tyger +19906,14,33518,16,cavenilvino +19906,14,33518,16,constabler +19906,14,33518,16,countess +19906,14,33518,16,dehora +19906,14,33518,16,divine_justice +19906,14,33518,16,druzster +19906,14,33518,16,empeee +19906,14,33518,16,eniac_g +19906,14,33518,16,ennio_lombardi +19906,14,33518,16,euphoria_js +19906,14,33518,16,fitisgames.be +19906,14,33518,16,fizzix +19906,14,33518,16,folkvald +19906,14,33518,16,game0 +19906,14,33518,16,glovinski +19906,14,33518,16,grosorteil +19906,14,33518,16,hyppizaur +19906,14,33518,16,jakersni +19906,14,33518,16,jepmn +19906,14,33518,16,jfgreen123 +19906,14,33518,16,lord of trd +19906,14,33518,16,lordiii +19906,14,33518,16,lordperekles +19906,14,33518,16,mariejo71 +19906,14,33518,16,misteur_wolf +19906,14,33518,16,momarone +19906,14,33518,16,motora +19906,14,33518,16,muerker +19906,14,33518,16,nicolasan +19906,14,33518,16,ninchen +19906,14,33518,16,odysseusx +19906,14,33518,16,phoenix_samurai +19906,14,33518,16,pirateart +19906,14,33518,16,princessdottie +19906,14,33518,16,renox +19906,14,33518,16,rgunther +19906,14,33518,16,rlb360 +19906,14,33518,16,rufusmcdogg +19906,14,33518,16,shadoglare +19906,14,33518,16,slift1992 +19906,14,33518,16,solanum +19906,14,33518,16,spagetti69 +19906,14,33518,16,strassta +19906,14,33518,16,suthers59 +19906,14,33518,16,syllable +19906,14,33518,16,thegermwar +19906,14,33518,16,tomarr +19906,14,33518,16,tomdevere +19906,14,33518,16,tuggle530 +19906,14,33518,16,twistedcheffy +19906,14,33518,16,xxdcxbatman +19906,14,33518,16,zombiedad2 +19906,14,33518,16,zweiblum2 +19906,14,36419,15,headlines_soloplayer +19906,14,36419,15,kikki +19906,14,36419,15,marrey +19906,14,36419,15,mompou +19906,14,36419,15,psysage +19906,14,36419,15,rconsonni +23140,13,75,112,bechidow +23140,13,298,81,dariusiv +23140,13,298,81,sande24 +23140,13,1202,58,valmar +23140,13,1674,53,minhletn +23140,13,1792,52,davidme +23140,13,2053,50,etanarulacus +23140,13,2204,49,dr00 +23140,13,2204,49,sprode +23140,13,2351,48,copterman +23140,13,2555,47,wavyhill +23140,13,2758,46,baldrick +23140,13,2758,46,raygun76 +23140,13,3216,44,ahtitan +23140,13,3216,44,blackhowler +23140,13,3514,43,topkat +23140,13,3815,42,probablemagic +23140,13,3815,42,rxcrrts +23140,13,4092,41,26october +23140,13,4092,41,monsieurbeefy +23140,13,4092,41,pewe21000 +23140,13,4092,41,sidbeast +23140,13,4092,41,tigerace +23140,13,4426,40,alashar +23140,13,4426,40,jjanac +23140,13,4426,40,segletes +23140,13,4782,39,nightbreed1978 +23140,13,4782,39,oldfan +23140,13,4782,39,rockusultimus +23140,13,4782,39,sodtiwaz +23140,13,4782,39,ugavine +23140,13,5150,38,brettspielteddy +23140,13,5150,38,cln777 +23140,13,5150,38,doededub +23140,13,5150,38,inito +23140,13,5150,38,jeltree +23140,13,5150,38,osu_bry +23140,13,5150,38,resetii +23140,13,5150,38,salimo +23140,13,5624,37,dundas617 +23140,13,5624,37,mebuscat +23140,13,5624,37,resiak +23140,13,5624,37,shalarim +23140,13,6063,36,auttava_kasi +23140,13,6063,36,evandavies35 +23140,13,6063,36,funlightdog +23140,13,6063,36,jonathan degann +23140,13,6063,36,lachlankadick +23140,13,6063,36,marko666 +23140,13,6063,36,tyranasazi +23140,13,6063,36,zhugenuid +23140,13,6573,35,chuckles21 +23140,13,6573,35,jpal82 +23140,13,6573,35,markwebber +23140,13,6573,35,meander +23140,13,6573,35,seb_viriot +23140,13,6573,35,sunset266 +23140,13,6573,35,v4k0nd +23140,13,6573,35,vemb +23140,13,7100,34,drkhunter +23140,13,7100,34,frankqb +23140,13,7100,34,huron725 +23140,13,7100,34,jeffmaynes +23140,13,7100,34,mbogie +23140,13,7100,34,mile89 +23140,13,7100,34,weesh +23140,13,7679,33,amelin +23140,13,7679,33,capeman +23140,13,7679,33,danb87 +23140,13,7679,33,dorkchilde +23140,13,7679,33,gandorf +23140,13,7679,33,harveymcglenn +23140,13,7679,33,pommebour +23140,13,7679,33,rlong007 +23140,13,7679,33,tuba deus +23140,13,7679,33,zeldaaa +23140,13,8351,32,acrowe +23140,13,8351,32,awenice +23140,13,8351,32,chopc2w +23140,13,8351,32,elquishi +23140,13,8351,32,halides +23140,13,8351,32,kklenko +23140,13,8351,32,lennon90 +23140,13,8351,32,rhodesphoto +23140,13,8351,32,sherckom +23140,13,8351,32,skeeza +23140,13,8351,32,the_general +23140,13,8351,32,threefold_crown +23140,13,9086,31,ash1138 +23140,13,9086,31,blhootz +23140,13,9086,31,blondiewan +23140,13,9086,31,chickadee4 +23140,13,9086,31,davidcp9 +23140,13,9086,31,deedo72 +23140,13,9086,31,devouringrossus +23140,13,9086,31,felis44 +23140,13,9086,31,francast7 +23140,13,9086,31,hansbakker +23140,13,9086,31,hedden +23140,13,9086,31,ily83 +23140,13,9086,31,jasatomy +23140,13,9086,31,kaiten909 +23140,13,9086,31,millerjeff +23140,13,9086,31,ozete +23140,13,9086,31,taranii +23140,13,9910,30,bamahud +23140,13,9910,30,callipigus +23140,13,9910,30,chichira +23140,13,9910,30,corto maltese +23140,13,9910,30,david goldfarb +23140,13,9910,30,denoir42 +23140,13,9910,30,dzsudee7 +23140,13,9910,30,germflinger +23140,13,9910,30,gooble +23140,13,9910,30,monkeyturtle +23140,13,9910,30,nachete +23140,13,9910,30,naminu +23140,13,9910,30,oriellore +23140,13,9910,30,pat_cat +23140,13,9910,30,pinoz64 +23140,13,9910,30,qrsjohnson +23140,13,9910,30,riddim3162 +23140,13,9910,30,rukuza +23140,13,9910,30,scorasaur +23140,13,9910,30,tomasongr +23140,13,9910,30,tommyp +23140,13,9910,30,xagabi +23140,13,9910,30,zarrraga +23140,13,10868,29,amisas88 +23140,13,10868,29,bakerlain +23140,13,10868,29,bearhug78 +23140,13,10868,29,borwaka +23140,13,10868,29,bouzza +23140,13,10868,29,bowling_m_h +23140,13,10868,29,broekj1987 +23140,13,10868,29,digitalnametag +23140,13,10868,29,ebweb +23140,13,10868,29,ericthered13 +23140,13,10868,29,garnett11 +23140,13,10868,29,halconmilenario +23140,13,10868,29,hq063 +23140,13,10868,29,ipainter +23140,13,10868,29,jackypapers +23140,13,10868,29,jancis +23140,13,10868,29,krypton +23140,13,10868,29,kukuyufeng +23140,13,10868,29,magicman6173 +23140,13,10868,29,melikins +23140,13,10868,29,minoor +23140,13,10868,29,noshadow +23140,13,10868,29,olav +23140,13,10868,29,ragozd +23140,13,10868,29,smiley1017 +23140,13,10868,29,snakespittle +23140,13,10868,29,templebay33 +23140,13,10868,29,twitch_city +23140,13,11831,28,ardbegman +23140,13,11831,28,ascott1978 +23140,13,11831,28,benom96 +23140,13,11831,28,bimmyjim +23140,13,11831,28,butscher96 +23140,13,11831,28,chaparr1to +23140,13,11831,28,cirle +23140,13,11831,28,claywhis +23140,13,11831,28,dasepho +23140,13,11831,28,ddobrien1 +23140,13,11831,28,delloth +23140,13,11831,28,dur4nte +23140,13,11831,28,faijdherbe +23140,13,11831,28,fendwick +23140,13,11831,28,flaviofb +23140,13,11831,28,foodlove +23140,13,11831,28,hammers +23140,13,11831,28,holofernes +23140,13,11831,28,incubus76 +23140,13,11831,28,jkl620 +23140,13,11831,28,kairu +23140,13,11831,28,kriztiankool +23140,13,11831,28,mastadon61 +23140,13,11831,28,merrakon +23140,13,11831,28,nezael +23140,13,11831,28,nomecopies +23140,13,11831,28,nsf games +23140,13,11831,28,pkfirst +23140,13,11831,28,sebastiansong +23140,13,11831,28,sky851 +23140,13,11831,28,stonerrw +23140,13,11831,28,sufferum +23140,13,11831,28,tecnosmurf +23140,13,11831,28,the goof review +23140,13,11831,28,thehasi +23140,13,11831,28,tournqiuet +23140,13,11831,28,toy marine +23140,13,11831,28,truebluedrew +23140,13,11831,28,uigrad +23140,13,11831,28,unallia +23140,13,11831,28,voldemarove +23140,13,11831,28,wtfpancake +23140,13,11831,28,zaftiig +23140,13,12910,27,ajlaw +23140,13,12910,27,awjoel +23140,13,12910,27,bluthund +23140,13,12910,27,brinyo4 +23140,13,12910,27,cylonathalf +23140,13,12910,27,darkiii +23140,13,12910,27,davwj +23140,13,12910,27,disarmadillo +23140,13,12910,27,docbob88 +23140,13,12910,27,dougtempel +23140,13,12910,27,elmonojugon +23140,13,12910,27,emanuelcb +23140,13,12910,27,esengie +23140,13,12910,27,ezekiel +23140,13,12910,27,fidosek +23140,13,12910,27,foxfan +23140,13,12910,27,glenng +23140,13,12910,27,hawkeychick +23140,13,12910,27,herb28 +23140,13,12910,27,iclaverov +23140,13,12910,27,jay dee +23140,13,12910,27,joffw +23140,13,12910,27,jonbone +23140,13,12910,27,jpoverlord +23140,13,12910,27,jurassicjoy +23140,13,12910,27,kevin in kansas +23140,13,12910,27,livelytoaster +23140,13,12910,27,malcolmk14 +23140,13,12910,27,niceorbadboy006 +23140,13,12910,27,oboewan +23140,13,12910,27,older nick +23140,13,12910,27,olizapp66 +23140,13,12910,27,otxan19 +23140,13,12910,27,pilight +23140,13,12910,27,pirate_chef +23140,13,12910,27,reivision +23140,13,12910,27,russmcox +23140,13,12910,27,sharila +23140,13,12910,27,skadam +23140,13,12910,27,soulcaravan +23140,13,12910,27,swiftlv +23140,13,12910,27,tuckerotl +23140,13,12910,27,vblade +23140,13,12910,27,vidainfinita +23140,13,12910,27,viriatz +23140,13,12910,27,waywater +23140,13,12910,27,zackrabbit +23140,13,12910,27,zdcrossbones +23140,13,14030,26,adrianwaclaw +23140,13,14030,26,anubian +23140,13,14030,26,ascesis +23140,13,14030,26,atomikhammer +23140,13,14030,26,azakaria +23140,13,14030,26,bambi8642 +23140,13,14030,26,bloody_m +23140,13,14030,26,cyberdiscman +23140,13,14030,26,div_dweller +23140,13,14030,26,dmirman +23140,13,14030,26,drbasseri +23140,13,14030,26,elvishscout +23140,13,14030,26,eringilson +23140,13,14030,26,exarus +23140,13,14030,26,exo20811 +23140,13,14030,26,exonn +23140,13,14030,26,gameinsanity +23140,13,14030,26,goof06 +23140,13,14030,26,grreapsphos +23140,13,14030,26,hittepit +23140,13,14030,26,ikeya +23140,13,14030,26,jedgoshi73 +23140,13,14030,26,jimmers +23140,13,14030,26,lionet +23140,13,14030,26,mamutito +23140,13,14030,26,maragd +23140,13,14030,26,mathieumartimbault +23140,13,14030,26,mengu1 +23140,13,14030,26,mrreluctant +23140,13,14030,26,ollipolli +23140,13,14030,26,piedrahita +23140,13,14030,26,pietrof +23140,13,14030,26,rafalrafal30 +23140,13,14030,26,red_zebra_ve +23140,13,14030,26,sbarrera +23140,13,14030,26,sciencevictor +23140,13,14030,26,stko6007 +23140,13,14030,26,swarles +23140,13,14030,26,thekrotek +23140,13,14030,26,thinner +23140,13,14030,26,valharik +23140,13,14030,26,voxen +23140,13,14030,26,w33t +23140,13,14030,26,wilby31 +23140,13,14030,26,xanderf +23140,13,14030,26,xesqui +23140,13,14030,26,zombiefeynman +23140,13,15326,25,ahhbutter +23140,13,15326,25,alfabeto +23140,13,15326,25,alistairm +23140,13,15326,25,angelmdez +23140,13,15326,25,argonel +23140,13,15326,25,armorofgod +23140,13,15326,25,astrolad +23140,13,15326,25,atrevit +23140,13,15326,25,bannor_bgg +23140,13,15326,25,blapo +23140,13,15326,25,boardgamersha +23140,13,15326,25,bosaiya +23140,13,15326,25,bumayeo3o +23140,13,15326,25,capzich +23140,13,15326,25,cremator +23140,13,15326,25,cyril2113 +23140,13,15326,25,danielle_koster +23140,13,15326,25,dannielw +23140,13,15326,25,debbiesunfish +23140,13,15326,25,doubt72 +23140,13,15326,25,drackx +23140,13,15326,25,efferalgan +23140,13,15326,25,floppi +23140,13,15326,25,gavin923 +23140,13,15326,25,henkka +23140,13,15326,25,iguano +23140,13,15326,25,iyxhowyhe +23140,13,15326,25,jacobrudd +23140,13,15326,25,jau11 +23140,13,15326,25,jax hammer +23140,13,15326,25,jcud +23140,13,15326,25,jmlima +23140,13,15326,25,jsowles +23140,13,15326,25,juleschar +23140,13,15326,25,julioriquelme +23140,13,15326,25,justinbaum30 +23140,13,15326,25,kelemvorbgg +23140,13,15326,25,kemj +23140,13,15326,25,kepasaneng +23140,13,15326,25,kiflajiq +23140,13,15326,25,kojljleklluohep +23140,13,15326,25,ledo11 +23140,13,15326,25,leonidas98 +23140,13,15326,25,lion_pride85 +23140,13,15326,25,lsiversen +23140,13,15326,25,lunatyk +23140,13,15326,25,madshanker +23140,13,15326,25,matschnuss +23140,13,15326,25,mattqpublic +23140,13,15326,25,mayoke +23140,13,15326,25,michellepeterson +23140,13,15326,25,mordachai +23140,13,15326,25,ninkasi99 +23140,13,15326,25,pacobillo +23140,13,15326,25,ploohnose +23140,13,15326,25,pnr32 +23140,13,15326,25,preptioss +23140,13,15326,25,red_templar +23140,13,15326,25,redemptor +23140,13,15326,25,revlis +23140,13,15326,25,sandiegogamer +23140,13,15326,25,sbszine +23140,13,15326,25,sevej +23140,13,15326,25,shrinkk +23140,13,15326,25,silverfireprime +23140,13,15326,25,slavkos +23140,13,15326,25,speedwaysupporter +23140,13,15326,25,spitlock +23140,13,15326,25,stardock +23140,13,15326,25,stayman +23140,13,15326,25,stringthis +23140,13,15326,25,teemu salohalme +23140,13,15326,25,thebriandickson +23140,13,15326,25,thorhod +23140,13,15326,25,tinyclanger +23140,13,15326,25,turfmaster +23140,13,15326,25,txejo37 +23140,13,15326,25,von cougar +23140,13,15326,25,wills342 +23140,13,15326,25,yodawi +23140,13,15326,25,yucendulang +23140,13,15326,25,zombietonic +23140,13,15326,25,zzrunner +23140,13,16710,24,_max_ +23140,13,16710,24,a river runs +23140,13,16710,24,abmania22 +23140,13,16710,24,adrirg7 +23140,13,16710,24,andynonymous +23140,13,16710,24,asmith5831 +23140,13,16710,24,atibik +23140,13,16710,24,barduchi +23140,13,16710,24,barney0815 +23140,13,16710,24,ben4233 +23140,13,16710,24,benjro +23140,13,16710,24,bkimb +23140,13,16710,24,bluedevil420 +23140,13,16710,24,brabbyb +23140,13,16710,24,budapest +23140,13,16710,24,bushmaster +23140,13,16710,24,butcha82 +23140,13,16710,24,carlcovatto +23140,13,16710,24,carsofergo +23140,13,16710,24,childofthewired +23140,13,16710,24,crobledo +23140,13,16710,24,cybarite +23140,13,16710,24,danishviking88 +23140,13,16710,24,darthed +23140,13,16710,24,decadence20 +23140,13,16710,24,doggie bear +23140,13,16710,24,drake4ree +23140,13,16710,24,dzonidji +23140,13,16710,24,easycheese +23140,13,16710,24,eccsur01 +23140,13,16710,24,escueladejuegos +23140,13,16710,24,faustoxx +23140,13,16710,24,fieldmarshallbob11 +23140,13,16710,24,filipovi +23140,13,16710,24,flennetar +23140,13,16710,24,flolo +23140,13,16710,24,funkbgr +23140,13,16710,24,gamedog +23140,13,16710,24,gamer for life +23140,13,16710,24,gatobsk +23140,13,16710,24,gbutler288 +23140,13,16710,24,generalhawk17 +23140,13,16710,24,ginch100 +23140,13,16710,24,greenknight08 +23140,13,16710,24,gsquirrel +23140,13,16710,24,gummyssr +23140,13,16710,24,gunnershubin +23140,13,16710,24,hoegni +23140,13,16710,24,jerzeeg +23140,13,16710,24,jima759 +23140,13,16710,24,jlwcrews +23140,13,16710,24,johannes2704 +23140,13,16710,24,jokerjr2 +23140,13,16710,24,jul19 +23140,13,16710,24,jwkeener +23140,13,16710,24,kc0n +23140,13,16710,24,kevinv0808 +23140,13,16710,24,kisinho +23140,13,16710,24,knsilverman +23140,13,16710,24,koronaor +23140,13,16710,24,lsmb +23140,13,16710,24,mackishimu +23140,13,16710,24,marcin_lesnicki +23140,13,16710,24,maxell92 +23140,13,16710,24,milo15 +23140,13,16710,24,morfeo +23140,13,16710,24,mozg207 +23140,13,16710,24,nitz +23140,13,16710,24,norraf von nacht +23140,13,16710,24,nwrex +23140,13,16710,24,okiefire +23140,13,16710,24,olegblef +23140,13,16710,24,ovvovv +23140,13,16710,24,page_fault +23140,13,16710,24,pawnstorm +23140,13,16710,24,perpetka +23140,13,16710,24,peter_zrnko +23140,13,16710,24,petrichorparticle +23140,13,16710,24,pinguinone +23140,13,16710,24,pinook +23140,13,16710,24,pm1987 +23140,13,16710,24,prosimir +23140,13,16710,24,puckstopper42 +23140,13,16710,24,randolphcarterkadath +23140,13,16710,24,rathpex +23140,13,16710,24,rbreiten +23140,13,16710,24,rsansom +23140,13,16710,24,rudowlosa +23140,13,16710,24,ryantdpla +23140,13,16710,24,scordo13 +23140,13,16710,24,sirhugbot +23140,13,16710,24,skywalterdbz +23140,13,16710,24,splashcola +23140,13,16710,24,stromgol +23140,13,16710,24,strothkat +23140,13,16710,24,stu skywalker +23140,13,16710,24,tasme +23140,13,16710,24,thenkie +23140,13,16710,24,theryn +23140,13,16710,24,thesandolorian +23140,13,16710,24,trile1000 +23140,13,16710,24,trooper676 +23140,13,16710,24,unequalled +23140,13,16710,24,varduk +23140,13,16710,24,wfsm +23140,13,16710,24,yaoz +23140,13,16710,24,yasli +23140,13,18170,23,360_piranha +23140,13,18170,23,aaronmig +23140,13,18170,23,aart b +23140,13,18170,23,adhdefn +23140,13,18170,23,akanail +23140,13,18170,23,alkratos +23140,13,18170,23,andymomo +23140,13,18170,23,arctic_rogue +23140,13,18170,23,axevince +23140,13,18170,23,bencebarany +23140,13,18170,23,bigbanggg +23140,13,18170,23,birkthesoggy +23140,13,18170,23,blueaway +23140,13,18170,23,bmarcell +23140,13,18170,23,bnye88 +23140,13,18170,23,boarddigger +23140,13,18170,23,bonitoflakes +23140,13,18170,23,brianisivever +23140,13,18170,23,brodrick +23140,13,18170,23,brutus60s2 +23140,13,18170,23,caliph74 +23140,13,18170,23,captain klod +23140,13,18170,23,cesar1998410 +23140,13,18170,23,coldmagenta +23140,13,18170,23,coldy7 +23140,13,18170,23,colonelcrit +23140,13,18170,23,conan_barbarian +23140,13,18170,23,corwinluth +23140,13,18170,23,crd1680 +23140,13,18170,23,cressy +23140,13,18170,23,cubinho +23140,13,18170,23,darkholyone +23140,13,18170,23,dave in ledbury +23140,13,18170,23,desdemoa +23140,13,18170,23,detectivekarl +23140,13,18170,23,dhcasella +23140,13,18170,23,dimitris +23140,13,18170,23,dmarquez +23140,13,18170,23,drbres +23140,13,18170,23,dvtlpzrc +23140,13,18170,23,edcrosay +23140,13,18170,23,ehuelse +23140,13,18170,23,elister +23140,13,18170,23,enologo +23140,13,18170,23,enricodn +23140,13,18170,23,ericminkes +23140,13,18170,23,eyeballertbb +23140,13,18170,23,f16jetman +23140,13,18170,23,franklincobb +23140,13,18170,23,freezo +23140,13,18170,23,fuzzyps234 +23140,13,18170,23,gandorus +23140,13,18170,23,gorcho +23140,13,18170,23,greenscar +23140,13,18170,23,grouik5962 +23140,13,18170,23,gwhuma +23140,13,18170,23,hal_7297108 +23140,13,18170,23,hampuusi +23140,13,18170,23,happymrdave +23140,13,18170,23,hmdavies +23140,13,18170,23,hoang_iee2000 +23140,13,18170,23,hobbymaja +23140,13,18170,23,horsey_avenger +23140,13,18170,23,hotcarl04 +23140,13,18170,23,hunterfam +23140,13,18170,23,ipecac +23140,13,18170,23,jalpes +23140,13,18170,23,jasomac +23140,13,18170,23,jasonad +23140,13,18170,23,jasper_98 +23140,13,18170,23,jerhum +23140,13,18170,23,jevansfp +23140,13,18170,23,jlewis87 +23140,13,18170,23,jobob314 +23140,13,18170,23,joerg73 +23140,13,18170,23,justinc +23140,13,18170,23,jutley33 +23140,13,18170,23,kamichama +23140,13,18170,23,kcspaceman +23140,13,18170,23,kingbolko +23140,13,18170,23,knotilla +23140,13,18170,23,kokiomot +23140,13,18170,23,kostascb +23140,13,18170,23,kostuyk21 +23140,13,18170,23,krisclark0 +23140,13,18170,23,kryogen +23140,13,18170,23,krzysztopher +23140,13,18170,23,lclnbrhc +23140,13,18170,23,lewix +23140,13,18170,23,lexpierce +23140,13,18170,23,lofski +23140,13,18170,23,mabool +23140,13,18170,23,maik4000 +23140,13,18170,23,malonapony +23140,13,18170,23,massivejammies +23140,13,18170,23,mattias +23140,13,18170,23,mattsidee +23140,13,18170,23,mcollier +23140,13,18170,23,merceeiro +23140,13,18170,23,mistablair +23140,13,18170,23,mkal +23140,13,18170,23,mnrafa +23140,13,18170,23,monkeybarts +23140,13,18170,23,monkeyindisguise +23140,13,18170,23,mr more dakka +23140,13,18170,23,mssbounceuk +23140,13,18170,23,mysterfood +23140,13,18170,23,nafritzu +23140,13,18170,23,nate23vt +23140,13,18170,23,neo1984 +23140,13,18170,23,neokenshin +23140,13,18170,23,nerdy_guy_1980 +23140,13,18170,23,nerdzgarage +23140,13,18170,23,nickhegge +23140,13,18170,23,nicklasd +23140,13,18170,23,nicksimp101 +23140,13,18170,23,nickym64 +23140,13,18170,23,nilcraban +23140,13,18170,23,niralikekira +23140,13,18170,23,normyp +23140,13,18170,23,ntstuart +23140,13,18170,23,ollowein +23140,13,18170,23,olorion +23140,13,18170,23,panonniaminor +23140,13,18170,23,parakoos +23140,13,18170,23,peculiii +23140,13,18170,23,pegoli +23140,13,18170,23,pinkrabbitson +23140,13,18170,23,pp0u20e8 +23140,13,18170,23,qalin +23140,13,18170,23,quietlylizlie +23140,13,18170,23,remac +23140,13,18170,23,rhoderich +23140,13,18170,23,ricking +23140,13,18170,23,rodkabuto +23140,13,18170,23,romainseb +23140,13,18170,23,rueda85 +23140,13,18170,23,section8 +23140,13,18170,23,shalmon00 +23140,13,18170,23,sharprabit +23140,13,18170,23,shawnpdaddy +23140,13,18170,23,shildrak +23140,13,18170,23,sicknote +23140,13,18170,23,skeime +23140,13,18170,23,sparecheynj +23140,13,18170,23,sprout18 +23140,13,18170,23,spv4800 +23140,13,18170,23,steelseraph +23140,13,18170,23,sweatercat +23140,13,18170,23,swedishmeeple +23140,13,18170,23,t7inga +23140,13,18170,23,tarheel +23140,13,18170,23,technofloat +23140,13,18170,23,thegeekygiant +23140,13,18170,23,thetenorguy +23140,13,18170,23,thimblerogue +23140,13,18170,23,timmmd +23140,13,18170,23,tino1440 +23140,13,18170,23,tjfoerster +23140,13,18170,23,tooold4games2 +23140,13,18170,23,trespunts +23140,13,18170,23,treykthethird +23140,13,18170,23,truewopr +23140,13,18170,23,tycjan +23140,13,18170,23,valtyr +23140,13,18170,23,vertti02 +23140,13,18170,23,vesselofbalon +23140,13,18170,23,waltersen +23140,13,18170,23,warcat77 +23140,13,18170,23,wooperjeff +23140,13,18170,23,xaronbf +23140,13,18170,23,xzet +23140,13,18170,23,yesperate96 +23140,13,18170,23,yiyox +23140,13,18170,23,ynnen +23140,13,18170,23,zachipl +23140,13,18170,23,zbiletch +23140,13,18170,23,zedvasquez +23140,13,19906,22,521tiger +23140,13,19906,22,a skinned math nerd +23140,13,19906,22,adam78 +23140,13,19906,22,aldamar +23140,13,19906,22,alejgarcia24 +23140,13,19906,22,alexmania99 +23140,13,19906,22,allen_ +23140,13,19906,22,amikulaschek +23140,13,19906,22,androidodnetnin +23140,13,19906,22,aniaw89 +23140,13,19906,22,ankanator +23140,13,19906,22,anno89 +23140,13,19906,22,aprilbrown101 +23140,13,19906,22,asperamanca +23140,13,19906,22,audiotoro +23140,13,19906,22,beornd +23140,13,19906,22,bgmal +23140,13,19906,22,bigroad +23140,13,19906,22,billingspike +23140,13,19906,22,brucestringbeen +23140,13,19906,22,bveld +23140,13,19906,22,captain883 +23140,13,19906,22,captainfold2 +23140,13,19906,22,cartkun +23140,13,19906,22,cecelightshiner +23140,13,19906,22,cephas730 +23140,13,19906,22,chaz489xz_d +23140,13,19906,22,cnmrun +23140,13,19906,22,costf +23140,13,19906,22,cowain +23140,13,19906,22,cpiper792 +23140,13,19906,22,csessh +23140,13,19906,22,csonka_zonk +23140,13,19906,22,czaronster +23140,13,19906,22,danimc +23140,13,19906,22,davehuang69 +23140,13,19906,22,deathrx +23140,13,19906,22,delta1119 +23140,13,19906,22,democrite +23140,13,19906,22,desmothenes +23140,13,19906,22,dima228137 +23140,13,19906,22,djune12 +23140,13,19906,22,do0ctor +23140,13,19906,22,dom2d +23140,13,19906,22,dr glaze et al +23140,13,19906,22,dragonmf +23140,13,19906,22,dtturner +23140,13,19906,22,dubinevics +23140,13,19906,22,dyfrgi +23140,13,19906,22,edwards12691 +23140,13,19906,22,egoexpress +23140,13,19906,22,em_cush +23140,13,19906,22,epsalon +23140,13,19906,22,ferns007 +23140,13,19906,22,fidjika +23140,13,19906,22,frankco85 +23140,13,19906,22,fremen +23140,13,19906,22,froodmcborkbork +23140,13,19906,22,frutos +23140,13,19906,22,gadobert +23140,13,19906,22,garruk +23140,13,19906,22,gmale9000 +23140,13,19906,22,graverose +23140,13,19906,22,grondeaux +23140,13,19906,22,harnas1207 +23140,13,19906,22,hb_guardian +23140,13,19906,22,herrgoreman +23140,13,19906,22,ian2014 +23140,13,19906,22,igreulich +23140,13,19906,22,ildragonir +23140,13,19906,22,ilkka +23140,13,19906,22,indramir +23140,13,19906,22,ineken +23140,13,19906,22,isuscbr +23140,13,19906,22,ixianfrylok +23140,13,19906,22,jackadams +23140,13,19906,22,jdpftw +23140,13,19906,22,jefforama +23140,13,19906,22,jesusbelzunce +23140,13,19906,22,jimmy_stavros +23140,13,19906,22,jlcook50 +23140,13,19906,22,johnmikepauljr +23140,13,19906,22,jorharper +23140,13,19906,22,joscha +23140,13,19906,22,jpkapps +23140,13,19906,22,jsomeone +23140,13,19906,22,juice1 +23140,13,19906,22,juike +23140,13,19906,22,jul159 +23140,13,19906,22,jwhuntley +23140,13,19906,22,kalimatar +23140,13,19906,22,kalli2017 +23140,13,19906,22,karana21 +23140,13,19906,22,kermity +23140,13,19906,22,khelegar +23140,13,19906,22,kichoseu +23140,13,19906,22,kimbreuer +23140,13,19906,22,korv1n +23140,13,19906,22,kristallopal +23140,13,19906,22,ksiazekrzysztof +23140,13,19906,22,lenyjr +23140,13,19906,22,leolajs1999 +23140,13,19906,22,lina2510 +23140,13,19906,22,locknkopfxx +23140,13,19906,22,loeffe +23140,13,19906,22,lonagan +23140,13,19906,22,lordstrix +23140,13,19906,22,lordyuric +23140,13,19906,22,luctardif +23140,13,19906,22,lvernst +23140,13,19906,22,magicgame +23140,13,19906,22,malbo56 +23140,13,19906,22,malgeth +23140,13,19906,22,mantis747 +23140,13,19906,22,markmist +23140,13,19906,22,markos_29 +23140,13,19906,22,maskmanjoe +23140,13,19906,22,matze666 +23140,13,19906,22,mfrank +23140,13,19906,22,mibaito +23140,13,19906,22,mickeymccool +23140,13,19906,22,mikael1983 +23140,13,19906,22,mikelt21 +23140,13,19906,22,misendo +23140,13,19906,22,moondog +23140,13,19906,22,mosiahtorres +23140,13,19906,22,msaefkow +23140,13,19906,22,musiciangamer +23140,13,19906,22,nillendk +23140,13,19906,22,noon +23140,13,19906,22,omahawargamer +23140,13,19906,22,oshio +23140,13,19906,22,ozymandiaswr +23140,13,19906,22,paulo +23140,13,19906,22,pepvideo +23140,13,19906,22,perchy +23140,13,19906,22,pianogirl13 +23140,13,19906,22,pixyfrog +23140,13,19906,22,pizzaman1987 +23140,13,19906,22,poisonousnuts +23140,13,19906,22,pszgaspar +23140,13,19906,22,quatosxian +23140,13,19906,22,qwertastas +23140,13,19906,22,qwibbian +23140,13,19906,22,radioactivita +23140,13,19906,22,raistlin3m +23140,13,19906,22,redhexapus +23140,13,19906,22,richcsigs +23140,13,19906,22,ricknub +23140,13,19906,22,riva03 +23140,13,19906,22,rjplanty +23140,13,19906,22,rorschach73 +23140,13,19906,22,rschanlaub +23140,13,19906,22,rucketman +23140,13,19906,22,runningred +23140,13,19906,22,rwhite3787 +23140,13,19906,22,rx gonna give it 2 u +23140,13,19906,22,sajusmina +23140,13,19906,22,salcas +23140,13,19906,22,samall +23140,13,19906,22,samparker +23140,13,19906,22,schen +23140,13,19906,22,schirack14 +23140,13,19906,22,scottly99 +23140,13,19906,22,sertiale +23140,13,19906,22,silentcircle +23140,13,19906,22,simonjauk +23140,13,19906,22,skir +23140,13,19906,22,slickerdrips +23140,13,19906,22,slylysylar +23140,13,19906,22,slysof +23140,13,19906,22,smm0889 +23140,13,19906,22,snoesengoen +23140,13,19906,22,sophosmoi +23140,13,19906,22,squallgoku +23140,13,19906,22,startagain +23140,13,19906,22,stevehicks +23140,13,19906,22,stevogz +23140,13,19906,22,stoergeraeusch +23140,13,19906,22,striped_zebra +23140,13,19906,22,sudak +23140,13,19906,22,t16livi +23140,13,19906,22,tathta +23140,13,19906,22,teacherscromp +23140,13,19906,22,tenebris44 +23140,13,19906,22,the_rooster +23140,13,19906,22,thegamesx +23140,13,19906,22,tigger111 +23140,13,19906,22,tjrider76 +23140,13,19906,22,traveladdict +23140,13,19906,22,tventano +23140,13,19906,22,tywinlannister +23140,13,19906,22,vinicius +23140,13,19906,22,vwooba +23140,13,19906,22,wakeem +23140,13,19906,22,weirdmarine +23140,13,19906,22,werebob +23140,13,19906,22,wildpack +23140,13,19906,22,wingsofdaidalos +23140,13,19906,22,wonkomaniac +23140,13,19906,22,wujek2114 +23140,13,19906,22,yudani +23140,13,19906,22,zaneseals +23140,13,19906,22,zarathud +23140,13,19906,22,zarigno +23140,13,21713,21,7brina +23140,13,21713,21,7inchsplit +23140,13,21713,21,acholt22 +23140,13,21713,21,ad116 +23140,13,21713,21,adherin1 +23140,13,21713,21,aeiou871 +23140,13,21713,21,akahoshi +23140,13,21713,21,ako_ay_bisaya +23140,13,21713,21,albertaflyfisher +23140,13,21713,21,alexey_sfbt +23140,13,21713,21,alexfrantz +23140,13,21713,21,algreenberg +23140,13,21713,21,allein +23140,13,21713,21,amynm +23140,13,21713,21,angerboy +23140,13,21713,21,antonphibes +23140,13,21713,21,arditi00 +23140,13,21713,21,artaiosgr +23140,13,21713,21,athenabell1985 +23140,13,21713,21,atreyo +23140,13,21713,21,babyazerty +23140,13,21713,21,barulin +23140,13,21713,21,bastiboardgamer +23140,13,21713,21,bdanv +23140,13,21713,21,beamfrost +23140,13,21713,21,beartender +23140,13,21713,21,bernhard n. +23140,13,21713,21,biallyy +23140,13,21713,21,bigdaddykraken +23140,13,21713,21,bilmi7540 +23140,13,21713,21,biosluut +23140,13,21713,21,blamblamthemonkey +23140,13,21713,21,bourbon21197 +23140,13,21713,21,brisingr +23140,13,21713,21,brumble666 +23140,13,21713,21,brunhild +23140,13,21713,21,butfeis +23140,13,21713,21,cadernera +23140,13,21713,21,camaradacarvalho +23140,13,21713,21,cardshark28800 +23140,13,21713,21,carlsbad +23140,13,21713,21,castletower +23140,13,21713,21,catanking +23140,13,21713,21,cepalmer +23140,13,21713,21,chapelgamer +23140,13,21713,21,charliedam +23140,13,21713,21,chris_oabling +23140,13,21713,21,cityben +23140,13,21713,21,ciwifrukt +23140,13,21713,21,cjhull67 +23140,13,21713,21,clearshades +23140,13,21713,21,clquan +23140,13,21713,21,conky +23140,13,21713,21,conphas +23140,13,21713,21,coramoor +23140,13,21713,21,corgiparty +23140,13,21713,21,cpanthersfan +23140,13,21713,21,crazygood19 +23140,13,21713,21,creepo +23140,13,21713,21,crountch +23140,13,21713,21,cuccumeu +23140,13,21713,21,cuelannoo +23140,13,21713,21,dadox93 +23140,13,21713,21,daemon6 +23140,13,21713,21,dan321 +23140,13,21713,21,darksaviour +23140,13,21713,21,daug +23140,13,21713,21,dcall +23140,13,21713,21,delfao +23140,13,21713,21,diggleninja +23140,13,21713,21,djkultur +23140,13,21713,21,dpbernath +23140,13,21713,21,dunscotus1 +23140,13,21713,21,dutchmikenik +23140,13,21713,21,dzordz_gr +23140,13,21713,21,edmark27 +23140,13,21713,21,ehios81 +23140,13,21713,21,elementemo +23140,13,21713,21,elpatzo +23140,13,21713,21,emptiful +23140,13,21713,21,er_simbionte +23140,13,21713,21,ericthered6 +23140,13,21713,21,evolx +23140,13,21713,21,eye_of_strategy +23140,13,21713,21,eyerok +23140,13,21713,21,ffish +23140,13,21713,21,fifagi +23140,13,21713,21,fleischerfaust +23140,13,21713,21,flightlevel +23140,13,21713,21,flyermc +23140,13,21713,21,fourmie +23140,13,21713,21,fox14276 +23140,13,21713,21,framancu +23140,13,21713,21,freudianslip27 +23140,13,21713,21,frogman82 +23140,13,21713,21,frolickin +23140,13,21713,21,frosgabne +23140,13,21713,21,game addict +23140,13,21713,21,gamergeek +23140,13,21713,21,gersard01 +23140,13,21713,21,ghostofmerlin +23140,13,21713,21,ginani +23140,13,21713,21,godzilla614 +23140,13,21713,21,gomtuu +23140,13,21713,21,gowsell +23140,13,21713,21,grondl +23140,13,21713,21,grumpyloompa +23140,13,21713,21,gugudwarf +23140,13,21713,21,hansch +23140,13,21713,21,heartcore +23140,13,21713,21,herrvorragend +23140,13,21713,21,hoffmanmw +23140,13,21713,21,hubrisseven +23140,13,21713,21,humra +23140,13,21713,21,hyliankaji +23140,13,21713,21,i_f_collection +23140,13,21713,21,ibud +23140,13,21713,21,icebox +23140,13,21713,21,ideology +23140,13,21713,21,ieoor +23140,13,21713,21,ilew +23140,13,21713,21,iman14 +23140,13,21713,21,imlus +23140,13,21713,21,impromptu +23140,13,21713,21,inventoryaccount +23140,13,21713,21,jaksen +23140,13,21713,21,jcjaneway +23140,13,21713,21,jeannedarc +23140,13,21713,21,jeremy +23140,13,21713,21,jgillett +23140,13,21713,21,jhbf1138 +23140,13,21713,21,jimking +23140,13,21713,21,jin86 +23140,13,21713,21,johanx +23140,13,21713,21,johnorange3 +23140,13,21713,21,juansmit +23140,13,21713,21,kaletaklt +23140,13,21713,21,kchoto +23140,13,21713,21,khayman7 +23140,13,21713,21,kittymai +23140,13,21713,21,kngdvd +23140,13,21713,21,kompananzi +23140,13,21713,21,kraljus +23140,13,21713,21,kurdzio +23140,13,21713,21,kvic +23140,13,21713,21,lamont7 +23140,13,21713,21,landstander +23140,13,21713,21,lankynibs +23140,13,21713,21,larsf +23140,13,21713,21,lbrande +23140,13,21713,21,lesley anne +23140,13,21713,21,leyas +23140,13,21713,21,lionandlamb +23140,13,21713,21,lngsht +23140,13,21713,21,lord_of_the_dice +23140,13,21713,21,madjackmcd +23140,13,21713,21,mafeld +23140,13,21713,21,malloreon +23140,13,21713,21,manba rion +23140,13,21713,21,manowarplayer +23140,13,21713,21,mastert73 +23140,13,21713,21,mcship +23140,13,21713,21,meeplemadness +23140,13,21713,21,meepleminion +23140,13,21713,21,mephistonn +23140,13,21713,21,metalchef +23140,13,21713,21,mhaviland2 +23140,13,21713,21,mhutton +23140,13,21713,21,mijjy +23140,13,21713,21,mikam +23140,13,21713,21,mikebackstrom +23140,13,21713,21,mikev009 +23140,13,21713,21,miss guided +23140,13,21713,21,moejauney21 +23140,13,21713,21,morkylian +23140,13,21713,21,mr mcoyster +23140,13,21713,21,mrme117 +23140,13,21713,21,msudrew +23140,13,21713,21,nain_i +23140,13,21713,21,nayrakis +23140,13,21713,21,ndru +23140,13,21713,21,nicade +23140,13,21713,21,niklas80 +23140,13,21713,21,niteskie +23140,13,21713,21,nosferatu01 +23140,13,21713,21,nothin_doin +23140,13,21713,21,nryder +23140,13,21713,21,often +23140,13,21713,21,oneone78 +23140,13,21713,21,ottowishish +23140,13,21713,21,ozme52 +23140,13,21713,21,pahrrk +23140,13,21713,21,pan_pablo +23140,13,21713,21,pan_zet +23140,13,21713,21,pascal_k +23140,13,21713,21,patientno742 +23140,13,21713,21,pearly27 +23140,13,21713,21,pedrolisboa +23140,13,21713,21,pemaxim +23140,13,21713,21,pgharch +23140,13,21713,21,piazza31 +23140,13,21713,21,pietari +23140,13,21713,21,pinkyoshida +23140,13,21713,21,pitrpicko +23140,13,21713,21,plutornox +23140,13,21713,21,pnke +23140,13,21713,21,ponderingpeanut +23140,13,21713,21,powlee_g +23140,13,21713,21,prowler1985 +23140,13,21713,21,psychflo +23140,13,21713,21,punk reaper +23140,13,21713,21,randomscrub +23140,13,21713,21,raphdah +23140,13,21713,21,rbaker42 +23140,13,21713,21,rockdock +23140,13,21713,21,rocket2961 +23140,13,21713,21,rohin +23140,13,21713,21,s_simona +23140,13,21713,21,samatra +23140,13,21713,21,schinderhannes +23140,13,21713,21,sdrawkcabmai +23140,13,21713,21,selfthinker +23140,13,21713,21,serginhoovs +23140,13,21713,21,servasky +23140,13,21713,21,shaggy92 +23140,13,21713,21,shallowz +23140,13,21713,21,shallz +23140,13,21713,21,shockper +23140,13,21713,21,sifudanny +23140,13,21713,21,sigimond0 +23140,13,21713,21,snarksandboojums +23140,13,21713,21,sockerpappa +23140,13,21713,21,spectral b4dger +23140,13,21713,21,spiele-micha +23140,13,21713,21,stargaze +23140,13,21713,21,starrymoonz +23140,13,21713,21,stonecold75 +23140,13,21713,21,streaky2007 +23140,13,21713,21,sunside +23140,13,21713,21,superhawk2300 +23140,13,21713,21,svanblar +23140,13,21713,21,syen +23140,13,21713,21,szensemann +23140,13,21713,21,talison +23140,13,21713,21,taniaconjugar +23140,13,21713,21,targon124 +23140,13,21713,21,teehee_zg +23140,13,21713,21,temprament +23140,13,21713,21,thaster +23140,13,21713,21,the6stringsofleon +23140,13,21713,21,the_wise_goat +23140,13,21713,21,theebonyturtle +23140,13,21713,21,thelikeness +23140,13,21713,21,themtn +23140,13,21713,21,thenevin +23140,13,21713,21,theophilusray +23140,13,21713,21,thepug +23140,13,21713,21,thorpie +23140,13,21713,21,thoughtful +23140,13,21713,21,timsteen +23140,13,21713,21,togmosis +23140,13,21713,21,tomcurtis101 +23140,13,21713,21,tonyh220 +23140,13,21713,21,tonysaurus +23140,13,21713,21,toodels +23140,13,21713,21,torontoactor +23140,13,21713,21,trghpu1994 +23140,13,21713,21,tsangal +23140,13,21713,21,tukak +23140,13,21713,21,twinzefix +23140,13,21713,21,twisterstrudel +23140,13,21713,21,tythis +23140,13,21713,21,ubbik +23140,13,21713,21,ulrichvon gamenstein +23140,13,21713,21,upuaut78 +23140,13,21713,21,utilitar +23140,13,21713,21,vasquez21 +23140,13,21713,21,vathelos82 +23140,13,21713,21,vikleroy +23140,13,21713,21,vikthorongil +23140,13,21713,21,vveaponx +23140,13,21713,21,wael74 +23140,13,21713,21,walrick +23140,13,21713,21,wgjelinek +23140,13,21713,21,whitehowler +23140,13,21713,21,whitesnake333 +23140,13,21713,21,wirbi +23140,13,21713,21,woffth +23140,13,21713,21,wolthreep +23140,13,21713,21,wuktrio +23140,13,21713,21,wysczy +23140,13,21713,21,xaponeis +23140,13,21713,21,xl3x +23140,13,21713,21,xsoria +23140,13,21713,21,youinventedme +23140,13,21713,21,zibzey +23140,13,23640,20,0rlo +23140,13,23640,20,100rk +23140,13,23640,20,acedaryl1 +23140,13,23640,20,adambaig +23140,13,23640,20,adamsad1 +23140,13,23640,20,afernan +23140,13,23640,20,akanous +23140,13,23640,20,albeitard +23140,13,23640,20,aleaiactaest_ +23140,13,23640,20,aliboughetto +23140,13,23640,20,alp_ert +23140,13,23640,20,althepal +23140,13,23640,20,alyshak14 +23140,13,23640,20,amcieks +23140,13,23640,20,amyt +23140,13,23640,20,anarastan +23140,13,23640,20,anbutheone +23140,13,23640,20,andoniripoll +23140,13,23640,20,andrii_adventure +23140,13,23640,20,annak5604 +23140,13,23640,20,apoc17 +23140,13,23640,20,arcano +23140,13,23640,20,argipane +23140,13,23640,20,arkenal +23140,13,23640,20,armadillo al +23140,13,23640,20,art star +23140,13,23640,20,arvale +23140,13,23640,20,atlanntis92 +23140,13,23640,20,atog28 +23140,13,23640,20,atticus1347 +23140,13,23640,20,aurlaent +23140,13,23640,20,avechamp +23140,13,23640,20,b2tb +23140,13,23640,20,baalze +23140,13,23640,20,balladeer +23140,13,23640,20,bantoo +23140,13,23640,20,basramm +23140,13,23640,20,beardlessbrady +23140,13,23640,20,bearfishpie +23140,13,23640,20,bigroux +23140,13,23640,20,blackcrowe76 +23140,13,23640,20,blackswordsteve +23140,13,23640,20,blueyes69 +23140,13,23640,20,boardgamegeekca +23140,13,23640,20,bobthehappyzombie +23140,13,23640,20,bodybuilder +23140,13,23640,20,boplicity +23140,13,23640,20,borgus +23140,13,23640,20,bosoxbill +23140,13,23640,20,brljok +23140,13,23640,20,brusty +23140,13,23640,20,burnfire83 +23140,13,23640,20,buzibee508 +23140,13,23640,20,calicodave +23140,13,23640,20,captain_lionel +23140,13,23640,20,captaincanadaaa +23140,13,23640,20,cardboardhustle +23140,13,23640,20,castorofiume +23140,13,23640,20,cball02 +23140,13,23640,20,ccodlin +23140,13,23640,20,cfantasia +23140,13,23640,20,chadcook +23140,13,23640,20,chadjanet +23140,13,23640,20,chadly78 +23140,13,23640,20,charliemops_50 +23140,13,23640,20,chawday +23140,13,23640,20,chevalier +23140,13,23640,20,chocomaniac +23140,13,23640,20,cinnamon czar +23140,13,23640,20,ckyong +23140,13,23640,20,clems80 +23140,13,23640,20,closetnerd +23140,13,23640,20,cool_max +23140,13,23640,20,coolyangzc +23140,13,23640,20,cpaguy +23140,13,23640,20,cracrini +23140,13,23640,20,crashfiend +23140,13,23640,20,cuakdarko +23140,13,23640,20,cubeconvict +23140,13,23640,20,cyric036 +23140,13,23640,20,cyrrbiss +23140,13,23640,20,darklyon +23140,13,23640,20,darr3ng +23140,13,23640,20,darthanos +23140,13,23640,20,darthnoir +23140,13,23640,20,dashprocessor +23140,13,23640,20,daveclarke +23140,13,23640,20,davidwijaya +23140,13,23640,20,dboyee +23140,13,23640,20,dddxxx88 +23140,13,23640,20,dedzed +23140,13,23640,20,delabarr +23140,13,23640,20,dendroid +23140,13,23640,20,designiana +23140,13,23640,20,desired +23140,13,23640,20,digglu +23140,13,23640,20,dividebyzero +23140,13,23640,20,dmeyer321 +23140,13,23640,20,doiron99 +23140,13,23640,20,domoman +23140,13,23640,20,donnie lama +23140,13,23640,20,doura +23140,13,23640,20,dratz +23140,13,23640,20,drbert +23140,13,23640,20,drboncoeur +23140,13,23640,20,drmabuse00 +23140,13,23640,20,druguer +23140,13,23640,20,dt_fcampos +23140,13,23640,20,dtalks +23140,13,23640,20,eastridget +23140,13,23640,20,edmonton911 +23140,13,23640,20,ehdoranil +23140,13,23640,20,ekismind +23140,13,23640,20,eknomos +23140,13,23640,20,ekster +23140,13,23640,20,el_bemblo +23140,13,23640,20,eldibujante +23140,13,23640,20,elithedruid +23140,13,23640,20,elnicky +23140,13,23640,20,energykitkat +23140,13,23640,20,ericgaca +23140,13,23640,20,ericmatt +23140,13,23640,20,etherton +23140,13,23640,20,eveni +23140,13,23640,20,fenhorn +23140,13,23640,20,fidwell +23140,13,23640,20,finxnif +23140,13,23640,20,flutschiklutsch +23140,13,23640,20,fluxinabox +23140,13,23640,20,foamboarder +23140,13,23640,20,foghat +23140,13,23640,20,foxomega44 +23140,13,23640,20,foxsters +23140,13,23640,20,fpalmeri +23140,13,23640,20,furaha +23140,13,23640,20,gator_ja +23140,13,23640,20,gemini +23140,13,23640,20,genburashka +23140,13,23640,20,ghidora +23140,13,23640,20,ghuru_x86 +23140,13,23640,20,gica_black +23140,13,23640,20,grinsekaetzchen +23140,13,23640,20,grymir +23140,13,23640,20,gseleven +23140,13,23640,20,gummibears +23140,13,23640,20,gunnersertorius +23140,13,23640,20,gurkhan87 +23140,13,23640,20,gusnboobs +23140,13,23640,20,hackryder +23140,13,23640,20,halion33 +23140,13,23640,20,handmound +23140,13,23640,20,harleygrace5 +23140,13,23640,20,hoangart +23140,13,23640,20,honk1616 +23140,13,23640,20,hoojii +23140,13,23640,20,icarusnocturnus +23140,13,23640,20,icedanno +23140,13,23640,20,ilagobermudo +23140,13,23640,20,inebeth +23140,13,23640,20,ivanmll +23140,13,23640,20,jacenty13 +23140,13,23640,20,jackyl +23140,13,23640,20,jafritz +23140,13,23640,20,jasorel +23140,13,23640,20,jbethany +23140,13,23640,20,jellokun +23140,13,23640,20,jimm +23140,13,23640,20,jionji +23140,13,23640,20,jmreglero +23140,13,23640,20,jnowaczy +23140,13,23640,20,joaal839 +23140,13,23640,20,jog1118 +23140,13,23640,20,johndoe69 +23140,13,23640,20,johnnybasketball +23140,13,23640,20,johnnyc1971 +23140,13,23640,20,jones42 +23140,13,23640,20,jooles +23140,13,23640,20,josh_maessen +23140,13,23640,20,jp2139 +23140,13,23640,20,jredgiant1 +23140,13,23640,20,jubarojb +23140,13,23640,20,jugon_cl +23140,13,23640,20,kacey3 +23140,13,23640,20,kamentzvetanov +23140,13,23640,20,kamlost +23140,13,23640,20,karajean17 +23140,13,23640,20,karmakanik +23140,13,23640,20,kelllhus +23140,13,23640,20,kidgul +23140,13,23640,20,kilraven +23140,13,23640,20,kimix +23140,13,23640,20,kingtwistedkidd +23140,13,23640,20,kinnajt +23140,13,23640,20,knifeyspoony6 +23140,13,23640,20,knoblauch +23140,13,23640,20,ko_mis +23140,13,23640,20,kolino83 +23140,13,23640,20,kounabos +23140,13,23640,20,koutaf +23140,13,23640,20,koutrou +23140,13,23640,20,krakenfan69 +23140,13,23640,20,kralw +23140,13,23640,20,krazykarlo +23140,13,23640,20,kristin0711 +23140,13,23640,20,kukn +23140,13,23640,20,kwantify +23140,13,23640,20,kyoren +23140,13,23640,20,la pugne +23140,13,23640,20,laaq +23140,13,23640,20,ladytemy +23140,13,23640,20,laimucius +23140,13,23640,20,laner +23140,13,23640,20,laurensftw +23140,13,23640,20,lazzater +23140,13,23640,20,legorn88 +23140,13,23640,20,lemazza +23140,13,23640,20,lemmykilmister +23140,13,23640,20,leprakanin +23140,13,23640,20,linh1987 +23140,13,23640,20,lisa01 +23140,13,23640,20,llevinass +23140,13,23640,20,lordkazuyapl +23140,13,23640,20,lorodal_66 +23140,13,23640,20,louis cypher +23140,13,23640,20,ludigaume +23140,13,23640,20,ludwigvanb +23140,13,23640,20,lukasl +23140,13,23640,20,lysi1608 +23140,13,23640,20,maffo_6 +23140,13,23640,20,mahwee +23140,13,23640,20,maludermaer +23140,13,23640,20,mambo4d +23140,13,23640,20,man on the lam +23140,13,23640,20,manolito84 +23140,13,23640,20,manu71 +23140,13,23640,20,maolvar +23140,13,23640,20,marcelobiazin +23140,13,23640,20,markaaronmassey +23140,13,23640,20,markbuschhaus070278 +23140,13,23640,20,markopolo94 +23140,13,23640,20,masmall_55 +23140,13,23640,20,maspital +23140,13,23640,20,mateush_silva +23140,13,23640,20,matthewbourland +23140,13,23640,20,matthyzer +23140,13,23640,20,maxissa +23140,13,23640,20,melid +23140,13,23640,20,meric68 +23140,13,23640,20,messahira +23140,13,23640,20,mhjameson +23140,13,23640,20,microcline +23140,13,23640,20,migueis +23140,13,23640,20,mike_fantastic +23140,13,23640,20,millertruck07 +23140,13,23640,20,minieyehoho +23140,13,23640,20,mirdata +23140,13,23640,20,mitchlav +23140,13,23640,20,moonraker99 +23140,13,23640,20,moose burger +23140,13,23640,20,mormegilnd +23140,13,23640,20,moys17 +23140,13,23640,20,mpierleoni +23140,13,23640,20,mpony +23140,13,23640,20,muxi +23140,13,23640,20,mysteryproducer +23140,13,23640,20,nachtfalke67 +23140,13,23640,20,nankrien +23140,13,23640,20,nattitude +23140,13,23640,20,neilsl +23140,13,23640,20,nelsonchan +23140,13,23640,20,neongoblin +23140,13,23640,20,nixonb3n +23140,13,23640,20,no good man +23140,13,23640,20,norsfall +23140,13,23640,20,nurks +23140,13,23640,20,nyxator +23140,13,23640,20,ocenteno +23140,13,23640,20,ohgreat +23140,13,23640,20,onlymostlydead +23140,13,23640,20,opalmantra +23140,13,23640,20,ovenall +23140,13,23640,20,oyuncu +23140,13,23640,20,ozliz +23140,13,23640,20,painless +23140,13,23640,20,pascobear +23140,13,23640,20,peanutbutterskittles +23140,13,23640,20,peskjens +23140,13,23640,20,pigsel +23140,13,23640,20,pikatesyeux +23140,13,23640,20,pjterp +23140,13,23640,20,pndehoog +23140,13,23640,20,proevo +23140,13,23640,20,provotorin +23140,13,23640,20,przemekk +23140,13,23640,20,publicenemy +23140,13,23640,20,pyf1979 +23140,13,23640,20,ralterma +23140,13,23640,20,replect +23140,13,23640,20,revtdog +23140,13,23640,20,rhizomorphus +23140,13,23640,20,rieltown +23140,13,23640,20,rimoeng +23140,13,23640,20,rjwoodson +23140,13,23640,20,robgar__pl +23140,13,23640,20,rokrdude +23140,13,23640,20,rskaramanyan +23140,13,23640,20,rubendario5 +23140,13,23640,20,rustyinrt +23140,13,23640,20,ryanhalper +23140,13,23640,20,sabianichill +23140,13,23640,20,sadius +23140,13,23640,20,sagenlicht +23140,13,23640,20,samsclubbin3 +23140,13,23640,20,savage281 +23140,13,23640,20,schmeag +23140,13,23640,20,schrankdreas +23140,13,23640,20,sclater7 +23140,13,23640,20,sdawyd +23140,13,23640,20,serger +23140,13,23640,20,sever79 +23140,13,23640,20,sf4d9erfan1 +23140,13,23640,20,shadrach +23140,13,23640,20,shawnmck +23140,13,23640,20,shimage +23140,13,23640,20,shinmin +23140,13,23640,20,shiranami +23140,13,23640,20,sigmarpriest +23140,13,23640,20,sikeospi +23140,13,23640,20,simonb5 +23140,13,23640,20,skerr1 +23140,13,23640,20,skyenikko +23140,13,23640,20,slashx +23140,13,23640,20,slytigger +23140,13,23640,20,smigius +23140,13,23640,20,soaringwren +23140,13,23640,20,sofakissen +23140,13,23640,20,somdechn +23140,13,23640,20,spawn2060 +23140,13,23640,20,spikes +23140,13,23640,20,spydoznykaban +23140,13,23640,20,squinch +23140,13,23640,20,srl0b0 +23140,13,23640,20,static9 +23140,13,23640,20,statto +23140,13,23640,20,steininagli +23140,13,23640,20,sthilarie +23140,13,23640,20,streetlightout +23140,13,23640,20,sunshineonearth +23140,13,23640,20,supercao +23140,13,23640,20,sv25 +23140,13,23640,20,sweetgotham +23140,13,23640,20,szadebuki +23140,13,23640,20,tblick05 +23140,13,23640,20,tedfjord +23140,13,23640,20,tenny +23140,13,23640,20,tepasito +23140,13,23640,20,tfnewbill78 +23140,13,23640,20,th3ory310 +23140,13,23640,20,thebannister +23140,13,23640,20,thedhat +23140,13,23640,20,thegameczar +23140,13,23640,20,thepinkglove +23140,13,23640,20,thepugaman +23140,13,23640,20,theswally +23140,13,23640,20,thorpapa +23140,13,23640,20,throatwarbler +23140,13,23640,20,tiempie +23140,13,23640,20,timmi +23140,13,23640,20,titgarou +23140,13,23640,20,tntkhan +23140,13,23640,20,toffeetje +23140,13,23640,20,tomroesbeke +23140,13,23640,20,tomshouseomunch +23140,13,23640,20,tomyfrok +23140,13,23640,20,tony58uk +23140,13,23640,20,totonio +23140,13,23640,20,trancoreto +23140,13,23640,20,trauma_zero +23140,13,23640,20,trogwar +23140,13,23640,20,ts sorcerer +23140,13,23640,20,tundrahawk +23140,13,23640,20,turnwajj +23140,13,23640,20,twistedjoker597 +23140,13,23640,20,txely1977 +23140,13,23640,20,tylerburnham42 +23140,13,23640,20,ueli blum +23140,13,23640,20,ulghar +23140,13,23640,20,unit00kai +23140,13,23640,20,ursusarctos09 +23140,13,23640,20,utgun +23140,13,23640,20,v_guastalli +23140,13,23640,20,va_zoli +23140,13,23640,20,valenso +23140,13,23640,20,valjor +23140,13,23640,20,ventonmelkor +23140,13,23640,20,viaa +23140,13,23640,20,vicentx +23140,13,23640,20,viscouse +23140,13,23640,20,w0lfncheapclothing +23140,13,23640,20,whitehairedkon +23140,13,23640,20,whiteninja80 +23140,13,23640,20,woodjh +23140,13,23640,20,woozyb +23140,13,23640,20,wormization +23140,13,23640,20,wren +23140,13,23640,20,wulf684 +23140,13,23640,20,wyobadger +23140,13,23640,20,wysen +23140,13,23640,20,xaby84 +23140,13,23640,20,xellir +23140,13,23640,20,xero4 +23140,13,23640,20,xildur +23140,13,23640,20,xugreatone +23140,13,23640,20,xxthespartanxx +23140,13,23640,20,yannickestrada +23140,13,23640,20,yarince +23140,13,23640,20,yoda4482 +23140,13,23640,20,zzniper +23140,13,25880,19,010dennis +23140,13,25880,19,2bago +23140,13,25880,19,abersen +23140,13,25880,19,adoryc +23140,13,25880,19,aemic +23140,13,25880,19,agnieszka85 +23140,13,25880,19,ahrian +23140,13,25880,19,aidwiz +23140,13,25880,19,ajl1974 +23140,13,25880,19,aklantan +23140,13,25880,19,alekseev +23140,13,25880,19,alex40k +23140,13,25880,19,alexreaper +23140,13,25880,19,alician1 +23140,13,25880,19,amber2203 +23140,13,25880,19,amercado +23140,13,25880,19,amertner +23140,13,25880,19,amuromax +23140,13,25880,19,angeli5 +23140,13,25880,19,annubix +23140,13,25880,19,anthony l +23140,13,25880,19,archelaous +23140,13,25880,19,arnaudl +23140,13,25880,19,arsenalmylove +23140,13,25880,19,asianinvasion +23140,13,25880,19,asj2219 +23140,13,25880,19,astherox +23140,13,25880,19,atactoulis +23140,13,25880,19,atticusmech +23140,13,25880,19,audiojck +23140,13,25880,19,auggiewiz +23140,13,25880,19,auhbz +23140,13,25880,19,awrend +23140,13,25880,19,azrael1984 +23140,13,25880,19,bananey +23140,13,25880,19,bartek +23140,13,25880,19,battt +23140,13,25880,19,baumnuss +23140,13,25880,19,bdroberts +23140,13,25880,19,beardot25 +23140,13,25880,19,bechonator +23140,13,25880,19,behram +23140,13,25880,19,bellissimo +23140,13,25880,19,bendyer88 +23140,13,25880,19,berniethered +23140,13,25880,19,betina +23140,13,25880,19,bigl16 +23140,13,25880,19,bihould +23140,13,25880,19,bike +23140,13,25880,19,bildi +23140,13,25880,19,birdwrong +23140,13,25880,19,blanche75 +23140,13,25880,19,bloobik +23140,13,25880,19,blueymctuna +23140,13,25880,19,boardgamesociety +23140,13,25880,19,bohsfox +23140,13,25880,19,brainrob +23140,13,25880,19,brendarik +23140,13,25880,19,brianmax +23140,13,25880,19,browa +23140,13,25880,19,bryanious +23140,13,25880,19,burnface +23140,13,25880,19,bvttero +23140,13,25880,19,bwagz54 +23140,13,25880,19,byk_m +23140,13,25880,19,camus38 +23140,13,25880,19,carriwon +23140,13,25880,19,carstenl91 +23140,13,25880,19,castlem +23140,13,25880,19,cdscholl +23140,13,25880,19,celestialmonkey +23140,13,25880,19,celsoandrade +23140,13,25880,19,cepka +23140,13,25880,19,chadwick00008 +23140,13,25880,19,chansen2794 +23140,13,25880,19,chilehoward +23140,13,25880,19,chosenone +23140,13,25880,19,chrisonfire +23140,13,25880,19,christheprofessor +23140,13,25880,19,christosstergianidis +23140,13,25880,19,chusschi +23140,13,25880,19,circadianjosh +23140,13,25880,19,civrot +23140,13,25880,19,clloyd09 +23140,13,25880,19,colauro +23140,13,25880,19,coolmanq +23140,13,25880,19,cossa +23140,13,25880,19,cprzybysz +23140,13,25880,19,crazypiotrek +23140,13,25880,19,crazytalk +23140,13,25880,19,crewfan +23140,13,25880,19,crouchie_uk +23140,13,25880,19,cthoop10 +23140,13,25880,19,cuddlyfiend +23140,13,25880,19,cultofluna85 +23140,13,25880,19,cultsays +23140,13,25880,19,cvb81 +23140,13,25880,19,cyberg4 +23140,13,25880,19,cymob +23140,13,25880,19,cyrus182 +23140,13,25880,19,cyskai +23140,13,25880,19,czechsmex +23140,13,25880,19,dagmom +23140,13,25880,19,daje71 +23140,13,25880,19,dalanhol +23140,13,25880,19,dandp3 +23140,13,25880,19,dani_tajo +23140,13,25880,19,danielnobrega +23140,13,25880,19,daodan +23140,13,25880,19,dapamu +23140,13,25880,19,darth invader +23140,13,25880,19,davearmstrong89 +23140,13,25880,19,davidferncas +23140,13,25880,19,daytona24 +23140,13,25880,19,dc680 +23140,13,25880,19,deadwood +23140,13,25880,19,debareis +23140,13,25880,19,defaro +23140,13,25880,19,deivid_scofield +23140,13,25880,19,denton +23140,13,25880,19,despoticbear +23140,13,25880,19,didierdekunst +23140,13,25880,19,diegolamanno +23140,13,25880,19,diice +23140,13,25880,19,dijor +23140,13,25880,19,dna_boy +23140,13,25880,19,doenermann +23140,13,25880,19,dokdoyle +23140,13,25880,19,domrx78 +23140,13,25880,19,dorkboy +23140,13,25880,19,dougmore +23140,13,25880,19,dr_lugh +23140,13,25880,19,drako13 +23140,13,25880,19,drazerin +23140,13,25880,19,dre315 +23140,13,25880,19,drgosburocoffin +23140,13,25880,19,dromman +23140,13,25880,19,druivenclub +23140,13,25880,19,drumbilical +23140,13,25880,19,dummyplug +23140,13,25880,19,durinviii +23140,13,25880,19,edvinus +23140,13,25880,19,egghedmike +23140,13,25880,19,eispirat +23140,13,25880,19,eithompson +23140,13,25880,19,electro_cute +23140,13,25880,19,elephantpool +23140,13,25880,19,elhammerzeit +23140,13,25880,19,elijah29 +23140,13,25880,19,ellite25 +23140,13,25880,19,erethan +23140,13,25880,19,es_phoenix +23140,13,25880,19,esphill98 +23140,13,25880,19,exyliad +23140,13,25880,19,fajeth +23140,13,25880,19,falconhear +23140,13,25880,19,fantastic boardgames +23140,13,25880,19,fatpinapple +23140,13,25880,19,fdelclos +23140,13,25880,19,feelitmon +23140,13,25880,19,felix22 +23140,13,25880,19,fifizi +23140,13,25880,19,filin32 +23140,13,25880,19,fissionxuiptz +23140,13,25880,19,fitzl3gend +23140,13,25880,19,flippi flatter +23140,13,25880,19,flixrin +23140,13,25880,19,fndyr +23140,13,25880,19,fran_kubelik +23140,13,25880,19,fraugos +23140,13,25880,19,frisches +23140,13,25880,19,furtherbum +23140,13,25880,19,ga7su +23140,13,25880,19,galonso +23140,13,25880,19,gambogames +23140,13,25880,19,garnakesh +23140,13,25880,19,gaztro +23140,13,25880,19,gemiash +23140,13,25880,19,genuinelyanf +23140,13,25880,19,gerald +23140,13,25880,19,germanman85 +23140,13,25880,19,ghostwill +23140,13,25880,19,gorob +23140,13,25880,19,greendayasd +23140,13,25880,19,greenosaur +23140,13,25880,19,greenwizard +23140,13,25880,19,gregoriomagno17 +23140,13,25880,19,gudzon +23140,13,25880,19,guesclin +23140,13,25880,19,gurnikan +23140,13,25880,19,guyh +23140,13,25880,19,gwainoj +23140,13,25880,19,hakthir +23140,13,25880,19,hammerstrike +23140,13,25880,19,haydenwilkens +23140,13,25880,19,hexheart +23140,13,25880,19,homerogg +23140,13,25880,19,hstanley +23140,13,25880,19,humanoit +23140,13,25880,19,hunang +23140,13,25880,19,hurrlipurr +23140,13,25880,19,icechamber +23140,13,25880,19,idalahtinen +23140,13,25880,19,iheartdl +23140,13,25880,19,indyofcomo +23140,13,25880,19,iridescent +23140,13,25880,19,iron_moa_tyson +23140,13,25880,19,isayi +23140,13,25880,19,iwantapotato +23140,13,25880,19,jackal! +23140,13,25880,19,jasperdenouden +23140,13,25880,19,jass_jasper +23140,13,25880,19,javelintiger +23140,13,25880,19,javi1237 +23140,13,25880,19,jazzydada +23140,13,25880,19,jbarron81 +23140,13,25880,19,jbrazill +23140,13,25880,19,jcahealey +23140,13,25880,19,jejuma +23140,13,25880,19,jens kappe +23140,13,25880,19,jeremy 88 +23140,13,25880,19,jerkules +23140,13,25880,19,jeroen1987555 +23140,13,25880,19,jfc1005 +23140,13,25880,19,jfmosquera +23140,13,25880,19,jleazott +23140,13,25880,19,jmilum +23140,13,25880,19,joan c86 +23140,13,25880,19,joflynn +23140,13,25880,19,johanloef +23140,13,25880,19,johnyb83 +23140,13,25880,19,joistman +23140,13,25880,19,jolderon +23140,13,25880,19,jonnylander +23140,13,25880,19,joro30 +23140,13,25880,19,josephdowell +23140,13,25880,19,jpbarry +23140,13,25880,19,juanrebo +23140,13,25880,19,juli90 +23140,13,25880,19,justen +23140,13,25880,19,kaboo +23140,13,25880,19,kaizen zanshin +23140,13,25880,19,karlnissfeldt +23140,13,25880,19,kayinen +23140,13,25880,19,kebbne +23140,13,25880,19,kesc +23140,13,25880,19,kessel10 +23140,13,25880,19,kierek +23140,13,25880,19,kimbaalice +23140,13,25880,19,kiminoboku +23140,13,25880,19,kingloko +23140,13,25880,19,kohtsaro +23140,13,25880,19,kondzio167 +23140,13,25880,19,kps1ny +23140,13,25880,19,kruta +23140,13,25880,19,krzysztofg +23140,13,25880,19,kumpiseta +23140,13,25880,19,l10n0fjudah +23140,13,25880,19,laerac +23140,13,25880,19,lajaro +23140,13,25880,19,lajlev +23140,13,25880,19,lakh +23140,13,25880,19,lapintiainen +23140,13,25880,19,lars_magnus +23140,13,25880,19,laserhosen +23140,13,25880,19,laurynne +23140,13,25880,19,lazypapa +23140,13,25880,19,lbtrigger +23140,13,25880,19,legax +23140,13,25880,19,legend_of_mart +23140,13,25880,19,leonidas487 +23140,13,25880,19,littlehopeman +23140,13,25880,19,livewire6 +23140,13,25880,19,ljilbert +23140,13,25880,19,losnossos +23140,13,25880,19,luisacarregalo +23140,13,25880,19,luisjo +23140,13,25880,19,luriis +23140,13,25880,19,lysandergraves33 +23140,13,25880,19,m0ty1 +23140,13,25880,19,machineepsilon +23140,13,25880,19,madgraf +23140,13,25880,19,maebeameybinott +23140,13,25880,19,magoivan +23140,13,25880,19,mangote +23140,13,25880,19,marcobu +23140,13,25880,19,marcus guard +23140,13,25880,19,maskdman +23140,13,25880,19,matmcd +23140,13,25880,19,mattdeme +23140,13,25880,19,matze_md +23140,13,25880,19,maximew +23140,13,25880,19,mazked +23140,13,25880,19,mcbartsomeville +23140,13,25880,19,mdean +23140,13,25880,19,mdeuber +23140,13,25880,19,median54 +23140,13,25880,19,meeplesugar +23140,13,25880,19,memenstone +23140,13,25880,19,mikec8 +23140,13,25880,19,miller1983 +23140,13,25880,19,mingand +23140,13,25880,19,misha99 +23140,13,25880,19,mmm84 +23140,13,25880,19,molejo +23140,13,25880,19,momonsterde +23140,13,25880,19,monk74 +23140,13,25880,19,monkeycmonkeydo +23140,13,25880,19,moritzamss +23140,13,25880,19,mr_alharoun +23140,13,25880,19,mr_fuzzles +23140,13,25880,19,mtrevino78 +23140,13,25880,19,mustakatras +23140,13,25880,19,mwgulby +23140,13,25880,19,mwkerek +23140,13,25880,19,mxke +23140,13,25880,19,na85zh +23140,13,25880,19,nailo77 +23140,13,25880,19,narmo +23140,13,25880,19,nayr090 +23140,13,25880,19,ncc1701jv +23140,13,25880,19,neess +23140,13,25880,19,neorbb +23140,13,25880,19,niediam +23140,13,25880,19,nikatan +23140,13,25880,19,nizlamb +23140,13,25880,19,nobe11 +23140,13,25880,19,nobium +23140,13,25880,19,nuemonic +23140,13,25880,19,numberoneson +23140,13,25880,19,oaklandgamerdude +23140,13,25880,19,obihobit +23140,13,25880,19,ogoctopus +23140,13,25880,19,oier +23140,13,25880,19,oliv +23140,13,25880,19,oorevo +23140,13,25880,19,padme81 +23140,13,25880,19,panmod +23140,13,25880,19,pavingmantis +23140,13,25880,19,pbatt +23140,13,25880,19,penwards +23140,13,25880,19,persianlombax +23140,13,25880,19,peti +23140,13,25880,19,pghdave +23140,13,25880,19,phiteros +23140,13,25880,19,pidelta42 +23140,13,25880,19,piearson +23140,13,25880,19,pimeson +23140,13,25880,19,piti95 +23140,13,25880,19,pixelman +23140,13,25880,19,pkthebest +23140,13,25880,19,plaffy +23140,13,25880,19,plazatoroltd +23140,13,25880,19,plurpee21 +23140,13,25880,19,poisonkiwi +23140,13,25880,19,postnil +23140,13,25880,19,poxolin +23140,13,25880,19,proglin +23140,13,25880,19,psychymark +23140,13,25880,19,pun1 +23140,13,25880,19,quietschfidel +23140,13,25880,19,quirken +23140,13,25880,19,rabid_sciurus365 +23140,13,25880,19,rageborn +23140,13,25880,19,raimundb +23140,13,25880,19,rajr +23140,13,25880,19,rametecv +23140,13,25880,19,ramonc7378 +23140,13,25880,19,rangerrob24 +23140,13,25880,19,ranook +23140,13,25880,19,raul_pichi +23140,13,25880,19,raulcg1987 +23140,13,25880,19,rayito2702 +23140,13,25880,19,raznny +23140,13,25880,19,red_nick +23140,13,25880,19,redee +23140,13,25880,19,registrau +23140,13,25880,19,rekath16 +23140,13,25880,19,renkrof6 +23140,13,25880,19,ricewin +23140,13,25880,19,richardd +23140,13,25880,19,rick_marti +23140,13,25880,19,robin667 +23140,13,25880,19,roonel +23140,13,25880,19,rorshaq +23140,13,25880,19,rubinjud +23140,13,25880,19,rui_ +23140,13,25880,19,rusty parr +23140,13,25880,19,rvandijk +23140,13,25880,19,sah777 +23140,13,25880,19,sako_antoun +23140,13,25880,19,sarah81 +23140,13,25880,19,sarajane10 +23140,13,25880,19,saucerboy +23140,13,25880,19,schnattlion +23140,13,25880,19,scimi666 +23140,13,25880,19,scottyo +23140,13,25880,19,scrp +23140,13,25880,19,see21 +23140,13,25880,19,sergi_ +23140,13,25880,19,sergood +23140,13,25880,19,shaman07 +23140,13,25880,19,shandyiel +23140,13,25880,19,shinhaevel +23140,13,25880,19,shinyhat +23140,13,25880,19,shorty_2589 +23140,13,25880,19,siayres +23140,13,25880,19,silenceisgolder +23140,13,25880,19,sillue +23140,13,25880,19,simond2 +23140,13,25880,19,sirpagamer +23140,13,25880,19,sithvicious +23140,13,25880,19,skenjp +23140,13,25880,19,skoball +23140,13,25880,19,skrattis +23140,13,25880,19,slideone +23140,13,25880,19,slugett +23140,13,25880,19,smfivehead +23140,13,25880,19,smoldak +23140,13,25880,19,smooth_fire +23140,13,25880,19,smoth333 +23140,13,25880,19,snfredo +23140,13,25880,19,snikag +23140,13,25880,19,sofiaelvira +23140,13,25880,19,sorkakette74 +23140,13,25880,19,sorosuub1 +23140,13,25880,19,sphodgin +23140,13,25880,19,spinero +23140,13,25880,19,squinshee +23140,13,25880,19,ssysol +23140,13,25880,19,steak lady +23140,13,25880,19,stefans +23140,13,25880,19,stepal +23140,13,25880,19,stumpy82 +23140,13,25880,19,sturmwind +23140,13,25880,19,susopardal +23140,13,25880,19,swithers +23140,13,25880,19,sykes28 +23140,13,25880,19,tallyn88 +23140,13,25880,19,tamburlain +23140,13,25880,19,tanglewoodtree +23140,13,25880,19,taselonolesat +23140,13,25880,19,tattll +23140,13,25880,19,teehnti +23140,13,25880,19,temeraire +23140,13,25880,19,teresastrauss +23140,13,25880,19,terminus_est +23140,13,25880,19,tetsuo13 +23140,13,25880,19,thaarook +23140,13,25880,19,the great sun jester +23140,13,25880,19,the_windcaster +23140,13,25880,19,thebiggestboss4 +23140,13,25880,19,theduke56 +23140,13,25880,19,thelazymongoose +23140,13,25880,19,themagiccrumpit +23140,13,25880,19,theneedler +23140,13,25880,19,theritzes +23140,13,25880,19,thesquidfisherman +23140,13,25880,19,thorin81 +23140,13,25880,19,thorrock +23140,13,25880,19,tiberiusfox +23140,13,25880,19,tidji42 +23140,13,25880,19,tithonous +23140,13,25880,19,tiwa +23140,13,25880,19,tmcgaughey84 +23140,13,25880,19,tobl +23140,13,25880,19,toddwf +23140,13,25880,19,toggo128 +23140,13,25880,19,tomeqg +23140,13,25880,19,tommy82pi +23140,13,25880,19,tomribbens +23140,13,25880,19,tophercarter +23140,13,25880,19,trainrush15 +23140,13,25880,19,tristan1911 +23140,13,25880,19,tzgardner +23140,13,25880,19,u1timo +23140,13,25880,19,uberdaddy +23140,13,25880,19,uncleskid +23140,13,25880,19,unknownparkerbrother +23140,13,25880,19,urukwai +23140,13,25880,19,vandersnatch +23140,13,25880,19,venompreacher +23140,13,25880,19,vesaliius +23140,13,25880,19,vesubio +23140,13,25880,19,victor_86 +23140,13,25880,19,vikinator +23140,13,25880,19,viktoricarus +23140,13,25880,19,vileda75 +23140,13,25880,19,villainmeeple +23140,13,25880,19,vimesey +23140,13,25880,19,vincenzoa +23140,13,25880,19,viridjan +23140,13,25880,19,vladoslav +23140,13,25880,19,w92viking +23140,13,25880,19,wattdog +23140,13,25880,19,wd40rocks +23140,13,25880,19,werderspock11 +23140,13,25880,19,whydelilah +23140,13,25880,19,wolffaxn +23140,13,25880,19,wudoka +23140,13,25880,19,xandertrax +23140,13,25880,19,xemxi +23140,13,25880,19,xty19 +23140,13,25880,19,xylthar +23140,13,25880,19,yac00b +23140,13,25880,19,yaropaw +23140,13,25880,19,yelske +23140,13,25880,19,youpud +23140,13,25880,19,yurameshi +23140,13,25880,19,zigmoose +23140,13,25880,19,zwuu +23140,13,25880,19,zz_jacon +23140,13,28174,18,-mide- +23140,13,28174,18,20mono83 +23140,13,28174,18,abizan +23140,13,28174,18,about13045 +23140,13,28174,18,acenchious +23140,13,28174,18,adhemar +23140,13,28174,18,aeneas2467 +23140,13,28174,18,afviper25 +23140,13,28174,18,alarthame +23140,13,28174,18,alex352 +23140,13,28174,18,alexac +23140,13,28174,18,alexr +23140,13,28174,18,allowishes +23140,13,28174,18,allthepointsblog +23140,13,28174,18,almoghh +23140,13,28174,18,alsandor +23140,13,28174,18,amexd +23140,13,28174,18,ampy +23140,13,28174,18,anettep +23140,13,28174,18,angelghost +23140,13,28174,18,anniemouse +23140,13,28174,18,annikalieuwes +23140,13,28174,18,antijulo +23140,13,28174,18,antomiraf +23140,13,28174,18,anupinka +23140,13,28174,18,arachnofilas +23140,13,28174,18,arocola +23140,13,28174,18,art campbell +23140,13,28174,18,artmann420 +23140,13,28174,18,arturof774 +23140,13,28174,18,as3bes4 +23140,13,28174,18,ash85 +23140,13,28174,18,atticus1313 +23140,13,28174,18,augoeides83 +23140,13,28174,18,auschwito +23140,13,28174,18,awful waffle +23140,13,28174,18,balerion84 +23140,13,28174,18,ballenfam +23140,13,28174,18,banjogeek +23140,13,28174,18,basbakkie +23140,13,28174,18,bastosa +23140,13,28174,18,bbblackwell +23140,13,28174,18,bbyte +23140,13,28174,18,bdoublenwhy +23140,13,28174,18,beast74 +23140,13,28174,18,belibutn +23140,13,28174,18,bender30 +23140,13,28174,18,benetnasch +23140,13,28174,18,bevjones +23140,13,28174,18,bfink2014 +23140,13,28174,18,bg03gman +23140,13,28174,18,bicboiii +23140,13,28174,18,birdflunuggetz +23140,13,28174,18,bjornpionist +23140,13,28174,18,blamio +23140,13,28174,18,blondebunbun +23140,13,28174,18,blorm +23140,13,28174,18,blualex +23140,13,28174,18,bmerwp +23140,13,28174,18,boardandcontent +23140,13,28174,18,boardgame_haddock +23140,13,28174,18,bombeermancz +23140,13,28174,18,boncu +23140,13,28174,18,bornagain95 +23140,13,28174,18,bphipps +23140,13,28174,18,brad7234 +23140,13,28174,18,bradybrad7 +23140,13,28174,18,brainburnt +23140,13,28174,18,branduboga +23140,13,28174,18,breakfastman +23140,13,28174,18,brettspiel_imperium_ +23140,13,28174,18,brewsky +23140,13,28174,18,brockburger +23140,13,28174,18,brudu91 +23140,13,28174,18,ca1701 +23140,13,28174,18,cabey +23140,13,28174,18,calciffer +23140,13,28174,18,captain_insano +23140,13,28174,18,captainhowdee +23140,13,28174,18,cardslinger +23140,13,28174,18,carrtmog +23140,13,28174,18,casqy +23140,13,28174,18,castlesage +23140,13,28174,18,cdr jameson +23140,13,28174,18,celicarasr +23140,13,28174,18,cesarpepe +23140,13,28174,18,cfr09 +23140,13,28174,18,chally +23140,13,28174,18,chaosensues +23140,13,28174,18,chemical +23140,13,28174,18,cheneplage +23140,13,28174,18,chibidemon +23140,13,28174,18,chielleke +23140,13,28174,18,chirulo +23140,13,28174,18,chosenr +23140,13,28174,18,choukou +23140,13,28174,18,chrisobelix +23140,13,28174,18,chuckhazard +23140,13,28174,18,claudioyarzuns +23140,13,28174,18,cleanbulk +23140,13,28174,18,cndglc +23140,13,28174,18,cohensh +23140,13,28174,18,collas +23140,13,28174,18,coopers8 +23140,13,28174,18,couni +23140,13,28174,18,coygoodson +23140,13,28174,18,cptsquash +23140,13,28174,18,cratex +23140,13,28174,18,crazy_volucris +23140,13,28174,18,crimsontwix +23140,13,28174,18,crz82 +23140,13,28174,18,curlyfied +23140,13,28174,18,cygnus_flux +23140,13,28174,18,cyrilparay +23140,13,28174,18,cyrusthegreat +23140,13,28174,18,dabigmlc +23140,13,28174,18,damianoquattrone +23140,13,28174,18,daniel carnehan +23140,13,28174,18,daniel047 +23140,13,28174,18,daniel99zz +23140,13,28174,18,danielburch42 +23140,13,28174,18,dantdondarrion +23140,13,28174,18,darkstar89sk +23140,13,28174,18,darth_txelos +23140,13,28174,18,dascott +23140,13,28174,18,davewasbaloo +23140,13,28174,18,david082 +23140,13,28174,18,denh70 +23140,13,28174,18,deniswolf +23140,13,28174,18,desolospeler +23140,13,28174,18,didacrh +23140,13,28174,18,dierk +23140,13,28174,18,dirkdebelg +23140,13,28174,18,dirty_d +23140,13,28174,18,djr505 +23140,13,28174,18,dks2 +23140,13,28174,18,dlaeti +23140,13,28174,18,dmipgoz +23140,13,28174,18,doc_adam +23140,13,28174,18,doemii +23140,13,28174,18,doonansndragons +23140,13,28174,18,dottor3 +23140,13,28174,18,doughboyca +23140,13,28174,18,downsideleft +23140,13,28174,18,dpi_ +23140,13,28174,18,dracore +23140,13,28174,18,drbloodmoney +23140,13,28174,18,drevilz4l +23140,13,28174,18,drglv +23140,13,28174,18,drmeizter +23140,13,28174,18,drokko +23140,13,28174,18,droo +23140,13,28174,18,ducttape2021 +23140,13,28174,18,dustblood +23140,13,28174,18,dustbrain +23140,13,28174,18,ea162 +23140,13,28174,18,eamiller83 +23140,13,28174,18,ecoboardgeek123 +23140,13,28174,18,ecplayed +23140,13,28174,18,edward skullpipe +23140,13,28174,18,egg_salad +23140,13,28174,18,egorjlileli +23140,13,28174,18,eguzki4 +23140,13,28174,18,ekstroem +23140,13,28174,18,ektopia +23140,13,28174,18,el capitano +23140,13,28174,18,elankat +23140,13,28174,18,elfbane +23140,13,28174,18,elsheep +23140,13,28174,18,eltarny +23140,13,28174,18,elzie +23140,13,28174,18,end720 +23140,13,28174,18,erictheoboe +23140,13,28174,18,erikk78 +23140,13,28174,18,etherius +23140,13,28174,18,eurodancer +23140,13,28174,18,evafc84 +23140,13,28174,18,evan601 +23140,13,28174,18,evii +23140,13,28174,18,excitingjeff +23140,13,28174,18,ezbakemicrowave +23140,13,28174,18,falnos24865 +23140,13,28174,18,fcengman +23140,13,28174,18,fellonmyhead +23140,13,28174,18,fenhir16 +23140,13,28174,18,ferna_j5 +23140,13,28174,18,firestay +23140,13,28174,18,firsteros +23140,13,28174,18,firstsamantha +23140,13,28174,18,flapperbol +23140,13,28174,18,freiesradikal +23140,13,28174,18,fungus1487 +23140,13,28174,18,funimation +23140,13,28174,18,funkboyg +23140,13,28174,18,futiles +23140,13,28174,18,fyrsen +23140,13,28174,18,gafatonfront +23140,13,28174,18,game_maniac +23140,13,28174,18,garripo +23140,13,28174,18,garyleo66 +23140,13,28174,18,gaydamakin +23140,13,28174,18,gcech +23140,13,28174,18,geneandcourtney +23140,13,28174,18,generaldagger +23140,13,28174,18,geofix +23140,13,28174,18,georgijaxx +23140,13,28174,18,getsumaiki +23140,13,28174,18,gilbermueller +23140,13,28174,18,goldbrandon +23140,13,28174,18,gorillagrody +23140,13,28174,18,gradman2k3 +23140,13,28174,18,gregoryraymiller +23140,13,28174,18,grieska +23140,13,28174,18,groovyg +23140,13,28174,18,gutenhuu +23140,13,28174,18,guttedgeek +23140,13,28174,18,h_m_murdochuk +23140,13,28174,18,hallakj +23140,13,28174,18,hamster2000 +23140,13,28174,18,hanesen +23140,13,28174,18,harryrowe11 +23140,13,28174,18,henri738 +23140,13,28174,18,henri_leandra +23140,13,28174,18,hiro721 +23140,13,28174,18,holybrod +23140,13,28174,18,hooksfordays +23140,13,28174,18,horatioq +23140,13,28174,18,hotcheddar +23140,13,28174,18,houseofpanda +23140,13,28174,18,husiszusi +23140,13,28174,18,hyzer +23140,13,28174,18,ig_games +23140,13,28174,18,igorz24 +23140,13,28174,18,illilli +23140,13,28174,18,insanepenguin02 +23140,13,28174,18,insania +23140,13,28174,18,iromsdahl +23140,13,28174,18,itachi82 +23140,13,28174,18,jaayse +23140,13,28174,18,jackalope +23140,13,28174,18,jacker20xx +23140,13,28174,18,jacobs472 +23140,13,28174,18,jairon +23140,13,28174,18,jakuasman +23140,13,28174,18,jamesmshaw +23140,13,28174,18,jedi_13 +23140,13,28174,18,jeff brown +23140,13,28174,18,jeff burton +23140,13,28174,18,jenstr +23140,13,28174,18,jeradc +23140,13,28174,18,jerkjacobs +23140,13,28174,18,jhollander1987 +23140,13,28174,18,jlighter +23140,13,28174,18,jmar +23140,13,28174,18,jnbbarnhart +23140,13,28174,18,jocom +23140,13,28174,18,joelthepianist +23140,13,28174,18,jonieanddavid +23140,13,28174,18,joxta +23140,13,28174,18,jrhart25 +23140,13,28174,18,juansolo100 +23140,13,28174,18,juliwood +23140,13,28174,18,jullo88 +23140,13,28174,18,justint1 +23140,13,28174,18,jynaxx +23140,13,28174,18,kalojohn22 +23140,13,28174,18,kammetje +23140,13,28174,18,kasiaflig +23140,13,28174,18,kathystroh +23140,13,28174,18,kawika007 +23140,13,28174,18,kenzo06 +23140,13,28174,18,kerbythepurplecow +23140,13,28174,18,kevbarefoot +23140,13,28174,18,keysersoze +23140,13,28174,18,kfelger1 +23140,13,28174,18,khakisheep +23140,13,28174,18,khornschemeier +23140,13,28174,18,khrys +23140,13,28174,18,kin hassar +23140,13,28174,18,kislikiwi +23140,13,28174,18,kittyfringhi +23140,13,28174,18,kmet +23140,13,28174,18,knoxville +23140,13,28174,18,knoxvillebs +23140,13,28174,18,kodakus +23140,13,28174,18,koekey +23140,13,28174,18,kottobal +23140,13,28174,18,kouphax +23140,13,28174,18,krackelman +23140,13,28174,18,kradmehr +23140,13,28174,18,kris2476 +23140,13,28174,18,krzysiekl +23140,13,28174,18,kungfushus +23140,13,28174,18,laneledge +23140,13,28174,18,larsbollo +23140,13,28174,18,latosie +23140,13,28174,18,lbxxxdl +23140,13,28174,18,ldayjones +23140,13,28174,18,lerevetir +23140,13,28174,18,lettner +23140,13,28174,18,lilboke +23140,13,28174,18,lilymaus +23140,13,28174,18,lionpacifique +23140,13,28174,18,lks524 +23140,13,28174,18,lordbeber +23140,13,28174,18,lordunborn +23140,13,28174,18,lpdude72 +23140,13,28174,18,lschlesser +23140,13,28174,18,lucrada +23140,13,28174,18,ludusvulpes +23140,13,28174,18,lukaskairys +23140,13,28174,18,lunabathory +23140,13,28174,18,lupac2000 +23140,13,28174,18,lythrum +23140,13,28174,18,macrergate +23140,13,28174,18,macs032 +23140,13,28174,18,mad math 78 +23140,13,28174,18,makkedude1 +23140,13,28174,18,mannieblackcheek +23140,13,28174,18,mantisx +23140,13,28174,18,marc aurel +23140,13,28174,18,marc_ei +23140,13,28174,18,marceleonardo +23140,13,28174,18,markat55 +23140,13,28174,18,marom_ru +23140,13,28174,18,marqus55 +23140,13,28174,18,martvortex +23140,13,28174,18,mathelehrermuc +23140,13,28174,18,matkam +23140,13,28174,18,matmiller +23140,13,28174,18,matsuyahiko +23140,13,28174,18,matthan +23140,13,28174,18,mbmiller +23140,13,28174,18,mcampbell +23140,13,28174,18,mccastro +23140,13,28174,18,media_professor +23140,13,28174,18,merengol +23140,13,28174,18,metalguitarist +23140,13,28174,18,mfmise +23140,13,28174,18,mhillebr +23140,13,28174,18,michaelbender +23140,13,28174,18,micklaw +23140,13,28174,18,miekebgg +23140,13,28174,18,mikelo75 +23140,13,28174,18,mindseye1 +23140,13,28174,18,mischip +23140,13,28174,18,miskong +23140,13,28174,18,misslovecraft +23140,13,28174,18,mitubooya +23140,13,28174,18,ml125 +23140,13,28174,18,mlubska +23140,13,28174,18,mnvalente +23140,13,28174,18,mo11yj +23140,13,28174,18,mobe77 +23140,13,28174,18,monsternugget7 +23140,13,28174,18,moonvic +23140,13,28174,18,moooples +23140,13,28174,18,mosse +23140,13,28174,18,moudimash99 +23140,13,28174,18,mrambrosius +23140,13,28174,18,mrbeankc +23140,13,28174,18,mrgeneraldude +23140,13,28174,18,mrikerito +23140,13,28174,18,mrmonster +23140,13,28174,18,msayed +23140,13,28174,18,mskiba +23140,13,28174,18,mundungu +23140,13,28174,18,n0tgod +23140,13,28174,18,nahv327 +23140,13,28174,18,namelessk +23140,13,28174,18,nasosp +23140,13,28174,18,ndgamer +23140,13,28174,18,nekochen +23140,13,28174,18,neoshmengi +23140,13,28174,18,nerepic +23140,13,28174,18,netbus22 +23140,13,28174,18,netta18 +23140,13,28174,18,niallrule +23140,13,28174,18,nic81 +23140,13,28174,18,nighti +23140,13,28174,18,nightingog +23140,13,28174,18,nikita42 +23140,13,28174,18,nikmagick +23140,13,28174,18,nimrax +23140,13,28174,18,nmvol +23140,13,28174,18,nonnormalizable +23140,13,28174,18,noonefalls +23140,13,28174,18,norf182 +23140,13,28174,18,norksman +23140,13,28174,18,oatmeal1201 +23140,13,28174,18,offtheshelf +23140,13,28174,18,oilyspence +23140,13,28174,18,oliksandra +23140,13,28174,18,omidkeivani +23140,13,28174,18,orangerful +23140,13,28174,18,ositobrian +23140,13,28174,18,other_nebogipfel +23140,13,28174,18,oudknoei +23140,13,28174,18,panda_queue +23140,13,28174,18,panoddjob00 +23140,13,28174,18,papapik +23140,13,28174,18,paramiyo +23140,13,28174,18,partyweb +23140,13,28174,18,patt +23140,13,28174,18,paulradagast +23140,13,28174,18,paulrbolton +23140,13,28174,18,pauz666 +23140,13,28174,18,perfectvelvet +23140,13,28174,18,pgarciab84 +23140,13,28174,18,phbanks +23140,13,28174,18,phloopthepig +23140,13,28174,18,phoenix_nemo +23140,13,28174,18,phyllfreak +23140,13,28174,18,pietrol +23140,13,28174,18,pitanje +23140,13,28174,18,pizzy +23140,13,28174,18,pkocon +23140,13,28174,18,playersfound +23140,13,28174,18,polishphysicist +23140,13,28174,18,porkuslime +23140,13,28174,18,pr halios +23140,13,28174,18,pradows +23140,13,28174,18,psibo +23140,13,28174,18,qasat +23140,13,28174,18,queseyo +23140,13,28174,18,r1sefromru1n +23140,13,28174,18,raege +23140,13,28174,18,rafa_ice +23140,13,28174,18,raka86 +23140,13,28174,18,ramonala +23140,13,28174,18,rampageous +23140,13,28174,18,randomlesim +23140,13,28174,18,rantingrodent +23140,13,28174,18,ranuck +23140,13,28174,18,rarienstra +23140,13,28174,18,realbandy +23140,13,28174,18,reapersaurus +23140,13,28174,18,rebelyell0 +23140,13,28174,18,reblmike +23140,13,28174,18,recklessjester +23140,13,28174,18,redkimo +23140,13,28174,18,redpill +23140,13,28174,18,redro123456 +23140,13,28174,18,redstarnyc +23140,13,28174,18,rehbella +23140,13,28174,18,rejmondina2013 +23140,13,28174,18,ren3 +23140,13,28174,18,renga1 +23140,13,28174,18,riccism7 +23140,13,28174,18,richman0610 +23140,13,28174,18,rickypitz +23140,13,28174,18,rmair62 +23140,13,28174,18,robertklein86 +23140,13,28174,18,roidutoast +23140,13,28174,18,rosalunae +23140,13,28174,18,rosemountain +23140,13,28174,18,rupertrevor +23140,13,28174,18,ryalyn +23140,13,28174,18,ryanmc +23140,13,28174,18,rzabcio +23140,13,28174,18,saintiain +23140,13,28174,18,sakame +23140,13,28174,18,sammwise +23140,13,28174,18,sandra_llopis +23140,13,28174,18,scrambled_meggs +23140,13,28174,18,scubafinch +23140,13,28174,18,seanh +23140,13,28174,18,sebastianowl +23140,13,28174,18,sebirider +23140,13,28174,18,segaolemor +23140,13,28174,18,selenn01 +23140,13,28174,18,semmer +23140,13,28174,18,sephi78 +23140,13,28174,18,seppevanael_ +23140,13,28174,18,setsunabun +23140,13,28174,18,sgriffy +23140,13,28174,18,shadowtemplar +23140,13,28174,18,shady_networker +23140,13,28174,18,shaohong +23140,13,28174,18,shirah +23140,13,28174,18,shizuko +23140,13,28174,18,shkar +23140,13,28174,18,sienjasiek +23140,13,28174,18,silverrainmaker +23140,13,28174,18,simpsonowie +23140,13,28174,18,sinyk7 +23140,13,28174,18,sisteray +23140,13,28174,18,sith73 +23140,13,28174,18,ska_dad +23140,13,28174,18,skanzen +23140,13,28174,18,slabcity +23140,13,28174,18,slydog75 +23140,13,28174,18,smellzilla +23140,13,28174,18,snookay +23140,13,28174,18,sokoloves +23140,13,28174,18,sorakin +23140,13,28174,18,spareheadthree +23140,13,28174,18,spawn25 +23140,13,28174,18,spectre7567 +23140,13,28174,18,speedy_cebiche +23140,13,28174,18,spidey412 +23140,13,28174,18,spife +23140,13,28174,18,splat_baseball51 +23140,13,28174,18,spooky1971 +23140,13,28174,18,spurlock +23140,13,28174,18,sr1987 +23140,13,28174,18,stevehinton +23140,13,28174,18,stevig77 +23140,13,28174,18,stjase +23140,13,28174,18,stlkt +23140,13,28174,18,stoniac +23140,13,28174,18,streuner86 +23140,13,28174,18,suicide kings +23140,13,28174,18,sunny9 +23140,13,28174,18,suomipoika +23140,13,28174,18,superwai28 +23140,13,28174,18,surfer rosa +23140,13,28174,18,svri00 +23140,13,28174,18,swedish_chef_ +23140,13,28174,18,swngkd +23140,13,28174,18,sword18 +23140,13,28174,18,syknarf +23140,13,28174,18,symposia95 +23140,13,28174,18,tanis01 +23140,13,28174,18,tarmann +23140,13,28174,18,tayc +23140,13,28174,18,tbrown91 +23140,13,28174,18,teaguejb +23140,13,28174,18,technosmoelf +23140,13,28174,18,tempuro +23140,13,28174,18,teo21 +23140,13,28174,18,teo_hp +23140,13,28174,18,teooh +23140,13,28174,18,teresa06 +23140,13,28174,18,thanatopsis +23140,13,28174,18,thedarktower +23140,13,28174,18,thefrightenedcat +23140,13,28174,18,thegnobo +23140,13,28174,18,themagicisover +23140,13,28174,18,themonk21 +23140,13,28174,18,thepackrat +23140,13,28174,18,theweefrenchman +23140,13,28174,18,thexkid +23140,13,28174,18,thiagohunter +23140,13,28174,18,tiblo +23140,13,28174,18,tiffany delphinium +23140,13,28174,18,tigris +23140,13,28174,18,tkout93 +23140,13,28174,18,tngpt +23140,13,28174,18,tobradex +23140,13,28174,18,tom chase +23140,13,28174,18,tomti89 +23140,13,28174,18,tonetonitonyrussell +23140,13,28174,18,torala +23140,13,28174,18,trixx +23140,13,28174,18,trofinalexandru +23140,13,28174,18,tsemoana +23140,13,28174,18,tugboat450 +23140,13,28174,18,twhiffen +23140,13,28174,18,twomadducks +23140,13,28174,18,txarliegarcia +23140,13,28174,18,ulritsch +23140,13,28174,18,undostresva +23140,13,28174,18,unfolol +23140,13,28174,18,unixdude +23140,13,28174,18,vae victis1 +23140,13,28174,18,valsinats +23140,13,28174,18,varneyjames +23140,13,28174,18,vasilisab +23140,13,28174,18,veidon +23140,13,28174,18,velda3q +23140,13,28174,18,vigovelito +23140,13,28174,18,viki3m +23140,13,28174,18,vincentvanderl +23140,13,28174,18,vouzoum +23140,13,28174,18,warren dm +23140,13,28174,18,wastingcarp +23140,13,28174,18,wellmoustachioed +23140,13,28174,18,wernazuma +23140,13,28174,18,wickro +23140,13,28174,18,wikwikki +23140,13,28174,18,wilko18 +23140,13,28174,18,winmem +23140,13,28174,18,woggers +23140,13,28174,18,wolvercote +23140,13,28174,18,woodsman +23140,13,28174,18,worf1701 +23140,13,28174,18,wuxia +23140,13,28174,18,wyro52 +23140,13,28174,18,xate +23140,13,28174,18,xaviludicus +23140,13,28174,18,xcccn +23140,13,28174,18,xcoitx +23140,13,28174,18,yakamonaiyai +23140,13,28174,18,ycyclop +23140,13,28174,18,zdenda +23140,13,28174,18,zeotter +23140,13,28174,18,zerico +23140,13,28174,18,zerofaces +23140,13,28174,18,zoobrr +23140,13,30791,17,1024b +23140,13,30791,17,1979 amc treo 755p +23140,13,30791,17,_isles +23140,13,30791,17,abellote +23140,13,30791,17,acekim +23140,13,30791,17,adam1981 +23140,13,30791,17,adgetech +23140,13,30791,17,adrianpeh +23140,13,30791,17,aferez +23140,13,30791,17,agregat_m5 +23140,13,30791,17,aktarion +23140,13,30791,17,albertosm +23140,13,30791,17,albertvilanovi +23140,13,30791,17,alessioringhio +23140,13,30791,17,american_hero +23140,13,30791,17,angusin +23140,13,30791,17,anjulka +23140,13,30791,17,apophis222 +23140,13,30791,17,arhan +23140,13,30791,17,arpagmenos +23140,13,30791,17,astromaid +23140,13,30791,17,athos10 +23140,13,30791,17,autopiloot +23140,13,30791,17,avien +23140,13,30791,17,awschmitkons +23140,13,30791,17,ayden lowther +23140,13,30791,17,ayinaim +23140,13,30791,17,aziraphael666 +23140,13,30791,17,babicmiro +23140,13,30791,17,badgi +23140,13,30791,17,balouthegru +23140,13,30791,17,balzak9999 +23140,13,30791,17,bandersnatch1110 +23140,13,30791,17,baukurinn +23140,13,30791,17,bborchman +23140,13,30791,17,beastwolf +23140,13,30791,17,bebem +23140,13,30791,17,bensunce +23140,13,30791,17,bhelf +23140,13,30791,17,black_bear33 +23140,13,30791,17,bmoney83 +23140,13,30791,17,boat_times +23140,13,30791,17,bobbyd +23140,13,30791,17,bobbyskizza +23140,13,30791,17,bobobo185 +23140,13,30791,17,bolton317 +23140,13,30791,17,boomycrawdad145 +23140,13,30791,17,boots2asses +23140,13,30791,17,bray622 +23140,13,30791,17,brok3n virtues +23140,13,30791,17,brother horus +23140,13,30791,17,bsbgg +23140,13,30791,17,buqbuq +23140,13,30791,17,buzzdup +23140,13,30791,17,bwpatterson95 +23140,13,30791,17,caillte +23140,13,30791,17,campbell13 +23140,13,30791,17,casala +23140,13,30791,17,cassiecruel +23140,13,30791,17,cerulgalactus +23140,13,30791,17,chesplayer +23140,13,30791,17,chihiro +23140,13,30791,17,chinapaige +23140,13,30791,17,chronodragon +23140,13,30791,17,chucko +23140,13,30791,17,ciccius +23140,13,30791,17,cineo +23140,13,30791,17,clayme123 +23140,13,30791,17,congratsloser +23140,13,30791,17,cosmicanto +23140,13,30791,17,crapstorm +23140,13,30791,17,crazyhalicki +23140,13,30791,17,creative games +23140,13,30791,17,creedalic +23140,13,30791,17,crsargeant23 +23140,13,30791,17,crusador84 +23140,13,30791,17,cruxxis +23140,13,30791,17,cube1701 +23140,13,30791,17,curtisvorley +23140,13,30791,17,cvengros +23140,13,30791,17,czlam +23140,13,30791,17,dabiz_pered +23140,13,30791,17,dacubsfan +23140,13,30791,17,dan_the_traveller +23140,13,30791,17,danieliu73 +23140,13,30791,17,darinfett +23140,13,30791,17,dark schneider +23140,13,30791,17,darthmalyss +23140,13,30791,17,davido +23140,13,30791,17,davidslycooper +23140,13,30791,17,dazzling +23140,13,30791,17,dcapela +23140,13,30791,17,dcb1997 +23140,13,30791,17,deblintrake09 +23140,13,30791,17,delta32521 +23140,13,30791,17,dentom +23140,13,30791,17,detail brush +23140,13,30791,17,dfledford0427 +23140,13,30791,17,dgalesic2000 +23140,13,30791,17,dgardenhire +23140,13,30791,17,dhiek +23140,13,30791,17,din0derek +23140,13,30791,17,diplomaticskeleton +23140,13,30791,17,dirklectisch +23140,13,30791,17,divad_cr +23140,13,30791,17,djmerk +23140,13,30791,17,dlandrum +23140,13,30791,17,dlipski +23140,13,30791,17,doctorstabby +23140,13,30791,17,donnieleap +23140,13,30791,17,dontfeedtheyenne +23140,13,30791,17,dotjamo +23140,13,30791,17,drbdwolf +23140,13,30791,17,drewhancock +23140,13,30791,17,drose +23140,13,30791,17,drsquidly +23140,13,30791,17,dtmm +23140,13,30791,17,dumont +23140,13,30791,17,dustybits +23140,13,30791,17,earthquak3 +23140,13,30791,17,eayogg +23140,13,30791,17,ecargr +23140,13,30791,17,eddybear +23140,13,30791,17,eds35 +23140,13,30791,17,eduardoch +23140,13,30791,17,ekkebus +23140,13,30791,17,el_chucho +23140,13,30791,17,elastor +23140,13,30791,17,eliian +23140,13,30791,17,elpelusa7 +23140,13,30791,17,emma30vargas +23140,13,30791,17,emmylva +23140,13,30791,17,emperor spot +23140,13,30791,17,emujuice +23140,13,30791,17,epilgrim +23140,13,30791,17,eros1983 +23140,13,30791,17,evil ivol +23140,13,30791,17,f0gen +23140,13,30791,17,fabio0907 +23140,13,30791,17,facetheforest +23140,13,30791,17,fagarri1 +23140,13,30791,17,falinir +23140,13,30791,17,farrsee +23140,13,30791,17,fatango308 +23140,13,30791,17,fatbadger88 +23140,13,30791,17,ferreytor +23140,13,30791,17,fezaz +23140,13,30791,17,firewolfwolf +23140,13,30791,17,flashbang911 +23140,13,30791,17,forger42 +23140,13,30791,17,fransjepunt +23140,13,30791,17,fraterurbs +23140,13,30791,17,frednilla +23140,13,30791,17,fropod +23140,13,30791,17,frusc +23140,13,30791,17,furbee +23140,13,30791,17,furthur +23140,13,30791,17,gamepimp +23140,13,30791,17,garbinho +23140,13,30791,17,gardengnome +23140,13,30791,17,gbaker59 +23140,13,30791,17,genx +23140,13,30791,17,gheckenberg +23140,13,30791,17,goodemailaddress +23140,13,30791,17,gosiek +23140,13,30791,17,gr1mace +23140,13,30791,17,grandbazaar +23140,13,30791,17,greyson +23140,13,30791,17,groschien +23140,13,30791,17,grouchomx +23140,13,30791,17,grymme +23140,13,30791,17,gunfran +23140,13,30791,17,guzerat +23140,13,30791,17,hadex +23140,13,30791,17,helegris +23140,13,30791,17,helenoftroy +23140,13,30791,17,helloworldmy +23140,13,30791,17,hkommandant +23140,13,30791,17,hornss +23140,13,30791,17,hotcoppersky +23140,13,30791,17,hsponaugle +23140,13,30791,17,hulk1484 +23140,13,30791,17,iamcalledal +23140,13,30791,17,ianouch +23140,13,30791,17,ice2cold +23140,13,30791,17,ifltosa +23140,13,30791,17,iggyskuz13 +23140,13,30791,17,ikaarasama +23140,13,30791,17,imklubb +23140,13,30791,17,indiego +23140,13,30791,17,intermetzo +23140,13,30791,17,ion514 +23140,13,30791,17,ipreferwalking +23140,13,30791,17,ironweed +23140,13,30791,17,jackbarnard +23140,13,30791,17,jadedgamer +23140,13,30791,17,jagga68 +23140,13,30791,17,jakigee +23140,13,30791,17,jasalion +23140,13,30791,17,jassmi166 +23140,13,30791,17,javiezcurra +23140,13,30791,17,jawolph +23140,13,30791,17,jayti +23140,13,30791,17,jermsky +23140,13,30791,17,jeromy +23140,13,30791,17,jerrylsantos +23140,13,30791,17,jessrdh06 +23140,13,30791,17,jetropolis +23140,13,30791,17,jh003 +23140,13,30791,17,jimonthebarn +23140,13,30791,17,jimtwo +23140,13,30791,17,jixashi +23140,13,30791,17,jmathias +23140,13,30791,17,jmhgn +23140,13,30791,17,johnny lightning +23140,13,30791,17,jonas333 +23140,13,30791,17,jovioficial +23140,13,30791,17,junkyjuice +23140,13,30791,17,jwalsh1 +23140,13,30791,17,k3nta +23140,13,30791,17,ka_el_em_o +23140,13,30791,17,kakino +23140,13,30791,17,keroppilee +23140,13,30791,17,kev79 +23140,13,30791,17,kevin_meeple +23140,13,30791,17,kintanakely +23140,13,30791,17,kirbyta +23140,13,30791,17,kisa +23140,13,30791,17,kkappes +23140,13,30791,17,knixrai +23140,13,30791,17,knubbas +23140,13,30791,17,kraken3 +23140,13,30791,17,kristernevin +23140,13,30791,17,kritsku +23140,13,30791,17,kshammas +23140,13,30791,17,kurt_purcell +23140,13,30791,17,kurtdog4 +23140,13,30791,17,kuster06 +23140,13,30791,17,lainesko +23140,13,30791,17,landaras +23140,13,30791,17,lawingm +23140,13,30791,17,legotortoise +23140,13,30791,17,lemados +23140,13,30791,17,lemon129 +23140,13,30791,17,leommj +23140,13,30791,17,leopandolfo +23140,13,30791,17,leszek73 +23140,13,30791,17,lhianee +23140,13,30791,17,libmats +23140,13,30791,17,lonefreak +23140,13,30791,17,lordrorthorn +23140,13,30791,17,lt_steiner +23140,13,30791,17,luminandro +23140,13,30791,17,lumm0x +23140,13,30791,17,lumo22 +23140,13,30791,17,lumpywaffle +23140,13,30791,17,lunardraco +23140,13,30791,17,luv2rollthedice +23140,13,30791,17,madken +23140,13,30791,17,madstork +23140,13,30791,17,maggeno1 +23140,13,30791,17,makris_ +23140,13,30791,17,makx +23140,13,30791,17,malagant1 +23140,13,30791,17,malilumgum +23140,13,30791,17,mangler103 +23140,13,30791,17,mannus +23140,13,30791,17,manolios +23140,13,30791,17,marcusp +23140,13,30791,17,mardukzero +23140,13,30791,17,marfewthemouse +23140,13,30791,17,mastedon +23140,13,30791,17,mateusz9934 +23140,13,30791,17,matpe +23140,13,30791,17,mattaebersold +23140,13,30791,17,mattstrickler89 +23140,13,30791,17,maurici018 +23140,13,30791,17,mcduff78 +23140,13,30791,17,meeeples +23140,13,30791,17,mentallist +23140,13,30791,17,messier +23140,13,30791,17,mhindimith +23140,13,30791,17,michel +23140,13,30791,17,midsummer night +23140,13,30791,17,mightingale +23140,13,30791,17,mikkancso +23140,13,30791,17,minox1891 +23140,13,30791,17,mistakenclarity +23140,13,30791,17,mittensromney +23140,13,30791,17,mjesus +23140,13,30791,17,mlee117 +23140,13,30791,17,modestguineapig +23140,13,30791,17,momsgames +23140,13,30791,17,morcars jester +23140,13,30791,17,motherflipping +23140,13,30791,17,mrcleanor +23140,13,30791,17,mrdowns +23140,13,30791,17,mrduer +23140,13,30791,17,mrgray +23140,13,30791,17,msangryduck +23140,13,30791,17,mtjander +23140,13,30791,17,mtjones +23140,13,30791,17,muchenik +23140,13,30791,17,muffmolch +23140,13,30791,17,mulgar +23140,13,30791,17,mummelmongo +23140,13,30791,17,mustangraider +23140,13,30791,17,mysticgamer10 +23140,13,30791,17,naba8 +23140,13,30791,17,nasumqsu +23140,13,30791,17,natxopistatxo +23140,13,30791,17,naughtrobot +23140,13,30791,17,neatx +23140,13,30791,17,nechasto +23140,13,30791,17,nerdgeek +23140,13,30791,17,ni__no +23140,13,30791,17,nickjaycee +23140,13,30791,17,nicknitro89 +23140,13,30791,17,nieyao +23140,13,30791,17,nikron +23140,13,30791,17,nipplegoblin +23140,13,30791,17,nodnerb42 +23140,13,30791,17,nomeaptc +23140,13,30791,17,nookie145 +23140,13,30791,17,nullination +23140,13,30791,17,nyafirc +23140,13,30791,17,nyomi33 +23140,13,30791,17,okorszem +23140,13,30791,17,ollybh +23140,13,30791,17,omfg its vico +23140,13,30791,17,pacholetti +23140,13,30791,17,pancor +23140,13,30791,17,party skips +23140,13,30791,17,pastormiller +23140,13,30791,17,peabunny +23140,13,30791,17,penelops +23140,13,30791,17,phacops +23140,13,30791,17,pherousphesant +23140,13,30791,17,philippj +23140,13,30791,17,photofool83 +23140,13,30791,17,piliersfreak +23140,13,30791,17,pitipem +23140,13,30791,17,pixie49 +23140,13,30791,17,pjroemer +23140,13,30791,17,planeguy +23140,13,30791,17,playr2 +23140,13,30791,17,pocket_trick +23140,13,30791,17,polychemist +23140,13,30791,17,poopshooz +23140,13,30791,17,popabawa +23140,13,30791,17,posia68 +23140,13,30791,17,presidentolf +23140,13,30791,17,preuseren +23140,13,30791,17,princesshappiness +23140,13,30791,17,prismcat +23140,13,30791,17,psbrown1989 +23140,13,30791,17,pstojnic +23140,13,30791,17,qtinuum +23140,13,30791,17,quarrior +23140,13,30791,17,quillcat +23140,13,30791,17,raenerl +23140,13,30791,17,rala72 +23140,13,30791,17,rayos +23140,13,30791,17,rayuffrahst +23140,13,30791,17,readinggreat01 +23140,13,30791,17,reboodle +23140,13,30791,17,rebubula423 +23140,13,30791,17,redz4ever +23140,13,30791,17,regwind +23140,13,30791,17,renodelft +23140,13,30791,17,reveler +23140,13,30791,17,rholm +23140,13,30791,17,risper +23140,13,30791,17,rob501 +23140,13,30791,17,robertpt +23140,13,30791,17,roblo7d +23140,13,30791,17,roby45 +23140,13,30791,17,rogermorales +23140,13,30791,17,ron83 +23140,13,30791,17,roseundy +23140,13,30791,17,rowulf +23140,13,30791,17,royalscam123 +23140,13,30791,17,rplea +23140,13,30791,17,rswanie3 +23140,13,30791,17,rumblecat +23140,13,30791,17,ruthkashton +23140,13,30791,17,ryanthewired +23140,13,30791,17,sa_m0a_va +23140,13,30791,17,saabb +23140,13,30791,17,sapimsler +23140,13,30791,17,saullo +23140,13,30791,17,sawtoothmuffin +23140,13,30791,17,saxgard +23140,13,30791,17,scollier +23140,13,30791,17,scoopex +23140,13,30791,17,scrhottielck09 +23140,13,30791,17,sebquintana +23140,13,30791,17,sedawk +23140,13,30791,17,seidule +23140,13,30791,17,selfmademachine +23140,13,30791,17,selzentry +23140,13,30791,17,seminaryzack +23140,13,30791,17,seriousomz +23140,13,30791,17,seykoloko +23140,13,30791,17,shmaj +23140,13,30791,17,siforas +23140,13,30791,17,silhouettelie +23140,13,30791,17,sine_square_x +23140,13,30791,17,siskabob3 +23140,13,30791,17,slaphead6 +23140,13,30791,17,smilingbandit2 +23140,13,30791,17,smreq +23140,13,30791,17,snorkelboss +23140,13,30791,17,sonnie80 +23140,13,30791,17,soul seeker +23140,13,30791,17,soul_64 +23140,13,30791,17,sparechange11 +23140,13,30791,17,spartigus +23140,13,30791,17,spathic +23140,13,30791,17,spurlos13 +23140,13,30791,17,stammler +23140,13,30791,17,stealthbg +23140,13,30791,17,stefanssh +23140,13,30791,17,sterzio +23140,13,30791,17,stoophan +23140,13,30791,17,str1d3r +23140,13,30791,17,strathmeyer +23140,13,30791,17,stylemys +23140,13,30791,17,sugardog +23140,13,30791,17,superdude +23140,13,30791,17,swedgamer +23140,13,30791,17,sworddancer84 +23140,13,30791,17,synnelus +23140,13,30791,17,szaqis +23140,13,30791,17,szczepan89 +23140,13,30791,17,t3mb4 +23140,13,30791,17,tabletopstation +23140,13,30791,17,tallblonde +23140,13,30791,17,tarod83 +23140,13,30791,17,tatanka1876 +23140,13,30791,17,tehnikkeh +23140,13,30791,17,tejonterrible +23140,13,30791,17,tenthirteen +23140,13,30791,17,thatsjustgreat +23140,13,30791,17,the friendly hippo +23140,13,30791,17,the vegans +23140,13,30791,17,the_bopper +23140,13,30791,17,theaarondean +23140,13,30791,17,thedalailala +23140,13,30791,17,theericbooth +23140,13,30791,17,thelophius +23140,13,30791,17,theoden91 +23140,13,30791,17,thepinkandmanly +23140,13,30791,17,thierry aradan +23140,13,30791,17,thomasjbradley +23140,13,30791,17,tinctoris +23140,13,30791,17,tindrum +23140,13,30791,17,tinytimidfluffybunny +23140,13,30791,17,tmacarle +23140,13,30791,17,tolerantsatsuma +23140,13,30791,17,torxer +23140,13,30791,17,tpgrove +23140,13,30791,17,traderjack +23140,13,30791,17,trantec +23140,13,30791,17,tromidy +23140,13,30791,17,troyschneringer +23140,13,30791,17,tskirvin +23140,13,30791,17,tuathaselma +23140,13,30791,17,tvisty +23140,13,30791,17,ufograf +23140,13,30791,17,ulmangt +23140,13,30791,17,unasalusvictus +23140,13,30791,17,uncle fista +23140,13,30791,17,vandal_bandito +23140,13,30791,17,vaspiou +23140,13,30791,17,vexoraliassam +23140,13,30791,17,vintx +23140,13,30791,17,vittigo +23140,13,30791,17,voddre +23140,13,30791,17,vroenis +23140,13,30791,17,w4nderer +23140,13,30791,17,walgerich +23140,13,30791,17,warghoul +23140,13,30791,17,warr1611 +23140,13,30791,17,warual +23140,13,30791,17,waterloogreaves +23140,13,30791,17,weepinshades +23140,13,30791,17,wheekers +23140,13,30791,17,wiancyan +23140,13,30791,17,wickman06 +23140,13,30791,17,wise90 +23140,13,30791,17,wohomerhoo +23140,13,30791,17,wybird666 +23140,13,30791,17,wyrdwoodwitch +23140,13,30791,17,xmirfx +23140,13,30791,17,xr103 +23140,13,30791,17,yatzen +23140,13,30791,17,yellow bastard +23140,13,30791,17,yokuyuki +23140,13,30791,17,yupiyepa +23140,13,30791,17,yvettebabe +23140,13,30791,17,ziomaki +23140,13,30791,17,zollone +23140,13,30791,17,zomonster9 +23140,13,30791,17,zs_viki +23140,13,30791,17,zubbie +23140,13,30791,17,zyklonc +23140,13,30791,17,zzas +23140,13,33518,16,accountant +23140,13,33518,16,achang0402 +23140,13,33518,16,achno +23140,13,33518,16,acreman +23140,13,33518,16,adriest +23140,13,33518,16,ajames +23140,13,33518,16,akashin +23140,13,33518,16,alenator +23140,13,33518,16,alexangiraffe +23140,13,33518,16,alkaline83 +23140,13,33518,16,alnav1 +23140,13,33518,16,altaica27 +23140,13,33518,16,amarok +23140,13,33518,16,angelo_vestieri +23140,13,33518,16,angurvaki +23140,13,33518,16,argente +23140,13,33518,16,art_desenfocao +23140,13,33518,16,asturalia2004 +23140,13,33518,16,atsgamer +23140,13,33518,16,audioc +23140,13,33518,16,auge +23140,13,33518,16,aussie_sologamer +23140,13,33518,16,awanano +23140,13,33518,16,awesomeeggs +23140,13,33518,16,awfki +23140,13,33518,16,axelbu +23140,13,33518,16,axelmango +23140,13,33518,16,badcloud +23140,13,33518,16,balfagon88 +23140,13,33518,16,bapszy +23140,13,33518,16,baraya +23140,13,33518,16,bavario +23140,13,33518,16,bazooka13 +23140,13,33518,16,bearwithbigclaws +23140,13,33518,16,beemac +23140,13,33518,16,belovednight +23140,13,33518,16,beri +23140,13,33518,16,berny85 +23140,13,33518,16,bessig +23140,13,33518,16,bgcrazy19 +23140,13,33518,16,bigbadwolf1037 +23140,13,33518,16,bjorn2020 +23140,13,33518,16,blackdra +23140,13,33518,16,bluecandy +23140,13,33518,16,blueherondb +23140,13,33518,16,blueminded101 +23140,13,33518,16,bobomuppet +23140,13,33518,16,bort_macklin +23140,13,33518,16,bouyguette +23140,13,33518,16,bradsmith488 +23140,13,33518,16,brekhof +23140,13,33518,16,brettspiel_spielerin +23140,13,33518,16,bricks718 +23140,13,33518,16,btm1228 +23140,13,33518,16,buckelhupf +23140,13,33518,16,buffy1989 +23140,13,33518,16,bunnicladwell +23140,13,33518,16,bverstap +23140,13,33518,16,cado +23140,13,33518,16,calesher +23140,13,33518,16,cardboardworld +23140,13,33518,16,caroline2nd +23140,13,33518,16,ccdevans +23140,13,33518,16,cfp503 +23140,13,33518,16,chapclan +23140,13,33518,16,chris5382 +23140,13,33518,16,chrisdoody +23140,13,33518,16,cjdunne89 +23140,13,33518,16,cjimti +23140,13,33518,16,clell522 +23140,13,33518,16,codarl +23140,13,33518,16,codybuell +23140,13,33518,16,coffeeserker +23140,13,33518,16,conschobhar +23140,13,33518,16,coolcop +23140,13,33518,16,coryza +23140,13,33518,16,cujo74 +23140,13,33518,16,cyberpianta +23140,13,33518,16,da_bom +23140,13,33518,16,danidcr +23140,13,33518,16,danilosrc +23140,13,33518,16,danimonto +23140,13,33518,16,dann14 +23140,13,33518,16,darkhorse27 +23140,13,33518,16,darko27 +23140,13,33518,16,daventx +23140,13,33518,16,deaddogdays +23140,13,33518,16,dedalx +23140,13,33518,16,demoweasel +23140,13,33518,16,derkasper +23140,13,33518,16,diegomclima +23140,13,33518,16,dimtool +23140,13,33518,16,diplomaticorc +23140,13,33518,16,disraelig +23140,13,33518,16,djdragon001 +23140,13,33518,16,don_f +23140,13,33518,16,drmasqueretro +23140,13,33518,16,duche of jorlington +23140,13,33518,16,duwuss +23140,13,33518,16,dvsgee +23140,13,33518,16,dziabaj77 +23140,13,33518,16,dzknuts +23140,13,33518,16,eguilo +23140,13,33518,16,ellinights +23140,13,33518,16,elmonty +23140,13,33518,16,empulsive +23140,13,33518,16,ericolsen23 +23140,13,33518,16,eskarel +23140,13,33518,16,factoryreset51 +23140,13,33518,16,fejeslajos +23140,13,33518,16,florino +23140,13,33518,16,flying_circus +23140,13,33518,16,fr_it +23140,13,33518,16,fred perret +23140,13,33518,16,fredviens +23140,13,33518,16,freya2226 +23140,13,33518,16,fribian +23140,13,33518,16,fringer +23140,13,33518,16,gamineer +23140,13,33518,16,gauche11 +23140,13,33518,16,gburke1 +23140,13,33518,16,gcdani +23140,13,33518,16,gefuelltes_pferd +23140,13,33518,16,ggambill +23140,13,33518,16,ggruetze +23140,13,33518,16,gilgatex +23140,13,33518,16,ginodegraaf +23140,13,33518,16,goaliebrain +23140,13,33518,16,gordzilla +23140,13,33518,16,gpioski +23140,13,33518,16,grantichu +23140,13,33518,16,great_bradini +23140,13,33518,16,grego_pl +23140,13,33518,16,guntherb0 +23140,13,33518,16,halfevil +23140,13,33518,16,hamptin +23140,13,33518,16,hankefive0 +23140,13,33518,16,hansgerard +23140,13,33518,16,heelsfan +23140,13,33518,16,heldorin +23140,13,33518,16,hromkocour +23140,13,33518,16,huene +23140,13,33518,16,icarussoaring +23140,13,33518,16,ikspeelmetgroen +23140,13,33518,16,imoneox +23140,13,33518,16,indyviduum +23140,13,33518,16,ithiliendernhelm +23140,13,33518,16,itsgottabeodin +23140,13,33518,16,j4slash +23140,13,33518,16,jakelawho +23140,13,33518,16,jakenator91 +23140,13,33518,16,javimusikas +23140,13,33518,16,jbox99 +23140,13,33518,16,jdpenrod +23140,13,33518,16,jeff goostrey +23140,13,33518,16,jekhi +23140,13,33518,16,jesuscleans +23140,13,33518,16,jl33 +23140,13,33518,16,joaoespanhol +23140,13,33518,16,jrmd +23140,13,33518,16,juancsuarez +23140,13,33518,16,julianjflores +23140,13,33518,16,julierivnor +23140,13,33518,16,justerin +23140,13,33518,16,justinkillam +23140,13,33518,16,kaarechr +23140,13,33518,16,kaks +23140,13,33518,16,kamikaze0815 +23140,13,33518,16,kev360uk06 +23140,13,33518,16,killerking99 +23140,13,33518,16,kiov +23140,13,33518,16,kiwiboy107 +23140,13,33518,16,krahenkamp +23140,13,33518,16,krakrs +23140,13,33518,16,kthrina +23140,13,33518,16,lacaniste +23140,13,33518,16,lancelot42 +23140,13,33518,16,lanchung +23140,13,33518,16,laoread +23140,13,33518,16,leendersm +23140,13,33518,16,legiongamer +23140,13,33518,16,lifelesspoet +23140,13,33518,16,likezemoon +23140,13,33518,16,litoraludo +23140,13,33518,16,lonely luchadore +23140,13,33518,16,ludomc +23140,13,33518,16,macadoodle435 +23140,13,33518,16,maennekicken +23140,13,33518,16,magickevin +23140,13,33518,16,makoki85 +23140,13,33518,16,malbarran +23140,13,33518,16,matapiojo +23140,13,33518,16,matc2 +23140,13,33518,16,mazarane +23140,13,33518,16,meeplemedley +23140,13,33518,16,menaz +23140,13,33518,16,meshiki +23140,13,33518,16,microjelen +23140,13,33518,16,mismatch +23140,13,33518,16,monacelli +23140,13,33518,16,monkeyboy5of9 +23140,13,33518,16,motherofbatmans +23140,13,33518,16,mottledskink8 +23140,13,33518,16,mrlobato +23140,13,33518,16,mrviking_10 +23140,13,33518,16,munkienut +23140,13,33518,16,mustella +23140,13,33518,16,myrdal +23140,13,33518,16,myshem +23140,13,33518,16,navvie +23140,13,33518,16,ncjeff +23140,13,33518,16,nevynje +23140,13,33518,16,nrfoster +23140,13,33518,16,ntar +23140,13,33518,16,oiler +23140,13,33518,16,olfezzleweg +23140,13,33518,16,oohhoo +23140,13,33518,16,oomortenoo +23140,13,33518,16,pajamaposse +23140,13,33518,16,pampamaster +23140,13,33518,16,panchoparada +23140,13,33518,16,partangel +23140,13,33518,16,penfolds +23140,13,33518,16,philoepisteme +23140,13,33518,16,pielso +23140,13,33518,16,pigasos15 +23140,13,33518,16,pit_0408 +23140,13,33518,16,pithecius +23140,13,33518,16,plasmageek +23140,13,33518,16,pqekypk2 +23140,13,33518,16,pyramidbea +23140,13,33518,16,quori82 +23140,13,33518,16,radiorunt +23140,13,33518,16,rapperkjm +23140,13,33518,16,ratte8 +23140,13,33518,16,renard19 +23140,13,33518,16,rexpress +23140,13,33518,16,rick63hughes +23140,13,33518,16,rjmc64 +23140,13,33518,16,robstevenson78 +23140,13,33518,16,roden84 +23140,13,33518,16,roxannaannaxor +23140,13,33518,16,rsalbertos +23140,13,33518,16,samal73 +23140,13,33518,16,samustroid +23140,13,33518,16,scih +23140,13,33518,16,scottc1s +23140,13,33518,16,scottstude +23140,13,33518,16,scramsby +23140,13,33518,16,scryer33 +23140,13,33518,16,sebastiankuehn +23140,13,33518,16,sebbyarcade +23140,13,33518,16,sedai +23140,13,33518,16,sekwah275 +23140,13,33518,16,shawnbeck104 +23140,13,33518,16,shib71 +23140,13,33518,16,shveyk +23140,13,33518,16,siicis3 +23140,13,33518,16,silberklinge +23140,13,33518,16,sjoow86 +23140,13,33518,16,skyde +23140,13,33518,16,slysally +23140,13,33518,16,smeiner +23140,13,33518,16,soondaeng +23140,13,33518,16,spitzka +23140,13,33518,16,sporksfoons +23140,13,33518,16,spryojireh +23140,13,33518,16,starfailure +23140,13,33518,16,stevepilsner +23140,13,33518,16,storgy +23140,13,33518,16,strange ideas +23140,13,33518,16,strillonecittadino +23140,13,33518,16,stuckinacave +23140,13,33518,16,swanck +23140,13,33518,16,syntyche +23140,13,33518,16,t3hjonneh +23140,13,33518,16,taikamajoneesi +23140,13,33518,16,tak2100 +23140,13,33518,16,tarheel55 +23140,13,33518,16,tassiemason +23140,13,33518,16,tephlamy +23140,13,33518,16,tgreen49 +23140,13,33518,16,thanksforallthefish +23140,13,33518,16,the cake is a lie +23140,13,33518,16,theredhood +23140,13,33518,16,thetigger +23140,13,33518,16,thoi412 +23140,13,33518,16,thundergan +23140,13,33518,16,tiuhea +23140,13,33518,16,tnollek93 +23140,13,33518,16,tomfitz199 +23140,13,33518,16,tomreuhl +23140,13,33518,16,tonylarsson +23140,13,33518,16,toomanybarts +23140,13,33518,16,tosh0908 +23140,13,33518,16,triceranuke +23140,13,33518,16,ttqs +23140,13,33518,16,univanger +23140,13,33518,16,unlying +23140,13,33518,16,uraggroshub +23140,13,33518,16,uribe +23140,13,33518,16,usul_theg +23140,13,33518,16,vaad +23140,13,33518,16,van hiijden +23140,13,33518,16,vanbamm88 +23140,13,33518,16,vannman +23140,13,33518,16,vaperboy +23140,13,33518,16,vernoncz +23140,13,33518,16,vilci +23140,13,33518,16,villadiablo +23140,13,33518,16,viniciusy62 +23140,13,33518,16,wagglybean +23140,13,33518,16,walaoeh +23140,13,33518,16,wehr +23140,13,33518,16,wheelkai +23140,13,33518,16,whitebearus +23140,13,33518,16,willowgr +23140,13,33518,16,wingman +23140,13,33518,16,winsplod +23140,13,33518,16,woj_ownik +23140,13,33518,16,xordok +23140,13,33518,16,yeti595 +23140,13,33518,16,yeti68 +23140,13,33518,16,yoglo +23140,13,33518,16,z3d_aja +23140,13,33518,16,zdkat +23140,13,33518,16,zeker +23140,13,33518,16,zerkk +23140,13,33518,16,zeroufal +23140,13,33518,16,zurfarosa +23140,13,36419,15,abu_casey +23140,13,36419,15,acondus +23140,13,36419,15,alberupe +23140,13,36419,15,alexisw +23140,13,36419,15,amortera +23140,13,36419,15,apochemu +23140,13,36419,15,arkenos666 +23140,13,36419,15,ath3ist +23140,13,36419,15,atsam +23140,13,36419,15,aussieskibum +23140,13,36419,15,b3r53rk3r +23140,13,36419,15,bacusgod +23140,13,36419,15,bassment45 +23140,13,36419,15,beardedwolf +23140,13,36419,15,beebsman +23140,13,36419,15,browncoat2511 +23140,13,36419,15,c0yote +23140,13,36419,15,captainmench +23140,13,36419,15,constancy +23140,13,36419,15,corby1987 +23140,13,36419,15,dacotasolutions +23140,13,36419,15,dats13 +23140,13,36419,15,davidsergal +23140,13,36419,15,dirka dirka +23140,13,36419,15,dufusok +23140,13,36419,15,erselgider +23140,13,36419,15,etherealone +23140,13,36419,15,ferradales +23140,13,36419,15,fortheemperor +23140,13,36419,15,forza +23140,13,36419,15,freakconcarisma +23140,13,36419,15,frogzop +23140,13,36419,15,garyp +23140,13,36419,15,gerth13 +23140,13,36419,15,goldengirl3434 +23140,13,36419,15,guess who +23140,13,36419,15,guibs +23140,13,36419,15,guzforster +23140,13,36419,15,helvellyn +23140,13,36419,15,hoyo +23140,13,36419,15,huffy1166 +23140,13,36419,15,hype toriyama +23140,13,36419,15,ipt1810 +23140,13,36419,15,jenjkz +23140,13,36419,15,jeren +23140,13,36419,15,jmangus +23140,13,36419,15,joecrow69 +23140,13,36419,15,johannschuster +23140,13,36419,15,joseju88 +23140,13,36419,15,joshjosh +23140,13,36419,15,jsi7iv +23140,13,36419,15,judd3336 +23140,13,36419,15,k7t0 +23140,13,36419,15,keller87knight +23140,13,36419,15,kjking1228 +23140,13,36419,15,kythrian +23140,13,36419,15,lamesadedavis +23140,13,36419,15,lollipopper +23140,13,36419,15,lordjekkt +23140,13,36419,15,lunaclara +23140,13,36419,15,lunadips +23140,13,36419,15,mamapapillon +23140,13,36419,15,martyuc1 +23140,13,36419,15,meldivar +23140,13,36419,15,mercatormn +23140,13,36419,15,missiejaye +23140,13,36419,15,moviepaul +23140,13,36419,15,mzalter +23140,13,36419,15,nerkey +23140,13,36419,15,netters +23140,13,36419,15,neuroniky +23140,13,36419,15,nightrainsrt4 +23140,13,36419,15,nightxowl +23140,13,36419,15,oli912 +23140,13,36419,15,pablizard +23140,13,36419,15,pallwood +23140,13,36419,15,papista +23140,13,36419,15,pazuzu42 +23140,13,36419,15,primalwolf +23140,13,36419,15,puggi +23140,13,36419,15,r0blade +23140,13,36419,15,ragnarhdz +23140,13,36419,15,ramus111 +23140,13,36419,15,ravenouspuma +23140,13,36419,15,rekfa +23140,13,36419,15,richardtempura +23140,13,36419,15,risingtrout +23140,13,36419,15,roverbre +23140,13,36419,15,saiboter +23140,13,36419,15,samhague +23140,13,36419,15,samuel_d +23140,13,36419,15,santi3b +23140,13,36419,15,seanwatkins +23140,13,36419,15,sergiod +23140,13,36419,15,shimanegamer +23140,13,36419,15,shocki +23140,13,36419,15,shoopy45 +23140,13,36419,15,singo9 +23140,13,36419,15,sir loin o beef +23140,13,36419,15,spielleidenschaft +23140,13,36419,15,squidy +23140,13,36419,15,strangetroll +23140,13,36419,15,stvboucher +23140,13,36419,15,the chandrian +23140,13,36419,15,thebeckies +23140,13,36419,15,thiefofalways +23140,13,36419,15,tinye3 +23140,13,36419,15,trunks +23140,13,36419,15,vinneri +23140,13,36419,15,vir78 +23140,13,36419,15,wilco +23140,13,36419,15,xigoka +23140,13,39699,14,balange +23140,13,39699,14,daringerow +23140,13,39699,14,fennic +23140,13,39699,14,hansonkun +23140,13,39699,14,hhoffman +23140,13,39699,14,ilsec_ +23140,13,39699,14,joshhanocri +23140,13,39699,14,lordcthulhu +23140,13,39699,14,snif1703 +23140,13,39699,14,wigunowner +26793,12,136,98,crazymongrel +26793,12,196,90,tibi692 +26793,12,252,85,jettachan +26793,12,361,77,spiremetro +26793,12,390,76,zasshu +26793,12,438,74,calvinc71 +26793,12,787,64,panoramabeats +26793,12,843,63,nubis86 +26793,12,1459,55,formidog +26793,12,1568,54,pole1981 +26793,12,1674,53,nixurugy +26793,12,2204,49,tekesh +26793,12,2351,48,aab82rez +26793,12,2351,48,thegambit +26793,12,2969,45,neverwhere68 +26793,12,2969,45,ssmith13 +26793,12,3216,44,kodarr +26793,12,3514,43,roboowoo +26793,12,3514,43,sconicx +26793,12,3815,42,anient +26793,12,3815,42,jmmeye2 +26793,12,3815,42,maerith +26793,12,3815,42,ranma +26793,12,3815,42,temrak +26793,12,4092,41,ckomiya +26793,12,4092,41,egovirus +26793,12,4092,41,paradoxgraphics +26793,12,4092,41,reven125 +26793,12,4092,41,shtil +26793,12,4092,41,xdamian +26793,12,4426,40,akirsch +26793,12,4426,40,kirbimundous +26793,12,4426,40,ridgebacks +26793,12,4426,40,talitrus +26793,12,4782,39,dnvh +26793,12,4782,39,drizzl3 +26793,12,4782,39,markio +26793,12,4782,39,plays for keeps +26793,12,4782,39,soylent green +26793,12,5150,38,fairygodfather +26793,12,5150,38,kartman7 +26793,12,5150,38,leccio82 +26793,12,5150,38,leinad17 +26793,12,5150,38,renton1975 +26793,12,5150,38,th3_drizzl3 +26793,12,5624,37,elmobarney +26793,12,5624,37,xamqc +26793,12,6063,36,cuazzel +26793,12,6063,36,gries +26793,12,6063,36,sumiyaka +26793,12,6573,35,chigurh +26793,12,6573,35,cop663 +26793,12,6573,35,mightyradish +26793,12,6573,35,nynkuhh +26793,12,6573,35,willyweed1 +26793,12,7100,34,glenlivet +26793,12,7100,34,gregmtg +26793,12,7100,34,seekanddestroy +26793,12,7679,33,august222 +26793,12,7679,33,billaros +26793,12,7679,33,bishop897 +26793,12,7679,33,cocuzzi +26793,12,7679,33,hilts1943 +26793,12,7679,33,milanche +26793,12,7679,33,msjegli +26793,12,7679,33,patattack61 +26793,12,7679,33,popeyewynn +26793,12,7679,33,serafina_pekkala +26793,12,7679,33,streuks +26793,12,7679,33,wbouvy +26793,12,8351,32,bflinn +26793,12,8351,32,countzero13 +26793,12,8351,32,deymos20 +26793,12,8351,32,justin li +26793,12,8351,32,shroom71 +26793,12,8351,32,t0m0rr0w +26793,12,8351,32,thewynner +26793,12,9086,31,bcs_ +26793,12,9086,31,dawitchy +26793,12,9086,31,desco +26793,12,9086,31,dkrisman +26793,12,9086,31,favre4mvp +26793,12,9086,31,halstrom +26793,12,9086,31,marcualecs +26793,12,9086,31,mrjg +26793,12,9086,31,palooh +26793,12,9086,31,splurk +26793,12,9086,31,stevewright +26793,12,9086,31,subjugatesm +26793,12,9086,31,yesfan78 +26793,12,9910,30,churchyard +26793,12,9910,30,clannatioy +26793,12,9910,30,elcidmallorca +26793,12,9910,30,ethergnat +26793,12,9910,30,frod +26793,12,9910,30,jdschulz +26793,12,9910,30,joshuanorthey +26793,12,9910,30,kattattack22 +26793,12,9910,30,mirrordude +26793,12,9910,30,orcelfarmyone +26793,12,9910,30,quigonkeen +26793,12,9910,30,shinobu +26793,12,9910,30,sovfloyd +26793,12,9910,30,trickett +26793,12,9910,30,ugaboardgamer +26793,12,10868,29,aiden_kj +26793,12,10868,29,booch77 +26793,12,10868,29,faustus5 +26793,12,10868,29,frle +26793,12,10868,29,louissparda +26793,12,10868,29,matreremou +26793,12,10868,29,muddypawprints +26793,12,10868,29,northernesk +26793,12,10868,29,raquelpr +26793,12,10868,29,shalamik +26793,12,10868,29,tarkunkibil +26793,12,10868,29,thegotama +26793,12,10868,29,tkeating +26793,12,10868,29,tkrowland +26793,12,10868,29,vodkacola +26793,12,10868,29,whooboy1 +26793,12,10868,29,xabarin +26793,12,10868,29,xebradant +26793,12,10868,29,yamil91 +26793,12,11831,28,1rockj +26793,12,11831,28,ants_cymru +26793,12,11831,28,arctem +26793,12,11831,28,ben_naylor +26793,12,11831,28,brodieguscott +26793,12,11831,28,cannonfodderted +26793,12,11831,28,delarosa +26793,12,11831,28,djn1981 +26793,12,11831,28,dorianherman +26793,12,11831,28,dragonfenix +26793,12,11831,28,jlebak +26793,12,11831,28,kopcap_76 +26793,12,11831,28,lilacborboleta +26793,12,11831,28,macklin +26793,12,11831,28,mulligans +26793,12,11831,28,punkabilly +26793,12,11831,28,rastrom +26793,12,11831,28,ripper4775 +26793,12,11831,28,senechaux +26793,12,11831,28,shanimatori +26793,12,11831,28,stan_goose +26793,12,11831,28,sunuhmuhnbuhns +26793,12,11831,28,talisinbear +26793,12,11831,28,thyl +26793,12,11831,28,whiteknight85 +26793,12,11831,28,yosamit3sam +26793,12,12910,27,_wjr_ +26793,12,12910,27,adig +26793,12,12910,27,beestick +26793,12,12910,27,bigbadbell +26793,12,12910,27,boondongle +26793,12,12910,27,cfh3 +26793,12,12910,27,chris_torres +26793,12,12910,27,coltcrazy +26793,12,12910,27,dielaughing +26793,12,12910,27,doof +26793,12,12910,27,evebursterror +26793,12,12910,27,frabcus +26793,12,12910,27,graynoise +26793,12,12910,27,h2okies +26793,12,12910,27,hiroshi urayama +26793,12,12910,27,j12601 +26793,12,12910,27,jlquant +26793,12,12910,27,lineuphere +26793,12,12910,27,mystere451 +26793,12,12910,27,neuvenen +26793,12,12910,27,palemoon +26793,12,12910,27,pascal_pan +26793,12,12910,27,posse913 +26793,12,12910,27,reflex777 +26793,12,12910,27,terrakhan +26793,12,12910,27,unrealsquare +26793,12,12910,27,uripb +26793,12,12910,27,utuherz +26793,12,14030,26,aaronelwhite +26793,12,14030,26,agfox586 +26793,12,14030,26,azeltir +26793,12,14030,26,burgales +26793,12,14030,26,carolina0406 +26793,12,14030,26,dagdamor67 +26793,12,14030,26,dima fe +26793,12,14030,26,dsrtrosy +26793,12,14030,26,dylanp +26793,12,14030,26,facunicora +26793,12,14030,26,farau +26793,12,14030,26,frankwessmore +26793,12,14030,26,giliath84 +26793,12,14030,26,gonzo1608 +26793,12,14030,26,i2xcross +26793,12,14030,26,jaheira +26793,12,14030,26,jib54 +26793,12,14030,26,jimrogenski +26793,12,14030,26,jogose +26793,12,14030,26,klieve89 +26793,12,14030,26,konstant23 +26793,12,14030,26,kwymbo +26793,12,14030,26,luis_iglezias +26793,12,14030,26,marrgl +26793,12,14030,26,mikael halonen +26793,12,14030,26,mrzerimar +26793,12,14030,26,nbafan +26793,12,14030,26,niben +26793,12,14030,26,oldtymer +26793,12,14030,26,pakruse +26793,12,14030,26,patoloko +26793,12,14030,26,pennywise80 +26793,12,14030,26,plataille +26793,12,14030,26,rbutcho +26793,12,14030,26,saschitojoy +26793,12,14030,26,shamrock_ram +26793,12,14030,26,shiring +26793,12,14030,26,spoonbender +26793,12,14030,26,stefant +26793,12,14030,26,stormburns +26793,12,14030,26,the big gamer +26793,12,14030,26,tmueller5 +26793,12,14030,26,tronogato +26793,12,14030,26,truth999 +26793,12,14030,26,warlock_bylandt +26793,12,14030,26,wonggonewrong +26793,12,14030,26,wrathberry +26793,12,14030,26,xavier seynave +26793,12,15326,25,alkoholixrex +26793,12,15326,25,bauernopfer +26793,12,15326,25,beckstarzy +26793,12,15326,25,boogabee +26793,12,15326,25,cinnzel +26793,12,15326,25,claudio +26793,12,15326,25,crzyeagle +26793,12,15326,25,cubeguy +26793,12,15326,25,cuco027 +26793,12,15326,25,dillei +26793,12,15326,25,donkasio +26793,12,15326,25,dvdhwkaz +26793,12,15326,25,erikhagen +26793,12,15326,25,figarojones +26793,12,15326,25,freez0r +26793,12,15326,25,gurbizti +26793,12,15326,25,iacobus_maior +26793,12,15326,25,javi_vazquez +26793,12,15326,25,jedifoster +26793,12,15326,25,jimbro3 +26793,12,15326,25,jungle jim +26793,12,15326,25,king_bongo +26793,12,15326,25,klozhald +26793,12,15326,25,lazzanova +26793,12,15326,25,littletaud +26793,12,15326,25,lukeheineman99 +26793,12,15326,25,mikedv34 +26793,12,15326,25,myowngamer +26793,12,15326,25,noporunner68 +26793,12,15326,25,oblivion4lcf +26793,12,15326,25,paco_cazorla +26793,12,15326,25,peterschell +26793,12,15326,25,piwo +26793,12,15326,25,playaassign +26793,12,15326,25,regressiv +26793,12,15326,25,ryzyn +26793,12,15326,25,sacco +26793,12,15326,25,sagolman +26793,12,15326,25,shanataha +26793,12,15326,25,shirayuki +26793,12,15326,25,siras +26793,12,15326,25,speedy_tom +26793,12,15326,25,strawer_1982 +26793,12,15326,25,thefilmsmith +26793,12,15326,25,umboito +26793,12,15326,25,vyran +26793,12,15326,25,waelatallah +26793,12,15326,25,wobblysquare +26793,12,15326,25,xjohncandyx +26793,12,15326,25,youya +26793,12,15326,25,zaack77 +26793,12,16710,24,000undo000 +26793,12,16710,24,akiles strike +26793,12,16710,24,alexbsc4 +26793,12,16710,24,avmartin +26793,12,16710,24,ayeseb +26793,12,16710,24,baelzebub +26793,12,16710,24,beermagnet +26793,12,16710,24,belial_ol +26793,12,16710,24,btizo +26793,12,16710,24,campiii97 +26793,12,16710,24,canarisland +26793,12,16710,24,chrisjwmartin +26793,12,16710,24,coldstream17 +26793,12,16710,24,comicthoughts +26793,12,16710,24,crogstad +26793,12,16710,24,darhyma +26793,12,16710,24,david blanco galean +26793,12,16710,24,dcg83 +26793,12,16710,24,diamatbcn +26793,12,16710,24,diceone +26793,12,16710,24,didoate +26793,12,16710,24,e.e.goings +26793,12,16710,24,elenatj +26793,12,16710,24,ewa_ewa +26793,12,16710,24,flamejuggler +26793,12,16710,24,galchri +26793,12,16710,24,gorikdebruycker +26793,12,16710,24,hadip +26793,12,16710,24,hancza123 +26793,12,16710,24,he1fire +26793,12,16710,24,hercloeb +26793,12,16710,24,hoonga +26793,12,16710,24,hoop27 +26793,12,16710,24,jimavet +26793,12,16710,24,joshaubry +26793,12,16710,24,jyveks +26793,12,16710,24,katzh +26793,12,16710,24,kbclac +26793,12,16710,24,kirill_the_freshman +26793,12,16710,24,kodeir +26793,12,16710,24,ktartandude +26793,12,16710,24,kyuuhots +26793,12,16710,24,lauzv +26793,12,16710,24,ll games +26793,12,16710,24,lori713 +26793,12,16710,24,mathchandra +26793,12,16710,24,matlockheed +26793,12,16710,24,melbamo +26793,12,16710,24,monkenstein +26793,12,16710,24,mortandade +26793,12,16710,24,muaddibspidey +26793,12,16710,24,nova t +26793,12,16710,24,pa_vincent +26793,12,16710,24,pasel +26793,12,16710,24,paspawn +26793,12,16710,24,pfelici +26793,12,16710,24,plague45 +26793,12,16710,24,porfyalum +26793,12,16710,24,prized14 +26793,12,16710,24,r0ady +26793,12,16710,24,raynes88 +26793,12,16710,24,renaissance man +26793,12,16710,24,rhino +26793,12,16710,24,rhodedog +26793,12,16710,24,robm +26793,12,16710,24,robonski +26793,12,16710,24,saifrc +26793,12,16710,24,scriptwriter +26793,12,16710,24,sdmmb +26793,12,16710,24,solemn919 +26793,12,16710,24,somersettal +26793,12,16710,24,sungrazer +26793,12,16710,24,swab +26793,12,16710,24,swordandboardgames +26793,12,16710,24,takeacoffee +26793,12,16710,24,tepo86 +26793,12,16710,24,theglassdie +26793,12,16710,24,thopters +26793,12,16710,24,tirolis +26793,12,16710,24,usmihnatata +26793,12,16710,24,willbyers +26793,12,16710,24,xarly34 +26793,12,16710,24,xquarky +26793,12,16710,24,yagyuninja +26793,12,16710,24,yumpodelapunto +26793,12,16710,24,zale_m +26793,12,16710,24,zaphox +26793,12,16710,24,zebast +26793,12,18170,23,8bittiger +26793,12,18170,23,aaron78 +26793,12,18170,23,afifter +26793,12,18170,23,akoya007 +26793,12,18170,23,alfred shark +26793,12,18170,23,aljovin +26793,12,18170,23,alvas +26793,12,18170,23,ares31 +26793,12,18170,23,awili +26793,12,18170,23,aym4983 +26793,12,18170,23,azgafe +26793,12,18170,23,banannaball +26793,12,18170,23,banyan +26793,12,18170,23,bayleyaw +26793,12,18170,23,bezuglowski +26793,12,18170,23,bielak1992r +26793,12,18170,23,bigmikew +26793,12,18170,23,blaird +26793,12,18170,23,bracca +26793,12,18170,23,brisenocarlos +26793,12,18170,23,chewiemanbvb +26793,12,18170,23,claytonsch +26793,12,18170,23,cliffhangerbe +26793,12,18170,23,colmustard +26793,12,18170,23,cosarara +26793,12,18170,23,crowdgames +26793,12,18170,23,cubeman +26793,12,18170,23,dara85 +26793,12,18170,23,davepartin +26793,12,18170,23,deacis +26793,12,18170,23,deltas +26793,12,18170,23,desultor +26793,12,18170,23,diskotis +26793,12,18170,23,eandid +26793,12,18170,23,eithereven +26793,12,18170,23,entropus +26793,12,18170,23,erikus maximus +26793,12,18170,23,esquelito +26793,12,18170,23,fiddly_bits +26793,12,18170,23,firedriller +26793,12,18170,23,franzoi +26793,12,18170,23,fuzzysilk +26793,12,18170,23,garwein +26793,12,18170,23,gemima2014 +26793,12,18170,23,god_save_the_king +26793,12,18170,23,grazzamatic +26793,12,18170,23,gypsylord +26793,12,18170,23,hughcross +26793,12,18170,23,igord_kanoots +26793,12,18170,23,iii empire iii +26793,12,18170,23,izwor +26793,12,18170,23,jakobagger +26793,12,18170,23,jammasterjake +26793,12,18170,23,jazzmetalman +26793,12,18170,23,jgrantmiller +26793,12,18170,23,jholderman06 +26793,12,18170,23,jinxes +26793,12,18170,23,jothaa +26793,12,18170,23,jpozsr +26793,12,18170,23,kaktus +26793,12,18170,23,katherinenaomi +26793,12,18170,23,kavey +26793,12,18170,23,klev +26793,12,18170,23,klisowski +26793,12,18170,23,knightrider2000 +26793,12,18170,23,leisenstein +26793,12,18170,23,liotyan +26793,12,18170,23,meirmanov +26793,12,18170,23,metzjames +26793,12,18170,23,micker +26793,12,18170,23,monkey9485 +26793,12,18170,23,mrimer +26793,12,18170,23,mtfunhog +26793,12,18170,23,muhaha222 +26793,12,18170,23,natashabloom +26793,12,18170,23,neon_epsilon +26793,12,18170,23,nevvermore +26793,12,18170,23,noname10 +26793,12,18170,23,oblivion +26793,12,18170,23,ozzytgap +26793,12,18170,23,paul_edgar_au +26793,12,18170,23,peris46 +26793,12,18170,23,pitmistress +26793,12,18170,23,randomshuffle +26793,12,18170,23,rileymullins +26793,12,18170,23,sandercohen +26793,12,18170,23,schmanthony +26793,12,18170,23,semjon22 +26793,12,18170,23,snowangel +26793,12,18170,23,spire_rubica +26793,12,18170,23,stalker +26793,12,18170,23,stayfun +26793,12,18170,23,stela85 +26793,12,18170,23,swj06 +26793,12,18170,23,tacopizzabob +26793,12,18170,23,thraex +26793,12,18170,23,tinderfire +26793,12,18170,23,travel838 +26793,12,18170,23,txema foro +26793,12,18170,23,tyner +26793,12,18170,23,unkle +26793,12,18170,23,urkeith +26793,12,18170,23,vintoks +26793,12,18170,23,weemonster +26793,12,18170,23,werewolf_jones +26793,12,18170,23,wixi85 +26793,12,18170,23,wonka11235 +26793,12,18170,23,xebsk +26793,12,18170,23,xmael +26793,12,18170,23,xorbot135 +26793,12,18170,23,zerg +26793,12,18170,23,zlodziej_czasu +26793,12,19906,22,3wgames +26793,12,19906,22,ad1da5 +26793,12,19906,22,agentzen +26793,12,19906,22,ajkey +26793,12,19906,22,albatraous +26793,12,19906,22,alex_ctr360 +26793,12,19906,22,alexilaio +26793,12,19906,22,alina8 +26793,12,19906,22,almostfamous +26793,12,19906,22,andynbron +26793,12,19906,22,anomalous +26793,12,19906,22,anwyl53 +26793,12,19906,22,aragorn01 +26793,12,19906,22,austinglassner +26793,12,19906,22,beeny +26793,12,19906,22,belkul +26793,12,19906,22,bholle +26793,12,19906,22,biggb0ss +26793,12,19906,22,bin101 +26793,12,19906,22,blor +26793,12,19906,22,boardgenious +26793,12,19906,22,bosworthdelajive +26793,12,19906,22,bramvandenbussche +26793,12,19906,22,capper +26793,12,19906,22,captain88 +26793,12,19906,22,captcastle +26793,12,19906,22,caromite +26793,12,19906,22,cgelon +26793,12,19906,22,cheapsheepnz +26793,12,19906,22,chesterfieldlife +26793,12,19906,22,chiasmatax +26793,12,19906,22,chickeninferno +26793,12,19906,22,chrisb88 +26793,12,19906,22,chrispy55 +26793,12,19906,22,ciderman9000000 +26793,12,19906,22,ckissee +26793,12,19906,22,cturner0034 +26793,12,19906,22,danalf +26793,12,19906,22,dancingmoogle +26793,12,19906,22,darthschaff +26793,12,19906,22,dbarree +26793,12,19906,22,ddinj4 +26793,12,19906,22,delsi87 +26793,12,19906,22,djlock +26793,12,19906,22,dshrier +26793,12,19906,22,dsignr +26793,12,19906,22,dskrodzki +26793,12,19906,22,e-dave +26793,12,19906,22,elgard +26793,12,19906,22,erikieperikie +26793,12,19906,22,fanletal +26793,12,19906,22,finke67 +26793,12,19906,22,g1ul10 +26793,12,19906,22,gameplanet +26793,12,19906,22,gratormat +26793,12,19906,22,greenbanners +26793,12,19906,22,greenclaw +26793,12,19906,22,hask89 +26793,12,19906,22,holisticdeveloper +26793,12,19906,22,hotheart +26793,12,19906,22,innsbruck +26793,12,19906,22,itchywhambar +26793,12,19906,22,jasonhibbs +26793,12,19906,22,jmcmilla +26793,12,19906,22,joshhh +26793,12,19906,22,jschott +26793,12,19906,22,jude007 +26793,12,19906,22,jujopepe +26793,12,19906,22,jupitertux +26793,12,19906,22,kasator +26793,12,19906,22,kejti2002 +26793,12,19906,22,kelly17 +26793,12,19906,22,kiisnikii +26793,12,19906,22,kingdaddy +26793,12,19906,22,kittyhawkmarch +26793,12,19906,22,lokie +26793,12,19906,22,m0r3dr3ad +26793,12,19906,22,makotoniijima +26793,12,19906,22,marcelodelgado +26793,12,19906,22,masonap +26793,12,19906,22,mastaofdisasta +26793,12,19906,22,maylian +26793,12,19906,22,megadev +26793,12,19906,22,meskaloid +26793,12,19906,22,mitte +26793,12,19906,22,mokey d luffy +26793,12,19906,22,moraneb +26793,12,19906,22,mosouldel +26793,12,19906,22,mrheilmann +26793,12,19906,22,narumeleth +26793,12,19906,22,neatboardgames +26793,12,19906,22,nignial +26793,12,19906,22,nolemonplease +26793,12,19906,22,ocebe +26793,12,19906,22,olsie +26793,12,19906,22,paralipsis +26793,12,19906,22,peprikeplays +26793,12,19906,22,ponczix +26793,12,19906,22,puppetmaster69 +26793,12,19906,22,quadroskeptic +26793,12,19906,22,quentin1 +26793,12,19906,22,rpm01 +26793,12,19906,22,rubend +26793,12,19906,22,salabesh +26793,12,19906,22,samcrane2011 +26793,12,19906,22,sarevok013 +26793,12,19906,22,savagec +26793,12,19906,22,seehund +26793,12,19906,22,serafimt +26793,12,19906,22,shishin +26793,12,19906,22,sinalco +26793,12,19906,22,skiesgaming +26793,12,19906,22,stoffe +26793,12,19906,22,swimmaster +26793,12,19906,22,sworthig +26793,12,19906,22,tauneutrinos +26793,12,19906,22,theart +26793,12,19906,22,thelovebunnies +26793,12,19906,22,timtim17 +26793,12,19906,22,trekker +26793,12,19906,22,tyefighter +26793,12,19906,22,urtho +26793,12,19906,22,v1ady +26793,12,19906,22,victoriousone +26793,12,19906,22,wagley +26793,12,19906,22,warny +26793,12,19906,22,wesleybistoen +26793,12,19906,22,whendrickx +26793,12,19906,22,woodlandmages +26793,12,19906,22,xedaria +26793,12,19906,22,xshagrath +26793,12,19906,22,yuriyuridaze +26793,12,19906,22,zerozephyros +26793,12,19906,22,zombie_jawa +26793,12,21713,21,akwlinka +26793,12,21713,21,alex_roos +26793,12,21713,21,amarok5 +26793,12,21713,21,anthonyabashkin +26793,12,21713,21,araphant +26793,12,21713,21,ashton +26793,12,21713,21,asturmatr +26793,12,21713,21,badbri +26793,12,21713,21,beccaday +26793,12,21713,21,beo_ +26793,12,21713,21,bfry42 +26793,12,21713,21,blockhin +26793,12,21713,21,blynas +26793,12,21713,21,boardsurfer +26793,12,21713,21,bob waters +26793,12,21713,21,bountyhunta +26793,12,21713,21,budget +26793,12,21713,21,bugcatcherscott +26793,12,21713,21,chaosk +26793,12,21713,21,childeroland +26793,12,21713,21,ciruk +26793,12,21713,21,clntv +26793,12,21713,21,crowtein +26793,12,21713,21,cruelly +26793,12,21713,21,culturejam +26793,12,21713,21,curlyjefferson +26793,12,21713,21,d1rty5teve +26793,12,21713,21,danielsydney +26793,12,21713,21,danneq +26793,12,21713,21,darenka +26793,12,21713,21,darkestknightz +26793,12,21713,21,darkfelle +26793,12,21713,21,darth papa +26793,12,21713,21,deadronnie +26793,12,21713,21,deltarn +26793,12,21713,21,dkeeling +26793,12,21713,21,drzodiacus +26793,12,21713,21,duimwesker +26793,12,21713,21,dylanhartwell +26793,12,21713,21,eilsano +26793,12,21713,21,ejberkenpas22 +26793,12,21713,21,ekolastik +26793,12,21713,21,el pasquo rises +26793,12,21713,21,ensor +26793,12,21713,21,everadus +26793,12,21713,21,evoshall +26793,12,21713,21,exoviper +26793,12,21713,21,ezequieliv +26793,12,21713,21,fantasticpantz +26793,12,21713,21,fl3x_franke +26793,12,21713,21,fridfull +26793,12,21713,21,frutsik +26793,12,21713,21,gaspar +26793,12,21713,21,gentlefox +26793,12,21713,21,goblinbasar +26793,12,21713,21,grelb +26793,12,21713,21,heatzap +26793,12,21713,21,hello_planet +26793,12,21713,21,hmelman +26793,12,21713,21,homungolus +26793,12,21713,21,hoover jui +26793,12,21713,21,iceberg1 +26793,12,21713,21,imarco +26793,12,21713,21,ir1337 +26793,12,21713,21,jgebczak +26793,12,21713,21,jongular +26793,12,21713,21,jrbissett +26793,12,21713,21,judasken +26793,12,21713,21,kamikazess +26793,12,21713,21,karel +26793,12,21713,21,kluuetje +26793,12,21713,21,kurtag +26793,12,21713,21,lacoche +26793,12,21713,21,lagake +26793,12,21713,21,lazy2k +26793,12,21713,21,lenlindsay +26793,12,21713,21,lesombrepj +26793,12,21713,21,little white lies +26793,12,21713,21,lolinterwebs +26793,12,21713,21,lolle +26793,12,21713,21,loopynz +26793,12,21713,21,maarten jeursen +26793,12,21713,21,maeloc +26793,12,21713,21,majorko3nig +26793,12,21713,21,mandra13 +26793,12,21713,21,marc_p +26793,12,21713,21,masonproulx +26793,12,21713,21,matrochon +26793,12,21713,21,medic0719 +26793,12,21713,21,memphis1982 +26793,12,21713,21,meta3 +26793,12,21713,21,methylpsychohexane +26793,12,21713,21,michus +26793,12,21713,21,micky101 +26793,12,21713,21,mochy81 +26793,12,21713,21,muros8 +26793,12,21713,21,musrattus +26793,12,21713,21,mystrymuffins +26793,12,21713,21,naga33 +26793,12,21713,21,neko_cam +26793,12,21713,21,northshorepaddler +26793,12,21713,21,notyourlawyer +26793,12,21713,21,nyanrick22 +26793,12,21713,21,oloboloboo +26793,12,21713,21,onlyhuman +26793,12,21713,21,orangecharger +26793,12,21713,21,pacman_96 +26793,12,21713,21,pandakyandi +26793,12,21713,21,pauvre +26793,12,21713,21,pcacule15 +26793,12,21713,21,persival +26793,12,21713,21,pinkyeye +26793,12,21713,21,polyjay +26793,12,21713,21,prettytalk +26793,12,21713,21,proko +26793,12,21713,21,pupplehaze +26793,12,21713,21,querke +26793,12,21713,21,radioonair +26793,12,21713,21,rafleischman +26793,12,21713,21,rdavis01 +26793,12,21713,21,reaper829 +26793,12,21713,21,red_erik +26793,12,21713,21,respect88 +26793,12,21713,21,revi13 +26793,12,21713,21,risune +26793,12,21713,21,rivasrock +26793,12,21713,21,rivwelke +26793,12,21713,21,rockcress +26793,12,21713,21,sage345 +26793,12,21713,21,sastro +26793,12,21713,21,scheibchen +26793,12,21713,21,semioldguy +26793,12,21713,21,shannonsmovies +26793,12,21713,21,slawas2001 +26793,12,21713,21,snorfle +26793,12,21713,21,soland +26793,12,21713,21,sopart pl +26793,12,21713,21,spielefloh +26793,12,21713,21,starb +26793,12,21713,21,starflyer_gr +26793,12,21713,21,strider88 +26793,12,21713,21,strohman +26793,12,21713,21,tahndur +26793,12,21713,21,talltim +26793,12,21713,21,thatjakers +26793,12,21713,21,theanswerispie +26793,12,21713,21,thegenghiskhan +26793,12,21713,21,theonadine +26793,12,21713,21,theriotpolice +26793,12,21713,21,tichuzocker +26793,12,21713,21,tolio +26793,12,21713,21,truefarm +26793,12,21713,21,turtleman951 +26793,12,21713,21,tylermv07 +26793,12,21713,21,vanlliadragon +26793,12,21713,21,venturello +26793,12,21713,21,veronie +26793,12,21713,21,vesuvan_mage +26793,12,21713,21,viaseattleite +26793,12,21713,21,vir0 +26793,12,21713,21,vonblask +26793,12,21713,21,w1219 +26793,12,21713,21,warerare +26793,12,21713,21,whatisyourhowmuch +26793,12,21713,21,wizardhorse +26793,12,21713,21,writersean33 +26793,12,21713,21,yacoba1995 +26793,12,21713,21,yeoldeplayer +26793,12,21713,21,ysloong +26793,12,21713,21,zezavonthanatos +26793,12,21713,21,zincous +26793,12,21713,21,zofiel +26793,12,23640,20,2ndinbeautycontest +26793,12,23640,20,3dragonfly +26793,12,23640,20,abadnewsbear +26793,12,23640,20,abevanderbent +26793,12,23640,20,abundantraymo +26793,12,23640,20,adamcriblez +26793,12,23640,20,adowds +26793,12,23640,20,afflint +26793,12,23640,20,akroatis +26793,12,23640,20,alan_de_smet +26793,12,23640,20,alex5casas +26793,12,23640,20,alex_movs +26793,12,23640,20,alphacomplex +26793,12,23640,20,andr13u +26793,12,23640,20,andybarbet +26793,12,23640,20,angrybeartony +26793,12,23640,20,bacon1986 +26793,12,23640,20,balderin +26793,12,23640,20,bazan999 +26793,12,23640,20,behybe +26793,12,23640,20,bengee +26793,12,23640,20,bgjunkie49 +26793,12,23640,20,bhajho +26793,12,23640,20,biecheer +26793,12,23640,20,big-chad +26793,12,23640,20,big_tabletop +26793,12,23640,20,bigbookgames +26793,12,23640,20,bigtex01 +26793,12,23640,20,bittamer +26793,12,23640,20,blackharald +26793,12,23640,20,bonarbiter +26793,12,23640,20,boreal_penguin +26793,12,23640,20,braceletwinner +26793,12,23640,20,brandius +26793,12,23640,20,brettspielkastl +26793,12,23640,20,brimmer +26793,12,23640,20,brokoli +26793,12,23640,20,bubblegumbill +26793,12,23640,20,bubkovsky +26793,12,23640,20,bulwyf +26793,12,23640,20,byarhouse +26793,12,23640,20,calamari77 +26793,12,23640,20,cameron1411 +26793,12,23640,20,carmelo_tb +26793,12,23640,20,changa +26793,12,23640,20,chaucerboom +26793,12,23640,20,cinotut15 +26793,12,23640,20,cjhudson +26793,12,23640,20,clan lambda +26793,12,23640,20,clemmer7 +26793,12,23640,20,clevider +26793,12,23640,20,climb_2_live +26793,12,23640,20,crankypants +26793,12,23640,20,crokinole dundee +26793,12,23640,20,cuddner +26793,12,23640,20,cyberskumle +26793,12,23640,20,cyrulik +26793,12,23640,20,dai1977 +26793,12,23640,20,daniel_darko +26793,12,23640,20,dantecheng +26793,12,23640,20,ddoc1171 +26793,12,23640,20,ddregs +26793,12,23640,20,de_boardgamers +26793,12,23640,20,deathwalker9000 +26793,12,23640,20,debiant +26793,12,23640,20,deerhound +26793,12,23640,20,denisgolomazov +26793,12,23640,20,derbaronisher +26793,12,23640,20,derdanh +26793,12,23640,20,desyden +26793,12,23640,20,dhruboisgood +26793,12,23640,20,diamondjim89 +26793,12,23640,20,dionisus1122 +26793,12,23640,20,dirkndw +26793,12,23640,20,djpetric +26793,12,23640,20,doctoroflegos +26793,12,23640,20,doitscher +26793,12,23640,20,donpitufo +26793,12,23640,20,dottor_destino +26793,12,23640,20,dracosha +26793,12,23640,20,dragon7398 +26793,12,23640,20,dranore +26793,12,23640,20,dreamagine +26793,12,23640,20,dunz +26793,12,23640,20,dux_boardgames +26793,12,23640,20,earliodookie +26793,12,23640,20,eatmorepenguins +26793,12,23640,20,eclecticmatt +26793,12,23640,20,egnever +26793,12,23640,20,electroman +26793,12,23640,20,elvive5 +26793,12,23640,20,erich_schneider +26793,12,23640,20,evil_lesh +26793,12,23640,20,exliontamer +26793,12,23640,20,eyewitness +26793,12,23640,20,fharlock +26793,12,23640,20,filosofer +26793,12,23640,20,fixb +26793,12,23640,20,flamehearted +26793,12,23640,20,flauschziege +26793,12,23640,20,florif +26793,12,23640,20,fonteintje +26793,12,23640,20,fredholm +26793,12,23640,20,fuzzwah +26793,12,23640,20,gasg5000 +26793,12,23640,20,geo1830 +26793,12,23640,20,geobaldi5 +26793,12,23640,20,geschichte +26793,12,23640,20,glass_chameleon +26793,12,23640,20,gpritch3 +26793,12,23640,20,grayfoxboss +26793,12,23640,20,greenrock +26793,12,23640,20,guodan +26793,12,23640,20,happyjay +26793,12,23640,20,harknessash +26793,12,23640,20,hayzle +26793,12,23640,20,heddena +26793,12,23640,20,hellenv +26793,12,23640,20,huba009 +26793,12,23640,20,hutten122 +26793,12,23640,20,ihmcallister +26793,12,23640,20,illegalprime +26793,12,23640,20,infernonl +26793,12,23640,20,intro23wertyk +26793,12,23640,20,itscharlievp +26793,12,23640,20,iudicium86 +26793,12,23640,20,jaime_paramio +26793,12,23640,20,jamea +26793,12,23640,20,jammitch +26793,12,23640,20,japanes31 +26793,12,23640,20,jelerak +26793,12,23640,20,jerkman +26793,12,23640,20,jeronte +26793,12,23640,20,jesseolivier +26793,12,23640,20,jesterzia +26793,12,23640,20,jigawatts +26793,12,23640,20,johandedoper +26793,12,23640,20,johndixon1972 +26793,12,23640,20,jols +26793,12,23640,20,jonasgl +26793,12,23640,20,josef_cass +26793,12,23640,20,joshnh +26793,12,23640,20,jschildress +26793,12,23640,20,judemartin01 +26793,12,23640,20,julianzg +26793,12,23640,20,justplainwilliam +26793,12,23640,20,k4comicbook +26793,12,23640,20,kabrouard +26793,12,23640,20,kallo +26793,12,23640,20,kenran +26793,12,23640,20,kent +26793,12,23640,20,kentyo +26793,12,23640,20,kevinbrenkel +26793,12,23640,20,kevincamille +26793,12,23640,20,kfos66 +26793,12,23640,20,knaves +26793,12,23640,20,knpa +26793,12,23640,20,krackerbelin +26793,12,23640,20,kubanzo +26793,12,23640,20,kyllcoaster +26793,12,23640,20,kytheon +26793,12,23640,20,latvianstumpy +26793,12,23640,20,leon121 +26793,12,23640,20,leuchtenlady +26793,12,23640,20,liefkleinkonijntje +26793,12,23640,20,lilou84x +26793,12,23640,20,litzown +26793,12,23640,20,lockter +26793,12,23640,20,loops +26793,12,23640,20,loraen +26793,12,23640,20,lord frisk +26793,12,23640,20,lord nerevar +26793,12,23640,20,lowej004 +26793,12,23640,20,lubaroli +26793,12,23640,20,lucasccr +26793,12,23640,20,lucascmedeiros +26793,12,23640,20,lugrom +26793,12,23640,20,luqon +26793,12,23640,20,mackamus2508 +26793,12,23640,20,magabeus +26793,12,23640,20,magnuswhite +26793,12,23640,20,mangocw +26793,12,23640,20,mappingmeeples +26793,12,23640,20,marc altherr +26793,12,23640,20,markjanderson86 +26793,12,23640,20,maromue +26793,12,23640,20,mawnir +26793,12,23640,20,mayk78 +26793,12,23640,20,mazw +26793,12,23640,20,mease19 +26793,12,23640,20,mercystreetcjc +26793,12,23640,20,merry7110 +26793,12,23640,20,mgusic +26793,12,23640,20,mich4soft +26793,12,23640,20,michails +26793,12,23640,20,midnighter +26793,12,23640,20,mighor +26793,12,23640,20,mikolajl +26793,12,23640,20,mindbnder +26793,12,23640,20,mk-ultra71 +26793,12,23640,20,monkeyseez7 +26793,12,23640,20,mtjones13 +26793,12,23640,20,mtswiss +26793,12,23640,20,mullefox +26793,12,23640,20,mynning +26793,12,23640,20,naruga_kuruga +26793,12,23640,20,neonspiele +26793,12,23640,20,netsilik33 +26793,12,23640,20,nicolazz +26793,12,23640,20,notgordon +26793,12,23640,20,notlwolfie +26793,12,23640,20,nowonas +26793,12,23640,20,nucleargoldfish +26793,12,23640,20,nullified +26793,12,23640,20,nwaywood +26793,12,23640,20,ocdbear +26793,12,23640,20,ohmysteries +26793,12,23640,20,okami31 +26793,12,23640,20,onyxx +26793,12,23640,20,organicblue5 +26793,12,23640,20,p_l_t_d +26793,12,23640,20,paperbag17 +26793,12,23640,20,patboil +26793,12,23640,20,pelos85 +26793,12,23640,20,pennyf +26793,12,23640,20,perrbear +26793,12,23640,20,pheaghon +26793,12,23640,20,plagelao +26793,12,23640,20,polygonplay +26793,12,23640,20,pyvert +26793,12,23640,20,raiderovicent +26793,12,23640,20,rakasis +26793,12,23640,20,random_user +26793,12,23640,20,raubythyme +26793,12,23640,20,rbz75 +26793,12,23640,20,realsheepguy +26793,12,23640,20,rebelhr +26793,12,23640,20,reklo87 +26793,12,23640,20,risho +26793,12,23640,20,robertg611 +26793,12,23640,20,rubenhg1976 +26793,12,23640,20,ruiteves +26793,12,23640,20,ruslan_72 +26793,12,23640,20,samucel87 +26793,12,23640,20,samuraisoul77 +26793,12,23640,20,sanitee +26793,12,23640,20,schwolop +26793,12,23640,20,seabie +26793,12,23640,20,sean_kanei +26793,12,23640,20,sebastian_ef +26793,12,23640,20,sengir80 +26793,12,23640,20,sethcochran +26793,12,23640,20,sha2gy +26793,12,23640,20,siberianstanley +26793,12,23640,20,silaence +26793,12,23640,20,sillynamenace +26793,12,23640,20,sioux +26793,12,23640,20,skirkham1967a +26793,12,23640,20,skyl1ght +26793,12,23640,20,slaqr +26793,12,23640,20,smeagol492 +26793,12,23640,20,smorty +26793,12,23640,20,snufflesmurf +26793,12,23640,20,ssquba +26793,12,23640,20,standobre +26793,12,23640,20,stent85 +26793,12,23640,20,stephanoss +26793,12,23640,20,sunshineng +26793,12,23640,20,svirt12 +26793,12,23640,20,szpeti +26793,12,23640,20,taavo +26793,12,23640,20,tair1 +26793,12,23640,20,tdoman +26793,12,23640,20,tea93 +26793,12,23640,20,teslaswastaken +26793,12,23640,20,tethys +26793,12,23640,20,teurlinx +26793,12,23640,20,the_real_peha +26793,12,23640,20,thedarkl0rd +26793,12,23640,20,theologianpjjones +26793,12,23640,20,theory43 +26793,12,23640,20,thewhitecamas +26793,12,23640,20,thomanj +26793,12,23640,20,thwdp +26793,12,23640,20,timjrc +26793,12,23640,20,titus swe +26793,12,23640,20,tjuranyi +26793,12,23640,20,tobesole19 +26793,12,23640,20,tolhs +26793,12,23640,20,tolroe +26793,12,23640,20,tombisk +26793,12,23640,20,ton129 +26793,12,23640,20,torins +26793,12,23640,20,torx +26793,12,23640,20,trishadobel +26793,12,23640,20,tron933 +26793,12,23640,20,troylow +26793,12,23640,20,tuneloon +26793,12,23640,20,tyewing +26793,12,23640,20,typhoon +26793,12,23640,20,tytrain +26793,12,23640,20,vanguard_2 +26793,12,23640,20,vgrldnja +26793,12,23640,20,viduenez +26793,12,23640,20,vipetrescu +26793,12,23640,20,vtesbtk +26793,12,23640,20,will0627 +26793,12,23640,20,willy_the_kid +26793,12,23640,20,witmasta +26793,12,23640,20,wizalou +26793,12,23640,20,woodsie_drummer +26793,12,23640,20,wulferdoodles +26793,12,23640,20,x30_azrael +26793,12,23640,20,xerp +26793,12,23640,20,xglossostigma +26793,12,23640,20,xhy20071998 +26793,12,23640,20,yanick666 +26793,12,23640,20,yeeshkul +26793,12,23640,20,yllanes +26793,12,23640,20,zabivan +26793,12,23640,20,zangzabar +26793,12,23640,20,zennshinagas +26793,12,23640,20,zhimis +26793,12,23640,20,zlandine +26793,12,23640,20,zorac +26793,12,25880,19,.jck. +26793,12,25880,19,28oscar +26793,12,25880,19,7913 +26793,12,25880,19,abah +26793,12,25880,19,absolutebc +26793,12,25880,19,acward +26793,12,25880,19,addi792 +26793,12,25880,19,adhawk9 +26793,12,25880,19,adimantium10 +26793,12,25880,19,aea1978 +26793,12,25880,19,aec1745 +26793,12,25880,19,affenfratze +26793,12,25880,19,afram64 +26793,12,25880,19,akamalion +26793,12,25880,19,aleitas +26793,12,25880,19,alexeus +26793,12,25880,19,alexininikovsky +26793,12,25880,19,allumeur +26793,12,25880,19,altrite +26793,12,25880,19,anfdeng +26793,12,25880,19,anzelak +26793,12,25880,19,arborshate +26793,12,25880,19,argok +26793,12,25880,19,aristidescostajunior +26793,12,25880,19,arteannl +26793,12,25880,19,asbel +26793,12,25880,19,asuea +26793,12,25880,19,atrooga +26793,12,25880,19,avtomatik +26793,12,25880,19,axeme +26793,12,25880,19,baagism +26793,12,25880,19,babo_fish +26793,12,25880,19,bambam526 +26793,12,25880,19,bantam +26793,12,25880,19,bapenrose +26793,12,25880,19,bass_katcher +26793,12,25880,19,bazzinc +26793,12,25880,19,bbogyo +26793,12,25880,19,bdean152 +26793,12,25880,19,behindbj +26793,12,25880,19,billrichards +26793,12,25880,19,birginvlack +26793,12,25880,19,birgir +26793,12,25880,19,black saint +26793,12,25880,19,blakepurnell +26793,12,25880,19,blankpaper +26793,12,25880,19,blausteiner +26793,12,25880,19,bloody_newbie +26793,12,25880,19,bmoneyspice +26793,12,25880,19,boardgamebryan +26793,12,25880,19,bomazu +26793,12,25880,19,bondservant +26793,12,25880,19,bosstone12 +26793,12,25880,19,bouder31 +26793,12,25880,19,brandroid96 +26793,12,25880,19,brek zarith +26793,12,25880,19,brentnz +26793,12,25880,19,bubink +26793,12,25880,19,bullhorn_11 +26793,12,25880,19,bykrgal +26793,12,25880,19,cachopo +26793,12,25880,19,capt o +26793,12,25880,19,carcass0nn3 +26793,12,25880,19,caseylee82 +26793,12,25880,19,caseymac +26793,12,25880,19,cc397 +26793,12,25880,19,cebelar123 +26793,12,25880,19,chaswick +26793,12,25880,19,chrisdoob +26793,12,25880,19,chrissn +26793,12,25880,19,chronosone +26793,12,25880,19,ciffy +26793,12,25880,19,coinchantal +26793,12,25880,19,coltodd +26793,12,25880,19,corsairs +26793,12,25880,19,cpttoast +26793,12,25880,19,crazy98caleb +26793,12,25880,19,cresterling +26793,12,25880,19,crom74 +26793,12,25880,19,cwebb +26793,12,25880,19,cyne +26793,12,25880,19,daijoubu +26793,12,25880,19,dajuna +26793,12,25880,19,dakodamotor +26793,12,25880,19,dalkuldar +26793,12,25880,19,dampe2001 +26793,12,25880,19,danaboss +26793,12,25880,19,daniel199423 +26793,12,25880,19,dannybland +26793,12,25880,19,dascal502 +26793,12,25880,19,deletereo2004 +26793,12,25880,19,delkins42 +26793,12,25880,19,deltaranger509 +26793,12,25880,19,der gwiedo +26793,12,25880,19,dhosborne +26793,12,25880,19,dnobel +26793,12,25880,19,doc83 +26793,12,25880,19,dockhorn +26793,12,25880,19,doncoy +26793,12,25880,19,dorf_ork +26793,12,25880,19,dorward +26793,12,25880,19,drbrowndog +26793,12,25880,19,drekoverlord +26793,12,25880,19,duinhir +26793,12,25880,19,dune_dx +26793,12,25880,19,dupre762 +26793,12,25880,19,duxis +26793,12,25880,19,dzorro +26793,12,25880,19,edddddd +26793,12,25880,19,edduard +26793,12,25880,19,edjanes +26793,12,25880,19,ehero55 +26793,12,25880,19,ele_14 +26793,12,25880,19,elkoenio +26793,12,25880,19,embryant26 +26793,12,25880,19,emetzler87 +26793,12,25880,19,emil2006 +26793,12,25880,19,ensh +26793,12,25880,19,eowlembre +26793,12,25880,19,epikure +26793,12,25880,19,ericmhurlbut +26793,12,25880,19,eskeys +26793,12,25880,19,eve_ +26793,12,25880,19,eviltofu +26793,12,25880,19,ezrapound +26793,12,25880,19,fantasmamore +26793,12,25880,19,fkollmer03 +26793,12,25880,19,fnh1 +26793,12,25880,19,frothykat +26793,12,25880,19,fuzzypickles +26793,12,25880,19,gamemachin +26793,12,25880,19,garrow6 +26793,12,25880,19,garth22 +26793,12,25880,19,gatesphere +26793,12,25880,19,gehrhorn +26793,12,25880,19,geobig +26793,12,25880,19,ghostrepeater +26793,12,25880,19,gianluca24 +26793,12,25880,19,gloomyfox +26793,12,25880,19,glstark +26793,12,25880,19,gmuller +26793,12,25880,19,gntt +26793,12,25880,19,goneaway7 +26793,12,25880,19,gorgoneion +26793,12,25880,19,grignard +26793,12,25880,19,gruntowny +26793,12,25880,19,gthanatos +26793,12,25880,19,guyzen +26793,12,25880,19,hades +26793,12,25880,19,hdnag +26793,12,25880,19,headless_ned +26793,12,25880,19,hesmybuddy +26793,12,25880,19,highfiveryan +26793,12,25880,19,hobbyzombie +26793,12,25880,19,hombrepollo +26793,12,25880,19,hopelisabeth +26793,12,25880,19,huberm +26793,12,25880,19,hybrid92 +26793,12,25880,19,i-sack +26793,12,25880,19,ian_07720169619 +26793,12,25880,19,il_falco +26793,12,25880,19,irbis_78 +26793,12,25880,19,irritanterik +26793,12,25880,19,isoul +26793,12,25880,19,isrart +26793,12,25880,19,itsfox +26793,12,25880,19,jameswoodward +26793,12,25880,19,jaminbingham +26793,12,25880,19,jaqwilli +26793,12,25880,19,jbat999 +26793,12,25880,19,jeff schulte +26793,12,25880,19,jeffs24 +26793,12,25880,19,jillys +26793,12,25880,19,jinksey +26793,12,25880,19,jjhasbro +26793,12,25880,19,jledbetter +26793,12,25880,19,jmdessert +26793,12,25880,19,joanam +26793,12,25880,19,jockasss +26793,12,25880,19,joefew15 +26793,12,25880,19,johndelatorre +26793,12,25880,19,johnflick +26793,12,25880,19,johnnytam +26793,12,25880,19,josecrack +26793,12,25880,19,joshua_r_smith +26793,12,25880,19,jpnichols9 +26793,12,25880,19,jpseymour2 +26793,12,25880,19,jrh2 +26793,12,25880,19,jud70 +26793,12,25880,19,julesvh +26793,12,25880,19,justgamin +26793,12,25880,19,karumo +26793,12,25880,19,kayteem +26793,12,25880,19,kennybee26 +26793,12,25880,19,kerry2020 +26793,12,25880,19,kiatt +26793,12,25880,19,kidaf +26793,12,25880,19,kilerazn +26793,12,25880,19,killsforspork +26793,12,25880,19,kinperro +26793,12,25880,19,knatebaker +26793,12,25880,19,knurpsel +26793,12,25880,19,korchovsky +26793,12,25880,19,kosfiz +26793,12,25880,19,kpyam2000 +26793,12,25880,19,kush7 +26793,12,25880,19,kuzniar +26793,12,25880,19,kyang321 +26793,12,25880,19,langschnabel +26793,12,25880,19,lattelassi +26793,12,25880,19,lauravic24 +26793,12,25880,19,lemurk0 +26793,12,25880,19,lifeisjustagame +26793,12,25880,19,limorider133 +26793,12,25880,19,lolkittenz +26793,12,25880,19,lord alce +26793,12,25880,19,lordvorpal +26793,12,25880,19,lorrico +26793,12,25880,19,love10283 +26793,12,25880,19,lovelysupport +26793,12,25880,19,ltgoose +26793,12,25880,19,ludowy +26793,12,25880,19,luigicool +26793,12,25880,19,m710woody +26793,12,25880,19,majuskel +26793,12,25880,19,malkomann +26793,12,25880,19,man or astroman +26793,12,25880,19,marhault81 +26793,12,25880,19,markenninny +26793,12,25880,19,marknichols +26793,12,25880,19,markvuorela +26793,12,25880,19,martens10 +26793,12,25880,19,mativni +26793,12,25880,19,matt c smith +26793,12,25880,19,matt316 +26793,12,25880,19,mav485 +26793,12,25880,19,mbrick +26793,12,25880,19,melric +26793,12,25880,19,mentlee +26793,12,25880,19,mequillego +26793,12,25880,19,mfazio23 +26793,12,25880,19,mg_mg +26793,12,25880,19,mils2012 +26793,12,25880,19,misanguyen +26793,12,25880,19,moadib73rus +26793,12,25880,19,mocherill +26793,12,25880,19,monok +26793,12,25880,19,monokarsec +26793,12,25880,19,motdf +26793,12,25880,19,mouskyfiest +26793,12,25880,19,mr_children +26793,12,25880,19,mrdw +26793,12,25880,19,msmilos +26793,12,25880,19,mudmaniac +26793,12,25880,19,mukaz +26793,12,25880,19,murderschnuff +26793,12,25880,19,mvines +26793,12,25880,19,mwarmb +26793,12,25880,19,narbob +26793,12,25880,19,necroshey +26793,12,25880,19,nhlln +26793,12,25880,19,nickelangelo +26793,12,25880,19,nickpierlot +26793,12,25880,19,nicosagr +26793,12,25880,19,nigelreg +26793,12,25880,19,nightflower +26793,12,25880,19,nitromob +26793,12,25880,19,nkokoulin +26793,12,25880,19,ntenney +26793,12,25880,19,nurius +26793,12,25880,19,obnubil8 +26793,12,25880,19,oliverjest +26793,12,25880,19,olliu88 +26793,12,25880,19,pacobananas69 +26793,12,25880,19,pascmue +26793,12,25880,19,penguinsarehere +26793,12,25880,19,perennialsorc +26793,12,25880,19,pescime +26793,12,25880,19,petrified +26793,12,25880,19,phelanpt +26793,12,25880,19,phillycheese101 +26793,12,25880,19,philorl24 +26793,12,25880,19,pibe1976 +26793,12,25880,19,piratfisk +26793,12,25880,19,pixeltramp +26793,12,25880,19,planetsteam +26793,12,25880,19,playingmonkey +26793,12,25880,19,playswithfriends +26793,12,25880,19,pmforlifes +26793,12,25880,19,pnopoes +26793,12,25880,19,power_purple +26793,12,25880,19,prikolics +26793,12,25880,19,prizzle27 +26793,12,25880,19,proferigo +26793,12,25880,19,progben +26793,12,25880,19,pumilla +26793,12,25880,19,purplishsocks +26793,12,25880,19,pustul +26793,12,25880,19,qphilli +26793,12,25880,19,quasipedia +26793,12,25880,19,raenman +26793,12,25880,19,ramir elez +26793,12,25880,19,rasvaken +26793,12,25880,19,ravenstein +26793,12,25880,19,reapersfault +26793,12,25880,19,redders108 +26793,12,25880,19,redwinterfu +26793,12,25880,19,reiro +26793,12,25880,19,religious.weapon +26793,12,25880,19,rgalonso +26793,12,25880,19,ringo_stalin +26793,12,25880,19,risingdragonbr +26793,12,25880,19,roastedmnm +26793,12,25880,19,robertino +26793,12,25880,19,rocha +26793,12,25880,19,ronhatch +26793,12,25880,19,rstewartusmc +26793,12,25880,19,rushnyc +26793,12,25880,19,rustysquash +26793,12,25880,19,sacri +26793,12,25880,19,sael +26793,12,25880,19,sallydoodle +26793,12,25880,19,sammiantha +26793,12,25880,19,samwise_7107 +26793,12,25880,19,sanderson0034 +26793,12,25880,19,sansar +26793,12,25880,19,sarnusss +26793,12,25880,19,sataniel +26793,12,25880,19,satanzzz +26793,12,25880,19,saty +26793,12,25880,19,senatus1980 +26793,12,25880,19,sens12 +26793,12,25880,19,sevenbartenders +26793,12,25880,19,sgpigeon +26793,12,25880,19,shajazat +26793,12,25880,19,sharki12297 +26793,12,25880,19,sherigon +26793,12,25880,19,shizophrenic +26793,12,25880,19,shockway +26793,12,25880,19,shugyosha +26793,12,25880,19,sidandsedge +26793,12,25880,19,simondesjardins +26793,12,25880,19,skyes +26793,12,25880,19,skytwo +26793,12,25880,19,slingink +26793,12,25880,19,snakeeyesnc +26793,12,25880,19,snowbunny25 +26793,12,25880,19,social_squirrel +26793,12,25880,19,sodapop69 +26793,12,25880,19,solarscream +26793,12,25880,19,sonicwarhol +26793,12,25880,19,spacecase90 +26793,12,25880,19,sparetire +26793,12,25880,19,sparkydvl +26793,12,25880,19,spiderminer +26793,12,25880,19,spleen +26793,12,25880,19,sportsuchti +26793,12,25880,19,stalkerb +26793,12,25880,19,stef van woensel +26793,12,25880,19,stephen glenn +26793,12,25880,19,sternkaempfer +26793,12,25880,19,stotic +26793,12,25880,19,sunmachine +26793,12,25880,19,swilson862010 +26793,12,25880,19,t3chn1nja +26793,12,25880,19,talske +26793,12,25880,19,teamski +26793,12,25880,19,tfoxx829 +26793,12,25880,19,the parable +26793,12,25880,19,the4thjawa +26793,12,25880,19,thearmax +26793,12,25880,19,thecaptainrsa +26793,12,25880,19,thedaen +26793,12,25880,19,theerdink +26793,12,25880,19,thefrenchwoman +26793,12,25880,19,thejerm20 +26793,12,25880,19,thelkaar +26793,12,25880,19,theshadow99 +26793,12,25880,19,thorngage_de +26793,12,25880,19,thseeku +26793,12,25880,19,tiagodeividy +26793,12,25880,19,tianman +26793,12,25880,19,timmahh +26793,12,25880,19,tinaapje +26793,12,25880,19,tinzistinz +26793,12,25880,19,tmoatt +26793,12,25880,19,tobi +26793,12,25880,19,tomaszluch +26793,12,25880,19,tomyrgon +26793,12,25880,19,toosavagem8 +26793,12,25880,19,treecol9 +26793,12,25880,19,trevinogonzalvo +26793,12,25880,19,tsiroth +26793,12,25880,19,tuuba7 +26793,12,25880,19,tweedlledee +26793,12,25880,19,twilight geek +26793,12,25880,19,tyglysiak +26793,12,25880,19,tykov +26793,12,25880,19,tza94 +26793,12,25880,19,uberdemnebelmeer +26793,12,25880,19,uratha +26793,12,25880,19,uzumaki +26793,12,25880,19,valthalion +26793,12,25880,19,vargo_hoat248 +26793,12,25880,19,verandi +26793,12,25880,19,vialick +26793,12,25880,19,volmay +26793,12,25880,19,wildgurl400 +26793,12,25880,19,wojo19 +26793,12,25880,19,xenocist +26793,12,25880,19,yelmelnobrainer +26793,12,25880,19,zaprobot +26793,12,25880,19,zerothi +26793,12,25880,19,zeteroverde +26793,12,25880,19,zhikan +26793,12,25880,19,zippo wintermoon +26793,12,25880,19,zzyzewitsch +26793,12,28174,18,3obz +26793,12,28174,18,4characters +26793,12,28174,18,9zero21zero +26793,12,28174,18,_randi_ +26793,12,28174,18,aaronph +26793,12,28174,18,aberronko +26793,12,28174,18,abrmvch +26793,12,28174,18,adammurgs +26793,12,28174,18,adomescik +26793,12,28174,18,advanceop +26793,12,28174,18,aerokid07 +26793,12,28174,18,ag0n1st +26793,12,28174,18,akinga +26793,12,28174,18,akumageek +26793,12,28174,18,alaskaspi +26793,12,28174,18,alextheaxe +26793,12,28174,18,amarken +26793,12,28174,18,ameron +26793,12,28174,18,andersonhall +26793,12,28174,18,andrewwillis77 +26793,12,28174,18,andy.rice@att.net +26793,12,28174,18,andyjohnsonuk +26793,12,28174,18,angell +26793,12,28174,18,angeloftrue +26793,12,28174,18,antypirx +26793,12,28174,18,apollyon248 +26793,12,28174,18,aprilkind +26793,12,28174,18,aragorndeux +26793,12,28174,18,ariustel +26793,12,28174,18,arkhus +26793,12,28174,18,armin101 +26793,12,28174,18,artideart +26793,12,28174,18,aruwen +26793,12,28174,18,ashram_bk +26793,12,28174,18,ashtroboy +26793,12,28174,18,astrangerhere +26793,12,28174,18,aswton +26793,12,28174,18,atdbp1 +26793,12,28174,18,aurely1310 +26793,12,28174,18,avaia +26793,12,28174,18,ax0r +26793,12,28174,18,ayrphish +26793,12,28174,18,balawen1 +26793,12,28174,18,barossa gamehub +26793,12,28174,18,barubo +26793,12,28174,18,basejester +26793,12,28174,18,bastian81 +26793,12,28174,18,baylobo +26793,12,28174,18,bbalkenhol +26793,12,28174,18,bebishop1592 +26793,12,28174,18,beisaic +26793,12,28174,18,belgianboardgamer +26793,12,28174,18,benjebobs +26793,12,28174,18,bigadam +26793,12,28174,18,bigben1003 +26793,12,28174,18,bishopkace +26793,12,28174,18,blackdog18965 +26793,12,28174,18,blaire619 +26793,12,28174,18,bleisse +26793,12,28174,18,blindsun +26793,12,28174,18,blueharlequin +26793,12,28174,18,boardgameralcoy +26793,12,28174,18,boards of games +26793,12,28174,18,bogyookloon +26793,12,28174,18,bostaffninja +26793,12,28174,18,bradcone +26793,12,28174,18,brizio +26793,12,28174,18,brokkenheim +26793,12,28174,18,brydeemer +26793,12,28174,18,bskeillor +26793,12,28174,18,bsobol1 +26793,12,28174,18,buckeyeminime +26793,12,28174,18,budgetface +26793,12,28174,18,builin +26793,12,28174,18,bunge +26793,12,28174,18,bytor153 +26793,12,28174,18,cantimfelos +26793,12,28174,18,captaincheetah +26793,12,28174,18,captainhammer +26793,12,28174,18,cardboardseawitch +26793,12,28174,18,carkara +26793,12,28174,18,cbrown +26793,12,28174,18,cedwa38 +26793,12,28174,18,cerator +26793,12,28174,18,cesnek74 +26793,12,28174,18,cgrau55 +26793,12,28174,18,chandlerb22 +26793,12,28174,18,chaosjenkins +26793,12,28174,18,chewrole54 +26793,12,28174,18,chexwarrior +26793,12,28174,18,chibirok +26793,12,28174,18,chindent +26793,12,28174,18,chk_bg +26793,12,28174,18,chrisml +26793,12,28174,18,chrox +26793,12,28174,18,cichecki +26793,12,28174,18,clagus +26793,12,28174,18,clark4bucks +26793,12,28174,18,clarkegames +26793,12,28174,18,claumoe +26793,12,28174,18,clintgh +26793,12,28174,18,clube +26793,12,28174,18,cobicles +26793,12,28174,18,colourofglee +26793,12,28174,18,colt_tiz +26793,12,28174,18,comat0se +26793,12,28174,18,commander wu +26793,12,28174,18,coonace +26793,12,28174,18,coopstrom +26793,12,28174,18,countstex +26793,12,28174,18,craigbrown81 +26793,12,28174,18,crankypants12 +26793,12,28174,18,cyberbob666 +26793,12,28174,18,danky +26793,12,28174,18,dannefrank +26793,12,28174,18,dantesparda +26793,12,28174,18,danuer13 +26793,12,28174,18,darkthur +26793,12,28174,18,darthik +26793,12,28174,18,das_artefakt +26793,12,28174,18,dave25 +26793,12,28174,18,davidqs +26793,12,28174,18,daw8id +26793,12,28174,18,dawnrazor248 +26793,12,28174,18,dbjepperson +26793,12,28174,18,dbkungfu +26793,12,28174,18,ddpettin +26793,12,28174,18,debwentworth +26793,12,28174,18,def_os +26793,12,28174,18,der_schoenspieler +26793,12,28174,18,dettel +26793,12,28174,18,dieuzdonne +26793,12,28174,18,dillsauce +26793,12,28174,18,ditography +26793,12,28174,18,djcassar +26793,12,28174,18,djott70 +26793,12,28174,18,djthree6t +26793,12,28174,18,dmyers30 +26793,12,28174,18,dockstreet9 +26793,12,28174,18,dojcze +26793,12,28174,18,domdilegge +26793,12,28174,18,donaldsackfalte +26793,12,28174,18,donovani +26793,12,28174,18,doylemvp +26793,12,28174,18,dr_caligari +26793,12,28174,18,dragiaron +26793,12,28174,18,dragonsbreathefire +26793,12,28174,18,drake pendragon +26793,12,28174,18,draphsor +26793,12,28174,18,dreamloomer +26793,12,28174,18,dreamsincolor721 +26793,12,28174,18,drewstees +26793,12,28174,18,drfrige +26793,12,28174,18,drnaturalist +26793,12,28174,18,droxkon +26793,12,28174,18,drpowers4 +26793,12,28174,18,dtbn +26793,12,28174,18,dwsparks +26793,12,28174,18,dynkyn +26793,12,28174,18,eckato +26793,12,28174,18,eddiepbauer +26793,12,28174,18,edwardthehuman +26793,12,28174,18,einari +26793,12,28174,18,elitefiete +26793,12,28174,18,enoni +26793,12,28174,18,eredhel aratar +26793,12,28174,18,eridis +26793,12,28174,18,errand boy +26793,12,28174,18,es_zeige_2018 +26793,12,28174,18,esquire468 +26793,12,28174,18,fabericus +26793,12,28174,18,fabioflx +26793,12,28174,18,falcolombardi +26793,12,28174,18,fatum +26793,12,28174,18,feminist_perspektive +26793,12,28174,18,ffsjake +26793,12,28174,18,firearchitect +26793,12,28174,18,flaring_nostrils +26793,12,28174,18,flcbarbosa +26793,12,28174,18,flo3 +26793,12,28174,18,flowtron +26793,12,28174,18,forlauster +26793,12,28174,18,fourer +26793,12,28174,18,frailtobias +26793,12,28174,18,franco60 +26793,12,28174,18,frevvo +26793,12,28174,18,friedenspanzer +26793,12,28174,18,funkdonut +26793,12,28174,18,fz92338 +26793,12,28174,18,game_thrifter1 +26793,12,28174,18,gamergus +26793,12,28174,18,garycourt +26793,12,28174,18,gc_s9k +26793,12,28174,18,gerjan +26793,12,28174,18,gertat aka red dwarf +26793,12,28174,18,gianteel +26793,12,28174,18,gigaboard +26793,12,28174,18,gingiwi +26793,12,28174,18,glixthecowboy +26793,12,28174,18,goodman +26793,12,28174,18,gopozgon +26793,12,28174,18,gorklu +26793,12,28174,18,gornova +26793,12,28174,18,graphsman +26793,12,28174,18,greggalen +26793,12,28174,18,grumblesa10 +26793,12,28174,18,gspindola +26793,12,28174,18,guiannos +26793,12,28174,18,guido8i05 +26793,12,28174,18,guynexdoor +26793,12,28174,18,hadesrofl +26793,12,28174,18,harlekin89 +26793,12,28174,18,harmatcsepp +26793,12,28174,18,harti +26793,12,28174,18,hartsukka +26793,12,28174,18,hearprof +26793,12,28174,18,hedgehogkyiv +26793,12,28174,18,hellcustard +26793,12,28174,18,henk_eecloo +26793,12,28174,18,hervuli +26793,12,28174,18,hijacker +26793,12,28174,18,holger_spielt +26793,12,28174,18,hooded_paladin +26793,12,28174,18,hooeypooey +26793,12,28174,18,horst_bruceby +26793,12,28174,18,hunt32 +26793,12,28174,18,hunter crawford +26793,12,28174,18,icehawk1 +26793,12,28174,18,ifikrate +26793,12,28174,18,imcoolhigh5 +26793,12,28174,18,imperialscum +26793,12,28174,18,infernalmeow +26793,12,28174,18,irkinmax +26793,12,28174,18,isaacdotcom +26793,12,28174,18,isilehtyar +26793,12,28174,18,iveson2 +26793,12,28174,18,iyamu +26793,12,28174,18,j bird +26793,12,28174,18,jaaronson +26793,12,28174,18,jabol +26793,12,28174,18,jace beleren +26793,12,28174,18,jacjil +26793,12,28174,18,janetfap +26793,12,28174,18,jase 69 +26793,12,28174,18,jaxin +26793,12,28174,18,jaydeblue +26793,12,28174,18,jayer47 +26793,12,28174,18,jazontan +26793,12,28174,18,jbh1 +26793,12,28174,18,jdpries +26793,12,28174,18,jeromeap +26793,12,28174,18,jhashton +26793,12,28174,18,jiiri1 +26793,12,28174,18,jimbnyc +26793,12,28174,18,jkustra314 +26793,12,28174,18,jmchargue +26793,12,28174,18,joetomkins +26793,12,28174,18,johan100 +26793,12,28174,18,johda86 +26793,12,28174,18,john21gr +26793,12,28174,18,john39greece +26793,12,28174,18,johnjon +26793,12,28174,18,johnnyd +26793,12,28174,18,jolo75 +26793,12,28174,18,jondigman +26793,12,28174,18,josh u +26793,12,28174,18,jparev36 +26793,12,28174,18,jpnerd +26793,12,28174,18,juanb25 +26793,12,28174,18,juanmolla +26793,12,28174,18,jubii2 +26793,12,28174,18,justincredible +26793,12,28174,18,jute +26793,12,28174,18,jvolker +26793,12,28174,18,jwd123 +26793,12,28174,18,kaboda +26793,12,28174,18,kacsazsir +26793,12,28174,18,kadus +26793,12,28174,18,kaisu +26793,12,28174,18,kakatrosko +26793,12,28174,18,karinajovega +26793,12,28174,18,karl_ +26793,12,28174,18,kartoffelsosze +26793,12,28174,18,katilinas200 +26793,12,28174,18,kaxtus +26793,12,28174,18,kellrell +26793,12,28174,18,kenmonster +26793,12,28174,18,kevacoustic +26793,12,28174,18,kevolution +26793,12,28174,18,kingante +26793,12,28174,18,kingarthur1976 +26793,12,28174,18,kingcooldaddy1 +26793,12,28174,18,kingsburglar +26793,12,28174,18,kinmal +26793,12,28174,18,kipkillagin +26793,12,28174,18,klaatu +26793,12,28174,18,knoblesavage +26793,12,28174,18,kofoten +26793,12,28174,18,konata +26793,12,28174,18,koomorisan +26793,12,28174,18,korad +26793,12,28174,18,kortneebo +26793,12,28174,18,kottonballz +26793,12,28174,18,krautkopf +26793,12,28174,18,krazzzyb +26793,12,28174,18,kurokuma +26793,12,28174,18,labbe +26793,12,28174,18,laliwoman83 +26793,12,28174,18,lambda8su +26793,12,28174,18,larbos +26793,12,28174,18,laufrakan +26793,12,28174,18,laug +26793,12,28174,18,laurenksh +26793,12,28174,18,laxnbakpakr +26793,12,28174,18,lazybum965 +26793,12,28174,18,lbowen +26793,12,28174,18,lemmylive +26793,12,28174,18,lemsv +26793,12,28174,18,lennygbg +26793,12,28174,18,leviray01 +26793,12,28174,18,ligerpotumus +26793,12,28174,18,linio +26793,12,28174,18,ljbarbeau +26793,12,28174,18,lokides +26793,12,28174,18,lonecom +26793,12,28174,18,loscemo +26793,12,28174,18,luisestepa +26793,12,28174,18,lukky1334323 +26793,12,28174,18,m00shpit +26793,12,28174,18,madsperm +26793,12,28174,18,maggiejp +26793,12,28174,18,malidran +26793,12,28174,18,malkier75 +26793,12,28174,18,manmademeeples +26793,12,28174,18,mannyjaguar +26793,12,28174,18,manonfire4jc +26793,12,28174,18,mantid +26793,12,28174,18,manutgon +26793,12,28174,18,marael +26793,12,28174,18,marchanddeboeufs +26793,12,28174,18,marinaaguilop +26793,12,28174,18,marky +26793,12,28174,18,martina_d +26793,12,28174,18,masque +26793,12,28174,18,mat13pb +26793,12,28174,18,mattchurchill2 +26793,12,28174,18,mattgood777 +26793,12,28174,18,maunyves +26793,12,28174,18,mauroc8 +26793,12,28174,18,mdowden +26793,12,28174,18,meeplemouse +26793,12,28174,18,mekhi88 +26793,12,28174,18,mercedesmilabbg +26793,12,28174,18,metsuri99 +26793,12,28174,18,mhalowel +26793,12,28174,18,mickeywhy +26793,12,28174,18,miguelo +26793,12,28174,18,mike_da +26793,12,28174,18,mindenite +26793,12,28174,18,mintymouse +26793,12,28174,18,missellesmoosh +26793,12,28174,18,misterc +26793,12,28174,18,mistermikeintexas +26793,12,28174,18,mithrandirhunter +26793,12,28174,18,moochy +26793,12,28174,18,mpatoka +26793,12,28174,18,mpnaish +26793,12,28174,18,mrgilder +26793,12,28174,18,mrnateflix +26793,12,28174,18,muffinman24 +26793,12,28174,18,mvelazquezm +26793,12,28174,18,nepu +26793,12,28174,18,nikolaivp +26793,12,28174,18,ningyo +26793,12,28174,18,nonprofitgnome +26793,12,28174,18,notsaransh +26793,12,28174,18,nrekuski +26793,12,28174,18,nvega730 +26793,12,28174,18,o midas +26793,12,28174,18,ohms +26793,12,28174,18,ongkybeta +26793,12,28174,18,ozis +26793,12,28174,18,p090 +26793,12,28174,18,packrat84 +26793,12,28174,18,pampasz +26793,12,28174,18,patrel +26793,12,28174,18,patricia79 +26793,12,28174,18,paublanch +26793,12,28174,18,paultypething +26793,12,28174,18,pbas88 +26793,12,28174,18,pedrolonel +26793,12,28174,18,peekay235 +26793,12,28174,18,perrytom +26793,12,28174,18,peterl +26793,12,28174,18,peterpanzer +26793,12,28174,18,pfe1ff +26793,12,28174,18,phattone +26793,12,28174,18,photogasm +26793,12,28174,18,piganek +26793,12,28174,18,piposi +26793,12,28174,18,piratedwarf +26793,12,28174,18,pivi +26793,12,28174,18,polaristin +26793,12,28174,18,ponge +26793,12,28174,18,poulos_tim +26793,12,28174,18,punnuendo +26793,12,28174,18,quixote171 +26793,12,28174,18,rafa_mariussi +26793,12,28174,18,rafaysandra +26793,12,28174,18,rafazavala93 +26793,12,28174,18,raider89 +26793,12,28174,18,raleb +26793,12,28174,18,rallytoad +26793,12,28174,18,rathmax +26793,12,28174,18,raynbovv +26793,12,28174,18,razumny +26793,12,28174,18,reddragonspysteve +26793,12,28174,18,redjak7 +26793,12,28174,18,rhisthel +26793,12,28174,18,rhumsaa +26793,12,28174,18,richardwinskill +26793,12,28174,18,rlfoster +26793,12,28174,18,rocklobster +26793,12,28174,18,rockymountainnavy +26793,12,28174,18,rpautzke +26793,12,28174,18,rpcbass +26793,12,28174,18,rrw4 +26793,12,28174,18,rtubbs +26793,12,28174,18,ruslan_bondartsov +26793,12,28174,18,rutgerskev +26793,12,28174,18,rvervuurt +26793,12,28174,18,ryancarrier +26793,12,28174,18,ryanlindstrom +26793,12,28174,18,rydonith +26793,12,28174,18,ryu19820831 +26793,12,28174,18,sabbath_ +26793,12,28174,18,sabuk +26793,12,28174,18,saei +26793,12,28174,18,sakus +26793,12,28174,18,salta5000 +26793,12,28174,18,sameagleusa +26793,12,28174,18,samson1982 +26793,12,28174,18,sandman2017 +26793,12,28174,18,scarchadula +26793,12,28174,18,schlitz2604 +26793,12,28174,18,schlobi +26793,12,28174,18,schmousbies +26793,12,28174,18,schneeemensch +26793,12,28174,18,scorium +26793,12,28174,18,seahawk8 +26793,12,28174,18,seizethegames +26793,12,28174,18,sergiorib9 +26793,12,28174,18,shadoward +26793,12,28174,18,shagoosty +26793,12,28174,18,shanahan +26793,12,28174,18,shawnmarx +26793,12,28174,18,shootster +26793,12,28174,18,shutenno +26793,12,28174,18,sidantho +26793,12,28174,18,sideburnskeel +26793,12,28174,18,siemian +26793,12,28174,18,silarkhar +26793,12,28174,18,silkjeep +26793,12,28174,18,sillyphus +26793,12,28174,18,silviac +26793,12,28174,18,sinemike +26793,12,28174,18,singingsimon +26793,12,28174,18,sinutam +26793,12,28174,18,skinnymcbob +26793,12,28174,18,skyggejaegeren +26793,12,28174,18,slagbeast +26793,12,28174,18,slugboy +26793,12,28174,18,smeef +26793,12,28174,18,snaporaz +26793,12,28174,18,sneakyh +26793,12,28174,18,softamber +26793,12,28174,18,sone +26793,12,28174,18,sorentheborn +26793,12,28174,18,sparklecloud +26793,12,28174,18,spatel20 +26793,12,28174,18,spazzmarticus +26793,12,28174,18,specialxtr +26793,12,28174,18,spikedone +26793,12,28174,18,spoiler +26793,12,28174,18,sproutchu +26793,12,28174,18,sqb1978 +26793,12,28174,18,sra_celeste +26793,12,28174,18,ssgames +26793,12,28174,18,starcluster +26793,12,28174,18,staypoof +26793,12,28174,18,stefvrom +26793,12,28174,18,stephenjones101 +26793,12,28174,18,stephie16343 +26793,12,28174,18,sterlingdwatts +26793,12,28174,18,stripey1 +26793,12,28174,18,stuntpiloot112 +26793,12,28174,18,stygi +26793,12,28174,18,summonher +26793,12,28174,18,swornabsent +26793,12,28174,18,t100ch +26793,12,28174,18,tadpoleface +26793,12,28174,18,tamweikong +26793,12,28174,18,tandeta +26793,12,28174,18,tayree +26793,12,28174,18,tenpence +26793,12,28174,18,thearkhammonk +26793,12,28174,18,thedingeratemybaby +26793,12,28174,18,thefukas +26793,12,28174,18,thegr8mirror +26793,12,28174,18,thegreentea7 +26793,12,28174,18,themarsou +26793,12,28174,18,theoriginalnihilist +26793,12,28174,18,theryanstorm +26793,12,28174,18,theterror987 +26793,12,28174,18,thetrevorbunce +26793,12,28174,18,thewatermelonman +26793,12,28174,18,thilian +26793,12,28174,18,thotho +26793,12,28174,18,tigerwalms +26793,12,28174,18,tinytowel +26793,12,28174,18,tisto +26793,12,28174,18,tivcr3773 +26793,12,28174,18,tk42177 +26793,12,28174,18,tmeistad +26793,12,28174,18,tmkszwn +26793,12,28174,18,tobiasberg +26793,12,28174,18,tobold +26793,12,28174,18,todreikhan +26793,12,28174,18,tomrap2021 +26793,12,28174,18,tonipepe4 +26793,12,28174,18,toothpickk +26793,12,28174,18,tophu +26793,12,28174,18,totalrath +26793,12,28174,18,tpayneswag +26793,12,28174,18,trench +26793,12,28174,18,trix1976 +26793,12,28174,18,tuatarian +26793,12,28174,18,tuballama +26793,12,28174,18,turbomesh +26793,12,28174,18,tygermom +26793,12,28174,18,tyrone_jones +26793,12,28174,18,uajz +26793,12,28174,18,uglendertog +26793,12,28174,18,uhrigb01 +26793,12,28174,18,uiek +26793,12,28174,18,ulrichsw +26793,12,28174,18,ulrichvonbek +26793,12,28174,18,uncletanoose +26793,12,28174,18,unoo +26793,12,28174,18,unreal_ed +26793,12,28174,18,useoncendestroy +26793,12,28174,18,utensilofthemonth +26793,12,28174,18,uwep +26793,12,28174,18,valenkoff +26793,12,28174,18,vchantw +26793,12,28174,18,vedas +26793,12,28174,18,verdynius +26793,12,28174,18,victrovador +26793,12,28174,18,vinnyshowdown +26793,12,28174,18,violetvengeance +26793,12,28174,18,viperboy0612 +26793,12,28174,18,vitamant +26793,12,28174,18,volcanoborn +26793,12,28174,18,vospire +26793,12,28174,18,vultureru +26793,12,28174,18,vzen +26793,12,28174,18,wachend +26793,12,28174,18,wacken +26793,12,28174,18,wanyoshi +26793,12,28174,18,wasara +26793,12,28174,18,waterzero +26793,12,28174,18,wendelius +26793,12,28174,18,wevewacko +26793,12,28174,18,wil_low +26793,12,28174,18,wingedman +26793,12,28174,18,withoutpc +26793,12,28174,18,wojtazpl +26793,12,28174,18,worfylon +26793,12,28174,18,wrany72 +26793,12,28174,18,wubby01 +26793,12,28174,18,x533kd35tr0y +26793,12,28174,18,xavante +26793,12,28174,18,xerlot +26793,12,28174,18,yannsteens +26793,12,28174,18,yath +26793,12,28174,18,yonashek +26793,12,28174,18,yubm +26793,12,28174,18,yue_sayuri +26793,12,28174,18,zahadum +26793,12,28174,18,zakarfin +26793,12,28174,18,zath +26793,12,28174,18,zensai66 +26793,12,28174,18,zephaus +26793,12,28174,18,zerbia88 +26793,12,28174,18,zettlejam +26793,12,28174,18,zhucoh +26793,12,28174,18,zoomiewoop +26793,12,28174,18,zuimin +26793,12,28174,18,zz4m +26793,12,30791,17,a_esbech +26793,12,30791,17,abdul +26793,12,30791,17,adesireg +26793,12,30791,17,adiamant +26793,12,30791,17,aelephante +26793,12,30791,17,aezae +26793,12,30791,17,afex +26793,12,30791,17,agiganticpanda +26793,12,30791,17,agnytushkis +26793,12,30791,17,agropyron +26793,12,30791,17,ahchong +26793,12,30791,17,ahzzz +26793,12,30791,17,airbag660 +26793,12,30791,17,akmalfikri +26793,12,30791,17,akrsmile41 +26793,12,30791,17,albengus +26793,12,30791,17,albinscott +26793,12,30791,17,alexburnsred +26793,12,30791,17,alexgui2001 +26793,12,30791,17,alexrhynos +26793,12,30791,17,alexsegs +26793,12,30791,17,alextasha +26793,12,30791,17,ali16590 +26793,12,30791,17,alphapsyka +26793,12,30791,17,amazonwitchdoctor +26793,12,30791,17,andyappleb +26793,12,30791,17,andyl +26793,12,30791,17,anhipa +26793,12,30791,17,annabelseaton +26793,12,30791,17,annestine +26793,12,30791,17,antek00 +26793,12,30791,17,ardarico +26793,12,30791,17,arenite +26793,12,30791,17,arigat +26793,12,30791,17,armikael +26793,12,30791,17,artemis501 +26793,12,30791,17,aspergillus +26793,12,30791,17,averageboardgamer +26793,12,30791,17,avipraiz +26793,12,30791,17,awong1214 +26793,12,30791,17,azureflame +26793,12,30791,17,b_rychu +26793,12,30791,17,baalsaggoth +26793,12,30791,17,babylonsean +26793,12,30791,17,bachismyhero +26793,12,30791,17,badrenali +26793,12,30791,17,bajlon +26793,12,30791,17,banjofunk +26793,12,30791,17,bartolbe +26793,12,30791,17,baumer_cg +26793,12,30791,17,baussant +26793,12,30791,17,bbaixauli +26793,12,30791,17,bcourt +26793,12,30791,17,beauchapeau +26793,12,30791,17,beelyte +26793,12,30791,17,belbabietola +26793,12,30791,17,belgje +26793,12,30791,17,benjamesmc +26793,12,30791,17,bethj +26793,12,30791,17,betrog +26793,12,30791,17,bigfifty +26793,12,30791,17,bigred0ne +26793,12,30791,17,billy_tk +26793,12,30791,17,bisazo +26793,12,30791,17,bizzio +26793,12,30791,17,bizzmane +26793,12,30791,17,blatts +26793,12,30791,17,bloodhyena +26793,12,30791,17,bmack083 +26793,12,30791,17,boardgamedel +26793,12,30791,17,boardgameegge +26793,12,30791,17,boardgamemathmaniac +26793,12,30791,17,boardingtime +26793,12,30791,17,bodam2005 +26793,12,30791,17,boller +26793,12,30791,17,boneshaker +26793,12,30791,17,borisk +26793,12,30791,17,bouibzy +26793,12,30791,17,bowhunter3691 +26793,12,30791,17,bozarthprime +26793,12,30791,17,bpresty +26793,12,30791,17,bred121 +26793,12,30791,17,breli +26793,12,30791,17,brett_und_spiel +26793,12,30791,17,brij +26793,12,30791,17,brunochenko +26793,12,30791,17,bsc1975 +26793,12,30791,17,bullphrogg +26793,12,30791,17,buraz +26793,12,30791,17,byslyo +26793,12,30791,17,callsignthumper +26793,12,30791,17,camdude1 +26793,12,30791,17,cangamer +26793,12,30791,17,capoeirista +26793,12,30791,17,cardiner +26793,12,30791,17,carlitoskowalczyk +26793,12,30791,17,cattani +26793,12,30791,17,cekufrombeyond +26793,12,30791,17,cflames89 +26793,12,30791,17,ches13r +26793,12,30791,17,chezo +26793,12,30791,17,chickbowdrie +26793,12,30791,17,chiefwiggum94 +26793,12,30791,17,chocoworm +26793,12,30791,17,chrisibanez +26793,12,30791,17,chumpsy +26793,12,30791,17,chunb +26793,12,30791,17,ciabattino +26793,12,30791,17,cmo8 +26793,12,30791,17,cmpearson10 +26793,12,30791,17,coastercinder +26793,12,30791,17,cobruins +26793,12,30791,17,coilla_wav +26793,12,30791,17,colinmoncur +26793,12,30791,17,conesus_kid +26793,12,30791,17,consolewa +26793,12,30791,17,coolins +26793,12,30791,17,cooniegirl +26793,12,30791,17,cor22bas +26793,12,30791,17,courtviolation +26793,12,30791,17,cphpitts +26793,12,30791,17,crackktheskyy75 +26793,12,30791,17,craigturner87 +26793,12,30791,17,crazianhax +26793,12,30791,17,crazyfrotto +26793,12,30791,17,cryyo +26793,12,30791,17,csectionsamurai +26793,12,30791,17,cspasini +26793,12,30791,17,ctrzn +26793,12,30791,17,cyril2012 +26793,12,30791,17,czech +26793,12,30791,17,dakerr +26793,12,30791,17,danagonia +26793,12,30791,17,danielusko +26793,12,30791,17,danomite23 +26793,12,30791,17,dante3000 +26793,12,30791,17,darbyc +26793,12,30791,17,darioinvader +26793,12,30791,17,darryllundy +26793,12,30791,17,daviddoughty83 +26793,12,30791,17,davidmaster +26793,12,30791,17,dawnieramone +26793,12,30791,17,dbibicoff +26793,12,30791,17,ddonoso +26793,12,30791,17,deadeyedshooter8 +26793,12,30791,17,deanhejl +26793,12,30791,17,defendog +26793,12,30791,17,deltonbrack +26793,12,30791,17,denlerien +26793,12,30791,17,deonkritzinger +26793,12,30791,17,detrax +26793,12,30791,17,dgregh +26793,12,30791,17,dicekitten +26793,12,30791,17,dicew3rwolf +26793,12,30791,17,didrikjonassen +26793,12,30791,17,diegaccio +26793,12,30791,17,dierenh +26793,12,30791,17,digitalman +26793,12,30791,17,dimi ba +26793,12,30791,17,domokus +26793,12,30791,17,done111 +26793,12,30791,17,donotadjust +26793,12,30791,17,doomdahdoomdoom +26793,12,30791,17,doon11 +26793,12,30791,17,dragon21 +26793,12,30791,17,drakenvlieg +26793,12,30791,17,dreaminsong +26793,12,30791,17,drgnlrd +26793,12,30791,17,druid4k +26793,12,30791,17,dsimmonds +26793,12,30791,17,dustviper82 +26793,12,30791,17,dzaborek +26793,12,30791,17,eaglelen +26793,12,30791,17,ears22 +26793,12,30791,17,ebaymama +26793,12,30791,17,eccobold +26793,12,30791,17,ed_the_red +26793,12,30791,17,edag +26793,12,30791,17,edderf +26793,12,30791,17,edgar gallego +26793,12,30791,17,edwalter +26793,12,30791,17,eilsybear +26793,12,30791,17,ejnro +26793,12,30791,17,el_piszczu +26793,12,30791,17,elegant_chaos +26793,12,30791,17,elem3ntary +26793,12,30791,17,eltigre +26793,12,30791,17,embargo +26793,12,30791,17,emsik7 +26793,12,30791,17,ente80 +26793,12,30791,17,erunestian +26793,12,30791,17,escemendaa +26793,12,30791,17,escipion14 +26793,12,30791,17,esedwards +26793,12,30791,17,esoember +26793,12,30791,17,estheon +26793,12,30791,17,everravensky +26793,12,30791,17,ezepiojoso +26793,12,30791,17,fabrykapowidel +26793,12,30791,17,fakel666 +26793,12,30791,17,falloutts +26793,12,30791,17,fayemin +26793,12,30791,17,felipe_icekz +26793,12,30791,17,ferlink +26793,12,30791,17,fetuma +26793,12,30791,17,firestod +26793,12,30791,17,fizol +26793,12,30791,17,flabber23 +26793,12,30791,17,flankus +26793,12,30791,17,flash001 +26793,12,30791,17,flatwave +26793,12,30791,17,florian ernst +26793,12,30791,17,floxyz +26793,12,30791,17,fluffypanda +26793,12,30791,17,fluxaugur +26793,12,30791,17,fnitz1983 +26793,12,30791,17,footprint +26793,12,30791,17,foruiz +26793,12,30791,17,fotland89 +26793,12,30791,17,fragpuss +26793,12,30791,17,freightrain12 +26793,12,30791,17,frejik +26793,12,30791,17,frodom04 +26793,12,30791,17,froschy +26793,12,30791,17,frostypenguinz +26793,12,30791,17,frumpish +26793,12,30791,17,frutee +26793,12,30791,17,funky disco +26793,12,30791,17,gabelbart +26793,12,30791,17,gabranth +26793,12,30791,17,gabrielgeek +26793,12,30791,17,gala_apple +26793,12,30791,17,gamermitch +26793,12,30791,17,gamesinblue +26793,12,30791,17,geboom +26793,12,30791,17,geekhype +26793,12,30791,17,geekymlee +26793,12,30791,17,george87 +26793,12,30791,17,georgemichael42 +26793,12,30791,17,gillette +26793,12,30791,17,gkzhang01 +26793,12,30791,17,glychee +26793,12,30791,17,gnzlh +26793,12,30791,17,gobeg +26793,12,30791,17,gonlin +26793,12,30791,17,gpad +26793,12,30791,17,graff48 +26793,12,30791,17,grafus +26793,12,30791,17,gray_matter_3 +26793,12,30791,17,greatpopcorn +26793,12,30791,17,grgoljblaster +26793,12,30791,17,griffaith +26793,12,30791,17,grimlin +26793,12,30791,17,grithog +26793,12,30791,17,growlingwarrior +26793,12,30791,17,gsmith463 +26793,12,30791,17,gtaops +26793,12,30791,17,gtisot +26793,12,30791,17,guadalmedina +26793,12,30791,17,hadrian_haldol +26793,12,30791,17,haettehaette +26793,12,30791,17,halbarad1a +26793,12,30791,17,han_heinrich +26793,12,30791,17,hans 0lo +26793,12,30791,17,happypooya +26793,12,30791,17,harbard +26793,12,30791,17,harry2caray +26793,12,30791,17,hatchling +26793,12,30791,17,heidemoose +26793,12,30791,17,hellboy71 +26793,12,30791,17,hemelgamer +26793,12,30791,17,henryalbertin +26793,12,30791,17,hesporos +26793,12,30791,17,heurmistic +26793,12,30791,17,hmenning +26793,12,30791,17,hmspeer +26793,12,30791,17,hotstepper777 +26793,12,30791,17,hoyng2 +26793,12,30791,17,hummingbirdmagic +26793,12,30791,17,huskerfan +26793,12,30791,17,i_love_stasis +26793,12,30791,17,iam_emperor +26793,12,30791,17,iandimitri +26793,12,30791,17,iheskide +26793,12,30791,17,imonhigh +26793,12,30791,17,imvero +26793,12,30791,17,inexorable74 +26793,12,30791,17,infinitejester00 +26793,12,30791,17,interestingtimesgang +26793,12,30791,17,intune156 +26793,12,30791,17,inv2k +26793,12,30791,17,isugamer210 +26793,12,30791,17,jakobcreutzfeldt +26793,12,30791,17,jammons +26793,12,30791,17,jan10294 +26793,12,30791,17,javier505mx +26793,12,30791,17,jay36k +26793,12,30791,17,jaytee1984 +26793,12,30791,17,jclark41 +26793,12,30791,17,jeanlau +26793,12,30791,17,jefo +26793,12,30791,17,jelloburn +26793,12,30791,17,jemagu +26793,12,30791,17,jetbrown80 +26793,12,30791,17,jfranklin48 +26793,12,30791,17,jhall +26793,12,30791,17,jlkcz +26793,12,30791,17,jmcconville014 +26793,12,30791,17,jmoss91 +26793,12,30791,17,joccalor +26793,12,30791,17,jockeyrez +26793,12,30791,17,joe_kickass +26793,12,30791,17,joelangdale7 +26793,12,30791,17,joelares +26793,12,30791,17,johanng +26793,12,30791,17,johnen +26793,12,30791,17,johner +26793,12,30791,17,johnmottram +26793,12,30791,17,johnnydotd +26793,12,30791,17,johnward76 +26793,12,30791,17,jos803 +26793,12,30791,17,josebarc +26793,12,30791,17,joshuao3 +26793,12,30791,17,jrsparky89 +26793,12,30791,17,jsaunders67 +26793,12,30791,17,juanmcg +26793,12,30791,17,juanmodestodiaz +26793,12,30791,17,jugar_por_jugar +26793,12,30791,17,jumanji_81 +26793,12,30791,17,juscent +26793,12,30791,17,just_testing +26793,12,30791,17,jwiseman +26793,12,30791,17,jwred5 +26793,12,30791,17,jwspiker +26793,12,30791,17,jzeleny570 +26793,12,30791,17,kalii +26793,12,30791,17,karadum +26793,12,30791,17,karloth valois +26793,12,30791,17,kathenwally +26793,12,30791,17,kawikaatc +26793,12,30791,17,kb_jbird +26793,12,30791,17,kcorn +26793,12,30791,17,keeemon +26793,12,30791,17,kelmerave +26793,12,30791,17,kelvbrown +26793,12,30791,17,kemoarps +26793,12,30791,17,kendovich +26793,12,30791,17,kenfeldman +26793,12,30791,17,kentster82 +26793,12,30791,17,kenvelo1105 +26793,12,30791,17,kesipyc +26793,12,30791,17,kespace_games +26793,12,30791,17,kezmorgan +26793,12,30791,17,kgreene2343 +26793,12,30791,17,khaali +26793,12,30791,17,killer_ap +26793,12,30791,17,kmd2000 +26793,12,30791,17,kmercer8 +26793,12,30791,17,knallerbse +26793,12,30791,17,kodemaniak +26793,12,30791,17,krzyyyy +26793,12,30791,17,ksedg +26793,12,30791,17,kubalaa +26793,12,30791,17,kubalelek +26793,12,30791,17,kwitschibo +26793,12,30791,17,lancifer0814 +26793,12,30791,17,langwidere +26793,12,30791,17,leander1987 +26793,12,30791,17,leandroanjos +26793,12,30791,17,leanie +26793,12,30791,17,lebzx +26793,12,30791,17,lechiffre187 +26793,12,30791,17,leppry_khan +26793,12,30791,17,levimote +26793,12,30791,17,librarian05 +26793,12,30791,17,locogriego +26793,12,30791,17,locrazy +26793,12,30791,17,lordezael +26793,12,30791,17,lorovingg +26793,12,30791,17,lostnfound +26793,12,30791,17,lstpuamh +26793,12,30791,17,luclid +26793,12,30791,17,luismarcoslc +26793,12,30791,17,lukeolson100 +26793,12,30791,17,luleas +26793,12,30791,17,macfonte +26793,12,30791,17,macspari +26793,12,30791,17,madspyron +26793,12,30791,17,magnoguido +26793,12,30791,17,magus manders +26793,12,30791,17,majkl9102 +26793,12,30791,17,malevolentpanda +26793,12,30791,17,malkhyr +26793,12,30791,17,maluman +26793,12,30791,17,mangoman87 +26793,12,30791,17,manic_pangolin +26793,12,30791,17,manueme +26793,12,30791,17,marcusnatus +26793,12,30791,17,marianacpais +26793,12,30791,17,mariasibera +26793,12,30791,17,marlonmichaels +26793,12,30791,17,masacuna +26793,12,30791,17,masterfozual +26793,12,30791,17,mathnut5 +26793,12,30791,17,mats77 +26793,12,30791,17,matthewb360 +26793,12,30791,17,mattsnowboard +26793,12,30791,17,mazingeredu +26793,12,30791,17,mcguidl +26793,12,30791,17,mckngbrd +26793,12,30791,17,mcwilk123 +26793,12,30791,17,me6kius +26793,12,30791,17,meggytastisch +26793,12,30791,17,mellamoger +26793,12,30791,17,memchipuser79 +26793,12,30791,17,meralith +26793,12,30791,17,metal_ignaz +26793,12,30791,17,mfsfreak +26793,12,30791,17,mia_lucas +26793,12,30791,17,mightyxmoose +26793,12,30791,17,mikee_c +26793,12,30791,17,mikegre +26793,12,30791,17,miso +26793,12,30791,17,missy517 +26793,12,30791,17,mjballar +26793,12,30791,17,mkhleung +26793,12,30791,17,mlmarine +26793,12,30791,17,mn gopher +26793,12,30791,17,mnbuckmaniac +26793,12,30791,17,mobbelbobbel +26793,12,30791,17,mofman +26793,12,30791,17,moghiloveschips +26793,12,30791,17,moldie +26793,12,30791,17,monstergoo +26793,12,30791,17,monty1979 +26793,12,30791,17,moomoo98 +26793,12,30791,17,moujamou +26793,12,30791,17,moxanthia +26793,12,30791,17,mrcrunchwrap +26793,12,30791,17,mrcuke +26793,12,30791,17,mreqo +26793,12,30791,17,mrselkies +26793,12,30791,17,mrsmcd85 +26793,12,30791,17,msubjenkins +26793,12,30791,17,muewo +26793,12,30791,17,murcielago +26793,12,30791,17,muzzledbear +26793,12,30791,17,mwwilson +26793,12,30791,17,mycroft22 +26793,12,30791,17,mystah softi +26793,12,30791,17,myth3r +26793,12,30791,17,nabroman +26793,12,30791,17,nala88 +26793,12,30791,17,nappeto +26793,12,30791,17,narolenko +26793,12,30791,17,nbignall007 +26793,12,30791,17,ndsquirrel +26793,12,30791,17,nearx +26793,12,30791,17,neckbeard +26793,12,30791,17,neoricar +26793,12,30791,17,nepenthe +26793,12,30791,17,nestig2010 +26793,12,30791,17,neuzel +26793,12,30791,17,nickdanger42 +26793,12,30791,17,nicotaz +26793,12,30791,17,ninjajubei74 +26793,12,30791,17,nirizr +26793,12,30791,17,nldack +26793,12,30791,17,noerden_dk +26793,12,30791,17,nolanliang +26793,12,30791,17,noppagames +26793,12,30791,17,nordicobr +26793,12,30791,17,nuwandabob +26793,12,30791,17,odinsfury +26793,12,30791,17,odros +26793,12,30791,17,ohofmann +26793,12,30791,17,oixio +26793,12,30791,17,oldman20 +26793,12,30791,17,ole_wankenobi +26793,12,30791,17,olezhooon +26793,12,30791,17,olmestig +26793,12,30791,17,orphenrx +26793,12,30791,17,over +26793,12,30791,17,owenwill21 +26793,12,30791,17,owlstrike +26793,12,30791,17,ozymandias91 +26793,12,30791,17,ozz_bgg +26793,12,30791,17,pagoda79 +26793,12,30791,17,papes +26793,12,30791,17,parabellum76 +26793,12,30791,17,pathfinder_hc +26793,12,30791,17,patlin +26793,12,30791,17,paulrjr +26793,12,30791,17,paulstreet +26793,12,30791,17,payne +26793,12,30791,17,percyf +26793,12,30791,17,phatbats +26793,12,30791,17,phiddyscent +26793,12,30791,17,phoenix9c +26793,12,30791,17,photomummy +26793,12,30791,17,pit_b +26793,12,30791,17,plan507 +26793,12,30791,17,plutten30 +26793,12,30791,17,pod121121 +26793,12,30791,17,popsicola +26793,12,30791,17,posty333 +26793,12,30791,17,precu +26793,12,30791,17,pressstartua +26793,12,30791,17,prinsesther +26793,12,30791,17,profesor oak +26793,12,30791,17,provolone_wolf +26793,12,30791,17,proyoyo +26793,12,30791,17,pukumeister +26793,12,30791,17,purplestuart +26793,12,30791,17,qcoeck +26793,12,30791,17,quantum_physics +26793,12,30791,17,quietinchaos +26793,12,30791,17,quint00 +26793,12,30791,17,rakuso +26793,12,30791,17,ranko +26793,12,30791,17,razul +26793,12,30791,17,rbandgames +26793,12,30791,17,redbrick_malone +26793,12,30791,17,reidunial +26793,12,30791,17,rev1k +26793,12,30791,17,revenian +26793,12,30791,17,rhass +26793,12,30791,17,ricalox1 +26793,12,30791,17,richwhoispoor +26793,12,30791,17,rieckmania +26793,12,30791,17,roary11oreo +26793,12,30791,17,rob rn +26793,12,30791,17,roblaw +26793,12,30791,17,rododendro +26793,12,30791,17,rodrigofb +26793,12,30791,17,romanivanchenko +26793,12,30791,17,roundy +26793,12,30791,17,rtigger +26793,12,30791,17,rtrind +26793,12,30791,17,rufusfrog +26793,12,30791,17,rusa +26793,12,30791,17,rwilliam +26793,12,30791,17,ryananavales +26793,12,30791,17,ryanbarry1984 +26793,12,30791,17,rzaboid +26793,12,30791,17,saginse morigal +26793,12,30791,17,sakesage +26793,12,30791,17,salcascer +26793,12,30791,17,saltje +26793,12,30791,17,sambernaerdt +26793,12,30791,17,sami23 +26793,12,30791,17,samuel62 +26793,12,30791,17,saturatedpig +26793,12,30791,17,schmu75 +26793,12,30791,17,scitomniares +26793,12,30791,17,seany4 +26793,12,30791,17,shades_smiley +26793,12,30791,17,shake808 +26793,12,30791,17,shamrock1969 +26793,12,30791,17,shanpeng +26793,12,30791,17,shendie +26793,12,30791,17,shouit +26793,12,30791,17,sickb0t +26793,12,30791,17,sido +26793,12,30791,17,silas traitor +26793,12,30791,17,silugie +26793,12,30791,17,silverbowen +26793,12,30791,17,simoncorne +26793,12,30791,17,siremil +26793,12,30791,17,slavicon +26793,12,30791,17,snellius +26793,12,30791,17,soluslupus +26793,12,30791,17,sopel +26793,12,30791,17,sopota +26793,12,30791,17,soulburn +26793,12,30791,17,soultaker +26793,12,30791,17,soundplay11 +26793,12,30791,17,sox36 +26793,12,30791,17,spartacus21 +26793,12,30791,17,spellenreporter +26793,12,30791,17,speter22 +26793,12,30791,17,spiff17 +26793,12,30791,17,spikemike01 +26793,12,30791,17,spirith +26793,12,30791,17,spookypeanut +26793,12,30791,17,squared82 +26793,12,30791,17,stalkie +26793,12,30791,17,starlord716 +26793,12,30791,17,stealthgoblin +26793,12,30791,17,steve cartwright +26793,12,30791,17,steventm +26793,12,30791,17,straddllw +26793,12,30791,17,strivinglife +26793,12,30791,17,sudukob +26793,12,30791,17,sunneh +26793,12,30791,17,superveganscott +26793,12,30791,17,surfeit +26793,12,30791,17,svengthor +26793,12,30791,17,svyatoslav_ostapyuk +26793,12,30791,17,szawel +26793,12,30791,17,tabicat +26793,12,30791,17,talismods +26793,12,30791,17,tamandua +26793,12,30791,17,tanuxabel +26793,12,30791,17,targess +26793,12,30791,17,tasurinchi +26793,12,30791,17,tayloc +26793,12,30791,17,tealsummernights +26793,12,30791,17,teetofu +26793,12,30791,17,tequila +26793,12,30791,17,terribletitles +26793,12,30791,17,thawey +26793,12,30791,17,the_justifier +26793,12,30791,17,thebluepawn +26793,12,30791,17,theimp17 +26793,12,30791,17,thejellydude +26793,12,30791,17,themagicbeatle +26793,12,30791,17,thisal +26793,12,30791,17,thnjy +26793,12,30791,17,throknor +26793,12,30791,17,tigresska +26793,12,30791,17,timboli +26793,12,30791,17,timjo71 +26793,12,30791,17,tmacfarlane26 +26793,12,30791,17,tmcclanahan +26793,12,30791,17,tokume +26793,12,30791,17,tomfish +26793,12,30791,17,tommytrudel +26793,12,30791,17,tonixz +26793,12,30791,17,tony_sticks +26793,12,30791,17,topsy76 +26793,12,30791,17,toren +26793,12,30791,17,torless +26793,12,30791,17,tpedrosa +26793,12,30791,17,treebeardtheent +26793,12,30791,17,tsjillphill +26793,12,30791,17,tudwell +26793,12,30791,17,tuguk +26793,12,30791,17,tungufoss +26793,12,30791,17,twister +26793,12,30791,17,twohu2001 +26793,12,30791,17,twrchtrwyth +26793,12,30791,17,txintxe +26793,12,30791,17,tyrusjs +26793,12,30791,17,ufloridagatorsf +26793,12,30791,17,ugafan +26793,12,30791,17,uienchip +26793,12,30791,17,umfpt +26793,12,30791,17,unrepeteable +26793,12,30791,17,urin +26793,12,30791,17,user50210 +26793,12,30791,17,ustes +26793,12,30791,17,valkyre +26793,12,30791,17,vasis +26793,12,30791,17,vaski +26793,12,30791,17,veedevice +26793,12,30791,17,vetrthehallowed +26793,12,30791,17,vexation +26793,12,30791,17,victoryzine +26793,12,30791,17,vinegar strokes +26793,12,30791,17,viny +26793,12,30791,17,viqles +26793,12,30791,17,vitamin +26793,12,30791,17,volnay +26793,12,30791,17,wadep00l +26793,12,30791,17,ward +26793,12,30791,17,webdanzer +26793,12,30791,17,westernkwm +26793,12,30791,17,whatever831 +26793,12,30791,17,winedarksea +26793,12,30791,17,wingshq +26793,12,30791,17,wired84 +26793,12,30791,17,wldctpete +26793,12,30791,17,wobay +26793,12,30791,17,wolf1307 +26793,12,30791,17,wolf_red +26793,12,30791,17,woxoya +26793,12,30791,17,wulfgarlokihaarme +26793,12,30791,17,xaviclank +26793,12,30791,17,xylemphloem +26793,12,30791,17,yadboh +26793,12,30791,17,yadneb +26793,12,30791,17,yaenz +26793,12,30791,17,yairm28 +26793,12,30791,17,yatokuma +26793,12,30791,17,yolaria +26793,12,30791,17,yost +26793,12,30791,17,zacpat +26793,12,30791,17,zaggus +26793,12,30791,17,zebani200 +26793,12,30791,17,zeeaykay +26793,12,30791,17,zelbinian +26793,12,30791,17,zharrazad +26793,12,30791,17,zipperback +26793,12,30791,17,zkirc4477 +26793,12,30791,17,zorigal +26793,12,30791,17,zoron +26793,12,30791,17,zurazal +26793,12,33518,16,3pod +26793,12,33518,16,aaronsnippe +26793,12,33518,16,aartdouglass +26793,12,33518,16,adamtuck +26793,12,33518,16,adbojarski +26793,12,33518,16,adonismarine +26793,12,33518,16,aeszett +26793,12,33518,16,afmaga +26793,12,33518,16,agasia +26793,12,33518,16,ahlund +26793,12,33518,16,ajdustuck +26793,12,33518,16,alaythia +26793,12,33518,16,albieback +26793,12,33518,16,alexdun +26793,12,33518,16,alla_214 +26793,12,33518,16,alladjex +26793,12,33518,16,alveq +26793,12,33518,16,ambersilk +26793,12,33518,16,amirabutwo +26793,12,33518,16,amoveritas +26793,12,33518,16,amselem +26793,12,33518,16,andregde +26793,12,33518,16,andrew thorn +26793,12,33518,16,andrewherm +26793,12,33518,16,andrewmeyers95 +26793,12,33518,16,andrewp46 +26793,12,33518,16,angra +26793,12,33518,16,aniascor +26793,12,33518,16,anoptichtys +26793,12,33518,16,aotstosil +26793,12,33518,16,applezaider +26793,12,33518,16,araleu +26793,12,33518,16,aramd +26793,12,33518,16,arashii +26793,12,33518,16,arcticfurnace +26793,12,33518,16,arendalspillklubb +26793,12,33518,16,arkira78 +26793,12,33518,16,arsby +26793,12,33518,16,art8969 +26793,12,33518,16,artur10000 +26793,12,33518,16,ashortega +26793,12,33518,16,atomicnate +26793,12,33518,16,autolyze +26793,12,33518,16,avedis +26793,12,33518,16,avisian +26793,12,33518,16,avonpohle +26793,12,33518,16,awkrewen +26793,12,33518,16,aznheidrun +26793,12,33518,16,badseed1 +26793,12,33518,16,baucis67 +26793,12,33518,16,bcceverard +26793,12,33518,16,beaver21 +26793,12,33518,16,benist +26793,12,33518,16,bensch7 +26793,12,33518,16,bernh +26793,12,33518,16,bheath1105 +26793,12,33518,16,bigdak +26793,12,33518,16,bigjay44121 +26793,12,33518,16,billy_magnus +26793,12,33518,16,blackrider81 +26793,12,33518,16,blakwngbrd +26793,12,33518,16,blergmcflergberg +26793,12,33518,16,blue_flash +26793,12,33518,16,bluesheep +26793,12,33518,16,bobekistan +26793,12,33518,16,bodom4ever +26793,12,33518,16,boheamoth +26793,12,33518,16,boito72 +26793,12,33518,16,boni72 +26793,12,33518,16,boombofboomb +26793,12,33518,16,bqw52o +26793,12,33518,16,branhammer +26793,12,33518,16,brentjorg +26793,12,33518,16,brianc198 +26793,12,33518,16,britomarte +26793,12,33518,16,brittlestars +26793,12,33518,16,brokenfang +26793,12,33518,16,broommaker +26793,12,33518,16,btom92 +26793,12,33518,16,bubblefuzz +26793,12,33518,16,burkemaster +26793,12,33518,16,buttzilla +26793,12,33518,16,byaptitude +26793,12,33518,16,bzagdahiara +26793,12,33518,16,cailun +26793,12,33518,16,camiyiya +26793,12,33518,16,campel085 +26793,12,33518,16,campfire113 +26793,12,33518,16,camsavage +26793,12,33518,16,captain cid +26793,12,33518,16,caritas99 +26793,12,33518,16,carmencita77 +26793,12,33518,16,cassius202 +26793,12,33518,16,catamountgal777 +26793,12,33518,16,catbug +26793,12,33518,16,cd49d +26793,12,33518,16,chavasi +26793,12,33518,16,checkmyduende +26793,12,33518,16,cheetahwings +26793,12,33518,16,chefgrigg +26793,12,33518,16,chenofchains +26793,12,33518,16,chespirit +26793,12,33518,16,chewie456 +26793,12,33518,16,chrisbarthol +26793,12,33518,16,chriswtham +26793,12,33518,16,chubbard +26793,12,33518,16,circlecitygamer +26793,12,33518,16,clarry92 +26793,12,33518,16,clevinger520 +26793,12,33518,16,coasterb +26793,12,33518,16,colorum +26793,12,33518,16,coltainemn +26793,12,33518,16,complexlifeform +26793,12,33518,16,condeadv +26793,12,33518,16,contrl +26793,12,33518,16,cortiz +26793,12,33518,16,craving +26793,12,33518,16,criminyjimjims +26793,12,33518,16,cstranger +26793,12,33518,16,cucamel +26793,12,33518,16,cybertrigger +26793,12,33518,16,cyclops213 +26793,12,33518,16,d_darkness +26793,12,33518,16,daclouser +26793,12,33518,16,daddy_haggart +26793,12,33518,16,daemian1981 +26793,12,33518,16,daevion +26793,12,33518,16,dag00n +26793,12,33518,16,dagobertenes +26793,12,33518,16,dalar +26793,12,33518,16,daleddor +26793,12,33518,16,dannie27 +26793,12,33518,16,dannyboyyy +26793,12,33518,16,darkruffy +26793,12,33518,16,darth_cauthon +26793,12,33518,16,darthvdogg +26793,12,33518,16,davidhorwell +26793,12,33518,16,dawgpound37x +26793,12,33518,16,ddvdude +26793,12,33518,16,decemberbabe +26793,12,33518,16,dedgarp +26793,12,33518,16,deebunny +26793,12,33518,16,deefer +26793,12,33518,16,degaber +26793,12,33518,16,dehelle87 +26793,12,33518,16,dejmag +26793,12,33518,16,demaree2 +26793,12,33518,16,demonspawn +26793,12,33518,16,denikid +26793,12,33518,16,denyo256 +26793,12,33518,16,derekrledr +26793,12,33518,16,dersattler +26793,12,33518,16,desertfox2004 +26793,12,33518,16,desteban +26793,12,33518,16,dewaldjohann +26793,12,33518,16,dikks +26793,12,33518,16,dinofbattle2 +26793,12,33518,16,discipulosdearmitage +26793,12,33518,16,dj lesley +26793,12,33518,16,dmitry_pdv +26793,12,33518,16,dojhar +26793,12,33518,16,donatello23 +26793,12,33518,16,dot238 +26793,12,33518,16,draghetto +26793,12,33518,16,dragonjuggler +26793,12,33518,16,drakonio +26793,12,33518,16,drazen__ +26793,12,33518,16,drazmor +26793,12,33518,16,drewcake +26793,12,33518,16,drewhauge +26793,12,33518,16,driesdokter +26793,12,33518,16,drogers66 +26793,12,33518,16,drteeth +26793,12,33518,16,drunkdwarves +26793,12,33518,16,drwalterbishop +26793,12,33518,16,durielj +26793,12,33518,16,dwhy +26793,12,33518,16,dylarson +26793,12,33518,16,eggpie +26793,12,33518,16,egmondo +26793,12,33518,16,eheon +26793,12,33518,16,ekerilar +26793,12,33518,16,el pato +26793,12,33518,16,el rahvin +26793,12,33518,16,el_maldito_pit +26793,12,33518,16,elitz_mamba +26793,12,33518,16,ellyssian +26793,12,33518,16,elsy +26793,12,33518,16,elvenslurpee +26793,12,33518,16,elwenion +26793,12,33518,16,emojoe +26793,12,33518,16,enderghoulpickman +26793,12,33518,16,enigma0t2 +26793,12,33518,16,erikcianci +26793,12,33518,16,esyak +26793,12,33518,16,evajanssen +26793,12,33518,16,evangellion +26793,12,33518,16,evenpoint +26793,12,33518,16,evergreen800 +26793,12,33518,16,ezren +26793,12,33518,16,felipedias +26793,12,33518,16,feyd414 +26793,12,33518,16,fhfan731 +26793,12,33518,16,fijigus +26793,12,33518,16,filipemep +26793,12,33518,16,filmsail +26793,12,33518,16,fiparoso +26793,12,33518,16,flexicon +26793,12,33518,16,floro_ +26793,12,33518,16,floydski +26793,12,33518,16,flyd3cker +26793,12,33518,16,fokx +26793,12,33518,16,foozle +26793,12,33518,16,forensicgamer +26793,12,33518,16,fossiljester +26793,12,33518,16,fragfritz +26793,12,33518,16,frahar1966 +26793,12,33518,16,frecklesarelovely +26793,12,33518,16,frenk +26793,12,33518,16,friarsven +26793,12,33518,16,frischkaese02 +26793,12,33518,16,frunzi +26793,12,33518,16,fuelle +26793,12,33518,16,fungry +26793,12,33518,16,fushiba +26793,12,33518,16,futancy +26793,12,33518,16,futzboy +26793,12,33518,16,fuzzbuzz30 +26793,12,33518,16,fzolka +26793,12,33518,16,gabigames +26793,12,33518,16,gameangel +26793,12,33518,16,gamelover85 +26793,12,33518,16,gargon +26793,12,33518,16,gbookman +26793,12,33518,16,gearu +26793,12,33518,16,geekchacha +26793,12,33518,16,gekopl +26793,12,33518,16,gelain +26793,12,33518,16,generalwotan +26793,12,33518,16,gforce2k5 +26793,12,33518,16,ghosie_threrl +26793,12,33518,16,gidorah +26793,12,33518,16,gildanor +26793,12,33518,16,gizensha +26793,12,33518,16,gkartorlee +26793,12,33518,16,gladiusgrimm +26793,12,33518,16,glamrox +26793,12,33518,16,globalferdy +26793,12,33518,16,gmjonas +26793,12,33518,16,gnaeusmorosus +26793,12,33518,16,gobbeg +26793,12,33518,16,goblindelosdados +26793,12,33518,16,gogenator_mojo +26793,12,33518,16,gohrns +26793,12,33518,16,gophercoder +26793,12,33518,16,gorgo65 +26793,12,33518,16,gorrz +26793,12,33518,16,gothemon +26793,12,33518,16,grey_wolf +26793,12,33518,16,grimacepch +26793,12,33518,16,grizzoli +26793,12,33518,16,grumbaki +26793,12,33518,16,guidoxclusive +26793,12,33518,16,guillaumetls +26793,12,33518,16,gunhaver +26793,12,33518,16,guthgalli +26793,12,33518,16,guurn +26793,12,33518,16,guygeorgeromero +26793,12,33518,16,h4msterbacke +26793,12,33518,16,haan86 +26793,12,33518,16,habibthecodemonkey +26793,12,33518,16,halfgreek +26793,12,33518,16,hamburg20359 +26793,12,33518,16,happy_shooter +26793,12,33518,16,hathawcs +26793,12,33518,16,hayalet +26793,12,33518,16,hcchooomp +26793,12,33518,16,hermannn96 +26793,12,33518,16,herzog73 +26793,12,33518,16,hironimus +26793,12,33518,16,hisst ka +26793,12,33518,16,histari +26793,12,33518,16,hsandn +26793,12,33518,16,hugo111 +26793,12,33518,16,hypnoticspecter +26793,12,33518,16,hywc +26793,12,33518,16,iachesis +26793,12,33518,16,iamspamus +26793,12,33518,16,iamtheoneyouknowbest +26793,12,33518,16,icabodra +26793,12,33518,16,icecubey1971 +26793,12,33518,16,icedrakin +26793,12,33518,16,icemanceuta +26793,12,33518,16,id10tsavant +26793,12,33518,16,ifreebairn +26793,12,33518,16,igael +26793,12,33518,16,iisakki +26793,12,33518,16,imadlo64 +26793,12,33518,16,imaximi +26793,12,33518,16,inrainbows81 +26793,12,33518,16,inthebleakmidwinter +26793,12,33518,16,ioring +26793,12,33518,16,isiruld +26793,12,33518,16,ismakc +26793,12,33518,16,itharow +26793,12,33518,16,iwantaduck +26793,12,33518,16,jabxjab +26793,12,33518,16,jackdupp313 +26793,12,33518,16,jadz +26793,12,33518,16,jannadrina +26793,12,33518,16,jasberfloob +26793,12,33518,16,javipacheco +26793,12,33518,16,jaybeethree +26793,12,33518,16,jaydoc26 +26793,12,33518,16,jayr1978 +26793,12,33518,16,jbrady +26793,12,33518,16,jeegoodbeer +26793,12,33518,16,jeffaudio +26793,12,33518,16,jellologin +26793,12,33518,16,jescor +26793,12,33518,16,jetjaquar +26793,12,33518,16,jilko +26793,12,33518,16,jinatti +26793,12,33518,16,jintro +26793,12,33518,16,jkvano +26793,12,33518,16,jlillie3 +26793,12,33518,16,joanna_ +26793,12,33518,16,joaolmuniz +26793,12,33518,16,joeybuckets +26793,12,33518,16,jofner +26793,12,33518,16,john_of_the_fountain +26793,12,33518,16,jon72_89 +26793,12,33518,16,jonathanmau +26793,12,33518,16,jonathasp +26793,12,33518,16,jonny18 +26793,12,33518,16,joober +26793,12,33518,16,jorgeaol +26793,12,33518,16,jorgevr +26793,12,33518,16,joschuh +26793,12,33518,16,jotun92 +26793,12,33518,16,jpreston +26793,12,33518,16,jsmccauley +26793,12,33518,16,jtbball +26793,12,33518,16,juanito3ich +26793,12,33518,16,juices5 +26793,12,33518,16,julian_3021 +26793,12,33518,16,julie22d +26793,12,33518,16,jullevi +26793,12,33518,16,jumping_squirrel +26793,12,33518,16,juzars +26793,12,33518,16,jvb7878 +26793,12,33518,16,jwcleveland +26793,12,33518,16,kara730 +26793,12,33518,16,kckijana +26793,12,33518,16,ke1den +26793,12,33518,16,kenzie316 +26793,12,33518,16,keoki98 +26793,12,33518,16,khadorcaptain +26793,12,33518,16,ki0n +26793,12,33518,16,king ape +26793,12,33518,16,kingad +26793,12,33518,16,kirilllytkin +26793,12,33518,16,kit208 +26793,12,33518,16,kitty1974 +26793,12,33518,16,kittypurry +26793,12,33518,16,kjao +26793,12,33518,16,knappet88 +26793,12,33518,16,kochkin93 +26793,12,33518,16,korte +26793,12,33518,16,kprickett +26793,12,33518,16,kristoff +26793,12,33518,16,krunn arkenston +26793,12,33518,16,kunter +26793,12,33518,16,kwanchai +26793,12,33518,16,kzrkk +26793,12,33518,16,l0ki67 +26793,12,33518,16,lawflax +26793,12,33518,16,ledage +26793,12,33518,16,leeramos11 +26793,12,33518,16,lefty writer +26793,12,33518,16,legendkiller77 +26793,12,33518,16,lein_ +26793,12,33518,16,leonardo innocenti +26793,12,33518,16,letartean +26793,12,33518,16,lexington123 +26793,12,33518,16,lhellebusch +26793,12,33518,16,lincolnhoppe +26793,12,33518,16,lindasarke07 +26793,12,33518,16,longshoremanx +26793,12,33518,16,lucasnetlink +26793,12,33518,16,macnme +26793,12,33518,16,maiacetus +26793,12,33518,16,majhavok +26793,12,33518,16,maka +26793,12,33518,16,maleev +26793,12,33518,16,mamaski143 +26793,12,33518,16,mangu13 +26793,12,33518,16,manuelef +26793,12,33518,16,maquiavelo17 +26793,12,33518,16,mario_pl +26793,12,33518,16,martincastell +26793,12,33518,16,marvin676 +26793,12,33518,16,masterzeke +26793,12,33518,16,matchesmalone1 +26793,12,33518,16,matevzps +26793,12,33518,16,maxirobes +26793,12,33518,16,mayandra +26793,12,33518,16,mbrock +26793,12,33518,16,mdaffy +26793,12,33518,16,meepleslave +26793,12,33518,16,megachu89 +26793,12,33518,16,meglivorn +26793,12,33518,16,meligarge +26793,12,33518,16,menenia +26793,12,33518,16,mholzma +26793,12,33518,16,micamouse +26793,12,33518,16,michael_leeo +26793,12,33518,16,mika +26793,12,33518,16,mikatrin29 +26793,12,33518,16,mikeybh72 +26793,12,33518,16,milka +26793,12,33518,16,mill1 +26793,12,33518,16,mini_turret +26793,12,33518,16,miniplato +26793,12,33518,16,misterbrilla +26793,12,33518,16,misterkiba +26793,12,33518,16,mistrzwterraformacje +26793,12,33518,16,mj harnish +26793,12,33518,16,mjmogg +26793,12,33518,16,mmehlert +26793,12,33518,16,monbibi +26793,12,33518,16,monikar +26793,12,33518,16,moosemeeple +26793,12,33518,16,morato +26793,12,33518,16,morpheo81 +26793,12,33518,16,mortis316uk +26793,12,33518,16,mortlach +26793,12,33518,16,moscardinho +26793,12,33518,16,motor city mike +26793,12,33518,16,mrtim01 +26793,12,33518,16,mur5enary +26793,12,33518,16,mustwestrike +26793,12,33518,16,mwil +26793,12,33518,16,myzrym +26793,12,33518,16,n_and +26793,12,33518,16,nairobiny +26793,12,33518,16,narve2 +26793,12,33518,16,natureluvr +26793,12,33518,16,nbohus +26793,12,33518,16,neal smith +26793,12,33518,16,necondition +26793,12,33518,16,neluge +26793,12,33518,16,nerdistan +26793,12,33518,16,nessi2017 +26793,12,33518,16,neversummer +26793,12,33518,16,nickyd321 +26793,12,33518,16,nielison +26793,12,33518,16,nielsnej +26793,12,33518,16,nightwatch_reviews +26793,12,33518,16,nilshakon +26793,12,33518,16,nintendojunkie +26793,12,33518,16,nitin88 +26793,12,33518,16,noobally +26793,12,33518,16,nox_05 +26793,12,33518,16,ntmathis0719 +26793,12,33518,16,nukero +26793,12,33518,16,ojtbgg +26793,12,33518,16,olaffstout +26793,12,33518,16,olajoh1 +26793,12,33518,16,olat +26793,12,33518,16,onipuppy +26793,12,33518,16,onitek +26793,12,33518,16,onorc +26793,12,33518,16,openyost +26793,12,33518,16,oppenheimer +26793,12,33518,16,oregsamm +26793,12,33518,16,osyrn +26793,12,33518,16,oxygen6 +26793,12,33518,16,pabloagdlo +26793,12,33518,16,paperthick +26793,12,33518,16,para176 +26793,12,33518,16,pastinen +26793,12,33518,16,patrick736 +26793,12,33518,16,patricksupertramp +26793,12,33518,16,pavunisi +26793,12,33518,16,pawnshopblog +26793,12,33518,16,peter88szabo +26793,12,33518,16,pezzi +26793,12,33518,16,philip honeybone +26793,12,33518,16,pipecata +26793,12,33518,16,playalife +26793,12,33518,16,poeppelrudi +26793,12,33518,16,polgielle +26793,12,33518,16,polyboy94 +26793,12,33518,16,ponika +26793,12,33518,16,poochiekeuh +26793,12,33518,16,poppinfreshgwj +26793,12,33518,16,ppiittyy +26793,12,33518,16,pre17 +26793,12,33518,16,primaverales +26793,12,33518,16,princessofcatan +26793,12,33518,16,priyanka31 +26793,12,33518,16,pronto11 +26793,12,33518,16,puquak +26793,12,33518,16,pyrogretel +26793,12,33518,16,quartiertom +26793,12,33518,16,ramirezr79 +26793,12,33518,16,randplaty +26793,12,33518,16,rayien +26793,12,33518,16,raymondp413 +26793,12,33518,16,rbaron11 +26793,12,33518,16,redmellum +26793,12,33518,16,redsone81 +26793,12,33518,16,redsuperchief +26793,12,33518,16,renard +26793,12,33518,16,retsam3349 +26793,12,33518,16,revbob23 +26793,12,33518,16,riccio +26793,12,33518,16,rkt119 +26793,12,33518,16,rmuntane4591 +26793,12,33518,16,robertkeys51 +26793,12,33518,16,robertkstarr +26793,12,33518,16,robertschehl +26793,12,33518,16,robynf +26793,12,33518,16,robyvecchio +26793,12,33518,16,rodriquez +26793,12,33518,16,roid +26793,12,33518,16,roll3dice +26793,12,33518,16,rolmue +26793,12,33518,16,ronnielunn +26793,12,33518,16,roofuskit +26793,12,33518,16,roooof +26793,12,33518,16,rosapoma +26793,12,33518,16,roshz +26793,12,33518,16,rouskopp +26793,12,33518,16,rowdas +26793,12,33518,16,rpc76 +26793,12,33518,16,rpierce1892 +26793,12,33518,16,rpps1980 +26793,12,33518,16,rssraptor2 +26793,12,33518,16,rualezz +26793,12,33518,16,rudger +26793,12,33518,16,rw26 +26793,12,33518,16,rykko201 +26793,12,33518,16,ryu677 +26793,12,33518,16,sadflk2001 +26793,12,33518,16,saeglopur +26793,12,33518,16,sagiro +26793,12,33518,16,saigetsu +26793,12,33518,16,sarahel1zab3th +26793,12,33518,16,scorpion 21244 +26793,12,33518,16,scott devos +26793,12,33518,16,scully6 +26793,12,33518,16,scuzball +26793,12,33518,16,sentientgolem +26793,12,33518,16,serhammy +26793,12,33518,16,severian73 +26793,12,33518,16,sgtfury79 +26793,12,33518,16,sh5000 +26793,12,33518,16,shadowpenguinz +26793,12,33518,16,shiron895 +26793,12,33518,16,shushufamily +26793,12,33518,16,siladon +26793,12,33518,16,silenthoch +26793,12,33518,16,silentmexx +26793,12,33518,16,sizzling_roller +26793,12,33518,16,sjoarie +26793,12,33518,16,skarnl +26793,12,33518,16,slimsidewinderjazz +26793,12,33518,16,snazzaroo +26793,12,33518,16,snezhana +26793,12,33518,16,snowstream +26793,12,33518,16,solid_1389 +26793,12,33518,16,solti23 +26793,12,33518,16,sorrow26 +26793,12,33518,16,sparknash +26793,12,33518,16,sparrowek +26793,12,33518,16,spelpaleisamersfoort +26793,12,33518,16,spevbot +26793,12,33518,16,spilzu +26793,12,33518,16,squawwk +26793,12,33518,16,standingwolf +26793,12,33518,16,starsnostars +26793,12,33518,16,steckman +26793,12,33518,16,stevemacphisto +26793,12,33518,16,steven807 +26793,12,33518,16,stewarttame +26793,12,33518,16,stuart_otterson +26793,12,33518,16,sub_rot +26793,12,33518,16,sunnysnake +26793,12,33518,16,sunreet +26793,12,33518,16,suttface +26793,12,33518,16,swordandmagichelmet +26793,12,33518,16,sxubach +26793,12,33518,16,sylvesterd +26793,12,33518,16,szych +26793,12,33518,16,szylt +26793,12,33518,16,szymi +26793,12,33518,16,taborra +26793,12,33518,16,tardis2008 +26793,12,33518,16,tare78 +26793,12,33518,16,tarnop +26793,12,33518,16,taz69 +26793,12,33518,16,technopanda_au +26793,12,33518,16,teejdiscoversgames +26793,12,33518,16,temple_du_meeple +26793,12,33518,16,tenshu +26793,12,33518,16,texasmadmax +26793,12,33518,16,thatjamiefella +26793,12,33518,16,the eta +26793,12,33518,16,the players player +26793,12,33518,16,the reader +26793,12,33518,16,the_it_guy +26793,12,33518,16,thebrad84 +26793,12,33518,16,thefocusshift +26793,12,33518,16,theintangiblefatman +26793,12,33518,16,thekingmaker +26793,12,33518,16,thevagabond +26793,12,33518,16,thingyman +26793,12,33518,16,tigrenok00 +26793,12,33518,16,timberella +26793,12,33518,16,tisenhardt +26793,12,33518,16,tjdwp8923 +26793,12,33518,16,tjh5 +26793,12,33518,16,tm1807 +26793,12,33518,16,tobikei +26793,12,33518,16,tollhousec +26793,12,33518,16,totallybanjaxed +26793,12,33518,16,toxhorn +26793,12,33518,16,tparel +26793,12,33518,16,tpelletier +26793,12,33518,16,tphaster +26793,12,33518,16,triblayne +26793,12,33518,16,trixits +26793,12,33518,16,tryhon +26793,12,33518,16,tvhees +26793,12,33518,16,txram +26793,12,33518,16,tyrogers1 +26793,12,33518,16,ulio +26793,12,33518,16,undeleterious +26793,12,33518,16,undyinghate +26793,12,33518,16,valminder +26793,12,33518,16,vamric +26793,12,33518,16,van_zwieten +26793,12,33518,16,vancokey +26793,12,33518,16,vanhel +26793,12,33518,16,vbhokie +26793,12,33518,16,veul +26793,12,33518,16,vinesnake +26793,12,33518,16,virgil11 +26793,12,33518,16,volunteer +26793,12,33518,16,wadegiles +26793,12,33518,16,weemadando +26793,12,33518,16,weeredman +26793,12,33518,16,wflars +26793,12,33518,16,whatsagatsby +26793,12,33518,16,willie2 +26793,12,33518,16,winchexmix +26793,12,33518,16,winstondelgato +26793,12,33518,16,withness +26793,12,33518,16,wolfthatwonders +26793,12,33518,16,wookieemart +26793,12,33518,16,woozle1977 +26793,12,33518,16,wwscrispin +26793,12,33518,16,wylde_karde +26793,12,33518,16,xaliba +26793,12,33518,16,xanox4 +26793,12,33518,16,xavierjackson +26793,12,33518,16,xcrun55 +26793,12,33518,16,xenon219 +26793,12,33518,16,xinnoc3ntx +26793,12,33518,16,yagarsi +26793,12,33518,16,yahooseriously1 +26793,12,33518,16,yanez81 +26793,12,33518,16,yannickvillegas +26793,12,33518,16,ycb123 +26793,12,33518,16,yodakopp +26793,12,33518,16,yooohhh +26793,12,33518,16,yoyopl +26793,12,33518,16,yveltom +26793,12,33518,16,yxos +26793,12,33518,16,z28mtd +26793,12,33518,16,zachpas +26793,12,33518,16,zellbrujah +26793,12,33518,16,zelph104 +26793,12,33518,16,zetagi +26793,12,33518,16,zodiak +26793,12,33518,16,zulmara +26793,12,36419,15,7rouble +26793,12,36419,15,_pako_ +26793,12,36419,15,aamaden +26793,12,36419,15,abosche +26793,12,36419,15,aden +26793,12,36419,15,aeben3168 +26793,12,36419,15,aflowers7 +26793,12,36419,15,agawdiwa +26793,12,36419,15,agrimos +26793,12,36419,15,akron +26793,12,36419,15,akupro +26793,12,36419,15,al_b_dam +26793,12,36419,15,aldowg +26793,12,36419,15,alecc +26793,12,36419,15,alexredshoes +26793,12,36419,15,alexwglenn +26793,12,36419,15,alfredgo21 +26793,12,36419,15,allegedbanana +26793,12,36419,15,almightymalikai +26793,12,36419,15,alomurilo +26793,12,36419,15,anderson +26793,12,36419,15,andrea1972 +26793,12,36419,15,animeinme +26793,12,36419,15,ankakiper +26793,12,36419,15,apejeje +26793,12,36419,15,arcangelurbano +26793,12,36419,15,arghart +26793,12,36419,15,arkadiusz +26793,12,36419,15,artrexdenthur +26793,12,36419,15,atoj +26793,12,36419,15,aurian +26793,12,36419,15,aurorhapsody +26793,12,36419,15,avideira +26793,12,36419,15,ayessdub +26793,12,36419,15,bajosoto +26793,12,36419,15,banbeck +26793,12,36419,15,bannukutuku +26793,12,36419,15,bcooperok +26793,12,36419,15,beaglebrown +26793,12,36419,15,beardsae +26793,12,36419,15,beelzebeth +26793,12,36419,15,belcampas +26793,12,36419,15,belmarti +26793,12,36419,15,bennettbrawler +26793,12,36419,15,bensgsmith +26793,12,36419,15,bertosann +26793,12,36419,15,bewag +26793,12,36419,15,bgg_21vn +26793,12,36419,15,bigboater +26793,12,36419,15,bigjohnstud +26793,12,36419,15,bigreddog +26793,12,36419,15,bikeshedder +26793,12,36419,15,bjnshannon +26793,12,36419,15,bleusher +26793,12,36419,15,boberry2009 +26793,12,36419,15,borg79 +26793,12,36419,15,bouffonman +26793,12,36419,15,boydsy +26793,12,36419,15,bracima +26793,12,36419,15,brikov +26793,12,36419,15,bruceco +26793,12,36419,15,bryanvh +26793,12,36419,15,bubbagump12 +26793,12,36419,15,buderix80 +26793,12,36419,15,bwizard +26793,12,36419,15,caanrito +26793,12,36419,15,cadeodado +26793,12,36419,15,callmetim72 +26793,12,36419,15,canas1an +26793,12,36419,15,cardboardconjurer +26793,12,36419,15,cejutomojamuto +26793,12,36419,15,chewbecca +26793,12,36419,15,cnebot +26793,12,36419,15,conberry2 +26793,12,36419,15,coren +26793,12,36419,15,coronene +26793,12,36419,15,corwinb +26793,12,36419,15,crasspip +26793,12,36419,15,crazycatman +26793,12,36419,15,crisisinlondon +26793,12,36419,15,croquemouton +26793,12,36419,15,ctrl_alt_defeat +26793,12,36419,15,cuvaflow +26793,12,36419,15,cyakobch +26793,12,36419,15,cyberboarder +26793,12,36419,15,cyno047 +26793,12,36419,15,d33v +26793,12,36419,15,daddyleglonger +26793,12,36419,15,dadi in biliko +26793,12,36419,15,dahnul +26793,12,36419,15,dalimthor +26793,12,36419,15,danibegues +26793,12,36419,15,dannydougherty +26793,12,36419,15,dark_knight22 +26793,12,36419,15,darkcelt +26793,12,36419,15,darkestoceans +26793,12,36419,15,darkylondon +26793,12,36419,15,davevoodoo +26793,12,36419,15,daykz69 +26793,12,36419,15,dbldown11 +26793,12,36419,15,ddcraven +26793,12,36419,15,decadenz +26793,12,36419,15,dedeckx +26793,12,36419,15,dentarthurdent +26793,12,36419,15,der__klaus +26793,12,36419,15,derkleineprinz +26793,12,36419,15,destructormode +26793,12,36419,15,dhelsby +26793,12,36419,15,dheyrdre +26793,12,36419,15,dicecaprus +26793,12,36419,15,digbybare +26793,12,36419,15,dilomm +26793,12,36419,15,ditcheys +26793,12,36419,15,dkun +26793,12,36419,15,dleskov +26793,12,36419,15,doizinho +26793,12,36419,15,domojade +26793,12,36419,15,dorkyzol +26793,12,36419,15,dphil1988 +26793,12,36419,15,dran +26793,12,36419,15,dreary driller +26793,12,36419,15,drnutter +26793,12,36419,15,dunctait +26793,12,36419,15,dusemir +26793,12,36419,15,duxburydragon +26793,12,36419,15,edbickle +26793,12,36419,15,edsboard +26793,12,36419,15,edshead +26793,12,36419,15,eeule +26793,12,36419,15,el runto +26793,12,36419,15,electriccoffee +26793,12,36419,15,elenawehe +26793,12,36419,15,elitheiceman +26793,12,36419,15,emilflight +26793,12,36419,15,english teechur +26793,12,36419,15,erfelipe +26793,12,36419,15,faelonie +26793,12,36419,15,faramir12 +26793,12,36419,15,fearoffours +26793,12,36419,15,feffe88 +26793,12,36419,15,felagund9 +26793,12,36419,15,felixleong +26793,12,36419,15,fiete +26793,12,36419,15,fifisdead +26793,12,36419,15,fischbaerfisch +26793,12,36419,15,fleeck +26793,12,36419,15,fox andersson +26793,12,36419,15,franch1se +26793,12,36419,15,freakystyly56 +26793,12,36419,15,gabesterx +26793,12,36419,15,gamerchef +26793,12,36419,15,gamingweasel +26793,12,36419,15,garretrowe36 +26793,12,36419,15,gen_0 +26793,12,36419,15,gleboss +26793,12,36419,15,gmaughan +26793,12,36419,15,goatmilk +26793,12,36419,15,greyareabeyond +26793,12,36419,15,greytgamers +26793,12,36419,15,grimmymail +26793,12,36419,15,griselda +26793,12,36419,15,grixnair +26793,12,36419,15,gugadin +26793,12,36419,15,guusvanderaa +26793,12,36419,15,gyouza +26793,12,36419,15,hache +26793,12,36419,15,hajini +26793,12,36419,15,handful86 +26793,12,36419,15,hankio +26793,12,36419,15,happyabg +26793,12,36419,15,harry_hole_gold +26793,12,36419,15,hartzeratwork +26793,12,36419,15,hazelpug +26793,12,36419,15,heinzmcdurgen +26793,12,36419,15,helios31 +26793,12,36419,15,hermit1970 +26793,12,36419,15,hiddenjester +26793,12,36419,15,hobo +26793,12,36419,15,hoelgson +26793,12,36419,15,holdenck +26793,12,36419,15,huckins_1971 +26793,12,36419,15,huguinpower +26793,12,36419,15,hwarie +26793,12,36419,15,ianrd76 +26793,12,36419,15,icescrat +26793,12,36419,15,igrad +26793,12,36419,15,illumas +26793,12,36419,15,irastel +26793,12,36419,15,ironwill66 +26793,12,36419,15,isaevale +26793,12,36419,15,jaceolson +26793,12,36419,15,jacob1802 +26793,12,36419,15,jakejake219 +26793,12,36419,15,jamminjoe123 +26793,12,36419,15,janek86 +26793,12,36419,15,jaybee289 +26793,12,36419,15,jazzbeard +26793,12,36419,15,jdavis194 +26793,12,36419,15,jelsepa +26793,12,36419,15,jiffk +26793,12,36419,15,jiouis +26793,12,36419,15,jloisel +26793,12,36419,15,jmcbgg +26793,12,36419,15,jmowers21 +26793,12,36419,15,joaoic +26793,12,36419,15,joelhoro +26793,12,36419,15,joemalik +26793,12,36419,15,joeristoef +26793,12,36419,15,johnantiphon +26793,12,36419,15,johnny k +26793,12,36419,15,jollylumpy +26793,12,36419,15,joserson +26793,12,36419,15,joshandshell +26793,12,36419,15,jpn38 +26793,12,36419,15,juham +26793,12,36419,15,justincbus +26793,12,36419,15,karabasus +26793,12,36419,15,katastrophy9 +26793,12,36419,15,kellogg +26793,12,36419,15,kenjin +26793,12,36419,15,kenpasck31 +26793,12,36419,15,kevgol +26793,12,36419,15,kevin moody +26793,12,36419,15,kfritz +26793,12,36419,15,khloep +26793,12,36419,15,kimenstein +26793,12,36419,15,kinkymachine +26793,12,36419,15,kiristo +26793,12,36419,15,kitxune +26793,12,36419,15,krassor +26793,12,36419,15,kratzdrink +26793,12,36419,15,krismo +26793,12,36419,15,krzynio +26793,12,36419,15,kubidi +26793,12,36419,15,laborlawlarry +26793,12,36419,15,largefather +26793,12,36419,15,larlik +26793,12,36419,15,lars9612 +26793,12,36419,15,lasab +26793,12,36419,15,laurion +26793,12,36419,15,lebut +26793,12,36419,15,leeloo92 +26793,12,36419,15,lehooleh +26793,12,36419,15,lenguasco13 +26793,12,36419,15,lenjeux +26793,12,36419,15,lenzl +26793,12,36419,15,liamdougherty +26793,12,36419,15,lillyta333 +26793,12,36419,15,lito_santana +26793,12,36419,15,littleghost87 +26793,12,36419,15,llstoolj +26793,12,36419,15,lmarkus001 +26793,12,36419,15,logaan +26793,12,36419,15,logincz +26793,12,36419,15,lordbyron1973 +26793,12,36419,15,lucasmaxi +26793,12,36419,15,ludilubi +26793,12,36419,15,lug77 +26793,12,36419,15,luis1976 +26793,12,36419,15,luizhbarreto +26793,12,36419,15,m1hune2007 +26793,12,36419,15,magicm +26793,12,36419,15,magnanimousmeeple +26793,12,36419,15,maitrerenard +26793,12,36419,15,malebolico +26793,12,36419,15,mamimi_flcl +26793,12,36419,15,marhew +26793,12,36419,15,mariecurie +26793,12,36419,15,markholmes16 +26793,12,36419,15,marlok +26793,12,36419,15,marmil85 +26793,12,36419,15,martintrouman +26793,12,36419,15,marutter +26793,12,36419,15,match215 +26793,12,36419,15,max_headroom +26793,12,36419,15,maxwellington +26793,12,36419,15,mckinnwi +26793,12,36419,15,meax1 +26793,12,36419,15,mechafrog +26793,12,36419,15,meeplecastle +26793,12,36419,15,melkios +26793,12,36419,15,melko_ +26793,12,36419,15,memefurax +26793,12,36419,15,mennortm +26793,12,36419,15,merguer +26793,12,36419,15,mexilplif +26793,12,36419,15,mfacen +26793,12,36419,15,micha5104 +26793,12,36419,15,mikanit +26793,12,36419,15,mike4693 +26793,12,36419,15,mike_bonn +26793,12,36419,15,minayaaf +26793,12,36419,15,mirodlo +26793,12,36419,15,miruki +26793,12,36419,15,mkamui +26793,12,36419,15,mndwrm +26793,12,36419,15,mnty4rd +26793,12,36419,15,moltam +26793,12,36419,15,momamo +26793,12,36419,15,monkeypants79 +26793,12,36419,15,moschomat +26793,12,36419,15,mrgurbic +26793,12,36419,15,mrmoremoe +26793,12,36419,15,mrred82 +26793,12,36419,15,mtgeclipse +26793,12,36419,15,mthermanowicz +26793,12,36419,15,muppulation1992 +26793,12,36419,15,mussel +26793,12,36419,15,mynameiskate +26793,12,36419,15,myrelic +26793,12,36419,15,naebird +26793,12,36419,15,nathelbiya +26793,12,36419,15,nbd2019 +26793,12,36419,15,ncc1701 +26793,12,36419,15,nconc +26793,12,36419,15,nder1010 +26793,12,36419,15,neeber89 +26793,12,36419,15,nejomo +26793,12,36419,15,neologist +26793,12,36419,15,neuromanced +26793,12,36419,15,nfuchs92 +26793,12,36419,15,nickrondogg +26793,12,36419,15,nightlightguy +26793,12,36419,15,nikand97 +26793,12,36419,15,nikfed +26793,12,36419,15,nkhat +26793,12,36419,15,nofunatalll +26793,12,36419,15,nordestcowboy +26793,12,36419,15,notanumber +26793,12,36419,15,noteclado +26793,12,36419,15,nujiel +26793,12,36419,15,nuvolablu +26793,12,36419,15,obsidian81 +26793,12,36419,15,ogodei +26793,12,36419,15,olekso +26793,12,36419,15,omfug +26793,12,36419,15,onionmole +26793,12,36419,15,oniwa +26793,12,36419,15,onyxwiz +26793,12,36419,15,oranginna +26793,12,36419,15,orlandeau +26793,12,36419,15,orthodox +26793,12,36419,15,paariaso +26793,12,36419,15,pabsred +26793,12,36419,15,paedophobic +26793,12,36419,15,paesibassi +26793,12,36419,15,palnatoke +26793,12,36419,15,pamagic912 +26793,12,36419,15,patapouf26 +26793,12,36419,15,pavloid +26793,12,36419,15,peanut69 +26793,12,36419,15,pecquereau +26793,12,36419,15,pedrommpereira +26793,12,36419,15,pedrote +26793,12,36419,15,peelthelayers +26793,12,36419,15,pellacrabanion +26793,12,36419,15,perty1976 +26793,12,36419,15,peter3980 +26793,12,36419,15,petitzombi +26793,12,36419,15,pfwf +26793,12,36419,15,phenylalanin85 +26793,12,36419,15,pillserg +26793,12,36419,15,pincopanco +26793,12,36419,15,pizzadog +26793,12,36419,15,pkmic +26793,12,36419,15,playthatgame_frank +26793,12,36419,15,pochaman +26793,12,36419,15,polonzo +26793,12,36419,15,pomimo +26793,12,36419,15,posterchild21 +26793,12,36419,15,pribislav +26793,12,36419,15,prooples +26793,12,36419,15,prophet189 +26793,12,36419,15,punchamole +26793,12,36419,15,purplejenster2 +26793,12,36419,15,purrfectsylvie +26793,12,36419,15,purrrealm +26793,12,36419,15,pyramid99 +26793,12,36419,15,quiveryopossum7 +26793,12,36419,15,rabidduck457 +26793,12,36419,15,radkayo +26793,12,36419,15,raffaella131 +26793,12,36419,15,raki_saeki +26793,12,36419,15,randomaccess +26793,12,36419,15,rauloolapodrido +26793,12,36419,15,razmus +26793,12,36419,15,razzakel +26793,12,36419,15,rcgutz25 +26793,12,36419,15,reappy +26793,12,36419,15,redanima +26793,12,36419,15,redcurtain +26793,12,36419,15,releasethedogs +26793,12,36419,15,rhonin +26793,12,36419,15,rickfuss +26793,12,36419,15,rippers advocate +26793,12,36419,15,rlrgaming +26793,12,36419,15,robearlus +26793,12,36419,15,robertz400 +26793,12,36419,15,ronald11 +26793,12,36419,15,roood +26793,12,36419,15,rostranor +26793,12,36419,15,ruderat +26793,12,36419,15,rwarren +26793,12,36419,15,ryoh666 +26793,12,36419,15,sadguardian +26793,12,36419,15,salisali +26793,12,36419,15,saurontl +26793,12,36419,15,saverioiv +26793,12,36419,15,schnitzelhoover +26793,12,36419,15,schumi74 +26793,12,36419,15,scruffy85 +26793,12,36419,15,scuzzy19 +26793,12,36419,15,secretsauce275 +26793,12,36419,15,sepsy +26793,12,36419,15,sethani +26793,12,36419,15,sggrayfox +26793,12,36419,15,shmugle +26793,12,36419,15,simkamil +26793,12,36419,15,sirwallace +26793,12,36419,15,sjthomp +26793,12,36419,15,skitz319 +26793,12,36419,15,sklz6196 +26793,12,36419,15,sky knight x +26793,12,36419,15,skyjordi +26793,12,36419,15,slcbker +26793,12,36419,15,slil +26793,12,36419,15,sloththing +26793,12,36419,15,slymonk +26793,12,36419,15,snduck +26793,12,36419,15,solice +26793,12,36419,15,southfloridelphia +26793,12,36419,15,soxdarko +26793,12,36419,15,spaceygamer +26793,12,36419,15,spambait42c +26793,12,36419,15,speelmannetje +26793,12,36419,15,spidermau +26793,12,36419,15,spookychen +26793,12,36419,15,spu34dd +26793,12,36419,15,spyrolivier +26793,12,36419,15,sramsey2 +26793,12,36419,15,stecpr87 +26793,12,36419,15,stellina67 +26793,12,36419,15,stelyn100 +26793,12,36419,15,stoffel +26793,12,36419,15,stonedog +26793,12,36419,15,stose +26793,12,36419,15,stumpyraccoon +26793,12,36419,15,susde +26793,12,36419,15,swengelchen +26793,12,36419,15,swngmnnz +26793,12,36419,15,sykes913 +26793,12,36419,15,szoffi +26793,12,36419,15,tacojje +26793,12,36419,15,tallymatty +26793,12,36419,15,tarini83 +26793,12,36419,15,terrize +26793,12,36419,15,terrorvision +26793,12,36419,15,the blur +26793,12,36419,15,the iced one +26793,12,36419,15,the_flute_guy +26793,12,36419,15,thefounder +26793,12,36419,15,thekitamura +26793,12,36419,15,thepuglife +26793,12,36419,15,theredstaci +26793,12,36419,15,thibaudmtl +26793,12,36419,15,thomasph87 +26793,12,36419,15,thumbeard +26793,12,36419,15,tianabanana99 +26793,12,36419,15,tibbo80 +26793,12,36419,15,ticitron2012 +26793,12,36419,15,tigerfox_solod +26793,12,36419,15,tk62 +26793,12,36419,15,tlh878 +26793,12,36419,15,tmboyington +26793,12,36419,15,tobiasvmj +26793,12,36419,15,tobsie +26793,12,36419,15,tofigermany +26793,12,36419,15,tolkienfan4ever +26793,12,36419,15,tomforpresident +26793,12,36419,15,tomvdvel +26793,12,36419,15,tomwyllie +26793,12,36419,15,traquan +26793,12,36419,15,triple t +26793,12,36419,15,trye +26793,12,36419,15,tthung1997 +26793,12,36419,15,tvjapan +26793,12,36419,15,twinmfg +26793,12,36419,15,twitchy517 +26793,12,36419,15,tyereskova +26793,12,36419,15,tylerhb33 +26793,12,36419,15,u is for unicron +26793,12,36419,15,ulve +26793,12,36419,15,uncfanatik +26793,12,36419,15,uzi125 +26793,12,36419,15,vazquezantonio +26793,12,36419,15,veniatregnum +26793,12,36419,15,vickersfamily +26793,12,36419,15,victor-rr +26793,12,36419,15,victory_points +26793,12,36419,15,vincemvigil +26793,12,36419,15,vinillum +26793,12,36419,15,vivobrezo +26793,12,36419,15,volkh +26793,12,36419,15,vsanchez +26793,12,36419,15,waelbond +26793,12,36419,15,waldeinburg +26793,12,36419,15,wasabi_apple +26793,12,36419,15,watermelonpies +26793,12,36419,15,werlan +26793,12,36419,15,wgerken +26793,12,36419,15,whatacuriousnotion +26793,12,36419,15,wiltonvb +26793,12,36419,15,wisi11 +26793,12,36419,15,wladimir +26793,12,36419,15,wm_lsmm +26793,12,36419,15,wolf0 +26793,12,36419,15,wotevatrevor +26793,12,36419,15,wren08 +26793,12,36419,15,wundertierchen +26793,12,36419,15,wyatt042 +26793,12,36419,15,xcugat +26793,12,36419,15,xerxos +26793,12,36419,15,xilon +26793,12,36419,15,xmbrst +26793,12,36419,15,xmetaldethx +26793,12,36419,15,xtof +26793,12,36419,15,yalduark +26793,12,36419,15,yellowlab +26793,12,36419,15,zamboody +26793,12,36419,15,zcs8721 +26793,12,36419,15,zelegith +26793,12,36419,15,zencore +26793,12,36419,15,zoto0 +26793,12,39699,14,adk_fox +26793,12,39699,14,ahrax +26793,12,39699,14,aletheaaurora +26793,12,39699,14,alicorn +26793,12,39699,14,allgood322 +26793,12,39699,14,andrewjesaitis +26793,12,39699,14,annier +26793,12,39699,14,ao_bercilak +26793,12,39699,14,arcziwald +26793,12,39699,14,atoddi +26793,12,39699,14,atticus653 +26793,12,39699,14,aux13 +26793,12,39699,14,b1aauf52 +26793,12,39699,14,barakse30 +26793,12,39699,14,bashplut +26793,12,39699,14,beaverproject +26793,12,39699,14,beru1983 +26793,12,39699,14,betic4higher +26793,12,39699,14,bgpopapmp +26793,12,39699,14,bierpinne +26793,12,39699,14,bigbrand +26793,12,39699,14,blackouttwo +26793,12,39699,14,bluemino +26793,12,39699,14,boardgamepatrol +26793,12,39699,14,bobanick +26793,12,39699,14,boiler7 +26793,12,39699,14,brickhousekie +26793,12,39699,14,brycejarrett +26793,12,39699,14,burnsi1984 +26793,12,39699,14,c__9 +26793,12,39699,14,cacodaemon +26793,12,39699,14,caffeinated_canuck +26793,12,39699,14,castingnets +26793,12,39699,14,catchke2ro +26793,12,39699,14,catumarus +26793,12,39699,14,celadorn95 +26793,12,39699,14,celinashope +26793,12,39699,14,charmiggnu +26793,12,39699,14,chatlanine +26793,12,39699,14,chookity +26793,12,39699,14,chronobasher +26793,12,39699,14,clpstrider +26793,12,39699,14,cooliq +26793,12,39699,14,creeping86 +26793,12,39699,14,cwhitpan +26793,12,39699,14,de bokkensprong +26793,12,39699,14,deadsquirrel +26793,12,39699,14,deema +26793,12,39699,14,diegaum +26793,12,39699,14,dondantas +26793,12,39699,14,donjon1966 +26793,12,39699,14,dr_canak +26793,12,39699,14,drkat2u +26793,12,39699,14,dvious55 +26793,12,39699,14,edinburgh86 +26793,12,39699,14,emanko78 +26793,12,39699,14,eric +26793,12,39699,14,escaldada +26793,12,39699,14,evterpe +26793,12,39699,14,fafhrd68 +26793,12,39699,14,faniedg +26793,12,39699,14,finmaky +26793,12,39699,14,fireontheboard +26793,12,39699,14,fondue +26793,12,39699,14,fortressofollietude +26793,12,39699,14,freedomdriven +26793,12,39699,14,freeglerock +26793,12,39699,14,fullmetalruin +26793,12,39699,14,fwarman +26793,12,39699,14,g10v45 +26793,12,39699,14,gameslore +26793,12,39699,14,gavhriel +26793,12,39699,14,ggcontrol +26793,12,39699,14,gidmaster36 +26793,12,39699,14,gingerade3 +26793,12,39699,14,glad8r +26793,12,39699,14,glyderau +26793,12,39699,14,gruenesmaennchen +26793,12,39699,14,harry2017 +26793,12,39699,14,heavenly70 +26793,12,39699,14,hedonistin +26793,12,39699,14,hidden_wizard +26793,12,39699,14,hwines +26793,12,39699,14,i_seachange +26793,12,39699,14,ibrakedd +26793,12,39699,14,iiglesis +26793,12,39699,14,irix +26793,12,39699,14,jackarix +26793,12,39699,14,jahall2000 +26793,12,39699,14,jasperkamp +26793,12,39699,14,jay tipper +26793,12,39699,14,jennreneee +26793,12,39699,14,jenymc +26793,12,39699,14,jmendoza774 +26793,12,39699,14,jmorgan +26793,12,39699,14,jobin13 +26793,12,39699,14,joerodgers +26793,12,39699,14,jrbriab +26793,12,39699,14,jvillajos +26793,12,39699,14,jwboone +26793,12,39699,14,kgsteph +26793,12,39699,14,kinoji +26793,12,39699,14,kittymike21 +26793,12,39699,14,kmox +26793,12,39699,14,larisaz +26793,12,39699,14,larse +26793,12,39699,14,lasttoken +26793,12,39699,14,lauraca +26793,12,39699,14,laurora_ +26793,12,39699,14,letueursublime +26793,12,39699,14,liesbruneel +26793,12,39699,14,lilakartoffelbrei +26793,12,39699,14,lisakshortt +26793,12,39699,14,ljndrmnty +26793,12,39699,14,llpixiell +26793,12,39699,14,loam_rambler +26793,12,39699,14,lukejmiller6 +26793,12,39699,14,lunaticusx +26793,12,39699,14,m_j_lannes +26793,12,39699,14,madame_web +26793,12,39699,14,mainshane +26793,12,39699,14,majvep +26793,12,39699,14,makesnowflakes +26793,12,39699,14,malic42 +26793,12,39699,14,mandafreakinj +26793,12,39699,14,marchena +26793,12,39699,14,mariokerkhof +26793,12,39699,14,me1dor +26793,12,39699,14,mictor2010 +26793,12,39699,14,mikkeane +26793,12,39699,14,mland001 +26793,12,39699,14,mlm67 +26793,12,39699,14,moklan +26793,12,39699,14,mount eerie +26793,12,39699,14,mrwendal +26793,12,39699,14,mrwhitmer23 +26793,12,39699,14,naptownmvp +26793,12,39699,14,neogeneration +26793,12,39699,14,neomalkin +26793,12,39699,14,net_spasibo +26793,12,39699,14,nhycoh +26793,12,39699,14,ntrolls +26793,12,39699,14,olk2016 +26793,12,39699,14,padresfrikis +26793,12,39699,14,papai_smurf +26793,12,39699,14,parkadius +26793,12,39699,14,paula192 +26793,12,39699,14,pbhammer +26793,12,39699,14,pdrayton +26793,12,39699,14,peter r +26793,12,39699,14,phantomgreen +26793,12,39699,14,plavatos +26793,12,39699,14,pshaunmckenzie +26793,12,39699,14,rekielz +26793,12,39699,14,rhys1986 +26793,12,39699,14,rixcardos +26793,12,39699,14,rodrigor +26793,12,39699,14,romulan_warbird +26793,12,39699,14,rskifton +26793,12,39699,14,samseite +26793,12,39699,14,sandsalamander +26793,12,39699,14,scorpiosue +26793,12,39699,14,seehafma +26793,12,39699,14,selimevets +26793,12,39699,14,seryn +26793,12,39699,14,shadowstorm28 +26793,12,39699,14,shanerion +26793,12,39699,14,shep +26793,12,39699,14,shortfuse +26793,12,39699,14,silmarmtg +26793,12,39699,14,skaughty +26793,12,39699,14,smokedcheese +26793,12,39699,14,smolz +26793,12,39699,14,sonofbruce +26793,12,39699,14,stav1 +26793,12,39699,14,tabletopsauce +26793,12,39699,14,teditor +26793,12,39699,14,teejet +26793,12,39699,14,thaine +26793,12,39699,14,thamarin +26793,12,39699,14,thecowligator +26793,12,39699,14,thejoshertm +26793,12,39699,14,themitchmaster +26793,12,39699,14,thesav +26793,12,39699,14,thintails +26793,12,39699,14,thomas_vd +26793,12,39699,14,tigmic +26793,12,39699,14,tjbuege +26793,12,39699,14,toadberg +26793,12,39699,14,toleman +26793,12,39699,14,traegz +26793,12,39699,14,uvestrom +26793,12,39699,14,uweh +26793,12,39699,14,vanderveen +26793,12,39699,14,velvetknight +26793,12,39699,14,vityweb +26793,12,39699,14,wart1321 +26793,12,39699,14,welike +26793,12,39699,14,white winston +26793,12,39699,14,whitemma +26793,12,39699,14,wimble +26793,12,39699,14,wrigglyninja +26793,12,39699,14,xunguito +26793,12,39699,14,yeahhh8maverick +26793,12,43246,13,almadjur +26793,12,43246,13,atticusjw +26793,12,43246,13,barrilla +26793,12,43246,13,ben_moss +26793,12,43246,13,biboulecoyote +26793,12,43246,13,bodhibelly +26793,12,43246,13,confetto +26793,12,43246,13,daisycm83 +26793,12,43246,13,edy2012 +26793,12,43246,13,fedechiessa +26793,12,43246,13,foosmanchu +26793,12,43246,13,gineracos +26793,12,43246,13,griff glowen +26793,12,43246,13,hsulionel +26793,12,43246,13,jkhoodos +26793,12,43246,13,ltrussell +26793,12,43246,13,majoricehole +26793,12,43246,13,robble03 +26793,12,43246,13,shayar +26793,12,43246,13,shllybkwrm +26793,12,43246,13,silascjr +26793,12,43246,13,tamlpire +26793,12,43246,13,terroggy +26793,12,43246,13,the1jugg +26793,12,43246,13,theodd23 +26793,12,47029,12,amyo +26793,12,47029,12,horist +26793,12,47029,12,seanobener +31068,11,696,66,bigblack622 +31068,11,914,62,wrecktang1e +31068,11,1568,54,wibby1 +31068,11,2053,50,cks04 +31068,11,2204,49,dgreenberg90 +31068,11,2204,49,tony aguilar +31068,11,2351,48,darken2012 +31068,11,2758,46,james3v1 +31068,11,2758,46,lizgamergirl +31068,11,3216,44,balumg +31068,11,3216,44,joserech +31068,11,3216,44,matthewrecord +31068,11,3216,44,phr0ze +31068,11,3514,43,sthysse +31068,11,3815,42,dickmichelob +31068,11,3815,42,djdadjoke +31068,11,4092,41,ftrobbie +31068,11,4092,41,joffgracia +31068,11,4092,41,princetyke +31068,11,4092,41,pulla +31068,11,4426,40,fcarlan +31068,11,4426,40,muggyowen +31068,11,4426,40,willyrenetardel +31068,11,5150,38,bronze tank +31068,11,5150,38,forkboy +31068,11,5150,38,manusaurio +31068,11,5150,38,nybas +31068,11,5150,38,ulises7 +31068,11,5624,37,elfosardo +31068,11,5624,37,frandibar +31068,11,5624,37,schnittenstapler +31068,11,5624,37,sverbeure +31068,11,6063,36,jimp +31068,11,6063,36,veteranvandal +31068,11,6573,35,brento +31068,11,6573,35,johnelstad +31068,11,6573,35,ldk89 +31068,11,6573,35,mormengil +31068,11,6573,35,ratatoskr72 +31068,11,6573,35,slothrob +31068,11,7100,34,ddlagarry +31068,11,7100,34,feda05 +31068,11,7100,34,mondior +31068,11,7100,34,shroud +31068,11,7100,34,tullio9 +31068,11,7679,33,aganju +31068,11,7679,33,andrey_silaev +31068,11,7679,33,archange1 +31068,11,7679,33,artemi +31068,11,7679,33,dipplestix +31068,11,7679,33,janmaterac +31068,11,7679,33,lashtonbryth +31068,11,7679,33,lilhallzeee +31068,11,7679,33,solarinus +31068,11,7679,33,thobster +31068,11,8351,32,javelinchimera +31068,11,8351,32,jcarsey +31068,11,8351,32,sinkronize +31068,11,9086,31,alarobric +31068,11,9086,31,berserkr +31068,11,9086,31,jeromeboyer +31068,11,9086,31,k_dragon +31068,11,9086,31,toquigames +31068,11,9910,30,adambadura +31068,11,9910,30,agb103 +31068,11,9910,30,alfonzo54 +31068,11,9910,30,awesomecase +31068,11,9910,30,chiafro +31068,11,9910,30,drackson +31068,11,9910,30,gloomknight +31068,11,9910,30,jforbes +31068,11,9910,30,polovinkin +31068,11,9910,30,vail62 +31068,11,9910,30,wintergreen13 +31068,11,10868,29,frooty_bazooty +31068,11,10868,29,makahalub +31068,11,10868,29,marcsalty +31068,11,10868,29,rattenfaenger +31068,11,10868,29,xcinx +31068,11,11831,28,armandsg +31068,11,11831,28,ciccio1510 +31068,11,11831,28,dimosthenes +31068,11,11831,28,jastin +31068,11,11831,28,jocheme +31068,11,11831,28,klaus mega +31068,11,11831,28,likkle1 +31068,11,11831,28,maxct +31068,11,11831,28,mmigda +31068,11,11831,28,mzza +31068,11,11831,28,oscholes +31068,11,11831,28,puldis +31068,11,11831,28,scarletfray +31068,11,11831,28,schoebta +31068,11,11831,28,warlucith +31068,11,11831,28,wickeyd +31068,11,12910,27,anthonyyeracaris +31068,11,12910,27,bwindle83 +31068,11,12910,27,cygnussphere +31068,11,12910,27,czwarty +31068,11,12910,27,deezifupleez +31068,11,12910,27,jacquesblondes +31068,11,12910,27,joabqm +31068,11,12910,27,lynayyy +31068,11,12910,27,markoppenheim +31068,11,12910,27,phk975 +31068,11,12910,27,pmurray123 +31068,11,12910,27,poderrojo +31068,11,12910,27,ponquist +31068,11,12910,27,rebuscarnival +31068,11,12910,27,samtherock +31068,11,12910,27,sanguino +31068,11,12910,27,scotthuddleston +31068,11,12910,27,spreeezy +31068,11,12910,27,streckarmstrong +31068,11,12910,27,sushidog +31068,11,12910,27,zubon +31068,11,14030,26,breakingben +31068,11,14030,26,calhokie +31068,11,14030,26,dargorx +31068,11,14030,26,edhelnaur +31068,11,14030,26,gallaghertm +31068,11,14030,26,groobies +31068,11,14030,26,hammer09 +31068,11,14030,26,jbanks94 +31068,11,14030,26,jesperharder +31068,11,14030,26,kellrass +31068,11,14030,26,mtracey +31068,11,14030,26,oski93 +31068,11,14030,26,panchovaras +31068,11,14030,26,psxnod +31068,11,14030,26,ramongwargamer +31068,11,14030,26,recallme +31068,11,14030,26,rockhopper1776 +31068,11,14030,26,skalchemist +31068,11,14030,26,tajones42 +31068,11,14030,26,ukpeteyp +31068,11,14030,26,varzac +31068,11,14030,26,vulpis1 +31068,11,15326,25,aliprandifabio +31068,11,15326,25,arthiev +31068,11,15326,25,b_o_o_r +31068,11,15326,25,bathshiva +31068,11,15326,25,billybeer +31068,11,15326,25,crs611 +31068,11,15326,25,drey +31068,11,15326,25,elminsterfr +31068,11,15326,25,gartenbohne +31068,11,15326,25,j0j0707 +31068,11,15326,25,jacintocc +31068,11,15326,25,jacobawatkins +31068,11,15326,25,jeshko +31068,11,15326,25,jorgearanda +31068,11,15326,25,jr10003 +31068,11,15326,25,jrsquee +31068,11,15326,25,luccicante +31068,11,15326,25,manekin +31068,11,15326,25,mborcher54 +31068,11,15326,25,mickery +31068,11,15326,25,miroforti +31068,11,15326,25,oldgamerguy11 +31068,11,15326,25,pat1k +31068,11,15326,25,radagarst +31068,11,15326,25,reggiepack +31068,11,15326,25,rhelik +31068,11,15326,25,smange +31068,11,15326,25,sogdahl +31068,11,15326,25,solomoncane +31068,11,15326,25,sweet_e78 +31068,11,15326,25,thetrojanfish +31068,11,15326,25,tiggertq +31068,11,15326,25,tkprime +31068,11,15326,25,trooper24 +31068,11,15326,25,turtler6 +31068,11,15326,25,woytas +31068,11,15326,25,zwiing +31068,11,16710,24,acsweck +31068,11,16710,24,alberto112 +31068,11,16710,24,annwho +31068,11,16710,24,artaxerxes +31068,11,16710,24,benevempress +31068,11,16710,24,bitwin +31068,11,16710,24,cerwin +31068,11,16710,24,chicagoviking +31068,11,16710,24,czarsky +31068,11,16710,24,dlesage +31068,11,16710,24,dragoncards +31068,11,16710,24,freddydafox +31068,11,16710,24,giupmat +31068,11,16710,24,goju_namo +31068,11,16710,24,hulzink +31068,11,16710,24,ippado +31068,11,16710,24,izakirzyanov +31068,11,16710,24,jaffie9hole +31068,11,16710,24,jbru223 +31068,11,16710,24,joshp +31068,11,16710,24,juanpablo_spqr +31068,11,16710,24,kikicub +31068,11,16710,24,ktee1026 +31068,11,16710,24,meat +31068,11,16710,24,ninjasam +31068,11,16710,24,nlevi +31068,11,16710,24,olympicdamn +31068,11,16710,24,onyxina +31068,11,16710,24,pawndawan +31068,11,16710,24,peckinpah +31068,11,16710,24,phantomvortex +31068,11,16710,24,phoebus +31068,11,16710,24,rinuss +31068,11,16710,24,sageleader +31068,11,16710,24,sal m +31068,11,16710,24,secretagentmartens +31068,11,16710,24,smrq +31068,11,16710,24,strange269 +31068,11,16710,24,thekristine +31068,11,16710,24,tolya21 +31068,11,16710,24,tommygun81 +31068,11,16710,24,volande +31068,11,16710,24,wallah +31068,11,16710,24,wxxi +31068,11,16710,24,yuri_34 +31068,11,18170,23,adtidi +31068,11,18170,23,agentcollins +31068,11,18170,23,betbit6 +31068,11,18170,23,bifurcator +31068,11,18170,23,blitzkriegbop56 +31068,11,18170,23,bozalampka +31068,11,18170,23,changa1015 +31068,11,18170,23,clinkz +31068,11,18170,23,crunk_posby +31068,11,18170,23,damientc +31068,11,18170,23,dcaedus27 +31068,11,18170,23,driehm +31068,11,18170,23,ealenhart +31068,11,18170,23,empereur_senmut +31068,11,18170,23,fcvasi +31068,11,18170,23,gamer72 +31068,11,18170,23,grantham +31068,11,18170,23,ints +31068,11,18170,23,irondeav +31068,11,18170,23,ivan_krachko +31068,11,18170,23,jessndots +31068,11,18170,23,jonruddock +31068,11,18170,23,jsesta84 +31068,11,18170,23,kpacu +31068,11,18170,23,kulkukoira +31068,11,18170,23,maxwellmc +31068,11,18170,23,mcon +31068,11,18170,23,mecu +31068,11,18170,23,meravia +31068,11,18170,23,mnyakko +31068,11,18170,23,montty +31068,11,18170,23,mshapiro +31068,11,18170,23,niblet22 +31068,11,18170,23,polterghost +31068,11,18170,23,pp3t3r +31068,11,18170,23,rakshim +31068,11,18170,23,shalmar +31068,11,18170,23,shelter +31068,11,18170,23,simonberube +31068,11,18170,23,simonelanzoni8 +31068,11,18170,23,soontir fel +31068,11,18170,23,spdr +31068,11,18170,23,spiderfingers86 +31068,11,18170,23,strikebyfire +31068,11,18170,23,thejo0vler +31068,11,18170,23,threepointthed +31068,11,18170,23,tinnse +31068,11,18170,23,unconnect +31068,11,18170,23,vigilante8 +31068,11,18170,23,witch13166 +31068,11,18170,23,wolfzell +31068,11,18170,23,woodenman +31068,11,19906,22,1awesomeguy +31068,11,19906,22,abeheron +31068,11,19906,22,aetha +31068,11,19906,22,al_shrew +31068,11,19906,22,bornas22 +31068,11,19906,22,bunji359 +31068,11,19906,22,cactusman008 +31068,11,19906,22,carwynhywel +31068,11,19906,22,chrisperiod +31068,11,19906,22,coink +31068,11,19906,22,dangmovie +31068,11,19906,22,daveyearp +31068,11,19906,22,direwolfpack +31068,11,19906,22,djfrank +31068,11,19906,22,dnakhain +31068,11,19906,22,driver8vw +31068,11,19906,22,dychotimer +31068,11,19906,22,dzakomn +31068,11,19906,22,e3655 +31068,11,19906,22,eldaril +31068,11,19906,22,eliseeu +31068,11,19906,22,fejj06 +31068,11,19906,22,giko +31068,11,19906,22,googlaby +31068,11,19906,22,grimdarkness +31068,11,19906,22,helwrj28 +31068,11,19906,22,henrikj +31068,11,19906,22,huebler +31068,11,19906,22,ixnay66 +31068,11,19906,22,jancg +31068,11,19906,22,janlipinski +31068,11,19906,22,justin k +31068,11,19906,22,kilem +31068,11,19906,22,kiwi_big_bear +31068,11,19906,22,lewardrobe +31068,11,19906,22,lokipm +31068,11,19906,22,luigipardo +31068,11,19906,22,lunchmoney1 +31068,11,19906,22,lutomes +31068,11,19906,22,maaikefest +31068,11,19906,22,mattwhite +31068,11,19906,22,miljor +31068,11,19906,22,mongrel +31068,11,19906,22,mpolneg +31068,11,19906,22,mrsom +31068,11,19906,22,mtdj +31068,11,19906,22,mueganra +31068,11,19906,22,munsterwoman +31068,11,19906,22,neggyx +31068,11,19906,22,nkirkw +31068,11,19906,22,nmetken +31068,11,19906,22,otgamer +31068,11,19906,22,patrickdawson +31068,11,19906,22,phantomfear +31068,11,19906,22,presilon +31068,11,19906,22,psychodad +31068,11,19906,22,qwas_ +31068,11,19906,22,ragegoblin +31068,11,19906,22,savedbyhim01 +31068,11,19906,22,scagliacatena +31068,11,19906,22,sicarian +31068,11,19906,22,simonscarfe +31068,11,19906,22,smn1337 +31068,11,19906,22,stealthief +31068,11,19906,22,superhumain +31068,11,19906,22,taur83 +31068,11,19906,22,tdkelly +31068,11,19906,22,thenatthegreat +31068,11,19906,22,tony 51 +31068,11,19906,22,totochebalai +31068,11,19906,22,tttorresss +31068,11,19906,22,urza47 +31068,11,19906,22,woodsydk +31068,11,19906,22,woschiz +31068,11,19906,22,zygote +31068,11,21713,21,acaldesc +31068,11,21713,21,agguru +31068,11,21713,21,alenros +31068,11,21713,21,alexcld +31068,11,21713,21,alinm +31068,11,21713,21,ancsip +31068,11,21713,21,ansalem +31068,11,21713,21,aphexx +31068,11,21713,21,apollonoir +31068,11,21713,21,arxhon +31068,11,21713,21,balanceut +31068,11,21713,21,bgamedroid +31068,11,21713,21,bicou +31068,11,21713,21,blacrimosa +31068,11,21713,21,calebludrick +31068,11,21713,21,cdcrawford1979 +31068,11,21713,21,chriscymru +31068,11,21713,21,ciumetele +31068,11,21713,21,clive65 +31068,11,21713,21,coldpheasant +31068,11,21713,21,cooped02 +31068,11,21713,21,coraxcor +31068,11,21713,21,cromaa +31068,11,21713,21,dan_morey +31068,11,21713,21,darkhorse simon +31068,11,21713,21,deathforc +31068,11,21713,21,duskynoir +31068,11,21713,21,economy_weather +31068,11,21713,21,ejcarter +31068,11,21713,21,elinej +31068,11,21713,21,eljabbit +31068,11,21713,21,equalitytime +31068,11,21713,21,farmfanatik +31068,11,21713,21,fishtopher +31068,11,21713,21,garciawoosh +31068,11,21713,21,gardenbean +31068,11,21713,21,gemetrator +31068,11,21713,21,gian7 +31068,11,21713,21,grcak +31068,11,21713,21,grouchysmurf +31068,11,21713,21,grubbamatic +31068,11,21713,21,gunslinger six +31068,11,21713,21,guthwulfe +31068,11,21713,21,inthistube +31068,11,21713,21,jam37wcc +31068,11,21713,21,janicema +31068,11,21713,21,javierulf +31068,11,21713,21,jimmer +31068,11,21713,21,jyh19930302 +31068,11,21713,21,k1ayman +31068,11,21713,21,kayl +31068,11,21713,21,kbunn +31068,11,21713,21,kevling +31068,11,21713,21,kilted frog +31068,11,21713,21,kindayuuutsu +31068,11,21713,21,kingcauti +31068,11,21713,21,kino412 +31068,11,21713,21,kreyke +31068,11,21713,21,kronosjian +31068,11,21713,21,kummiseta +31068,11,21713,21,kwoiveth +31068,11,21713,21,lindabaker51 +31068,11,21713,21,lynosmd +31068,11,21713,21,magatone +31068,11,21713,21,malbs84 +31068,11,21713,21,masterkaboom +31068,11,21713,21,meiyas +31068,11,21713,21,mithoron +31068,11,21713,21,mlhibou +31068,11,21713,21,monkeyislander +31068,11,21713,21,moodster +31068,11,21713,21,mr_ten +31068,11,21713,21,mulanb +31068,11,21713,21,mumak_mumak +31068,11,21713,21,n8mar +31068,11,21713,21,nacrol_69 +31068,11,21713,21,nany_ +31068,11,21713,21,nathanbeckmann +31068,11,21713,21,needlesandpins +31068,11,21713,21,nevarus +31068,11,21713,21,njrusso +31068,11,21713,21,onanym +31068,11,21713,21,pacjacks +31068,11,21713,21,pajak +31068,11,21713,21,pepperpete +31068,11,21713,21,philosophus +31068,11,21713,21,phlux +31068,11,21713,21,pinchoak +31068,11,21713,21,playgirl64 +31068,11,21713,21,plem45 +31068,11,21713,21,ponyvalegeny +31068,11,21713,21,ptkw +31068,11,21713,21,puavo +31068,11,21713,21,rtugui +31068,11,21713,21,ry_snyder +31068,11,21713,21,sabbione +31068,11,21713,21,safe333 +31068,11,21713,21,sandromino +31068,11,21713,21,sasja157 +31068,11,21713,21,saumarez +31068,11,21713,21,sguard +31068,11,21713,21,shaonv +31068,11,21713,21,shlooby +31068,11,21713,21,shuibaibai +31068,11,21713,21,smgmatt +31068,11,21713,21,splatterthrash +31068,11,21713,21,springem +31068,11,21713,21,stubobj +31068,11,21713,21,super_steve18 +31068,11,21713,21,szopa +31068,11,21713,21,thelonelymeeple +31068,11,21713,21,tonemastag +31068,11,21713,21,troacctid +31068,11,21713,21,trykan +31068,11,21713,21,turgey +31068,11,21713,21,urbin +31068,11,21713,21,varotelo +31068,11,21713,21,vivisan +31068,11,21713,21,vnemesis +31068,11,21713,21,wchihan +31068,11,21713,21,wijsneussie +31068,11,21713,21,wolftan +31068,11,21713,21,yerbaceo +31068,11,21713,21,yitza +31068,11,21713,21,yrkalla +31068,11,21713,21,yuki916 +31068,11,21713,21,zoggi +31068,11,23640,20,6equj5 +31068,11,23640,20,acdietzc +31068,11,23640,20,afcgamer3 +31068,11,23640,20,ahoyjmai +31068,11,23640,20,alex31234 +31068,11,23640,20,anaconda +31068,11,23640,20,angst +31068,11,23640,20,aragorn89ns +31068,11,23640,20,arnimoller +31068,11,23640,20,artymorty +31068,11,23640,20,avale +31068,11,23640,20,bananica +31068,11,23640,20,bbergquist +31068,11,23640,20,bids_224 +31068,11,23640,20,bitomurder +31068,11,23640,20,bjessee +31068,11,23640,20,bluejaygamer +31068,11,23640,20,boardgame_teacher +31068,11,23640,20,briantong111 +31068,11,23640,20,cabakuko +31068,11,23640,20,cadrian710 +31068,11,23640,20,capnhk +31068,11,23640,20,cfreeman1305 +31068,11,23640,20,chammar +31068,11,23640,20,cheddarlimbo +31068,11,23640,20,crosstrader +31068,11,23640,20,cybrshaman +31068,11,23640,20,dagannondorf +31068,11,23640,20,dajake +31068,11,23640,20,dandytill +31068,11,23640,20,danilopatro +31068,11,23640,20,dbhirt +31068,11,23640,20,der_rentner +31068,11,23640,20,desirejam +31068,11,23640,20,dev88 +31068,11,23640,20,die_six +31068,11,23640,20,djct +31068,11,23640,20,dnuneza04 +31068,11,23640,20,dongdong0220 +31068,11,23640,20,el_italiano +31068,11,23640,20,emspire +31068,11,23640,20,ericksand +31068,11,23640,20,ezmac +31068,11,23640,20,fairgwen +31068,11,23640,20,fbarbirato +31068,11,23640,20,fermir +31068,11,23640,20,flying dodo +31068,11,23640,20,fsansir +31068,11,23640,20,gamer_bastion +31068,11,23640,20,genericname346 +31068,11,23640,20,ghostman +31068,11,23640,20,giorgio +31068,11,23640,20,gkfrost9 +31068,11,23640,20,graymauser +31068,11,23640,20,grlipilu +31068,11,23640,20,hauntedfrog +31068,11,23640,20,heretek +31068,11,23640,20,hgeyer99 +31068,11,23640,20,icic1010 +31068,11,23640,20,illest503 +31068,11,23640,20,iloveashesreborn +31068,11,23640,20,imunar +31068,11,23640,20,ishtar astart +31068,11,23640,20,janb +31068,11,23640,20,jaweis +31068,11,23640,20,jcheetsos +31068,11,23640,20,jermiranda +31068,11,23640,20,jkrayco +31068,11,23640,20,jmadseason +31068,11,23640,20,joebarlow73 +31068,11,23640,20,joncormier +31068,11,23640,20,josulf +31068,11,23640,20,joymom +31068,11,23640,20,jschro +31068,11,23640,20,jtkirk86 +31068,11,23640,20,justthreemeeple +31068,11,23640,20,jzedder +31068,11,23640,20,karrara +31068,11,23640,20,kckokomo +31068,11,23640,20,kelgogi +31068,11,23640,20,ketch +31068,11,23640,20,khelben7 +31068,11,23640,20,king dc +31068,11,23640,20,kittyrehab +31068,11,23640,20,kjh092 +31068,11,23640,20,kleinp4 +31068,11,23640,20,kryberg +31068,11,23640,20,ksy95 +31068,11,23640,20,larnth +31068,11,23640,20,legato +31068,11,23640,20,libev +31068,11,23640,20,lordleiter +31068,11,23640,20,lostgrail +31068,11,23640,20,magictom1 +31068,11,23640,20,makowey +31068,11,23640,20,marcelinopedro +31068,11,23640,20,marderubio +31068,11,23640,20,marilith91512 +31068,11,23640,20,matiojrzyk +31068,11,23640,20,maxo-texas +31068,11,23640,20,meridianx +31068,11,23640,20,michel61 +31068,11,23640,20,mikee +31068,11,23640,20,mikekbennett +31068,11,23640,20,misteratomicbomb +31068,11,23640,20,mnrsnor +31068,11,23640,20,moxi1991 +31068,11,23640,20,mrssphi +31068,11,23640,20,mtylergillett +31068,11,23640,20,newsources +31068,11,23640,20,nishidake +31068,11,23640,20,nitaro +31068,11,23640,20,o dinas powys +31068,11,23640,20,oeternalis +31068,11,23640,20,on tha huh +31068,11,23640,20,oneprime +31068,11,23640,20,onkel mac +31068,11,23640,20,opexp +31068,11,23640,20,ovnimoon +31068,11,23640,20,pan3gr +31068,11,23640,20,paperbag +31068,11,23640,20,parcunha +31068,11,23640,20,perforatore +31068,11,23640,20,pevans +31068,11,23640,20,phalanxbgg +31068,11,23640,20,phyzzer +31068,11,23640,20,ploentina +31068,11,23640,20,pokey_99 +31068,11,23640,20,pri izuhara +31068,11,23640,20,psychic_flakk +31068,11,23640,20,rabruzam +31068,11,23640,20,redbeard3 +31068,11,23640,20,renatyp +31068,11,23640,20,rkbodenner +31068,11,23640,20,robertataylor +31068,11,23640,20,robneville73 +31068,11,23640,20,rocketmagnetuk +31068,11,23640,20,rodgall +31068,11,23640,20,rudy242 +31068,11,23640,20,rupertandi +31068,11,23640,20,sgorham +31068,11,23640,20,shewa +31068,11,23640,20,silasng8 +31068,11,23640,20,silvermain +31068,11,23640,20,skittlesru +31068,11,23640,20,slobber_mcgee +31068,11,23640,20,smartcandy +31068,11,23640,20,snafoo +31068,11,23640,20,solutanio +31068,11,23640,20,somonflex +31068,11,23640,20,songbird +31068,11,23640,20,stainedglasshouse +31068,11,23640,20,stump172 +31068,11,23640,20,szithis +31068,11,23640,20,tabano +31068,11,23640,20,tarheelpo +31068,11,23640,20,tfekeeper +31068,11,23640,20,thenumbernine +31068,11,23640,20,thesealion +31068,11,23640,20,tuti007 +31068,11,23640,20,twuzzle +31068,11,23640,20,typhon +31068,11,23640,20,unlimiteddonuts +31068,11,23640,20,vacheman +31068,11,23640,20,vandervalks +31068,11,23640,20,walshammer +31068,11,23640,20,weretybe +31068,11,23640,20,wickeddecent +31068,11,23640,20,wijenik +31068,11,23640,20,wilmer1993 +31068,11,23640,20,winklepr +31068,11,23640,20,wspy +31068,11,23640,20,y-bot +31068,11,23640,20,yepjustfine +31068,11,23640,20,zalasta +31068,11,25880,19,a3on95 +31068,11,25880,19,acdcatino +31068,11,25880,19,adastra +31068,11,25880,19,adelaida_fx +31068,11,25880,19,ahdiabolo +31068,11,25880,19,ajbradsher +31068,11,25880,19,albinoparrot +31068,11,25880,19,alexnike90 +31068,11,25880,19,allopes +31068,11,25880,19,ameen_p +31068,11,25880,19,amitar +31068,11,25880,19,amp2130 +31068,11,25880,19,andrew63 +31068,11,25880,19,antsy_narwhals +31068,11,25880,19,anwa +31068,11,25880,19,arkayn +31068,11,25880,19,arranox +31068,11,25880,19,artful nudger +31068,11,25880,19,awrio +31068,11,25880,19,barnaby1980 +31068,11,25880,19,basstoneslap +31068,11,25880,19,bcroswell +31068,11,25880,19,bearman116 +31068,11,25880,19,beefcake +31068,11,25880,19,benji027 +31068,11,25880,19,berdman +31068,11,25880,19,berrot1 +31068,11,25880,19,biggz +31068,11,25880,19,billythedoll +31068,11,25880,19,binkman +31068,11,25880,19,birdman3477 +31068,11,25880,19,bkde +31068,11,25880,19,bkh003 +31068,11,25880,19,blindspot +31068,11,25880,19,boardgameric +31068,11,25880,19,bonga_5 +31068,11,25880,19,bozthekitty +31068,11,25880,19,brangelina +31068,11,25880,19,breecules +31068,11,25880,19,brigand77 +31068,11,25880,19,browarion +31068,11,25880,19,caitlinsquared +31068,11,25880,19,caleb4815162342 +31068,11,25880,19,camidon +31068,11,25880,19,cardila +31068,11,25880,19,ccast291 +31068,11,25880,19,chaosredhorseman +31068,11,25880,19,che4p +31068,11,25880,19,chris_arsenal +31068,11,25880,19,chriswoodfromwood +31068,11,25880,19,chucker101 +31068,11,25880,19,churst8 +31068,11,25880,19,chyraski +31068,11,25880,19,clarkdeez13 +31068,11,25880,19,cmdrkiley +31068,11,25880,19,colonnello vincent +31068,11,25880,19,complacentbadger +31068,11,25880,19,crazeguy +31068,11,25880,19,crunchbunch +31068,11,25880,19,d1zzy88 +31068,11,25880,19,dangerous dave +31068,11,25880,19,dapperdan +31068,11,25880,19,darkmellmo +31068,11,25880,19,darkwind +31068,11,25880,19,datalink7 +31068,11,25880,19,datamonk +31068,11,25880,19,dawall +31068,11,25880,19,der doktor +31068,11,25880,19,devilfiend +31068,11,25880,19,dharriman0329 +31068,11,25880,19,diskus999 +31068,11,25880,19,dobry_kapitan +31068,11,25880,19,doctawho +31068,11,25880,19,donglo +31068,11,25880,19,doom40000 +31068,11,25880,19,dougfoolery +31068,11,25880,19,dr_strangelove +31068,11,25880,19,drbrewhaha +31068,11,25880,19,ee_sson +31068,11,25880,19,emiiple +31068,11,25880,19,ericdrum +31068,11,25880,19,eriflat +31068,11,25880,19,erinmcm1 +31068,11,25880,19,etiqque +31068,11,25880,19,facesnorth +31068,11,25880,19,fagerlund +31068,11,25880,19,fatombe +31068,11,25880,19,fbdog +31068,11,25880,19,fengxiaojie +31068,11,25880,19,feritto +31068,11,25880,19,filbo +31068,11,25880,19,flyingmuttley +31068,11,25880,19,frodius +31068,11,25880,19,fuzzy77 +31068,11,25880,19,gamermomgeek +31068,11,25880,19,gkroumf +31068,11,25880,19,gmchaffie +31068,11,25880,19,goku23 +31068,11,25880,19,gomavik +31068,11,25880,19,gonzalobediadiaz +31068,11,25880,19,gringo123 +31068,11,25880,19,grognardlibrarian +31068,11,25880,19,gyoku +31068,11,25880,19,haida +31068,11,25880,19,hardsteel +31068,11,25880,19,hellkeli +31068,11,25880,19,hillsidecouncil +31068,11,25880,19,hoop +31068,11,25880,19,hysaga +31068,11,25880,19,ibritov +31068,11,25880,19,independentgeorge +31068,11,25880,19,ingusst +31068,11,25880,19,ithryn +31068,11,25880,19,j_trout +31068,11,25880,19,jabesly73 +31068,11,25880,19,jacobcjwolf +31068,11,25880,19,japan +31068,11,25880,19,jauger83 +31068,11,25880,19,javibal +31068,11,25880,19,jayman66 +31068,11,25880,19,jcdenton2 +31068,11,25880,19,jcxt123 +31068,11,25880,19,jmoyalo +31068,11,25880,19,johnkeefauver +31068,11,25880,19,joshguerette +31068,11,25880,19,jqxz4fun +31068,11,25880,19,jrobyo +31068,11,25880,19,jssb267 +31068,11,25880,19,juantamayo +31068,11,25880,19,juergengoettler +31068,11,25880,19,jultz +31068,11,25880,19,jumpfish152 +31068,11,25880,19,jwski +31068,11,25880,19,jym77 +31068,11,25880,19,kabarol +31068,11,25880,19,kaiju_slayer +31068,11,25880,19,karharoth +31068,11,25880,19,kaylanimis +31068,11,25880,19,kellermeister +31068,11,25880,19,kilivor +31068,11,25880,19,koko_lores +31068,11,25880,19,kyrsk +31068,11,25880,19,kzman13 +31068,11,25880,19,larchipel +31068,11,25880,19,lezard82 +31068,11,25880,19,lint +31068,11,25880,19,lionheart039 +31068,11,25880,19,llama998 +31068,11,25880,19,lord flashheart +31068,11,25880,19,lzxiii +31068,11,25880,19,m:cafe +31068,11,25880,19,ma3dhros +31068,11,25880,19,magalvao +31068,11,25880,19,maniaran +31068,11,25880,19,manitoe +31068,11,25880,19,maremas +31068,11,25880,19,markofishhead +31068,11,25880,19,markus_n +31068,11,25880,19,matsve +31068,11,25880,19,matsyo +31068,11,25880,19,mbascom +31068,11,25880,19,mcpwn3r +31068,11,25880,19,meisterstu +31068,11,25880,19,merve +31068,11,25880,19,mfmarkey +31068,11,25880,19,miguel_algar +31068,11,25880,19,milla1910 +31068,11,25880,19,missmenace +31068,11,25880,19,molibdenowy +31068,11,25880,19,morahek +31068,11,25880,19,mountainmage +31068,11,25880,19,mperry +31068,11,25880,19,murlacher +31068,11,25880,19,murmidon +31068,11,25880,19,myrthebuhrs +31068,11,25880,19,naitsabres +31068,11,25880,19,necrisphyder +31068,11,25880,19,neeyt +31068,11,25880,19,nerwengreen +31068,11,25880,19,newgate +31068,11,25880,19,nickle94 +31068,11,25880,19,nipunnanda +31068,11,25880,19,nomasovejas +31068,11,25880,19,north_wolf +31068,11,25880,19,nsolitander +31068,11,25880,19,outinthedark +31068,11,25880,19,ozgamer +31068,11,25880,19,pandomonio +31068,11,25880,19,paul shabatowski +31068,11,25880,19,pauler95 +31068,11,25880,19,pezking +31068,11,25880,19,philokrates +31068,11,25880,19,pthron +31068,11,25880,19,puremagicka +31068,11,25880,19,pyrosixer9 +31068,11,25880,19,qbsterr +31068,11,25880,19,quagliostro +31068,11,25880,19,r3dbandit +31068,11,25880,19,radfordblue +31068,11,25880,19,rathamoon +31068,11,25880,19,rctfan +31068,11,25880,19,redddesertgames +31068,11,25880,19,redddigger73 +31068,11,25880,19,redjack11 +31068,11,25880,19,reedsrere +31068,11,25880,19,reneto +31068,11,25880,19,romek010 +31068,11,25880,19,rowis +31068,11,25880,19,runowski +31068,11,25880,19,ryanek11 +31068,11,25880,19,ryanplugs +31068,11,25880,19,s0laris +31068,11,25880,19,sam666 +31068,11,25880,19,sartou +31068,11,25880,19,scornfultoast +31068,11,25880,19,scotwk +31068,11,25880,19,sever2morrow +31068,11,25880,19,shadyna +31068,11,25880,19,sicsicsic +31068,11,25880,19,sighonk +31068,11,25880,19,siiludus +31068,11,25880,19,skancke +31068,11,25880,19,smithlucas +31068,11,25880,19,snekse +31068,11,25880,19,soapbox824 +31068,11,25880,19,soulblighter +31068,11,25880,19,species10026 +31068,11,25880,19,spikopath +31068,11,25880,19,statman8 +31068,11,25880,19,stubbs65 +31068,11,25880,19,stutzj +31068,11,25880,19,swaggymcyolo +31068,11,25880,19,swdevlin +31068,11,25880,19,swordfish101 +31068,11,25880,19,teloric +31068,11,25880,19,the_tim +31068,11,25880,19,theadder647 +31068,11,25880,19,thirty30 +31068,11,25880,19,thomaso827 +31068,11,25880,19,tiberiusaugustus +31068,11,25880,19,tigervamp +31068,11,25880,19,tim111109 +31068,11,25880,19,tmokwa +31068,11,25880,19,tobeza +31068,11,25880,19,tomek0023 +31068,11,25880,19,tommen +31068,11,25880,19,tuva_lisa +31068,11,25880,19,unclelothar +31068,11,25880,19,unclesamb +31068,11,25880,19,veritaas +31068,11,25880,19,vibagon +31068,11,25880,19,viktorfaress +31068,11,25880,19,vitkos86 +31068,11,25880,19,walkearth +31068,11,25880,19,whisper_deshade +31068,11,25880,19,wigmores +31068,11,25880,19,wito5 +31068,11,25880,19,xela1970 +31068,11,25880,19,yesnid +31068,11,25880,19,zewsi +31068,11,28174,18,1337house +31068,11,28174,18,a.men +31068,11,28174,18,aangman +31068,11,28174,18,aaronthered +31068,11,28174,18,aboedaby +31068,11,28174,18,adipb12 +31068,11,28174,18,afhtan +31068,11,28174,18,agorski +31068,11,28174,18,aikunebgg +31068,11,28174,18,aldientthered +31068,11,28174,18,aldous77 +31068,11,28174,18,alita_99 +31068,11,28174,18,amberlilian +31068,11,28174,18,amyshott +31068,11,28174,18,ancrol +31068,11,28174,18,andre viana +31068,11,28174,18,andreagee +31068,11,28174,18,andyanojuice +31068,11,28174,18,anticolghost +31068,11,28174,18,aquaboy93 +31068,11,28174,18,armerpoet +31068,11,28174,18,artefact +31068,11,28174,18,arteus +31068,11,28174,18,arthur09 +31068,11,28174,18,asherai +31068,11,28174,18,atilye +31068,11,28174,18,avlpigeon +31068,11,28174,18,aybabtujpf +31068,11,28174,18,bacchus +31068,11,28174,18,balear_69 +31068,11,28174,18,baloo3 +31068,11,28174,18,balthashor +31068,11,28174,18,barbune ice +31068,11,28174,18,bard77 +31068,11,28174,18,beefiusmaximus +31068,11,28174,18,bggmarketunethical +31068,11,28174,18,bicolorcardinal +31068,11,28174,18,bigdeno +31068,11,28174,18,biii +31068,11,28174,18,blackbones +31068,11,28174,18,blackfold +31068,11,28174,18,blackslack +31068,11,28174,18,blasphemous hammer +31068,11,28174,18,blastoys +31068,11,28174,18,blinkingbug +31068,11,28174,18,board_zeeky +31068,11,28174,18,boathouselooper +31068,11,28174,18,brativtke +31068,11,28174,18,bren_ticus +31068,11,28174,18,bshow1224 +31068,11,28174,18,buckbagr +31068,11,28174,18,bum8888 +31068,11,28174,18,burger22 +31068,11,28174,18,byrdru +31068,11,28174,18,calebray84759 +31068,11,28174,18,calo_l +31068,11,28174,18,carriesue41 +31068,11,28174,18,caseypd63 +31068,11,28174,18,chapmancj +31068,11,28174,18,charly_vigo +31068,11,28174,18,chrelin +31068,11,28174,18,chrislems +31068,11,28174,18,chubmonger +31068,11,28174,18,chunky22 +31068,11,28174,18,cicik +31068,11,28174,18,cinnamonfusion +31068,11,28174,18,clamadofas +31068,11,28174,18,clark h. +31068,11,28174,18,climbingineriador +31068,11,28174,18,cmdrsunshine +31068,11,28174,18,conair +31068,11,28174,18,congokees +31068,11,28174,18,cosmicoccurence +31068,11,28174,18,creavill +31068,11,28174,18,crisfmartinelli +31068,11,28174,18,cryosneasel +31068,11,28174,18,cygnus06 +31068,11,28174,18,dabozz9999 +31068,11,28174,18,dander53 +31068,11,28174,18,daniel yokomizo +31068,11,28174,18,dare +31068,11,28174,18,darkglassb7k +31068,11,28174,18,darkunor +31068,11,28174,18,darrylbrown3567 +31068,11,28174,18,darwins_dog +31068,11,28174,18,dasteve003 +31068,11,28174,18,davechild +31068,11,28174,18,davidmushing +31068,11,28174,18,davidthedane +31068,11,28174,18,dcsmith +31068,11,28174,18,deadmanjones +31068,11,28174,18,deeman8351 +31068,11,28174,18,desanhill +31068,11,28174,18,desigual +31068,11,28174,18,deucemckenzie +31068,11,28174,18,deus_ex_machina +31068,11,28174,18,devdev85 +31068,11,28174,18,die wespe +31068,11,28174,18,dijae +31068,11,28174,18,dkearns +31068,11,28174,18,dmstreek8 +31068,11,28174,18,dodger245 +31068,11,28174,18,donvolador +31068,11,28174,18,dos246 +31068,11,28174,18,dpratt00 +31068,11,28174,18,drownman +31068,11,28174,18,edisonmm +31068,11,28174,18,elias78gr +31068,11,28174,18,eliodoloro +31068,11,28174,18,elisa94 +31068,11,28174,18,elysejeux +31068,11,28174,18,enchained +31068,11,28174,18,eppst1 +31068,11,28174,18,erkan81 +31068,11,28174,18,erroldbr +31068,11,28174,18,euhenio_p +31068,11,28174,18,fc dynamo turbine +31068,11,28174,18,fireproofpotatoes +31068,11,28174,18,fleahost +31068,11,28174,18,folkeserbe +31068,11,28174,18,frenchymm +31068,11,28174,18,futtererj +31068,11,28174,18,fyxsius +31068,11,28174,18,gaborvagyok +31068,11,28174,18,gabriel87va +31068,11,28174,18,gain4010 +31068,11,28174,18,gamer10150512 +31068,11,28174,18,garrity20 +31068,11,28174,18,gaspar2510 +31068,11,28174,18,georgeandpeggy +31068,11,28174,18,gerdherman +31068,11,28174,18,giftland +31068,11,28174,18,gionsno +31068,11,28174,18,girugatrap +31068,11,28174,18,glanfam +31068,11,28174,18,goetzinb +31068,11,28174,18,gonn +31068,11,28174,18,gook the goblin +31068,11,28174,18,goran79 +31068,11,28174,18,goxelotti +31068,11,28174,18,greenedr00l +31068,11,28174,18,grenade +31068,11,28174,18,grenadier32 +31068,11,28174,18,grexxen +31068,11,28174,18,greyhawk78 +31068,11,28174,18,groovyrice +31068,11,28174,18,grubiizakat +31068,11,28174,18,gunslinger81 +31068,11,28174,18,h row buzz +31068,11,28174,18,hayala +31068,11,28174,18,hermanherman +31068,11,28174,18,hfrank777 +31068,11,28174,18,hibsta +31068,11,28174,18,hiruga +31068,11,28174,18,hmsgannet +31068,11,28174,18,hunklin +31068,11,28174,18,hyoga +31068,11,28174,18,i_am_jessjoy +31068,11,28174,18,illyrien +31068,11,28174,18,imagesmith +31068,11,28174,18,incognitopsycho +31068,11,28174,18,inkni +31068,11,28174,18,inland murmur +31068,11,28174,18,ioveracker +31068,11,28174,18,iuchiban +31068,11,28174,18,ivan_roma +31068,11,28174,18,ivanbarker +31068,11,28174,18,jacaspe +31068,11,28174,18,jaesar +31068,11,28174,18,jahk8861 +31068,11,28174,18,jalkazar +31068,11,28174,18,jaloque08 +31068,11,28174,18,jared_thompson +31068,11,28174,18,jblewis +31068,11,28174,18,jesja +31068,11,28174,18,jjones8086 +31068,11,28174,18,jkirsch +31068,11,28174,18,jmuckey +31068,11,28174,18,jobvis +31068,11,28174,18,joedogboy +31068,11,28174,18,johnadkins +31068,11,28174,18,jonow12 +31068,11,28174,18,jordyv +31068,11,28174,18,jorgefleta +31068,11,28174,18,joshmygosh +31068,11,28174,18,jpkaro +31068,11,28174,18,jrothaug +31068,11,28174,18,jsdougan +31068,11,28174,18,juhlkekarl +31068,11,28174,18,kachu25 +31068,11,28174,18,kaffe_elis123 +31068,11,28174,18,karlmachi +31068,11,28174,18,katie582 +31068,11,28174,18,kaxte +31068,11,28174,18,keefrie +31068,11,28174,18,kernowekya +31068,11,28174,18,khalin1986 +31068,11,28174,18,kidcham +31068,11,28174,18,kieranbuhler4 +31068,11,28174,18,kikiottosen +31068,11,28174,18,king mob +31068,11,28174,18,kingarthur0404 +31068,11,28174,18,kiowas +31068,11,28174,18,kiv91 +31068,11,28174,18,klebinaldo +31068,11,28174,18,knurt +31068,11,28174,18,kotadivine +31068,11,28174,18,kruxxx +31068,11,28174,18,lagomrullator +31068,11,28174,18,lalalo998 +31068,11,28174,18,lazytrain +31068,11,28174,18,leece +31068,11,28174,18,legendarymuffin +31068,11,28174,18,lewibob +31068,11,28174,18,liberor13 +31068,11,28174,18,liit +31068,11,28174,18,likearock111 +31068,11,28174,18,liquid dawn +31068,11,28174,18,litenkroft +31068,11,28174,18,lithstud +31068,11,28174,18,lizardonawindowpane +31068,11,28174,18,lolazzaro +31068,11,28174,18,lordfireyes +31068,11,28174,18,lordnurgle1 +31068,11,28174,18,lossentur +31068,11,28174,18,lukagian +31068,11,28174,18,lukestrotz +31068,11,28174,18,m1_ke +31068,11,28174,18,madtricks +31068,11,28174,18,magnetgrrl +31068,11,28174,18,magu +31068,11,28174,18,maiksu +31068,11,28174,18,mainman +31068,11,28174,18,maizuddin35 +31068,11,28174,18,mangekyo +31068,11,28174,18,marc8779 +31068,11,28174,18,marneberg +31068,11,28174,18,matticus27 +31068,11,28174,18,mcpat0226 +31068,11,28174,18,meisterxc +31068,11,28174,18,memonte +31068,11,28174,18,metor2 +31068,11,28174,18,mgrajcarek +31068,11,28174,18,mignacian +31068,11,28174,18,miguelitos +31068,11,28174,18,mikoxl +31068,11,28174,18,milleraj001 +31068,11,28174,18,miltonp12 +31068,11,28174,18,mimine74 +31068,11,28174,18,mirsek +31068,11,28174,18,mishra34 +31068,11,28174,18,miss_azrael +31068,11,28174,18,mls5stokes +31068,11,28174,18,mmkv +31068,11,28174,18,mogame98 +31068,11,28174,18,moniq +31068,11,28174,18,morningrage +31068,11,28174,18,mr_boom +31068,11,28174,18,mr_mcrabbit +31068,11,28174,18,mwaldo +31068,11,28174,18,najvecamoc +31068,11,28174,18,nedplayer +31068,11,28174,18,nekkoru +31068,11,28174,18,newgameperson +31068,11,28174,18,niadhiel +31068,11,28174,18,nilesde +31068,11,28174,18,nirv88 +31068,11,28174,18,nolando +31068,11,28174,18,nuntie +31068,11,28174,18,nusskaffee +31068,11,28174,18,oksyslo +31068,11,28174,18,olgaww +31068,11,28174,18,olsfarm +31068,11,28174,18,olthar +31068,11,28174,18,onz87 +31068,11,28174,18,ooku +31068,11,28174,18,opeth50 +31068,11,28174,18,orangedog +31068,11,28174,18,oshnap +31068,11,28174,18,pahn +31068,11,28174,18,palcs +31068,11,28174,18,pankral +31068,11,28174,18,patrickbnu +31068,11,28174,18,peterweb +31068,11,28174,18,peukon +31068,11,28174,18,philreed +31068,11,28174,18,phlipy +31068,11,28174,18,phoolish +31068,11,28174,18,pizzaprincess +31068,11,28174,18,pmpeon +31068,11,28174,18,postmolodost +31068,11,28174,18,powerbait +31068,11,28174,18,procyonlotor +31068,11,28174,18,psimon_tyo +31068,11,28174,18,qosmos +31068,11,28174,18,quiksilver1986 +31068,11,28174,18,quinndo +31068,11,28174,18,raphv07 +31068,11,28174,18,razia +31068,11,28174,18,redviper +31068,11,28174,18,remleduff +31068,11,28174,18,rhollo +31068,11,28174,18,richb21 +31068,11,28174,18,ripwannabe32 +31068,11,28174,18,robgraves +31068,11,28174,18,robynico05 +31068,11,28174,18,rockwoofstone +31068,11,28174,18,rogue461 +31068,11,28174,18,romeoix +31068,11,28174,18,ronny1610 +31068,11,28174,18,rowdy +31068,11,28174,18,royaldc +31068,11,28174,18,rubal512 +31068,11,28174,18,rustico +31068,11,28174,18,rwlyply +31068,11,28174,18,samuraicat +31068,11,28174,18,sarkycogs +31068,11,28174,18,scizztil +31068,11,28174,18,scorcherdarkly +31068,11,28174,18,scoresfilm +31068,11,28174,18,scottyos +31068,11,28174,18,scubasteve319 +31068,11,28174,18,seiv +31068,11,28174,18,selanator +31068,11,28174,18,sephiroth92492 +31068,11,28174,18,sg219 +31068,11,28174,18,shep9882 +31068,11,28174,18,shyrik +31068,11,28174,18,sillywilly4 +31068,11,28174,18,simojoe +31068,11,28174,18,sirentian +31068,11,28174,18,sithel +31068,11,28174,18,slickdpdx +31068,11,28174,18,slightlybearded +31068,11,28174,18,slimjuggalo2002 +31068,11,28174,18,snoortsch +31068,11,28174,18,solracarlos +31068,11,28174,18,soul42 +31068,11,28174,18,souldrinker +31068,11,28174,18,spaison +31068,11,28174,18,spydrpg +31068,11,28174,18,ssendon +31068,11,28174,18,sterimar +31068,11,28174,18,steveford +31068,11,28174,18,stexxx +31068,11,28174,18,suomieven +31068,11,28174,18,supernaut73 +31068,11,28174,18,svendbuus +31068,11,28174,18,szinten +31068,11,28174,18,tacodell +31068,11,28174,18,tag-uk +31068,11,28174,18,tanklin13 +31068,11,28174,18,tasiewbao +31068,11,28174,18,tatertotmonkey +31068,11,28174,18,teamwest +31068,11,28174,18,teoram +31068,11,28174,18,thebvz +31068,11,28174,18,thefreak +31068,11,28174,18,thejoeshow +31068,11,28174,18,thekruegerknows +31068,11,28174,18,thinyau +31068,11,28174,18,tholrin +31068,11,28174,18,thorshammer +31068,11,28174,18,tiberius_foster +31068,11,28174,18,tiga36 +31068,11,28174,18,tiglethpilisar +31068,11,28174,18,timbo22 +31068,11,28174,18,timthree +31068,11,28174,18,tobakai +31068,11,28174,18,tolchock +31068,11,28174,18,toniboard +31068,11,28174,18,tonyvan +31068,11,28174,18,toskwolf +31068,11,28174,18,totengesang +31068,11,28174,18,toxziq +31068,11,28174,18,traius +31068,11,28174,18,trewavas +31068,11,28174,18,true_cricket +31068,11,28174,18,tubby +31068,11,28174,18,tumblingbirds +31068,11,28174,18,tyfly +31068,11,28174,18,unreal41683 +31068,11,28174,18,vartic +31068,11,28174,18,venjra +31068,11,28174,18,vespiro +31068,11,28174,18,victor mancha +31068,11,28174,18,vlad_pl +31068,11,28174,18,voegelas +31068,11,28174,18,voidrender +31068,11,28174,18,vsrekt +31068,11,28174,18,wademoore +31068,11,28174,18,wamphx +31068,11,28174,18,whiteknightlm +31068,11,28174,18,whopper92 +31068,11,28174,18,winescar +31068,11,28174,18,wojta +31068,11,28174,18,wolfinj +31068,11,28174,18,x_dan +31068,11,28174,18,xelamitchell +31068,11,28174,18,xelian +31068,11,28174,18,yaaaxcomigen +31068,11,28174,18,yakovan94 +31068,11,28174,18,yeknom02 +31068,11,28174,18,yellowhammer +31068,11,28174,18,ylarnja +31068,11,28174,18,yoricktlm +31068,11,28174,18,yorkscorpio69 +31068,11,28174,18,zara2stra +31068,11,28174,18,zetanas +31068,11,28174,18,zhukovez +31068,11,28174,18,zogjones +31068,11,30791,17,1agerace1 +31068,11,30791,17,_zephyr +31068,11,30791,17,aarmjohn +31068,11,30791,17,aasnan +31068,11,30791,17,abhollan +31068,11,30791,17,abraxas003 +31068,11,30791,17,abril +31068,11,30791,17,acardboardbox +31068,11,30791,17,acext +31068,11,30791,17,achrilon +31068,11,30791,17,adamantos +31068,11,30791,17,addmueller +31068,11,30791,17,adominish +31068,11,30791,17,adwodon +31068,11,30791,17,adzhey +31068,11,30791,17,aenea +31068,11,30791,17,agaguk8 +31068,11,30791,17,aggers +31068,11,30791,17,alchemy_cox +31068,11,30791,17,alejandro58 +31068,11,30791,17,aleksije +31068,11,30791,17,alextryg +31068,11,30791,17,alkaline2k2 +31068,11,30791,17,almudena_lr +31068,11,30791,17,alucard722 +31068,11,30791,17,ambrose +31068,11,30791,17,anaconda9000 +31068,11,30791,17,anchgu7 +31068,11,30791,17,andreytis +31068,11,30791,17,anexandra +31068,11,30791,17,anhtung6a10 +31068,11,30791,17,aorghl +31068,11,30791,17,apolishbeast +31068,11,30791,17,aqualicy +31068,11,30791,17,arguleonveq +31068,11,30791,17,arnaugir +31068,11,30791,17,arned +31068,11,30791,17,artania +31068,11,30791,17,artosanfin +31068,11,30791,17,aschreibs35 +31068,11,30791,17,asuragogo +31068,11,30791,17,atmer +31068,11,30791,17,avbenden +31068,11,30791,17,baldred +31068,11,30791,17,balinonim +31068,11,30791,17,baraldi82 +31068,11,30791,17,bartusm +31068,11,30791,17,basto +31068,11,30791,17,baychang +31068,11,30791,17,bebeaman +31068,11,30791,17,benschel +31068,11,30791,17,berniebaerchen +31068,11,30791,17,bigjobbies +31068,11,30791,17,bigsofty +31068,11,30791,17,bigturkjr +31068,11,30791,17,billsaints +31068,11,30791,17,bingelder +31068,11,30791,17,bj51 +31068,11,30791,17,bkelso40 +31068,11,30791,17,bkornele +31068,11,30791,17,blackforestham +31068,11,30791,17,blia +31068,11,30791,17,bluewizard +31068,11,30791,17,boardgameaddiction +31068,11,30791,17,boardjam +31068,11,30791,17,bobbyg4040 +31068,11,30791,17,bobmn +31068,11,30791,17,boilertmac +31068,11,30791,17,bongofire +31068,11,30791,17,bonzoth +31068,11,30791,17,brandontheodore +31068,11,30791,17,brendover +31068,11,30791,17,bruder verdruss +31068,11,30791,17,bs911 +31068,11,30791,17,bueckerm +31068,11,30791,17,bunnef +31068,11,30791,17,burgundy90 +31068,11,30791,17,butterk3kz +31068,11,30791,17,c thompson +31068,11,30791,17,c4ux +31068,11,30791,17,caboomer +31068,11,30791,17,cadblur +31068,11,30791,17,cainosnam +31068,11,30791,17,callopski +31068,11,30791,17,callorio +31068,11,30791,17,campeador +31068,11,30791,17,capntallon +31068,11,30791,17,captin_derka +31068,11,30791,17,caracas_ +31068,11,30791,17,castort +31068,11,30791,17,catch 22 +31068,11,30791,17,cats 4 mice +31068,11,30791,17,cecilyk +31068,11,30791,17,chalen43506 +31068,11,30791,17,chamnix +31068,11,30791,17,charlescab +31068,11,30791,17,chatbourin +31068,11,30791,17,chestervp +31068,11,30791,17,choppedsuey +31068,11,30791,17,chrysale +31068,11,30791,17,cidrixx +31068,11,30791,17,cloud2920 +31068,11,30791,17,colin_sic +31068,11,30791,17,commacozzee +31068,11,30791,17,confusedkitty +31068,11,30791,17,cosmonik +31068,11,30791,17,crayson +31068,11,30791,17,creascreatur +31068,11,30791,17,crimsonking +31068,11,30791,17,criticaldave +31068,11,30791,17,cruciana +31068,11,30791,17,cryptfiend85 +31068,11,30791,17,ctcabrera +31068,11,30791,17,cthulhuthegreat +31068,11,30791,17,culblu +31068,11,30791,17,dahusband +31068,11,30791,17,danielchungf +31068,11,30791,17,danielos81 +31068,11,30791,17,danielsvanstrom +31068,11,30791,17,darkbeto +31068,11,30791,17,darrinott +31068,11,30791,17,darthkittius +31068,11,30791,17,darthtanion +31068,11,30791,17,davidnoo +31068,11,30791,17,ddavebowman +31068,11,30791,17,deadlyfeet1 +31068,11,30791,17,dedbob +31068,11,30791,17,demonballpopp +31068,11,30791,17,dewaldsteyn +31068,11,30791,17,df1977 +31068,11,30791,17,dinges +31068,11,30791,17,dirkjan82 +31068,11,30791,17,djg414 +31068,11,30791,17,djwojtek +31068,11,30791,17,dmcb +31068,11,30791,17,docf +31068,11,30791,17,domeru +31068,11,30791,17,doogan +31068,11,30791,17,dorywalski +31068,11,30791,17,douglasderpich +31068,11,30791,17,dragonen +31068,11,30791,17,dragons77 +31068,11,30791,17,dragoonwho +31068,11,30791,17,drpink +31068,11,30791,17,duckyguy +31068,11,30791,17,dudefella +31068,11,30791,17,dungeoncrawler75 +31068,11,30791,17,dustinlamb +31068,11,30791,17,dysnomion +31068,11,30791,17,egfabt +31068,11,30791,17,eiric +31068,11,30791,17,eldavisnar +31068,11,30791,17,eldistopico +31068,11,30791,17,elidan +31068,11,30791,17,ell__ +31068,11,30791,17,elliotthj91 +31068,11,30791,17,emmalikesgames +31068,11,30791,17,emperoratahualpa +31068,11,30791,17,ennam +31068,11,30791,17,epidemic890 +31068,11,30791,17,ericthehalfabee +31068,11,30791,17,eridanous +31068,11,30791,17,erlende +31068,11,30791,17,erni +31068,11,30791,17,esceptor +31068,11,30791,17,eu_mrr +31068,11,30791,17,eyesis +31068,11,30791,17,fahdingding +31068,11,30791,17,fakahela +31068,11,30791,17,falconite +31068,11,30791,17,feank +31068,11,30791,17,ferrukelus +31068,11,30791,17,finnzo +31068,11,30791,17,fleming2015 +31068,11,30791,17,fone bone10 +31068,11,30791,17,fooy +31068,11,30791,17,foxmulder73 +31068,11,30791,17,freddyleop +31068,11,30791,17,futuredrax +31068,11,30791,17,gam3rgal11 +31068,11,30791,17,gamerkingfaiz +31068,11,30791,17,garrulo +31068,11,30791,17,gelraiser +31068,11,30791,17,gioncilliers +31068,11,30791,17,gladiatorjt66 +31068,11,30791,17,gmgdave +31068,11,30791,17,goatee21 +31068,11,30791,17,godfella +31068,11,30791,17,goldenrule +31068,11,30791,17,goleen83 +31068,11,30791,17,goodolrudiger +31068,11,30791,17,greenecam +31068,11,30791,17,greenvas +31068,11,30791,17,gressa +31068,11,30791,17,grunnboy +31068,11,30791,17,gummok +31068,11,30791,17,gutteranthems +31068,11,30791,17,gvreerean +31068,11,30791,17,h3rby +31068,11,30791,17,haggis +31068,11,30791,17,hallometesmee +31068,11,30791,17,hans wakeva +31068,11,30791,17,hawque +31068,11,30791,17,helix91 +31068,11,30791,17,hergath +31068,11,30791,17,himecortana +31068,11,30791,17,hnelsonh +31068,11,30791,17,hr_k +31068,11,30791,17,huafen +31068,11,30791,17,hugoffsport +31068,11,30791,17,i am nobody +31068,11,30791,17,idontknow01 +31068,11,30791,17,igel_son +31068,11,30791,17,igor1970 +31068,11,30791,17,ikesteroma +31068,11,30791,17,ilfant +31068,11,30791,17,infestalia +31068,11,30791,17,inflare +31068,11,30791,17,iskendercatalbas +31068,11,30791,17,itnash +31068,11,30791,17,itsterry +31068,11,30791,17,ituri +31068,11,30791,17,izlola +31068,11,30791,17,izual1980 +31068,11,30791,17,jadrankoyury +31068,11,30791,17,jasonmatthews +31068,11,30791,17,jaszczurxp +31068,11,30791,17,jcraw7256 +31068,11,30791,17,jdjz +31068,11,30791,17,jertlemiah +31068,11,30791,17,jfonz +31068,11,30791,17,jggarrido +31068,11,30791,17,jherod +31068,11,30791,17,jj1234567 +31068,11,30791,17,jlcm1977 +31068,11,30791,17,jlopezfdez +31068,11,30791,17,joao3101 +31068,11,30791,17,johnnebauer +31068,11,30791,17,johnstiv +31068,11,30791,17,jojolafrite +31068,11,30791,17,jokerxgg +31068,11,30791,17,jomagna +31068,11,30791,17,jopo43 +31068,11,30791,17,jordeb85 +31068,11,30791,17,jpedro13 +31068,11,30791,17,jshufelt +31068,11,30791,17,jsmyong55 +31068,11,30791,17,jugma +31068,11,30791,17,julianfields +31068,11,30791,17,junshengkeh +31068,11,30791,17,kamshaft +31068,11,30791,17,kappydk +31068,11,30791,17,karajohn13 +31068,11,30791,17,karlleo +31068,11,30791,17,karnor +31068,11,30791,17,katze83 +31068,11,30791,17,kazallas117 +31068,11,30791,17,kdox +31068,11,30791,17,kec120 +31068,11,30791,17,kenji310 +31068,11,30791,17,ketarb +31068,11,30791,17,kevlar0914 +31068,11,30791,17,kheotour +31068,11,30791,17,kid bison +31068,11,30791,17,kilian_hacker +31068,11,30791,17,kilukru +31068,11,30791,17,kinadian +31068,11,30791,17,kirkanos2882 +31068,11,30791,17,kiwi_realms +31068,11,30791,17,klausinho +31068,11,30791,17,koeppen +31068,11,30791,17,konradk +31068,11,30791,17,krisneg +31068,11,30791,17,ktulu179 +31068,11,30791,17,ktwright33 +31068,11,30791,17,kuuolio +31068,11,30791,17,kvaren +31068,11,30791,17,laker272 +31068,11,30791,17,lastdomovoi +31068,11,30791,17,lateralusl +31068,11,30791,17,laudril +31068,11,30791,17,leroysqueaks +31068,11,30791,17,levi_h +31068,11,30791,17,libahundu +31068,11,30791,17,libano +31068,11,30791,17,litebulb88 +31068,11,30791,17,lithrac +31068,11,30791,17,lord mcmatty +31068,11,30791,17,lou_d13 +31068,11,30791,17,loveghen +31068,11,30791,17,lucas0014 +31068,11,30791,17,lukaszsz +31068,11,30791,17,lyrijan +31068,11,30791,17,ma8rlw +31068,11,30791,17,madilo +31068,11,30791,17,maestriche +31068,11,30791,17,maikeldice +31068,11,30791,17,malvado +31068,11,30791,17,mariangela24 +31068,11,30791,17,mario moore +31068,11,30791,17,mariogranollers +31068,11,30791,17,martin014 +31068,11,30791,17,mateb +31068,11,30791,17,math532 +31068,11,30791,17,matix_bgg +31068,11,30791,17,mattbook +31068,11,30791,17,matteo_ +31068,11,30791,17,mattrixl +31068,11,30791,17,mcyoyas +31068,11,30791,17,mdimmic +31068,11,30791,17,meefischle +31068,11,30791,17,meepleking +31068,11,30791,17,metronix +31068,11,30791,17,mfohner16 +31068,11,30791,17,minichispes +31068,11,30791,17,miniminigod +31068,11,30791,17,minnels +31068,11,30791,17,mistermcgaughey +31068,11,30791,17,mlinny +31068,11,30791,17,mmicolta +31068,11,30791,17,mohanah +31068,11,30791,17,mojoh +31068,11,30791,17,montag451degrees +31068,11,30791,17,moraedin +31068,11,30791,17,mr_pl0ugh +31068,11,30791,17,mrbrugat +31068,11,30791,17,mrcaronte77 +31068,11,30791,17,murhendaizer +31068,11,30791,17,musingcharlie +31068,11,30791,17,muskari +31068,11,30791,17,mycelial +31068,11,30791,17,najtmerr +31068,11,30791,17,narojm +31068,11,30791,17,natebeach +31068,11,30791,17,nawwar +31068,11,30791,17,ncain +31068,11,30791,17,neofitz +31068,11,30791,17,nerzenjaeger +31068,11,30791,17,netojpv +31068,11,30791,17,neuskomo +31068,11,30791,17,newfender69 +31068,11,30791,17,nicofromkra +31068,11,30791,17,nigdydosc +31068,11,30791,17,nigon +31068,11,30791,17,nikgame +31068,11,30791,17,nimboline +31068,11,30791,17,ninjasan8 +31068,11,30791,17,nlklta +31068,11,30791,17,nograd1974 +31068,11,30791,17,noodlezoop +31068,11,30791,17,norb3001 +31068,11,30791,17,noticeus +31068,11,30791,17,notwebsafe +31068,11,30791,17,novicusabacus +31068,11,30791,17,nowasella +31068,11,30791,17,noxeor +31068,11,30791,17,noz1 +31068,11,30791,17,nvsg +31068,11,30791,17,nwillmott +31068,11,30791,17,obaka +31068,11,30791,17,obsoletethree +31068,11,30791,17,octoberxp +31068,11,30791,17,odin_knight +31068,11,30791,17,olafpkyou +31068,11,30791,17,olgashym +31068,11,30791,17,omaira1987 +31068,11,30791,17,omaklabuttke +31068,11,30791,17,palto222 +31068,11,30791,17,panzerknacker +31068,11,30791,17,paraxis +31068,11,30791,17,partisan189 +31068,11,30791,17,pasadontohse +31068,11,30791,17,pastek +31068,11,30791,17,patthebaker245 +31068,11,30791,17,paweld +31068,11,30791,17,pchela85 +31068,11,30791,17,pcmooney +31068,11,30791,17,pedro_r +31068,11,30791,17,pelni +31068,11,30791,17,persp3ktiv +31068,11,30791,17,pfcmaguire +31068,11,30791,17,phibbi +31068,11,30791,17,phil_colons +31068,11,30791,17,phoenixwrong14 +31068,11,30791,17,plamynasloncu +31068,11,30791,17,pnopf +31068,11,30791,17,pontusnalle +31068,11,30791,17,poppy_e +31068,11,30791,17,praetorianxviii +31068,11,30791,17,protiuzeddy +31068,11,30791,17,pyracanta +31068,11,30791,17,rams1984 +31068,11,30791,17,rare6482 +31068,11,30791,17,ravmaddin84 +31068,11,30791,17,ree_dolly +31068,11,30791,17,reneald +31068,11,30791,17,retrospect +31068,11,30791,17,riccardo rigillo +31068,11,30791,17,richtersparty +31068,11,30791,17,rimbarisax +31068,11,30791,17,robvw +31068,11,30791,17,ronaele +31068,11,30791,17,rootdarkarchon +31068,11,30791,17,rosiegamemom +31068,11,30791,17,rosinarose +31068,11,30791,17,rrutkows +31068,11,30791,17,san_h +31068,11,30791,17,saoh67gamerra +31068,11,30791,17,sarib395 +31068,11,30791,17,sasa1 +31068,11,30791,17,sashebalchev +31068,11,30791,17,satanssvin +31068,11,30791,17,savage3e +31068,11,30791,17,sayrina +31068,11,30791,17,sboss9 +31068,11,30791,17,scalpaf +31068,11,30791,17,scarlett_o +31068,11,30791,17,scaven +31068,11,30791,17,schm04idty +31068,11,30791,17,scorpio rising +31068,11,30791,17,scudmissil86 +31068,11,30791,17,sebabarre +31068,11,30791,17,semmelknoedel21 +31068,11,30791,17,sergins +31068,11,30791,17,sethl74 +31068,11,30791,17,sharkpilot +31068,11,30791,17,shinkenshi +31068,11,30791,17,shyne +31068,11,30791,17,sivemesa +31068,11,30791,17,sixmilestovegas +31068,11,30791,17,sizmael +31068,11,30791,17,skuppage +31068,11,30791,17,skywide +31068,11,30791,17,slith +31068,11,30791,17,smartgamesdumbbells +31068,11,30791,17,smitas1990 +31068,11,30791,17,solomani +31068,11,30791,17,sones27 +31068,11,30791,17,soojin +31068,11,30791,17,sophia5rova +31068,11,30791,17,speculoos +31068,11,30791,17,speedhawk +31068,11,30791,17,spiderm9 +31068,11,30791,17,sprocket314 +31068,11,30791,17,squeakeyotter8665 +31068,11,30791,17,sramelli +31068,11,30791,17,stefouch +31068,11,30791,17,stillkill +31068,11,30791,17,stophle +31068,11,30791,17,strawdonkey +31068,11,30791,17,strifeworks +31068,11,30791,17,stripeyboardy +31068,11,30791,17,stwoodle +31068,11,30791,17,sunchaser +31068,11,30791,17,sunnyaggie2005 +31068,11,30791,17,sv_petrovich +31068,11,30791,17,swarmlord +31068,11,30791,17,sydtrack +31068,11,30791,17,tacitvs +31068,11,30791,17,tameone +31068,11,30791,17,tamikasipke +31068,11,30791,17,tassie14 +31068,11,30791,17,tdt heartburn +31068,11,30791,17,terminusest +31068,11,30791,17,tha_harlequin +31068,11,30791,17,thaildl +31068,11,30791,17,the migo 13 +31068,11,30791,17,the13thcave +31068,11,30791,17,theblackjoker +31068,11,30791,17,thecnl +31068,11,30791,17,thedarkone01 +31068,11,30791,17,theleopard +31068,11,30791,17,themadcelt +31068,11,30791,17,themoaningwhale +31068,11,30791,17,thewatkins +31068,11,30791,17,thiagobotelhos +31068,11,30791,17,thindalos +31068,11,30791,17,thjukkas +31068,11,30791,17,thobbit3 +31068,11,30791,17,thornn +31068,11,30791,17,thothok +31068,11,30791,17,timepig +31068,11,30791,17,timewiz +31068,11,30791,17,timw +31068,11,30791,17,tonix +31068,11,30791,17,tortfeasee +31068,11,30791,17,toxictexan +31068,11,30791,17,trencavel +31068,11,30791,17,triples +31068,11,30791,17,tristangeeraert +31068,11,30791,17,truely_mr_poos +31068,11,30791,17,tsunamichick89 +31068,11,30791,17,turmoil23 +31068,11,30791,17,tutsson +31068,11,30791,17,twagner +31068,11,30791,17,tysonk28 +31068,11,30791,17,ulric +31068,11,30791,17,ultra_nyo +31068,11,30791,17,umbrood +31068,11,30791,17,unafished +31068,11,30791,17,urcarling +31068,11,30791,17,user_not_found +31068,11,30791,17,ussawesome +31068,11,30791,17,vanessafournier +31068,11,30791,17,vansinne +31068,11,30791,17,veganbadass +31068,11,30791,17,velebni +31068,11,30791,17,veratul +31068,11,30791,17,vermyapre +31068,11,30791,17,vilaca +31068,11,30791,17,violin86 +31068,11,30791,17,viperking +31068,11,30791,17,volkovoy +31068,11,30791,17,vosbeck +31068,11,30791,17,vputorek +31068,11,30791,17,wannas +31068,11,30791,17,warrior dvd +31068,11,30791,17,weirdestweird +31068,11,30791,17,whaleyland +31068,11,30791,17,whiterabbit7844 +31068,11,30791,17,widgeet +31068,11,30791,17,widow +31068,11,30791,17,wilczyk +31068,11,30791,17,wilderix +31068,11,30791,17,witchesanarchy +31068,11,30791,17,wjmart +31068,11,30791,17,wolf_apostle +31068,11,30791,17,woodelf +31068,11,30791,17,wrycu +31068,11,30791,17,xshrike +31068,11,30791,17,yamivicen +31068,11,30791,17,yanoo +31068,11,30791,17,yipziwing +31068,11,30791,17,youkko +31068,11,30791,17,yshuangc +31068,11,30791,17,zack10house +31068,11,30791,17,zadokin +31068,11,30791,17,zedseayou +31068,11,30791,17,zenmasterliu +31068,11,30791,17,zephseven +31068,11,30791,17,zerogravitas +31068,11,30791,17,zestrenocya +31068,11,30791,17,zhouluyi +31068,11,30791,17,zixtis +31068,11,30791,17,zworg2 +31068,11,30791,17,zyggy +31068,11,33518,16,1e3er +31068,11,33518,16,7124288 +31068,11,33518,16,_j0hn_ +31068,11,33518,16,_kck_ +31068,11,33518,16,a277b485 +31068,11,33518,16,abbil +31068,11,33518,16,acekng1 +31068,11,33518,16,achillesm +31068,11,33518,16,acornhunter +31068,11,33518,16,acroknight +31068,11,33518,16,adamhess89 +31068,11,33518,16,addra +31068,11,33518,16,adelaideblair +31068,11,33518,16,admiral142 +31068,11,33518,16,adsummus +31068,11,33518,16,ag19 +31068,11,33518,16,agentsmith42 +31068,11,33518,16,agustincr +31068,11,33518,16,aheaven +31068,11,33518,16,aikha +31068,11,33518,16,ajari +31068,11,33518,16,akaeddie +31068,11,33518,16,aknas +31068,11,33518,16,alecastello +31068,11,33518,16,aleksks +31068,11,33518,16,ales1o +31068,11,33518,16,alexthepmf +31068,11,33518,16,alkath +31068,11,33518,16,allocke +31068,11,33518,16,alma1992 +31068,11,33518,16,alphanerd +31068,11,33518,16,altaz +31068,11,33518,16,andrewboardgame +31068,11,33518,16,andywhite +31068,11,33518,16,angelofdef +31068,11,33518,16,anitroche +31068,11,33518,16,annodomini75 +31068,11,33518,16,anonymous_ehwing +31068,11,33518,16,antikx +31068,11,33518,16,antix1988 +31068,11,33518,16,aracari +31068,11,33518,16,arch city zach +31068,11,33518,16,arnaupg86 +31068,11,33518,16,assur191 +31068,11,33518,16,astracuzzi +31068,11,33518,16,augt1 +31068,11,33518,16,awell +31068,11,33518,16,aysebulut +31068,11,33518,16,badgergatan +31068,11,33518,16,baltamouf +31068,11,33518,16,bane221 +31068,11,33518,16,bard_ard +31068,11,33518,16,basho +31068,11,33518,16,bassmanzeus +31068,11,33518,16,baxolas +31068,11,33518,16,bbchains +31068,11,33518,16,bdeink +31068,11,33518,16,bedbear +31068,11,33518,16,bengazi +31068,11,33518,16,benjiplays +31068,11,33518,16,berc00 +31068,11,33518,16,bigdip +31068,11,33518,16,bigred15162 +31068,11,33518,16,billskulley +31068,11,33518,16,birchtreepapa +31068,11,33518,16,birdeye70 +31068,11,33518,16,bloodborner +31068,11,33518,16,bluelise +31068,11,33518,16,bluesquirrel +31068,11,33518,16,bmann2200 +31068,11,33518,16,bonesjackson +31068,11,33518,16,boomgoose +31068,11,33518,16,borlaym +31068,11,33518,16,bradh +31068,11,33518,16,brantshep36 +31068,11,33518,16,brinksw +31068,11,33518,16,brumy1983 +31068,11,33518,16,bujhm +31068,11,33518,16,bullno1 +31068,11,33518,16,burningchrome +31068,11,33518,16,buyborroworbury +31068,11,33518,16,bvacker +31068,11,33518,16,bvault57 +31068,11,33518,16,c_s_williams1978 +31068,11,33518,16,cabolx +31068,11,33518,16,cachan38 +31068,11,33518,16,calchas +31068,11,33518,16,callmebyyourgame +31068,11,33518,16,caro_exe +31068,11,33518,16,cartwright80 +31068,11,33518,16,castigliano +31068,11,33518,16,cb887 +31068,11,33518,16,chakaal +31068,11,33518,16,chang1701 +31068,11,33518,16,chemicalroman +31068,11,33518,16,chrissawa +31068,11,33518,16,christopherdias +31068,11,33518,16,chuckgnarly +31068,11,33518,16,ciretose1 +31068,11,33518,16,cluster5020 +31068,11,33518,16,cmdettmar +31068,11,33518,16,cmoe25027 +31068,11,33518,16,cmstan +31068,11,33518,16,comfort eagle +31068,11,33518,16,conkertsquirrel +31068,11,33518,16,corey b +31068,11,33518,16,corna +31068,11,33518,16,cosmick +31068,11,33518,16,coweggs +31068,11,33518,16,cowpercoles +31068,11,33518,16,cpt_chappie +31068,11,33518,16,cpthreepwood89 +31068,11,33518,16,crhunter45 +31068,11,33518,16,crimsonmonster +31068,11,33518,16,crstnguerreiro +31068,11,33518,16,cubetap +31068,11,33518,16,cucovi +31068,11,33518,16,cullenf +31068,11,33518,16,cybsjan +31068,11,33518,16,czeslaw6300149 +31068,11,33518,16,daemoncaine +31068,11,33518,16,dahlillama +31068,11,33518,16,daklimhuxjien +31068,11,33518,16,dampfzwerg +31068,11,33518,16,dand030 +31068,11,33518,16,dani11987 +31068,11,33518,16,dani_le_rouge +31068,11,33518,16,danieljosephoneil +31068,11,33518,16,danielklinge +31068,11,33518,16,danleader +31068,11,33518,16,darealjul +31068,11,33518,16,darkfib3r +31068,11,33518,16,darkpazu +31068,11,33518,16,daroacht1 +31068,11,33518,16,davewoodnc +31068,11,33518,16,david4d4d +31068,11,33518,16,dead_meat +31068,11,33518,16,deathman +31068,11,33518,16,declon +31068,11,33518,16,delbertsroses +31068,11,33518,16,delta0501 +31068,11,33518,16,demcial +31068,11,33518,16,demodiddi +31068,11,33518,16,dena21 +31068,11,33518,16,derfalk +31068,11,33518,16,derhase +31068,11,33518,16,derkhan +31068,11,33518,16,deusewulf +31068,11,33518,16,devon greatwolf +31068,11,33518,16,dextyle +31068,11,33518,16,diannepl +31068,11,33518,16,diggler72 +31068,11,33518,16,digitalnomad +31068,11,33518,16,dimebag_ +31068,11,33518,16,dishbird +31068,11,33518,16,djang +31068,11,33518,16,djb203 +31068,11,33518,16,djibutul +31068,11,33518,16,djm999 +31068,11,33518,16,dlaagniechy +31068,11,33518,16,dmatrix +31068,11,33518,16,dna4n6grl +31068,11,33518,16,doneux +31068,11,33518,16,donnyramos +31068,11,33518,16,donpusselino +31068,11,33518,16,drakenhawk +31068,11,33518,16,dre915 +31068,11,33518,16,drillvoice +31068,11,33518,16,drp01 +31068,11,33518,16,dtain +31068,11,33518,16,dugman +31068,11,33518,16,dulty +31068,11,33518,16,duncallen +31068,11,33518,16,dweebb +31068,11,33518,16,edbrierley +31068,11,33518,16,eduardpc +31068,11,33518,16,eiggo +31068,11,33518,16,einsam +31068,11,33518,16,elleonnass +31068,11,33518,16,elrig +31068,11,33518,16,emperor_penguin +31068,11,33518,16,emspace +31068,11,33518,16,endlessraining +31068,11,33518,16,enosh013 +31068,11,33518,16,enrico83 +31068,11,33518,16,entsarereal +31068,11,33518,16,epok79 +31068,11,33518,16,erik_wudtke +31068,11,33518,16,eryops +31068,11,33518,16,estolan +31068,11,33518,16,ethangraves +31068,11,33518,16,etjewi +31068,11,33518,16,etom +31068,11,33518,16,eva8604 +31068,11,33518,16,everss98 +31068,11,33518,16,evia_ce +31068,11,33518,16,evil_sacrament +31068,11,33518,16,fabiomqs +31068,11,33518,16,falk1011 +31068,11,33518,16,fatesadvent +31068,11,33518,16,fatty +31068,11,33518,16,fearleszz +31068,11,33518,16,felicity79 +31068,11,33518,16,figothikos +31068,11,33518,16,fire_death +31068,11,33518,16,firin +31068,11,33518,16,flobbit +31068,11,33518,16,folkydokey +31068,11,33518,16,fooleck +31068,11,33518,16,fordprefect42 +31068,11,33518,16,franfac +31068,11,33518,16,fred1976 +31068,11,33518,16,freddyb27 +31068,11,33518,16,frederic_pascal +31068,11,33518,16,frimp13 +31068,11,33518,16,furor_inc +31068,11,33518,16,gainesab +31068,11,33518,16,galahad86 +31068,11,33518,16,gameswithdra +31068,11,33518,16,gardolas +31068,11,33518,16,gavork +31068,11,33518,16,gearhead +31068,11,33518,16,gemmadepemma +31068,11,33518,16,genkael +31068,11,33518,16,genowefa_gumiak +31068,11,33518,16,georgesrb +31068,11,33518,16,geta1 +31068,11,33518,16,ghetty +31068,11,33518,16,ghosta81 +31068,11,33518,16,ghostbot +31068,11,33518,16,giancian +31068,11,33518,16,glennc64 +31068,11,33518,16,godz111a +31068,11,33518,16,golebievicus +31068,11,33518,16,gragle +31068,11,33518,16,gransom +31068,11,33518,16,grantevans +31068,11,33518,16,grayghost666 +31068,11,33518,16,grayle84 +31068,11,33518,16,gregstaddon +31068,11,33518,16,gregsterguy +31068,11,33518,16,grison +31068,11,33518,16,grizzlyblue +31068,11,33518,16,gromolko +31068,11,33518,16,guardian__j +31068,11,33518,16,guppygamer +31068,11,33518,16,gushyzen23 +31068,11,33518,16,gusrocha +31068,11,33518,16,gykatona +31068,11,33518,16,h1ome3 +31068,11,33518,16,hardcorewezel +31068,11,33518,16,headshot95 +31068,11,33518,16,healdybear +31068,11,33518,16,henjin +31068,11,33518,16,hexogene +31068,11,33518,16,hipshot +31068,11,33518,16,horconboy +31068,11,33518,16,hoshinokoe33 +31068,11,33518,16,hr maxula +31068,11,33518,16,hughes85 +31068,11,33518,16,hutchy86 +31068,11,33518,16,hwtrtgp +31068,11,33518,16,icarusmustburn +31068,11,33518,16,igor_spina +31068,11,33518,16,ilarue +31068,11,33518,16,immi +31068,11,33518,16,immopl +31068,11,33518,16,incredibill +31068,11,33518,16,indecision101 +31068,11,33518,16,ionian +31068,11,33518,16,ithicks +31068,11,33518,16,itsric +31068,11,33518,16,ivanst +31068,11,33518,16,ivga +31068,11,33518,16,ivi007 +31068,11,33518,16,ivodavid +31068,11,33518,16,j4nils +31068,11,33518,16,jacob0826 +31068,11,33518,16,jacoberwin +31068,11,33518,16,jaio +31068,11,33518,16,jamesmcm84 +31068,11,33518,16,jancr57 +31068,11,33518,16,janhagel +31068,11,33518,16,janrogalo +31068,11,33518,16,jaredbangs +31068,11,33518,16,jaysoncurry +31068,11,33518,16,jazzuu +31068,11,33518,16,jbrod007 +31068,11,33518,16,jbuyea +31068,11,33518,16,jdavias +31068,11,33518,16,jdevery +31068,11,33518,16,jdnd +31068,11,33518,16,jediiam5 +31068,11,33518,16,jeffr0 +31068,11,33518,16,jenkachu +31068,11,33518,16,jeresig +31068,11,33518,16,jessemax +31068,11,33518,16,jesudimay +31068,11,33518,16,jfeuerstein +31068,11,33518,16,jfthe1st +31068,11,33518,16,jheitz4581 +31068,11,33518,16,jilwah +31068,11,33518,16,jimmychucc +31068,11,33518,16,jkandell +31068,11,33518,16,jkasanen +31068,11,33518,16,jkkt +31068,11,33518,16,jmlease1 +31068,11,33518,16,jocke neumi +31068,11,33518,16,joeyjoejoeshabadoo +31068,11,33518,16,johannes +31068,11,33518,16,john-connors +31068,11,33518,16,johndango +31068,11,33518,16,johnnybegood +31068,11,33518,16,jojo_2612 +31068,11,33518,16,jonas posman +31068,11,33518,16,jorchudo +31068,11,33518,16,jouma1986 +31068,11,33518,16,joy5871 +31068,11,33518,16,julsey +31068,11,33518,16,jurgs76 +31068,11,33518,16,kage13 +31068,11,33518,16,kai_starck +31068,11,33518,16,kaiopay +31068,11,33518,16,kam1138 +31068,11,33518,16,kamil83 +31068,11,33518,16,kathleen321 +31068,11,33518,16,kennedymeijihawk +31068,11,33518,16,kennedynoia +31068,11,33518,16,kern2376 +31068,11,33518,16,kernicek +31068,11,33518,16,kerred +31068,11,33518,16,ketje_9 +31068,11,33518,16,kimbat +31068,11,33518,16,konrad +31068,11,33518,16,kozy0058 +31068,11,33518,16,krikke0923 +31068,11,33518,16,krispbacon +31068,11,33518,16,kronik +31068,11,33518,16,kuboavegeta +31068,11,33518,16,kuehner +31068,11,33518,16,kyleandvalerie +31068,11,33518,16,kytheguy +31068,11,33518,16,lalos +31068,11,33518,16,lamascarade +31068,11,33518,16,lancil9 +31068,11,33518,16,laseguagames +31068,11,33518,16,laurentb +31068,11,33518,16,lazyleo +31068,11,33518,16,leberschnitzel +31068,11,33518,16,leeroy_porkins +31068,11,33518,16,lehjoz +31068,11,33518,16,lemmingonarrakis +31068,11,33518,16,lende +31068,11,33518,16,leolabo +31068,11,33518,16,lerichardc +31068,11,33518,16,lifeisahologram +31068,11,33518,16,lijahrobinson +31068,11,33518,16,lilyplaysgames +31068,11,33518,16,line0042 +31068,11,33518,16,lingken +31068,11,33518,16,lionelbrouard +31068,11,33518,16,lisn +31068,11,33518,16,littleboy6 +31068,11,33518,16,lizsalander +31068,11,33518,16,ljordang87 +31068,11,33518,16,loginmax +31068,11,33518,16,lonecroft +31068,11,33518,16,loperdeve +31068,11,33518,16,lordxilos +31068,11,33518,16,lornem +31068,11,33518,16,loverman21 +31068,11,33518,16,lowad +31068,11,33518,16,luddelazer +31068,11,33518,16,lukaszkuch +31068,11,33518,16,lukers +31068,11,33518,16,lurdaeron +31068,11,33518,16,luxdirt +31068,11,33518,16,m4tyi +31068,11,33518,16,m8ryx +31068,11,33518,16,macghille +31068,11,33518,16,magicbus1966 +31068,11,33518,16,maiic +31068,11,33518,16,malacheye +31068,11,33518,16,malama +31068,11,33518,16,maletsky +31068,11,33518,16,malkoron +31068,11,33518,16,man5iac +31068,11,33518,16,manna33 +31068,11,33518,16,manoloelgris +31068,11,33518,16,manuel_fossati +31068,11,33518,16,manuelnavarroc +31068,11,33518,16,manulao +31068,11,33518,16,mardyr +31068,11,33518,16,marinhas +31068,11,33518,16,mark simpson +31068,11,33518,16,masterdae +31068,11,33518,16,mastergreg +31068,11,33518,16,masterleandertal +31068,11,33518,16,materix +31068,11,33518,16,mathway +31068,11,33518,16,matt h +31068,11,33518,16,mattamd +31068,11,33518,16,mattrick +31068,11,33518,16,mattyglee +31068,11,33518,16,mattzag +31068,11,33518,16,max_e +31068,11,33518,16,mcosta1973 +31068,11,33518,16,megeres +31068,11,33518,16,mekenzi +31068,11,33518,16,mekisteus +31068,11,33518,16,mercopparis +31068,11,33518,16,meriamun +31068,11,33518,16,mesonotyou +31068,11,33518,16,metal_buddha +31068,11,33518,16,mgamnfan30 +31068,11,33518,16,mian_ju +31068,11,33518,16,mikebryant +31068,11,33518,16,miksahhh +31068,11,33518,16,mildmeadows +31068,11,33518,16,milhouse +31068,11,33518,16,miller4h9 +31068,11,33518,16,mills2501 +31068,11,33518,16,mindstar +31068,11,33518,16,minlader +31068,11,33518,16,mirime +31068,11,33518,16,misspris +31068,11,33518,16,mitethewarlock +31068,11,33518,16,mjleblond +31068,11,33518,16,mjson +31068,11,33518,16,mkk_rory +31068,11,33518,16,moeper +31068,11,33518,16,mondscheiner +31068,11,33518,16,monkeydrummer +31068,11,33518,16,monstermad +31068,11,33518,16,monstrooper +31068,11,33518,16,moogle06 +31068,11,33518,16,mooregames3 +31068,11,33518,16,morboludens +31068,11,33518,16,motg +31068,11,33518,16,mpelka +31068,11,33518,16,mratlant +31068,11,33518,16,mrkapua +31068,11,33518,16,mrkeldon +31068,11,33518,16,mrm9084 +31068,11,33518,16,mrmarcus +31068,11,33518,16,mrmoo28 +31068,11,33518,16,mrs meeple +31068,11,33518,16,munchowski +31068,11,33518,16,murban3 +31068,11,33518,16,musashi178 +31068,11,33518,16,mxconnell +31068,11,33518,16,myrddin47 +31068,11,33518,16,myrha +31068,11,33518,16,nabako +31068,11,33518,16,nartoff +31068,11,33518,16,nbreecher +31068,11,33518,16,nedre +31068,11,33518,16,nellistosgr +31068,11,33518,16,nereyn +31068,11,33518,16,nexus87 +31068,11,33518,16,nezrul +31068,11,33518,16,niala +31068,11,33518,16,nimbusaaron +31068,11,33518,16,noizeman tm +31068,11,33518,16,nopestadamus +31068,11,33518,16,norel +31068,11,33518,16,notnorb +31068,11,33518,16,novatheorem +31068,11,33518,16,npetry +31068,11,33518,16,nyekszon +31068,11,33518,16,oceanny +31068,11,33518,16,ociek +31068,11,33518,16,oddbod +31068,11,33518,16,ogoblin +31068,11,33518,16,ohjeremy91 +31068,11,33518,16,ojunior820 +31068,11,33518,16,oldspot +31068,11,33518,16,olga_sans +31068,11,33518,16,oltik +31068,11,33518,16,oneballjay +31068,11,33518,16,onemoreroll +31068,11,33518,16,orsina +31068,11,33518,16,oscarc79 +31068,11,33518,16,oswallt +31068,11,33518,16,overengineered +31068,11,33518,16,oziazdi +31068,11,33518,16,pallazzo47 +31068,11,33518,16,palmerkun +31068,11,33518,16,pamgreer +31068,11,33518,16,pandemonic +31068,11,33518,16,panfantomas +31068,11,33518,16,papa donut +31068,11,33518,16,papajogi +31068,11,33518,16,parulikov +31068,11,33518,16,parzival +31068,11,33518,16,pastukh +31068,11,33518,16,patches409 +31068,11,33518,16,patouliane +31068,11,33518,16,patrickspel +31068,11,33518,16,patspeth +31068,11,33518,16,paulmilitello +31068,11,33518,16,paulomvns +31068,11,33518,16,paulucha +31068,11,33518,16,paulus001 +31068,11,33518,16,pausoft +31068,11,33518,16,peloquin666 +31068,11,33518,16,pete_g +31068,11,33518,16,petepat +31068,11,33518,16,peter78 +31068,11,33518,16,pgkashmir +31068,11,33518,16,phaidorr +31068,11,33518,16,phigoode +31068,11,33518,16,philihp +31068,11,33518,16,photophoton +31068,11,33518,16,phxtaylor +31068,11,33518,16,pibolete +31068,11,33518,16,pifflewaffle +31068,11,33518,16,pillslanger +31068,11,33518,16,platonick +31068,11,33518,16,plietschgeek +31068,11,33518,16,plumpplum +31068,11,33518,16,pluus +31068,11,33518,16,pmw57 +31068,11,33518,16,poetprince +31068,11,33518,16,pogeepalangga +31068,11,33518,16,polirritmico +31068,11,33518,16,praseodym +31068,11,33518,16,prinzesschen +31068,11,33518,16,professor_frink +31068,11,33518,16,proplum +31068,11,33518,16,pshkrch +31068,11,33518,16,psi0nyx +31068,11,33518,16,psmaylott +31068,11,33518,16,psychicskeleton +31068,11,33518,16,punkrawkerandy +31068,11,33518,16,purekhaos +31068,11,33518,16,pzdeb +31068,11,33518,16,quantum djinn +31068,11,33518,16,qvadis +31068,11,33518,16,r_dollarsign +31068,11,33518,16,raanruuster +31068,11,33518,16,rabid +31068,11,33518,16,radioactivebonobo +31068,11,33518,16,raizen +31068,11,33518,16,rammson71 +31068,11,33518,16,raonipires +31068,11,33518,16,rathnir +31068,11,33518,16,ratio +31068,11,33518,16,razielmalus +31068,11,33518,16,reman +31068,11,33518,16,remery +31068,11,33518,16,rendlythefriendly +31068,11,33518,16,rescue_toaster +31068,11,33518,16,reynirornb +31068,11,33518,16,rheam +31068,11,33518,16,rheteik +31068,11,33518,16,ricardopaladino +31068,11,33518,16,ricormy +31068,11,33518,16,riversong1 +31068,11,33518,16,rmiln +31068,11,33518,16,robfromcanada +31068,11,33518,16,rockubo +31068,11,33518,16,rodo7 +31068,11,33518,16,rodrigofmaduireira +31068,11,33518,16,roelverdickt +31068,11,33518,16,rokarege +31068,11,33518,16,rokenbok411 +31068,11,33518,16,roninrojo +31068,11,33518,16,roowalker +31068,11,33518,16,rosborn +31068,11,33518,16,rosekurt +31068,11,33518,16,ruazn2 +31068,11,33518,16,rubbenn44 +31068,11,33518,16,rubenvdb96 +31068,11,33518,16,rupeshow +31068,11,33518,16,saddiel +31068,11,33518,16,san98 +31068,11,33518,16,sandrasmiljanic +31068,11,33518,16,sangwoko +31068,11,33518,16,sardauk +31068,11,33518,16,sasha_80_ +31068,11,33518,16,satrixyusion +31068,11,33518,16,satxbrian +31068,11,33518,16,scadima +31068,11,33518,16,schilly +31068,11,33518,16,schnabbo +31068,11,33518,16,schwade +31068,11,33518,16,scout387 +31068,11,33518,16,scylus +31068,11,33518,16,sdan +31068,11,33518,16,sebaslap +31068,11,33518,16,sebtastic +31068,11,33518,16,sergirock +31068,11,33518,16,sergoldenhand +31068,11,33518,16,sgtsagara1001 +31068,11,33518,16,shairosen +31068,11,33518,16,shawnmccarthy +31068,11,33518,16,sheltod +31068,11,33518,16,shodge68 +31068,11,33518,16,shulien +31068,11,33518,16,shumbee +31068,11,33518,16,siazo +31068,11,33518,16,silentcat +31068,11,33518,16,silverjoker +31068,11,33518,16,sindaine +31068,11,33518,16,sirchadofkent +31068,11,33518,16,sirius2000 +31068,11,33518,16,sirsleepalot +31068,11,33518,16,sirsmilo +31068,11,33518,16,sirvliam +31068,11,33518,16,sissikhaleesi +31068,11,33518,16,sjostromt +31068,11,33518,16,skabott +31068,11,33518,16,skyknight +31068,11,33518,16,sledj +31068,11,33518,16,smerk1 +31068,11,33518,16,smist +31068,11,33518,16,snikter +31068,11,33518,16,sober_pentheus +31068,11,33518,16,somedave +31068,11,33518,16,sound_ +31068,11,33518,16,southern_canadian +31068,11,33518,16,spongepepp +31068,11,33518,16,staffy6 +31068,11,33518,16,stealthsaint +31068,11,33518,16,stevemikesherman +31068,11,33518,16,stixawslc +31068,11,33518,16,stoxasths +31068,11,33518,16,stphnrdmr +31068,11,33518,16,struijk +31068,11,33518,16,substandardtim +31068,11,33518,16,supersupreme +31068,11,33518,16,swingcorey +31068,11,33518,16,swizze +31068,11,33518,16,syanmil +31068,11,33518,16,szalasz87 +31068,11,33518,16,tbok +31068,11,33518,16,tdakanalis +31068,11,33518,16,telion +31068,11,33518,16,terraesper +31068,11,33518,16,tertiusgaudens +31068,11,33518,16,teura +31068,11,33518,16,thairo +31068,11,33518,16,thalie +31068,11,33518,16,the pheonix +31068,11,33518,16,thefreeldeal +31068,11,33518,16,thegwn +31068,11,33518,16,theiam79 +31068,11,33518,16,theoriginalkads +31068,11,33518,16,threeam +31068,11,33518,16,thrillhauus +31068,11,33518,16,tiblin +31068,11,33518,16,timothyglynn +31068,11,33518,16,tko81 +31068,11,33518,16,tlug +31068,11,33518,16,toml88 +31068,11,33518,16,tommatty +31068,11,33518,16,tomtube +31068,11,33518,16,tongyf +31068,11,33518,16,topofdamuffin2u +31068,11,33518,16,tphantom1 +31068,11,33518,16,troken +31068,11,33518,16,trvl2mtns +31068,11,33518,16,tumbleweed77 +31068,11,33518,16,tusonki +31068,11,33518,16,tvaru +31068,11,33518,16,txakata +31068,11,33518,16,tyandrach +31068,11,33518,16,ubaldo bastardo +31068,11,33518,16,uhb1 +31068,11,33518,16,ultradeath +31068,11,33518,16,united99 +31068,11,33518,16,ursus_major +31068,11,33518,16,ursw6 +31068,11,33518,16,uschizo +31068,11,33518,16,uvaroff +31068,11,33518,16,vademeeples +31068,11,33518,16,valdemar99 +31068,11,33518,16,valentino83 +31068,11,33518,16,vapid27 +31068,11,33518,16,varagon +31068,11,33518,16,vashik +31068,11,33518,16,velina +31068,11,33518,16,velmaster +31068,11,33518,16,veradob +31068,11,33518,16,vialiy +31068,11,33518,16,vilard +31068,11,33518,16,vimeyer +31068,11,33518,16,vinniebrasco +31068,11,33518,16,vipchulo +31068,11,33518,16,virabhadra +31068,11,33518,16,vitamin_d3 +31068,11,33518,16,vitustsang +31068,11,33518,16,vladthelittleone +31068,11,33518,16,vlrebrov +31068,11,33518,16,vnomdc +31068,11,33518,16,vogelino +31068,11,33518,16,volscian +31068,11,33518,16,vsanzrom +31068,11,33518,16,vulpen +31068,11,33518,16,wah_wah +31068,11,33518,16,warium +31068,11,33518,16,wetwillyccma +31068,11,33518,16,whdr02 +31068,11,33518,16,wholing +31068,11,33518,16,wiet +31068,11,33518,16,wilkey932 +31068,11,33518,16,willsmominmo +31068,11,33518,16,winkstart +31068,11,33518,16,wishbaros +31068,11,33518,16,wjraich +31068,11,33518,16,wolfvonhinslik +31068,11,33518,16,wooko +31068,11,33518,16,xmoby +31068,11,33518,16,xrustimtj +31068,11,33518,16,yawetag +31068,11,33518,16,yfkes +31068,11,33518,16,yoelius +31068,11,33518,16,yoren +31068,11,33518,16,yoshizkf +31068,11,33518,16,yuri_yokohoma +31068,11,33518,16,zaralee +31068,11,33518,16,zazbedin +31068,11,33518,16,zemiii +31068,11,33518,16,zerosgtc +31068,11,33518,16,zipdizzle +31068,11,33518,16,zodiac_02 +31068,11,33518,16,zokiboy +31068,11,33518,16,zokis +31068,11,33518,16,zombieconan +31068,11,33518,16,zoompet +31068,11,33518,16,zosoworld +31068,11,33518,16,zsofii +31068,11,33518,16,zutn +31068,11,33518,16,zwarbo +31068,11,36419,15,21n6y +31068,11,36419,15,abreakey +31068,11,36419,15,ackiel360 +31068,11,36419,15,adjacentbeastman +31068,11,36419,15,admiralswinebag +31068,11,36419,15,aemorales2 +31068,11,36419,15,agatesman +31068,11,36419,15,ahabxxx +31068,11,36419,15,ahasver +31068,11,36419,15,ahjo +31068,11,36419,15,akhilpremraj +31068,11,36419,15,akindinos +31068,11,36419,15,alangates +31068,11,36419,15,alansbraga +31068,11,36419,15,albbc +31068,11,36419,15,albinoork +31068,11,36419,15,aldebarande +31068,11,36419,15,aleks_makr +31068,11,36419,15,alexflagg +31068,11,36419,15,alexjetter +31068,11,36419,15,allansmw +31068,11,36419,15,allison123a +31068,11,36419,15,allknighter +31068,11,36419,15,almirante1922 +31068,11,36419,15,aloucard +31068,11,36419,15,alterhase +31068,11,36419,15,altopia +31068,11,36419,15,alucard87 +31068,11,36419,15,amlitt4 +31068,11,36419,15,andasolo +31068,11,36419,15,angelb +31068,11,36419,15,anteros311 +31068,11,36419,15,antilog17 +31068,11,36419,15,anymouse +31068,11,36419,15,apet6426 +31068,11,36419,15,apofagias +31068,11,36419,15,aquilafi +31068,11,36419,15,arbitrarynoun +31068,11,36419,15,argurth +31068,11,36419,15,arkhangrc +31068,11,36419,15,armin26 +31068,11,36419,15,armington lewis +31068,11,36419,15,aroquesada +31068,11,36419,15,arrakeen_fire +31068,11,36419,15,arsies +31068,11,36419,15,arthurpwiggle +31068,11,36419,15,artorius1984 +31068,11,36419,15,arzman +31068,11,36419,15,asdoye111 +31068,11,36419,15,ashcash007 +31068,11,36419,15,ashu9580 +31068,11,36419,15,askanon +31068,11,36419,15,assos +31068,11,36419,15,atomicbox +31068,11,36419,15,augeezer +31068,11,36419,15,avolteritornano +31068,11,36419,15,awcooper6767 +31068,11,36419,15,ayronis +31068,11,36419,15,az80sguy +31068,11,36419,15,azmodan +31068,11,36419,15,azoki +31068,11,36419,15,badgers set +31068,11,36419,15,bairoth +31068,11,36419,15,bam0382 +31068,11,36419,15,bancsi87 +31068,11,36419,15,baraiha +31068,11,36419,15,batac +31068,11,36419,15,bbcbruno +31068,11,36419,15,bcmn +31068,11,36419,15,beantavy +31068,11,36419,15,beardo deluxe +31068,11,36419,15,becksterh +31068,11,36419,15,beksican +31068,11,36419,15,bieldam +31068,11,36419,15,bieniu +31068,11,36419,15,bigfatrat +31068,11,36419,15,billmcdougal +31068,11,36419,15,bizdave +31068,11,36419,15,blackmarketbeagle +31068,11,36419,15,blamehound +31068,11,36419,15,blhamon +31068,11,36419,15,bluebird3000 +31068,11,36419,15,bmurph25 +31068,11,36419,15,bnehme +31068,11,36419,15,boardgame_snowman +31068,11,36419,15,bobbybrun +31068,11,36419,15,bobius +31068,11,36419,15,bobmantel +31068,11,36419,15,bobry +31068,11,36419,15,bohnanzus +31068,11,36419,15,bonhias +31068,11,36419,15,book_worm71 +31068,11,36419,15,boris morosov +31068,11,36419,15,bozontheboard +31068,11,36419,15,brawlinkilas +31068,11,36419,15,britstyck +31068,11,36419,15,brobo +31068,11,36419,15,broshea87 +31068,11,36419,15,bschirmer +31068,11,36419,15,btd13 +31068,11,36419,15,budlec22 +31068,11,36419,15,buffmeister +31068,11,36419,15,bulldogbite +31068,11,36419,15,bungeeboy +31068,11,36419,15,buschcobolt +31068,11,36419,15,callix22 +31068,11,36419,15,capndavo +31068,11,36419,15,carlos0175 +31068,11,36419,15,carptarts +31068,11,36419,15,case082 +31068,11,36419,15,ccdrummer5000 +31068,11,36419,15,cdietschrun +31068,11,36419,15,cdpbmg +31068,11,36419,15,cds84 +31068,11,36419,15,cenholt +31068,11,36419,15,cgdutcher +31068,11,36419,15,cgs_raverboy +31068,11,36419,15,ch0wsie +31068,11,36419,15,chalberstadt +31068,11,36419,15,chandillo +31068,11,36419,15,chaoskoen +31068,11,36419,15,charinki +31068,11,36419,15,chemik22 +31068,11,36419,15,chessduffer +31068,11,36419,15,chincheung +31068,11,36419,15,choptastic +31068,11,36419,15,chris_ipsum +31068,11,36419,15,chrisly +31068,11,36419,15,ciohodar +31068,11,36419,15,clavi +31068,11,36419,15,clyx +31068,11,36419,15,cmarie +31068,11,36419,15,cocheese +31068,11,36419,15,cogdiz +31068,11,36419,15,colonel ripper +31068,11,36419,15,colopez2016 +31068,11,36419,15,coque +31068,11,36419,15,corbou +31068,11,36419,15,coreysanders +31068,11,36419,15,cougar_dk +31068,11,36419,15,count_bezukhov +31068,11,36419,15,coyote_bg +31068,11,36419,15,cpurcell +31068,11,36419,15,crashover1d +31068,11,36419,15,crazybatlady +31068,11,36419,15,creeska +31068,11,36419,15,crickstar +31068,11,36419,15,crustypop +31068,11,36419,15,csdbatman +31068,11,36419,15,ctdino +31068,11,36419,15,ctrosejr +31068,11,36419,15,cucumber man +31068,11,36419,15,cumbee +31068,11,36419,15,cush1978 +31068,11,36419,15,cvtran98 +31068,11,36419,15,cybermetalpunk +31068,11,36419,15,cynlover01 +31068,11,36419,15,cyric51 +31068,11,36419,15,d4v1d +31068,11,36419,15,dabruuzer +31068,11,36419,15,danaolson +31068,11,36419,15,dancer263 +31068,11,36419,15,danmoo +31068,11,36419,15,dargon sectaur +31068,11,36419,15,darioaggioli +31068,11,36419,15,darklite +31068,11,36419,15,darkmind +31068,11,36419,15,darkovary +31068,11,36419,15,darthgus +31068,11,36419,15,darthouellet +31068,11,36419,15,darthryan +31068,11,36419,15,dasmatze +31068,11,36419,15,davidinlow +31068,11,36419,15,davro33 +31068,11,36419,15,deadterrorist +31068,11,36419,15,deeevorce +31068,11,36419,15,defs1 +31068,11,36419,15,deret +31068,11,36419,15,derfloauswien +31068,11,36419,15,deyth +31068,11,36419,15,dff89 +31068,11,36419,15,dhorvath5888 +31068,11,36419,15,diamond161 +31068,11,36419,15,didipucela +31068,11,36419,15,diggitydoggg +31068,11,36419,15,digitalelement +31068,11,36419,15,directordan86 +31068,11,36419,15,disclamer +31068,11,36419,15,djas +31068,11,36419,15,djbe +31068,11,36419,15,dkidluke +31068,11,36419,15,dkrcs1234 +31068,11,36419,15,dleehii +31068,11,36419,15,dmabes +31068,11,36419,15,dnesormada +31068,11,36419,15,do_hickey +31068,11,36419,15,docluke +31068,11,36419,15,doomsword77 +31068,11,36419,15,douglasvongeek +31068,11,36419,15,dpax2themax +31068,11,36419,15,dquintana37 +31068,11,36419,15,dragonaris +31068,11,36419,15,drbenn +31068,11,36419,15,dreddric +31068,11,36419,15,drewholmes +31068,11,36419,15,driptorch +31068,11,36419,15,drmark +31068,11,36419,15,drmindflip +31068,11,36419,15,drobinson19 +31068,11,36419,15,droggg +31068,11,36419,15,drumsfellow +31068,11,36419,15,druss2000 +31068,11,36419,15,dudemike +31068,11,36419,15,duponter +31068,11,36419,15,duterod +31068,11,36419,15,dwalton +31068,11,36419,15,dyziak +31068,11,36419,15,e_perryi +31068,11,36419,15,eacoimbra +31068,11,36419,15,economagic +31068,11,36419,15,eikku +31068,11,36419,15,el_crosso +31068,11,36419,15,elaynae +31068,11,36419,15,elektrogypsy +31068,11,36419,15,elfantasista +31068,11,36419,15,ellabean +31068,11,36419,15,ellendir76 +31068,11,36419,15,empyrium +31068,11,36419,15,enigma +31068,11,36419,15,ennui +31068,11,36419,15,entertainment720 +31068,11,36419,15,epicduo +31068,11,36419,15,erezschn +31068,11,36419,15,erickraven +31068,11,36419,15,erifalis +31068,11,36419,15,erkbergles +31068,11,36419,15,eruntalon +31068,11,36419,15,etherrider +31068,11,36419,15,evansece +31068,11,36419,15,everlastingsign +31068,11,36419,15,evilgit +31068,11,36419,15,fabricio +31068,11,36419,15,fabtor86 +31068,11,36419,15,fallenowl +31068,11,36419,15,farywan1981 +31068,11,36419,15,faxmashine +31068,11,36419,15,fazekasmark95 +31068,11,36419,15,fedev80 +31068,11,36419,15,fenrircl +31068,11,36419,15,fill_freeman +31068,11,36419,15,filthysardinian +31068,11,36419,15,finofashark +31068,11,36419,15,fishbelly +31068,11,36419,15,fixpa +31068,11,36419,15,flaeryn +31068,11,36419,15,flashhawk +31068,11,36419,15,fliffyflooper +31068,11,36419,15,flinxofsumada +31068,11,36419,15,fluc02 +31068,11,36419,15,flummy_dobby +31068,11,36419,15,fmirza23 +31068,11,36419,15,forsytjr +31068,11,36419,15,foxikos +31068,11,36419,15,fragmatik +31068,11,36419,15,frank overwood +31068,11,36419,15,franki129 +31068,11,36419,15,frankly200 +31068,11,36419,15,frasteronk +31068,11,36419,15,fringilla +31068,11,36419,15,frogot +31068,11,36419,15,frostdaddy79 +31068,11,36419,15,frunya +31068,11,36419,15,full-house +31068,11,36419,15,fullbloodlion +31068,11,36419,15,funkmighty +31068,11,36419,15,funky_ooze +31068,11,36419,15,funkypsiko +31068,11,36419,15,funnyfishman +31068,11,36419,15,fusipaolo +31068,11,36419,15,fwa5013 +31068,11,36419,15,gabagaba +31068,11,36419,15,gabtrat +31068,11,36419,15,galacos +31068,11,36419,15,galef +31068,11,36419,15,galego +31068,11,36419,15,gamer one +31068,11,36419,15,gameraapke +31068,11,36419,15,gamestreit +31068,11,36419,15,gamezplayi +31068,11,36419,15,gavhuds +31068,11,36419,15,gavken +31068,11,36419,15,geekybron +31068,11,36419,15,gemaball +31068,11,36419,15,gerbo +31068,11,36419,15,ghostol +31068,11,36419,15,giannis2 +31068,11,36419,15,glom +31068,11,36419,15,glonor +31068,11,36419,15,gmills82 +31068,11,36419,15,golem800 +31068,11,36419,15,gordon1018 +31068,11,36419,15,gordzee +31068,11,36419,15,govinci +31068,11,36419,15,grayranger +31068,11,36419,15,gringohairpiece +31068,11,36419,15,griptzion +31068,11,36419,15,grobilein +31068,11,36419,15,grreth +31068,11,36419,15,gruulz +31068,11,36419,15,gubin8er +31068,11,36419,15,guidostiz +31068,11,36419,15,gurazuru +31068,11,36419,15,gurugumawaru +31068,11,36419,15,gyorfipeter +31068,11,36419,15,h2osprey +31068,11,36419,15,hansens +31068,11,36419,15,hanzzz1313 +31068,11,36419,15,hardygabriel +31068,11,36419,15,harpagon00 +31068,11,36419,15,hastur5 +31068,11,36419,15,havoctimmo +31068,11,36419,15,hawktro +31068,11,36419,15,haze1975 +31068,11,36419,15,hblxbl +31068,11,36419,15,hdscurox +31068,11,36419,15,hebar +31068,11,36419,15,hedgewizzard +31068,11,36419,15,heikobe +31068,11,36419,15,heissiohne +31068,11,36419,15,hells_kitchen +31068,11,36419,15,hels13 +31068,11,36419,15,hess282 +31068,11,36419,15,hev13 +31068,11,36419,15,higgs_beh +31068,11,36419,15,hille +31068,11,36419,15,himawarix +31068,11,36419,15,hobbes_ts +31068,11,36419,15,holy toilet +31068,11,36419,15,honnemanden +31068,11,36419,15,hoopy +31068,11,36419,15,horus68 +31068,11,36419,15,hoser40k +31068,11,36419,15,hoyeboye +31068,11,36419,15,hugin85 +31068,11,36419,15,hugotaco +31068,11,36419,15,hun_zaba +31068,11,36419,15,hunter9110 +31068,11,36419,15,hures1 +31068,11,36419,15,hydro79 +31068,11,36419,15,hyena7 +31068,11,36419,15,hyp164 +31068,11,36419,15,iavi +31068,11,36419,15,ice876 +31068,11,36419,15,idbass74 +31068,11,36419,15,ike777 +31068,11,36419,15,illrepute +31068,11,36419,15,indiekid +31068,11,36419,15,indrexus +31068,11,36419,15,inhigore +31068,11,36419,15,insomnium05 +31068,11,36419,15,invertostringhe +31068,11,36419,15,iris1981 +31068,11,36419,15,isaacbane +31068,11,36419,15,isactirlicht +31068,11,36419,15,isla +31068,11,36419,15,its6929 +31068,11,36419,15,ivanzorita +31068,11,36419,15,ixidonte +31068,11,36419,15,izomag +31068,11,36419,15,jackwraith +31068,11,36419,15,jaenon +31068,11,36419,15,jambudvipa +31068,11,36419,15,jameskrolak +31068,11,36419,15,jansenstelau +31068,11,36419,15,jarl_djevel +31068,11,36419,15,jasri +31068,11,36419,15,javajoe96 +31068,11,36419,15,jawnman +31068,11,36419,15,jaystr1ker +31068,11,36419,15,jc_barnebey +31068,11,36419,15,jekopena +31068,11,36419,15,jelybel79 +31068,11,36419,15,jigsawhc +31068,11,36419,15,jimmie hermansson +31068,11,36419,15,jjuegos +31068,11,36419,15,jl2277cpe +31068,11,36419,15,jodojodo +31068,11,36419,15,joel_and_ashlee +31068,11,36419,15,joemoe117 +31068,11,36419,15,joergh +31068,11,36419,15,johnjo76 +31068,11,36419,15,johnnyo24 +31068,11,36419,15,jonnyjaws +31068,11,36419,15,josepegerent +31068,11,36419,15,joshuaryan119 +31068,11,36419,15,jralling +31068,11,36419,15,jsc19702 +31068,11,36419,15,juan sombrero +31068,11,36419,15,judgearatare11 +31068,11,36419,15,juleo27 +31068,11,36419,15,jussil +31068,11,36419,15,justm +31068,11,36419,15,jwalduck +31068,11,36419,15,kaldarion +31068,11,36419,15,kallax +31068,11,36419,15,kanesanders +31068,11,36419,15,kaslan +31068,11,36419,15,katanna +31068,11,36419,15,katoblepas +31068,11,36419,15,kayril +31068,11,36419,15,kenguru11 +31068,11,36419,15,kenjis23 +31068,11,36419,15,kera_007 +31068,11,36419,15,kg79 +31068,11,36419,15,khalkelsier +31068,11,36419,15,killblue2 +31068,11,36419,15,kimpek +31068,11,36419,15,kimseah +31068,11,36419,15,kintena +31068,11,36419,15,kitanota +31068,11,36419,15,kleroys +31068,11,36419,15,kochba +31068,11,36419,15,kochmachine +31068,11,36419,15,kocia +31068,11,36419,15,kolbucki +31068,11,36419,15,konstantin_ch +31068,11,36419,15,kosmistomi +31068,11,36419,15,kovacu +31068,11,36419,15,kratos38 +31068,11,36419,15,krevnok +31068,11,36419,15,krfk +31068,11,36419,15,kriksis513 +31068,11,36419,15,krishna +31068,11,36419,15,kristalik_ +31068,11,36419,15,kurtheine76 +31068,11,36419,15,kwisatch haderach +31068,11,36419,15,lamaikret +31068,11,36419,15,lance1265 +31068,11,36419,15,langley1975 +31068,11,36419,15,laphilfan +31068,11,36419,15,laurali18 +31068,11,36419,15,lauravegan +31068,11,36419,15,ldac89 +31068,11,36419,15,lebdy +31068,11,36419,15,lecolonel +31068,11,36419,15,leeandher +31068,11,36419,15,leithian +31068,11,36419,15,lemons3 +31068,11,36419,15,leolimberger +31068,11,36419,15,lesliewolfhard +31068,11,36419,15,lessandro22 +31068,11,36419,15,letinka +31068,11,36419,15,lezzles +31068,11,36419,15,lilingkai +31068,11,36419,15,lindhking +31068,11,36419,15,lizzie1 +31068,11,36419,15,lordofpain +31068,11,36419,15,lordtwaroog +31068,11,36419,15,lowra +31068,11,36419,15,luckyloser +31068,11,36419,15,ludophilegg +31068,11,36419,15,ludwigvonluck +31068,11,36419,15,lupalberto +31068,11,36419,15,lyraia +31068,11,36419,15,maarth +31068,11,36419,15,madchicken82 +31068,11,36419,15,madebyhman +31068,11,36419,15,mag164 +31068,11,36419,15,magixe +31068,11,36419,15,magodelalluvia +31068,11,36419,15,magun071 +31068,11,36419,15,maineogre +31068,11,36419,15,majormajormajormajor +31068,11,36419,15,makura0 +31068,11,36419,15,malificent +31068,11,36419,15,malvictis +31068,11,36419,15,marblewaterbottle +31068,11,36419,15,marclar +31068,11,36419,15,marieschneider +31068,11,36419,15,mark smith +31068,11,36419,15,markplaysgames +31068,11,36419,15,maro86 +31068,11,36419,15,marrcino +31068,11,36419,15,masoudtab +31068,11,36419,15,mat_and +31068,11,36419,15,matsu hiroshi +31068,11,36419,15,matt logan +31068,11,36419,15,matteoneil +31068,11,36419,15,mattinlo +31068,11,36419,15,matzo81 +31068,11,36419,15,maverick_msb +31068,11,36419,15,max1pad +31068,11,36419,15,maxic25 +31068,11,36419,15,maxilupa +31068,11,36419,15,maxim_mishchenko +31068,11,36419,15,maxoso +31068,11,36419,15,may_day +31068,11,36419,15,mayormaccheeze +31068,11,36419,15,mayortwiggy +31068,11,36419,15,mazzazi +31068,11,36419,15,mcledian +31068,11,36419,15,mcsittel +31068,11,36419,15,mdaow +31068,11,36419,15,mdesign +31068,11,36419,15,mdomi +31068,11,36419,15,meancreene +31068,11,36419,15,meat_and_breath +31068,11,36419,15,mekina +31068,11,36419,15,mellina +31068,11,36419,15,merl +31068,11,36419,15,metalrufflez +31068,11,36419,15,mevz +31068,11,36419,15,michablu +31068,11,36419,15,miguelpires1 +31068,11,36419,15,mike sands +31068,11,36419,15,mikebarnett +31068,11,36419,15,mikeeberle7 +31068,11,36419,15,mikeynut +31068,11,36419,15,millicandarque +31068,11,36419,15,millypond +31068,11,36419,15,mingbambu +31068,11,36419,15,miodd +31068,11,36419,15,mirage78 +31068,11,36419,15,mirekcro +31068,11,36419,15,mishel +31068,11,36419,15,missamo80 +31068,11,36419,15,mitch2527 +31068,11,36419,15,mitchellvdadel +31068,11,36419,15,mitchellw +31068,11,36419,15,mjmacky +31068,11,36419,15,mlibuit +31068,11,36419,15,mlvtrglvn +31068,11,36419,15,moezilla +31068,11,36419,15,monkeydonut +31068,11,36419,15,monkeyknifefight +31068,11,36419,15,monnnster +31068,11,36419,15,mooncroc +31068,11,36419,15,moppy89 +31068,11,36419,15,mordenaus +31068,11,36419,15,mors99 +31068,11,36419,15,mountainhawk +31068,11,36419,15,mr_spoon +31068,11,36419,15,mralvarops +31068,11,36419,15,mrcatsup +31068,11,36419,15,mrivera +31068,11,36419,15,muhrnalion +31068,11,36419,15,mungsu +31068,11,36419,15,myrielle +31068,11,36419,15,myrmi +31068,11,36419,15,mystery syzygy +31068,11,36419,15,mystic_angel +31068,11,36419,15,nadialove +31068,11,36419,15,nanux +31068,11,36419,15,nathan_canada +31068,11,36419,15,navhogan +31068,11,36419,15,nczaja +31068,11,36419,15,nd_bears +31068,11,36419,15,necromancer fluffy +31068,11,36419,15,nejibear +31068,11,36419,15,neral7 +31068,11,36419,15,netwomble +31068,11,36419,15,neural27 +31068,11,36419,15,neurocide +31068,11,36419,15,newtonius rex +31068,11,36419,15,nick +31068,11,36419,15,nihilant98 +31068,11,36419,15,nikjepp +31068,11,36419,15,nilnemo +31068,11,36419,15,nivad +31068,11,36419,15,nogen +31068,11,36419,15,nominrath +31068,11,36419,15,nomoredice +31068,11,36419,15,noodlez415 +31068,11,36419,15,noxus81 +31068,11,36419,15,nvgimble +31068,11,36419,15,nwhyman +31068,11,36419,15,nzkopite +31068,11,36419,15,ocul +31068,11,36419,15,odowalt +31068,11,36419,15,olliesons +31068,11,36419,15,onesadjam +31068,11,36419,15,op8glum +31068,11,36419,15,ottokan +31068,11,36419,15,ouamnc +31068,11,36419,15,oufcpete +31068,11,36419,15,ovelha1790 +31068,11,36419,15,pabloskieskiban +31068,11,36419,15,pandwen +31068,11,36419,15,pascougnou +31068,11,36419,15,pavelkzn +31068,11,36419,15,peep trucks +31068,11,36419,15,peneda1 +31068,11,36419,15,penguinblood +31068,11,36419,15,pentelitha +31068,11,36419,15,pepperony +31068,11,36419,15,perivive +31068,11,36419,15,perssin +31068,11,36419,15,peterdestruction +31068,11,36419,15,petomo +31068,11,36419,15,pharmenza +31068,11,36419,15,philafan2000 +31068,11,36419,15,philbeert +31068,11,36419,15,phillc +31068,11,36419,15,phoebecats +31068,11,36419,15,phorin +31068,11,36419,15,phryskamp +31068,11,36419,15,phyore +31068,11,36419,15,pickerim +31068,11,36419,15,piefcake +31068,11,36419,15,pif618 +31068,11,36419,15,pillinjer +31068,11,36419,15,pincao +31068,11,36419,15,piotr1 +31068,11,36419,15,planettop92 +31068,11,36419,15,plantlady2718 +31068,11,36419,15,playing_life +31068,11,36419,15,playtest +31068,11,36419,15,pnodanna +31068,11,36419,15,poket +31068,11,36419,15,poldebelg +31068,11,36419,15,poliricsi +31068,11,36419,15,ponsonbybritt +31068,11,36419,15,pootnd +31068,11,36419,15,powergrid +31068,11,36419,15,pragmatic +31068,11,36419,15,priesst +31068,11,36419,15,priroda +31068,11,36419,15,prnpenguin +31068,11,36419,15,prodigal son +31068,11,36419,15,projektthor +31068,11,36419,15,psychodan +31068,11,36419,15,pufihal +31068,11,36419,15,pumpkin22 +31068,11,36419,15,punkgopher76 +31068,11,36419,15,pygme26 +31068,11,36419,15,qless +31068,11,36419,15,qualith +31068,11,36419,15,quartez +31068,11,36419,15,queeg3 +31068,11,36419,15,r2_j1 +31068,11,36419,15,rafaelsampaio +31068,11,36419,15,raffamyrock +31068,11,36419,15,ragecage +31068,11,36419,15,raine777 +31068,11,36419,15,ramonvidal +31068,11,36419,15,rangor +31068,11,36419,15,rasmon +31068,11,36419,15,rayvanloprang +31068,11,36419,15,rbran123 +31068,11,36419,15,realfen +31068,11,36419,15,rebellions +31068,11,36419,15,refbeaver +31068,11,36419,15,reneaa +31068,11,36419,15,renesauz +31068,11,36419,15,renniem +31068,11,36419,15,retroguysk +31068,11,36419,15,rgmap +31068,11,36419,15,rhaul +31068,11,36419,15,rholford +31068,11,36419,15,rickypl +31068,11,36419,15,riddlingminion +31068,11,36419,15,rilmo +31068,11,36419,15,rix76se +31068,11,36419,15,rixmaadi +31068,11,36419,15,rkeveratt +31068,11,36419,15,rkrylov19 +31068,11,36419,15,rngcurator +31068,11,36419,15,robi1 +31068,11,36419,15,robikscube +31068,11,36419,15,robrob +31068,11,36419,15,roguethree +31068,11,36419,15,romek1976 +31068,11,36419,15,ronac +31068,11,36419,15,ronin4740 +31068,11,36419,15,rosaluv +31068,11,36419,15,rragna +31068,11,36419,15,rshipard +31068,11,36419,15,rskarbez +31068,11,36419,15,rusttysporkk +31068,11,36419,15,ryandb1987 +31068,11,36419,15,ryokanzaki +31068,11,36419,15,ryuu +31068,11,36419,15,safetythird +31068,11,36419,15,saksha +31068,11,36419,15,samiam +31068,11,36419,15,samur +31068,11,36419,15,sandholm +31068,11,36419,15,sathiix +31068,11,36419,15,saytrsong +31068,11,36419,15,sbloub +31068,11,36419,15,sbotelloh +31068,11,36419,15,sc00byd00bydooo +31068,11,36419,15,schaferuni +31068,11,36419,15,schaumy81 +31068,11,36419,15,schwarzwald0224 +31068,11,36419,15,scripteryoda +31068,11,36419,15,scuba2121 +31068,11,36419,15,scubaroo +31068,11,36419,15,sdsteve71 +31068,11,36419,15,seasnan +31068,11,36419,15,sebastl1973 +31068,11,36419,15,sergiosanchezs +31068,11,36419,15,sersantos +31068,11,36419,15,seschken +31068,11,36419,15,sette07 +31068,11,36419,15,shadowhawk720 +31068,11,36419,15,shafty +31068,11,36419,15,shikosaki +31068,11,36419,15,shutterbugtn +31068,11,36419,15,sideburnz +31068,11,36419,15,sidus +31068,11,36419,15,silvos +31068,11,36419,15,simbolio +31068,11,36419,15,singlemeeple +31068,11,36419,15,sioul42 +31068,11,36419,15,siraggi +31068,11,36419,15,sirchube +31068,11,36419,15,sirkittsalot +31068,11,36419,15,sirlolek +31068,11,36419,15,sirtimbers +31068,11,36419,15,sisifolibre +31068,11,36419,15,ski309 +31068,11,36419,15,skkrohmagnon +31068,11,36419,15,slayman +31068,11,36419,15,slonberg +31068,11,36419,15,smartinp +31068,11,36419,15,smileyz +31068,11,36419,15,smithpernu +31068,11,36419,15,smurfodeth +31068,11,36419,15,snemonster +31068,11,36419,15,snugglesworth +31068,11,36419,15,soeefi +31068,11,36419,15,solid88 +31068,11,36419,15,solrac_niloc +31068,11,36419,15,soosy +31068,11,36419,15,sorck1980 +31068,11,36419,15,sorsajuhla +31068,11,36419,15,sotirooov +31068,11,36419,15,soup23 +31068,11,36419,15,spawnsito +31068,11,36419,15,spencyrrh +31068,11,36419,15,spoolermonkey +31068,11,36419,15,spriditis +31068,11,36419,15,squid in squid ink +31068,11,36419,15,squonk +31068,11,36419,15,srperro +31068,11,36419,15,stangm +31068,11,36419,15,startexploding +31068,11,36419,15,starwarior +31068,11,36419,15,starwollf +31068,11,36419,15,stb2739 +31068,11,36419,15,stealthyj47 +31068,11,36419,15,stefan80 +31068,11,36419,15,steve86 +31068,11,36419,15,stevehaley24 +31068,11,36419,15,steveisbig +31068,11,36419,15,stewbags +31068,11,36419,15,stibbsta +31068,11,36419,15,stkoklas +31068,11,36419,15,stormflite +31068,11,36419,15,suko4780 +31068,11,36419,15,swinepox +31068,11,36419,15,swisssigness +31068,11,36419,15,swmalone +31068,11,36419,15,sworc +31068,11,36419,15,symplekaos +31068,11,36419,15,szczerbulec +31068,11,36419,15,t4rsk1pp +31068,11,36419,15,t_s_r +31068,11,36419,15,tbon234 +31068,11,36419,15,tchumatchek +31068,11,36419,15,tehanu +31068,11,36419,15,tenelka413 +31068,11,36419,15,terpitude71 +31068,11,36419,15,th0rn +31068,11,36419,15,thanh23 +31068,11,36419,15,the narrator +31068,11,36419,15,the_boy_who_lived +31068,11,36419,15,the_fat_guy +31068,11,36419,15,the_jazzdevil +31068,11,36419,15,thebuckifan +31068,11,36419,15,theclyd3man +31068,11,36419,15,thefeber +31068,11,36419,15,thegamecupboard +31068,11,36419,15,thehepi +31068,11,36419,15,thehimps +31068,11,36419,15,themart22 +31068,11,36419,15,thenaylander +31068,11,36419,15,therealbroc +31068,11,36419,15,thorbot +31068,11,36419,15,thorf +31068,11,36419,15,thorin99 +31068,11,36419,15,threedols +31068,11,36419,15,timothymdunn +31068,11,36419,15,tiokter +31068,11,36419,15,tireman33 +31068,11,36419,15,titaniumhedgehog +31068,11,36419,15,tlemaistre +31068,11,36419,15,tlohmann3 +31068,11,36419,15,toerdas +31068,11,36419,15,tomsorvor +31068,11,36419,15,toothywisdom +31068,11,36419,15,topgundk +31068,11,36419,15,toronado +31068,11,36419,15,toto_t +31068,11,36419,15,townsean +31068,11,36419,15,towo +31068,11,36419,15,tpchid +31068,11,36419,15,tricoloredtiger +31068,11,36419,15,trigeek37 +31068,11,36419,15,trimmo +31068,11,36419,15,tropicalpinguin +31068,11,36419,15,truemlecyk +31068,11,36419,15,truji +31068,11,36419,15,tschan_go +31068,11,36419,15,turambar121 +31068,11,36419,15,turbo2000 +31068,11,36419,15,turbomeat +31068,11,36419,15,turnover +31068,11,36419,15,tuteshot +31068,11,36419,15,tweedndust +31068,11,36419,15,twestor69 +31068,11,36419,15,txaky18 +31068,11,36419,15,ua_samwa +31068,11,36419,15,udeki +31068,11,36419,15,ultrajohn117 +31068,11,36419,15,unveilmyeyes +31068,11,36419,15,uzumakioli +31068,11,36419,15,valhallions +31068,11,36419,15,vampb +31068,11,36419,15,vampiyno +31068,11,36419,15,vatioz +31068,11,36419,15,ve9tamr +31068,11,36419,15,vicvale +31068,11,36419,15,vicyo03 +31068,11,36419,15,vincenthakkie +31068,11,36419,15,vinohobo +31068,11,36419,15,vittoriolio +31068,11,36419,15,vncntms +31068,11,36419,15,volleygame +31068,11,36419,15,waliano +31068,11,36419,15,walomero +31068,11,36419,15,wameel +31068,11,36419,15,warhammer +31068,11,36419,15,warthogg +31068,11,36419,15,wattsup314 +31068,11,36419,15,wernervoss +31068,11,36419,15,whatdasnell +31068,11,36419,15,whitey660 +31068,11,36419,15,whovjorso +31068,11,36419,15,widmo +31068,11,36419,15,williangallis +31068,11,36419,15,willmar22 +31068,11,36419,15,windshield +31068,11,36419,15,wingerdesign +31068,11,36419,15,wingspan +31068,11,36419,15,wirbelwurm +31068,11,36419,15,wissfornjarl +31068,11,36419,15,woliver +31068,11,36419,15,woogies +31068,11,36419,15,wt1989peter +31068,11,36419,15,wuwu741 +31068,11,36419,15,wwbjd +31068,11,36419,15,x_ilon +31068,11,36419,15,xermax +31068,11,36419,15,xetty +31068,11,36419,15,xiao_yu +31068,11,36419,15,xiekaidream +31068,11,36419,15,xiosses +31068,11,36419,15,xirivia +31068,11,36419,15,xxkaniix +31068,11,36419,15,yagiblele +31068,11,36419,15,yambanis +31068,11,36419,15,yamilyon +31068,11,36419,15,yazkanji +31068,11,36419,15,yharnim +31068,11,36419,15,yogg_hurt +31068,11,36419,15,yommic +31068,11,36419,15,yourbuddyfromcanada +31068,11,36419,15,yozunyi +31068,11,36419,15,yuholong +31068,11,36419,15,yurimg31 +31068,11,36419,15,yves tourigny +31068,11,36419,15,z00nie +31068,11,36419,15,zace66 +31068,11,36419,15,zachhorn117 +31068,11,36419,15,zatruta_sardelka +31068,11,36419,15,zbum +31068,11,36419,15,zelium +31068,11,36419,15,zeloran +31068,11,36419,15,zephiro80 +31068,11,36419,15,zipo13 +31068,11,36419,15,zockerundsalz +31068,11,36419,15,zsaba +31068,11,36419,15,zuton38 +31068,11,39699,14,01hejazi +31068,11,39699,14,39ster +31068,11,39699,14,42cogs +31068,11,39699,14,abby312 +31068,11,39699,14,abysmul +31068,11,39699,14,ac0990 +31068,11,39699,14,acidikinc +31068,11,39699,14,adamfive +31068,11,39699,14,adaygrit +31068,11,39699,14,addisonefc +31068,11,39699,14,adridg +31068,11,39699,14,aelaster +31068,11,39699,14,aepa30 +31068,11,39699,14,aggroberlin +31068,11,39699,14,ajpeart +31068,11,39699,14,akmanar +31068,11,39699,14,aktai +31068,11,39699,14,akunosh +31068,11,39699,14,albertksi +31068,11,39699,14,alexfc +31068,11,39699,14,allerweltstyp +31068,11,39699,14,alpha2134 +31068,11,39699,14,alternativemeeples +31068,11,39699,14,alyssaandreas +31068,11,39699,14,americo77 +31068,11,39699,14,amorin_uzuki +31068,11,39699,14,andi2go +31068,11,39699,14,andresantos +31068,11,39699,14,andriares +31068,11,39699,14,angelicide +31068,11,39699,14,ankaru +31068,11,39699,14,annettexy +31068,11,39699,14,anshou +31068,11,39699,14,aperol88 +31068,11,39699,14,apisapia +31068,11,39699,14,aranzazucepeda +31068,11,39699,14,arapajouk +31068,11,39699,14,archrobin +31068,11,39699,14,ares2502 +31068,11,39699,14,aristites +31068,11,39699,14,arkobla conn +31068,11,39699,14,armunin +31068,11,39699,14,arribos +31068,11,39699,14,arshiesnei9 +31068,11,39699,14,arvaro +31068,11,39699,14,asianchan +31068,11,39699,14,atj9 +31068,11,39699,14,autieri +31068,11,39699,14,avassem +31068,11,39699,14,aweburnphoenix +31068,11,39699,14,awtyler +31068,11,39699,14,ayumbhara +31068,11,39699,14,aznt +31068,11,39699,14,b00zerman +31068,11,39699,14,babskuh +31068,11,39699,14,babyfacekiller +31068,11,39699,14,bachatero75 +31068,11,39699,14,backseatbj +31068,11,39699,14,badluckjack +31068,11,39699,14,bakchish +31068,11,39699,14,basmas25 +31068,11,39699,14,batchi +31068,11,39699,14,battonline +31068,11,39699,14,batven +31068,11,39699,14,bburch1279 +31068,11,39699,14,beam022 +31068,11,39699,14,bearhard +31068,11,39699,14,bellecupcake +31068,11,39699,14,bemanixraver +31068,11,39699,14,bgameszone +31068,11,39699,14,big_badger +31068,11,39699,14,bigd1981 +31068,11,39699,14,billcoke +31068,11,39699,14,bipolarmom33 +31068,11,39699,14,bisamrattejohn +31068,11,39699,14,bishop_sheen +31068,11,39699,14,bitxo +31068,11,39699,14,bixon +31068,11,39699,14,bj76ms +31068,11,39699,14,bkrause05 +31068,11,39699,14,blacklining +31068,11,39699,14,blackvelvet1 +31068,11,39699,14,blbyblby +31068,11,39699,14,bltseattle +31068,11,39699,14,bluegrover +31068,11,39699,14,boardgame_viking +31068,11,39699,14,boardgamelibrarian +31068,11,39699,14,bobaflott +31068,11,39699,14,bookofnerds +31068,11,39699,14,booner_31 +31068,11,39699,14,boziko +31068,11,39699,14,brainbursta +31068,11,39699,14,brasilcaps +31068,11,39699,14,brausebart +31068,11,39699,14,bravoboogie +31068,11,39699,14,breiers +31068,11,39699,14,brent13vb +31068,11,39699,14,brettspielgeeks +31068,11,39699,14,brewinindy +31068,11,39699,14,brome +31068,11,39699,14,brucesmash +31068,11,39699,14,bsanf +31068,11,39699,14,bszymczak +31068,11,39699,14,bubblez07 +31068,11,39699,14,buddhabob74 +31068,11,39699,14,bushtotalk +31068,11,39699,14,cactusgames +31068,11,39699,14,caderade24 +31068,11,39699,14,cahalanem +31068,11,39699,14,caileadair +31068,11,39699,14,camo11 +31068,11,39699,14,captainclownshoe69 +31068,11,39699,14,captwhiffle +31068,11,39699,14,carlosjoazeiro +31068,11,39699,14,carrollz +31068,11,39699,14,carsten78e +31068,11,39699,14,caterpillor +31068,11,39699,14,cetequ +31068,11,39699,14,ceustice +31068,11,39699,14,chaiftan +31068,11,39699,14,challenger1313 +31068,11,39699,14,chammychameleon +31068,11,39699,14,charakternik +31068,11,39699,14,chatturgah +31068,11,39699,14,chesterbaker +31068,11,39699,14,chloeaccent +31068,11,39699,14,chouffke +31068,11,39699,14,chrisetteindabagames +31068,11,39699,14,chrissj2 +31068,11,39699,14,chsy +31068,11,39699,14,clankvalerya +31068,11,39699,14,clarkchou +31068,11,39699,14,clingywrap +31068,11,39699,14,cloweman +31068,11,39699,14,clulle +31068,11,39699,14,cmichel +31068,11,39699,14,cohlerc1 +31068,11,39699,14,coreye89 +31068,11,39699,14,coxigeno +31068,11,39699,14,cpa016 +31068,11,39699,14,crunc +31068,11,39699,14,cryotops +31068,11,39699,14,cschacal +31068,11,39699,14,cthulwho13 +31068,11,39699,14,curatorofintrigue +31068,11,39699,14,cursorx +31068,11,39699,14,cymric +31068,11,39699,14,dahen +31068,11,39699,14,danimalroar +31068,11,39699,14,danoth +31068,11,39699,14,dante999 +31068,11,39699,14,dantependragon +31068,11,39699,14,daremok +31068,11,39699,14,dargus +31068,11,39699,14,darkb1u3 +31068,11,39699,14,darksasquatch2 +31068,11,39699,14,darkstone +31068,11,39699,14,darktea +31068,11,39699,14,darkyben +31068,11,39699,14,darrenj23 +31068,11,39699,14,darthpooh +31068,11,39699,14,daswrap +31068,11,39699,14,davidxk +31068,11,39699,14,davob +31068,11,39699,14,dcgaymer +31068,11,39699,14,deardent +31068,11,39699,14,deep6lue +31068,11,39699,14,demosbe +31068,11,39699,14,densar64 +31068,11,39699,14,denyos +31068,11,39699,14,denzien +31068,11,39699,14,derek thom +31068,11,39699,14,devrichards +31068,11,39699,14,dggomes +31068,11,39699,14,diehand +31068,11,39699,14,diggity_doc +31068,11,39699,14,digitalbath696 +31068,11,39699,14,dilloj +31068,11,39699,14,djerfquake +31068,11,39699,14,djord2 +31068,11,39699,14,dloosemore +31068,11,39699,14,dojogrant +31068,11,39699,14,dominikach +31068,11,39699,14,dontadow +31068,11,39699,14,doosteen +31068,11,39699,14,dot309 +31068,11,39699,14,dowdah +31068,11,39699,14,dpacemaker +31068,11,39699,14,dpr76 +31068,11,39699,14,drcoffee +31068,11,39699,14,dreamsower +31068,11,39699,14,driesdebie +31068,11,39699,14,dropstopper +31068,11,39699,14,dsa87 +31068,11,39699,14,dstoelb +31068,11,39699,14,dstrawse +31068,11,39699,14,dudo7 +31068,11,39699,14,dwag44 +31068,11,39699,14,dziami +31068,11,39699,14,ebbi0402 +31068,11,39699,14,ebmdarkwolf +31068,11,39699,14,eddilaxx +31068,11,39699,14,edra_rd +31068,11,39699,14,edu1523 +31068,11,39699,14,eerakson +31068,11,39699,14,einstn777 +31068,11,39699,14,ejtracer +31068,11,39699,14,elbanana87 +31068,11,39699,14,elbertjan +31068,11,39699,14,elilong +31068,11,39699,14,elmonografico +31068,11,39699,14,elquappo +31068,11,39699,14,elrohirthehasty +31068,11,39699,14,elulse +31068,11,39699,14,elvisier +31068,11,39699,14,eman68 +31068,11,39699,14,emberzone76 +31068,11,39699,14,emmandi +31068,11,39699,14,emustryparen +31068,11,39699,14,eriadan_ua +31068,11,39699,14,ericaustinlee +31068,11,39699,14,ervicioso +31068,11,39699,14,ethicsgradient +31068,11,39699,14,etorija82 +31068,11,39699,14,evalo +31068,11,39699,14,evaniar +31068,11,39699,14,eviljuzu +31068,11,39699,14,eviltimmy +31068,11,39699,14,extrajoranza +31068,11,39699,14,eymerich +31068,11,39699,14,farmerdude +31068,11,39699,14,farsidehobbes +31068,11,39699,14,fawzi +31068,11,39699,14,fayedumonde +31068,11,39699,14,feliperibeiro +31068,11,39699,14,figgeh +31068,11,39699,14,flamingflea +31068,11,39699,14,flipz101 +31068,11,39699,14,floating fat man +31068,11,39699,14,fmoros +31068,11,39699,14,foss83 +31068,11,39699,14,fosterthemeeple +31068,11,39699,14,fracastoro +31068,11,39699,14,fragnog +31068,11,39699,14,framebrain +31068,11,39699,14,freskito24 +31068,11,39699,14,friarlawless +31068,11,39699,14,frolic7 +31068,11,39699,14,froothe +31068,11,39699,14,galalexy12 +31068,11,39699,14,galoisthegreat +31068,11,39699,14,gamehawk1234 +31068,11,39699,14,gantery +31068,11,39699,14,garlaschini +31068,11,39699,14,geldyr +31068,11,39699,14,genghisdhan +31068,11,39699,14,germelia85 +31068,11,39699,14,gidget +31068,11,39699,14,ginocalabrese +31068,11,39699,14,giogio1510 +31068,11,39699,14,giorgiovoid +31068,11,39699,14,gladiolus77 +31068,11,39699,14,goethean +31068,11,39699,14,gorillamo +31068,11,39699,14,gorn1979 +31068,11,39699,14,grafmontenegro +31068,11,39699,14,grampane +31068,11,39699,14,greazzy92 +31068,11,39699,14,gremlin72 +31068,11,39699,14,grignaak +31068,11,39699,14,grizzli89 +31068,11,39699,14,grochts +31068,11,39699,14,grunnoid +31068,11,39699,14,gspawn +31068,11,39699,14,h2waffle +31068,11,39699,14,hackareatech +31068,11,39699,14,hadsot +31068,11,39699,14,hal91190 +31068,11,39699,14,halbarad_bg +31068,11,39699,14,hanvandenboogaart +31068,11,39699,14,harretshadow +31068,11,39699,14,harrisonlereed +31068,11,39699,14,hauteclaire +31068,11,39699,14,havoc110 +31068,11,39699,14,headynad +31068,11,39699,14,heather78 +31068,11,39699,14,hector131 +31068,11,39699,14,hefesto523 +31068,11,39699,14,hehaheho +31068,11,39699,14,henkvanaartsen +31068,11,39699,14,herbbread +31068,11,39699,14,herbolder +31068,11,39699,14,herringbone +31068,11,39699,14,heylookaquarter +31068,11,39699,14,hofidas +31068,11,39699,14,holybinch +31068,11,39699,14,hoon4vr +31068,11,39699,14,hrdplstc +31068,11,39699,14,hskev +31068,11,39699,14,hungmarcok +31068,11,39699,14,hurrar +31068,11,39699,14,hurricains859 +31068,11,39699,14,hynst +31068,11,39699,14,hyper3116 +31068,11,39699,14,iagoaf7 +31068,11,39699,14,iamstein +31068,11,39699,14,ibonilha +31068,11,39699,14,ice hensley +31068,11,39699,14,icewolf2772 +31068,11,39699,14,ilajdza +31068,11,39699,14,ilproiezionista +31068,11,39699,14,imagus +31068,11,39699,14,inge +31068,11,39699,14,ingeniousprairiedog +31068,11,39699,14,interiorcake +31068,11,39699,14,iobus +31068,11,39699,14,ironicteach +31068,11,39699,14,itskatha +31068,11,39699,14,ivefa9 +31068,11,39699,14,j0z3f +31068,11,39699,14,jackerious +31068,11,39699,14,jackman003 +31068,11,39699,14,jacksondoh +31068,11,39699,14,jaenen +31068,11,39699,14,jagz2 +31068,11,39699,14,jaime4101 +31068,11,39699,14,james6078 +31068,11,39699,14,jammymonkey +31068,11,39699,14,javier pelizzari +31068,11,39699,14,javixas +31068,11,39699,14,jax78 +31068,11,39699,14,jdbehan +31068,11,39699,14,jdelcom +31068,11,39699,14,jdlaffey +31068,11,39699,14,jeeferoo +31068,11,39699,14,jeffm05 +31068,11,39699,14,jelliot +31068,11,39699,14,jenarvaezg +31068,11,39699,14,jkblev +31068,11,39699,14,jlobo +31068,11,39699,14,jlpatte2 +31068,11,39699,14,jminnick +31068,11,39699,14,john_kav +31068,11,39699,14,johnnyboystnl +31068,11,39699,14,jolman42 +31068,11,39699,14,jordimares +31068,11,39699,14,jost3d +31068,11,39699,14,jrk74 +31068,11,39699,14,jrohl4 +31068,11,39699,14,jroos1101 +31068,11,39699,14,jsalais +31068,11,39699,14,jshortall +31068,11,39699,14,jtrapani +31068,11,39699,14,justjd +31068,11,39699,14,justmarks +31068,11,39699,14,jwareluk +31068,11,39699,14,kabouter +31068,11,39699,14,kajdac +31068,11,39699,14,kalelema +31068,11,39699,14,kaleljorson7 +31068,11,39699,14,kaltewn +31068,11,39699,14,karelv +31068,11,39699,14,karlos the jackal +31068,11,39699,14,kartelaar +31068,11,39699,14,kdean1 +31068,11,39699,14,keithjones +31068,11,39699,14,keleman28 +31068,11,39699,14,kemphala +31068,11,39699,14,kendobc +31068,11,39699,14,kertwang +31068,11,39699,14,kevtor +31068,11,39699,14,keysr +31068,11,39699,14,khaniyan +31068,11,39699,14,kibuen +31068,11,39699,14,kiestered +31068,11,39699,14,kigai17 +31068,11,39699,14,kike666666 +31068,11,39699,14,kiragagarden +31068,11,39699,14,kirowan_mystery +31068,11,39699,14,kisnord +31068,11,39699,14,klema +31068,11,39699,14,kmcgerigle +31068,11,39699,14,knewms7 +31068,11,39699,14,knitshopgrl +31068,11,39699,14,korkibuchek +31068,11,39699,14,kragval +31068,11,39699,14,kronopio +31068,11,39699,14,krudax +31068,11,39699,14,kuaky +31068,11,39699,14,labalduino +31068,11,39699,14,lake21 +31068,11,39699,14,lan512 +31068,11,39699,14,language_escapes +31068,11,39699,14,lasve16 +31068,11,39699,14,laughstooeasily +31068,11,39699,14,laycraft +31068,11,39699,14,legodude57 +31068,11,39699,14,lemon_pie +31068,11,39699,14,lennylan +31068,11,39699,14,leodd9880 +31068,11,39699,14,leshanware +31068,11,39699,14,lestat2099 +31068,11,39699,14,letimangames +31068,11,39699,14,leumus +31068,11,39699,14,leun089 +31068,11,39699,14,lezard +31068,11,39699,14,lilithdana +31068,11,39699,14,lilleville92 +31068,11,39699,14,littleconny +31068,11,39699,14,llcooldave3000 +31068,11,39699,14,long_john_lindir +31068,11,39699,14,lootnscoot +31068,11,39699,14,lord heisemberg +31068,11,39699,14,lord_blackghost +31068,11,39699,14,lord_drex +31068,11,39699,14,lorion42 +31068,11,39699,14,lostinthemail +31068,11,39699,14,loudlibrarian +31068,11,39699,14,luchi08 +31068,11,39699,14,luchonirvana +31068,11,39699,14,lukedenby +31068,11,39699,14,luzifer +31068,11,39699,14,lwinckles +31068,11,39699,14,m0rity +31068,11,39699,14,m4dc0w +31068,11,39699,14,ma1ze +31068,11,39699,14,macprice99 +31068,11,39699,14,maddmann +31068,11,39699,14,madhatter1908 +31068,11,39699,14,madmanmoon +31068,11,39699,14,maeglin123 +31068,11,39699,14,magic33 +31068,11,39699,14,magoxxo +31068,11,39699,14,mainlander +31068,11,39699,14,malalie +31068,11,39699,14,malgosiap +31068,11,39699,14,malte47 +31068,11,39699,14,mann +31068,11,39699,14,manwemx +31068,11,39699,14,marathonphil +31068,11,39699,14,marko ck +31068,11,39699,14,marriedmeeple +31068,11,39699,14,mart0k +31068,11,39699,14,masterpigg +31068,11,39699,14,matee +31068,11,39699,14,matryyxx +31068,11,39699,14,matsoo +31068,11,39699,14,mattofthebeast +31068,11,39699,14,maxems +31068,11,39699,14,mc1p +31068,11,39699,14,mcfrr3 +31068,11,39699,14,mduguay +31068,11,39699,14,mecoides +31068,11,39699,14,meeple_party_for_2 +31068,11,39699,14,meeplesenexpansion +31068,11,39699,14,megasquidd +31068,11,39699,14,mentalmidget +31068,11,39699,14,meorcmegreat +31068,11,39699,14,mephezar +31068,11,39699,14,metal4life +31068,11,39699,14,mgdamen +31068,11,39699,14,michaellasalle +31068,11,39699,14,michaellehanehays +31068,11,39699,14,michel_w +31068,11,39699,14,michielthe1 +31068,11,39699,14,middlepath +31068,11,39699,14,mihhail +31068,11,39699,14,mike 20 +31068,11,39699,14,mikerpg +31068,11,39699,14,milksheikh +31068,11,39699,14,minos +31068,11,39699,14,mister boddy +31068,11,39699,14,mixmaster +31068,11,39699,14,mnv_iii +31068,11,39699,14,molonelcustard +31068,11,39699,14,moomoocow42 +31068,11,39699,14,moottoot +31068,11,39699,14,mrexotic +31068,11,39699,14,mrflibble2999 +31068,11,39699,14,mrsazmo +31068,11,39699,14,mrsocash +31068,11,39699,14,msoul01 +31068,11,39699,14,mtgofiend +31068,11,39699,14,muneco +31068,11,39699,14,my6am3rta6 +31068,11,39699,14,mymybelle +31068,11,39699,14,mysterium12345 +31068,11,39699,14,narcissica +31068,11,39699,14,nastolker +31068,11,39699,14,nathanzweers +31068,11,39699,14,ncmonserud +31068,11,39699,14,neckhair +31068,11,39699,14,nedyl +31068,11,39699,14,nekril +31068,11,39699,14,nelajones13 +31068,11,39699,14,neurobomber +31068,11,39699,14,newgolddream +31068,11,39699,14,nhowe29 +31068,11,39699,14,niao +31068,11,39699,14,nick_88 +31068,11,39699,14,nickeoxring +31068,11,39699,14,niel0248 +31068,11,39699,14,nightboy +31068,11,39699,14,nikodim +31068,11,39699,14,nilssonv +31068,11,39699,14,ninjaraiden +31068,11,39699,14,nmhbram +31068,11,39699,14,noahcoad +31068,11,39699,14,nolesr1 +31068,11,39699,14,nordowl +31068,11,39699,14,nosneb +31068,11,39699,14,numanoski +31068,11,39699,14,nvde +31068,11,39699,14,obes777 +31068,11,39699,14,oconnel +31068,11,39699,14,odoren +31068,11,39699,14,ogladih81 +31068,11,39699,14,oiamslain +31068,11,39699,14,okkata +31068,11,39699,14,olivierw +31068,11,39699,14,olivyaa +31068,11,39699,14,one_wolf +31068,11,39699,14,onlyhestandsthere +31068,11,39699,14,oparga +31068,11,39699,14,opiklus +31068,11,39699,14,oracus +31068,11,39699,14,orionyleon +31068,11,39699,14,oscarbellaton +31068,11,39699,14,paddyb +31068,11,39699,14,painkillermix +31068,11,39699,14,particleman_19 +31068,11,39699,14,passel88 +31068,11,39699,14,patattaq +31068,11,39699,14,patches_charcoal +31068,11,39699,14,patientrock +31068,11,39699,14,pauldragon +31068,11,39699,14,paulw +31068,11,39699,14,pbrisset +31068,11,39699,14,perfectroll +31068,11,39699,14,pgcole +31068,11,39699,14,philip_chang +31068,11,39699,14,pick_nicker +31068,11,39699,14,pietranik +31068,11,39699,14,pigi314159 +31068,11,39699,14,pisti_ultra +31068,11,39699,14,pitarque +31068,11,39699,14,pixelfinger +31068,11,39699,14,polidori +31068,11,39699,14,pontus_eriksson +31068,11,39699,14,porchyg +31068,11,39699,14,pouria_mmps +31068,11,39699,14,powrthru +31068,11,39699,14,preacherhal +31068,11,39699,14,precasso +31068,11,39699,14,pretzeldealer +31068,11,39699,14,prof. plum +31068,11,39699,14,promotordj +31068,11,39699,14,pronin_zet +31068,11,39699,14,prozo +31068,11,39699,14,psilon22 +31068,11,39699,14,pudger +31068,11,39699,14,pyclco +31068,11,39699,14,r2wend2 +31068,11,39699,14,r4gn4rr0x +31068,11,39699,14,radarek +31068,11,39699,14,rainydevil +31068,11,39699,14,ranstopa +31068,11,39699,14,rattlebox +31068,11,39699,14,razor_rad10 +31068,11,39699,14,rb68 +31068,11,39699,14,rdbrim +31068,11,39699,14,readyfreddie +31068,11,39699,14,redrich1969 +31068,11,39699,14,registorquato +31068,11,39699,14,reverendgamer +31068,11,39699,14,rhaph +31068,11,39699,14,ricix +31068,11,39699,14,ricketyob +31068,11,39699,14,rikkitikitawi +31068,11,39699,14,rimagia +31068,11,39699,14,rinser +31068,11,39699,14,riseofanempire +31068,11,39699,14,riska +31068,11,39699,14,rivian16 +31068,11,39699,14,rmaia8 +31068,11,39699,14,robbed +31068,11,39699,14,robinmagister +31068,11,39699,14,rodmagnuson +31068,11,39699,14,rojo +31068,11,39699,14,rol79 +31068,11,39699,14,rolfravn +31068,11,39699,14,roodkaak +31068,11,39699,14,rorydg +31068,11,39699,14,ruinerx +31068,11,39699,14,rumoroso +31068,11,39699,14,rushmoreyankee +31068,11,39699,14,russpsmith +31068,11,39699,14,saarbornstein94 +31068,11,39699,14,sacubas13 +31068,11,39699,14,sage1127 +31068,11,39699,14,saka2020 +31068,11,39699,14,santivarm +31068,11,39699,14,saysys +31068,11,39699,14,schemaman +31068,11,39699,14,schizotypy +31068,11,39699,14,schorse +31068,11,39699,14,schwastl +31068,11,39699,14,sdionysos +31068,11,39699,14,seanmarcum +31068,11,39699,14,sebasjr +31068,11,39699,14,sebeste +31068,11,39699,14,semicolon42 +31068,11,39699,14,serafin88 +31068,11,39699,14,sergio353 +31068,11,39699,14,shader10 +31068,11,39699,14,shakh85 +31068,11,39699,14,shegeekswithgrace +31068,11,39699,14,shina646 +31068,11,39699,14,sideroad +31068,11,39699,14,sifox +31068,11,39699,14,sile19 +31068,11,39699,14,silk +31068,11,39699,14,silraen +31068,11,39699,14,silverthorn11 +31068,11,39699,14,silvestras +31068,11,39699,14,simone62 +31068,11,39699,14,sinistro85 +31068,11,39699,14,sirbeefman +31068,11,39699,14,siterath +31068,11,39699,14,sittinggeorge +31068,11,39699,14,skullsplitter +31068,11,39699,14,skunnywundy +31068,11,39699,14,slayer99 +31068,11,39699,14,slojdordie +31068,11,39699,14,smithkcred +31068,11,39699,14,sn00z +31068,11,39699,14,snowren24 +31068,11,39699,14,sonja76j +31068,11,39699,14,sophieleung +31068,11,39699,14,spambox +31068,11,39699,14,spe92 +31068,11,39699,14,spenser +31068,11,39699,14,spettinatomagico +31068,11,39699,14,spielenerd +31068,11,39699,14,spiffy_jones +31068,11,39699,14,spiromac +31068,11,39699,14,spitmacabre +31068,11,39699,14,squattingroy +31068,11,39699,14,squeze +31068,11,39699,14,squidjessica +31068,11,39699,14,sross +31068,11,39699,14,steelweevil +31068,11,39699,14,stefanocase +31068,11,39699,14,stellarcell13 +31068,11,39699,14,stephyj85 +31068,11,39699,14,stevens57 +31068,11,39699,14,stickybubbles28 +31068,11,39699,14,stilgar84 +31068,11,39699,14,stoppl11 +31068,11,39699,14,storkace +31068,11,39699,14,strivemind +31068,11,39699,14,strokerace +31068,11,39699,14,stunty46 +31068,11,39699,14,sunshine59 +31068,11,39699,14,super780 +31068,11,39699,14,suspectfenster +31068,11,39699,14,suzanareis +31068,11,39699,14,suzuki650 +31068,11,39699,14,svelix +31068,11,39699,14,sven_r +31068,11,39699,14,swav +31068,11,39699,14,tailz13 +31068,11,39699,14,tayl0496 +31068,11,39699,14,teach4aliving +31068,11,39699,14,teamgeimer +31068,11,39699,14,tentaclatron +31068,11,39699,14,teuras +31068,11,39699,14,tgrieve +31068,11,39699,14,thatfalafelgirl +31068,11,39699,14,the_grommet +31068,11,39699,14,thebigpupusa +31068,11,39699,14,thedoctor_13 +31068,11,39699,14,thedrumminggear +31068,11,39699,14,theresasaur +31068,11,39699,14,theslasher99 +31068,11,39699,14,thesporadic +31068,11,39699,14,thirsty dragon +31068,11,39699,14,thisredhead +31068,11,39699,14,thorhispano +31068,11,39699,14,thorry_t +31068,11,39699,14,threedub +31068,11,39699,14,throwingsixes +31068,11,39699,14,tigerthompson +31068,11,39699,14,tilerwen +31068,11,39699,14,timglu +31068,11,39699,14,timosa +31068,11,39699,14,tinandy +31068,11,39699,14,tintapaca +31068,11,39699,14,toekneeg89 +31068,11,39699,14,toga311 +31068,11,39699,14,tommi154 +31068,11,39699,14,tommuddy +31068,11,39699,14,tornado67 +31068,11,39699,14,torunga +31068,11,39699,14,toxicdoc +31068,11,39699,14,tre2409 +31068,11,39699,14,treaty +31068,11,39699,14,trentrentrent +31068,11,39699,14,tripp +31068,11,39699,14,ttexk +31068,11,39699,14,tubelo +31068,11,39699,14,tuminure +31068,11,39699,14,tverezyi_viking +31068,11,39699,14,twentyeightdayslater +31068,11,39699,14,txle +31068,11,39699,14,tyguy +31068,11,39699,14,tyros92 +31068,11,39699,14,ufo11 +31068,11,39699,14,uki24 +31068,11,39699,14,ukphitau97 +31068,11,39699,14,uksaint +31068,11,39699,14,unittype +31068,11,39699,14,universumdancing +31068,11,39699,14,upriverquill +31068,11,39699,14,urbaane +31068,11,39699,14,urreamanu +31068,11,39699,14,v for revenge +31068,11,39699,14,valoreerose +31068,11,39699,14,vega185 +31068,11,39699,14,vegtam +31068,11,39699,14,vehrka +31068,11,39699,14,vendalmis +31068,11,39699,14,vernikos +31068,11,39699,14,vertigordr +31068,11,39699,14,vicentet +31068,11,39699,14,viglaw +31068,11,39699,14,vikngzombehntr +31068,11,39699,14,virx61 +31068,11,39699,14,vortexx +31068,11,39699,14,vtang +31068,11,39699,14,vulturesquadron +31068,11,39699,14,walsfeo +31068,11,39699,14,walterm +31068,11,39699,14,watanabe058 +31068,11,39699,14,watertank10430 +31068,11,39699,14,weezerang +31068,11,39699,14,whodey9 +31068,11,39699,14,wholedwarf +31068,11,39699,14,wikipediabrown +31068,11,39699,14,will2911 +31068,11,39699,14,winchik +31068,11,39699,14,wing2040 +31068,11,39699,14,winoko21 +31068,11,39699,14,wismerhillcln +31068,11,39699,14,woltar +31068,11,39699,14,wombling star +31068,11,39699,14,wongar +31068,11,39699,14,woocash +31068,11,39699,14,woodmachinist +31068,11,39699,14,wsgosset +31068,11,39699,14,wuehne +31068,11,39699,14,wverschoof +31068,11,39699,14,xapmat +31068,11,39699,14,xavila +31068,11,39699,14,xenoph +31068,11,39699,14,xeps +31068,11,39699,14,xuachii +31068,11,39699,14,xxtanatosxx +31068,11,39699,14,yannlyplay +31068,11,39699,14,yolanda_x +31068,11,39699,14,yopabloski +31068,11,39699,14,your_destiny6 +31068,11,39699,14,ystera +31068,11,39699,14,zakosoldier +31068,11,39699,14,zaph42 +31068,11,39699,14,zavkaf +31068,11,39699,14,zaxa13 +31068,11,39699,14,zenda +31068,11,39699,14,zeneir +31068,11,39699,14,zeno1700 +31068,11,39699,14,zertork +31068,11,39699,14,zlanshe +31068,11,39699,14,zmikers +31068,11,39699,14,zollom04 +31068,11,39699,14,zorayas +31068,11,43246,13,aagronom +31068,11,43246,13,aby407 +31068,11,43246,13,adrienned1 +31068,11,43246,13,aemb +31068,11,43246,13,agf30338 +31068,11,43246,13,agoodall +31068,11,43246,13,alalich +31068,11,43246,13,alexandrefr +31068,11,43246,13,alexoldman +31068,11,43246,13,alextsar16 +31068,11,43246,13,alexwick +31068,11,43246,13,allanlaigh +31068,11,43246,13,almo1705 +31068,11,43246,13,alucky_1 +31068,11,43246,13,ammcdowe +31068,11,43246,13,annchovi +31068,11,43246,13,anothergamingcouple +31068,11,43246,13,antonioalg +31068,11,43246,13,antonyc81 +31068,11,43246,13,antosol87 +31068,11,43246,13,appleton +31068,11,43246,13,apurschke +31068,11,43246,13,araragi +31068,11,43246,13,aries6 +31068,11,43246,13,articsquirrel +31068,11,43246,13,arvavolente +31068,11,43246,13,bai1van +31068,11,43246,13,baloo72 +31068,11,43246,13,barbarabroccoli +31068,11,43246,13,barnie78 +31068,11,43246,13,beginningatlast +31068,11,43246,13,berlinerbrettspieler +31068,11,43246,13,bhenrique +31068,11,43246,13,bigjay415 +31068,11,43246,13,billyboy +31068,11,43246,13,blackdragon +31068,11,43246,13,blackpoolgeek +31068,11,43246,13,blij +31068,11,43246,13,board game gigolo +31068,11,43246,13,bodhimick +31068,11,43246,13,bollegamegeek +31068,11,43246,13,bourbon kid +31068,11,43246,13,bpepermans +31068,11,43246,13,breiser +31068,11,43246,13,brianbennett15 +31068,11,43246,13,brun13 +31068,11,43246,13,brycedietrich +31068,11,43246,13,brysal +31068,11,43246,13,bubson +31068,11,43246,13,buergerberatung +31068,11,43246,13,captainraffi +31068,11,43246,13,carlosmlisboa +31068,11,43246,13,carsten_de_1981 +31068,11,43246,13,cassetteboy +31068,11,43246,13,catbock +31068,11,43246,13,cely81 +31068,11,43246,13,cepcion +31068,11,43246,13,chandilier +31068,11,43246,13,chaosqueen69 +31068,11,43246,13,chappyenright +31068,11,43246,13,chocoladevla +31068,11,43246,13,chrisdevine +31068,11,43246,13,chrishathaway +31068,11,43246,13,cklenetsky +31068,11,43246,13,ckvt +31068,11,43246,13,cocktus +31068,11,43246,13,collapsing wave +31068,11,43246,13,collywobbles +31068,11,43246,13,conratchford +31068,11,43246,13,corps_of_oa +31068,11,43246,13,crazygardener +31068,11,43246,13,crazzie +31068,11,43246,13,daewezzy +31068,11,43246,13,danleesmith +31068,11,43246,13,danny_markle +31068,11,43246,13,dardenn +31068,11,43246,13,darrsolo +31068,11,43246,13,darthopper +31068,11,43246,13,datacat +31068,11,43246,13,dbasalo +31068,11,43246,13,deacfreak07 +31068,11,43246,13,demonfire333x2 +31068,11,43246,13,demontear +31068,11,43246,13,devolutionxx +31068,11,43246,13,diaboliclwombat +31068,11,43246,13,dirkrabia +31068,11,43246,13,disrupt19 +31068,11,43246,13,ditzyscrap +31068,11,43246,13,djinsd +31068,11,43246,13,djkapow +31068,11,43246,13,djkylesmith +31068,11,43246,13,dobrydemonek +31068,11,43246,13,donscovillo +31068,11,43246,13,doom_of_the_people +31068,11,43246,13,doruksandanyal +31068,11,43246,13,dragonheart 81 +31068,11,43246,13,drjack32 +31068,11,43246,13,dymi +31068,11,43246,13,ecthelionh +31068,11,43246,13,ehtricolor +31068,11,43246,13,fabriscc88 +31068,11,43246,13,fagvalo +31068,11,43246,13,fairyfelicita +31068,11,43246,13,fash +31068,11,43246,13,fbarros +31068,11,43246,13,fedorchuknv2 +31068,11,43246,13,fermantor +31068,11,43246,13,ferra78 +31068,11,43246,13,fiddling +31068,11,43246,13,fiemske +31068,11,43246,13,filipelm +31068,11,43246,13,flashsma +31068,11,43246,13,footysurfrat +31068,11,43246,13,forstmaschin +31068,11,43246,13,frankrtm +31068,11,43246,13,frootsnax +31068,11,43246,13,frostelf03 +31068,11,43246,13,funfairist +31068,11,43246,13,gabycr +31068,11,43246,13,ganbare61 +31068,11,43246,13,gatti +31068,11,43246,13,gcgaldi +31068,11,43246,13,gdevse +31068,11,43246,13,geek4life +31068,11,43246,13,gentlegiant303 +31068,11,43246,13,gijoe61703 +31068,11,43246,13,gilintx +31068,11,43246,13,ginaspel +31068,11,43246,13,globetrotting +31068,11,43246,13,goedecke_michels +31068,11,43246,13,gordom +31068,11,43246,13,gpereira +31068,11,43246,13,grawrold +31068,11,43246,13,gschmidl +31068,11,43246,13,gunnarm +31068,11,43246,13,haroldcub +31068,11,43246,13,hectortheturtle +31068,11,43246,13,hgrterror0 +31068,11,43246,13,hitman4760 +31068,11,43246,13,hypnos +31068,11,43246,13,icheyne +31068,11,43246,13,illmo +31068,11,43246,13,ironinghun +31068,11,43246,13,irsaan +31068,11,43246,13,issity +31068,11,43246,13,j3rm +31068,11,43246,13,jadensinclair +31068,11,43246,13,jagger66 +31068,11,43246,13,jaythetwinmaker +31068,11,43246,13,jestergeek +31068,11,43246,13,jimfox +31068,11,43246,13,jjwonderboy +31068,11,43246,13,joecool172290 +31068,11,43246,13,joelddhans +31068,11,43246,13,jojoy5 +31068,11,43246,13,jordan_sxe +31068,11,43246,13,jotaleiva +31068,11,43246,13,jpcarrolljr +31068,11,43246,13,jrwhitbourn +31068,11,43246,13,jsd202 +31068,11,43246,13,jumbojohn69 +31068,11,43246,13,junta73 +31068,11,43246,13,k03pp3n +31068,11,43246,13,kalimatias +31068,11,43246,13,kapel +31068,11,43246,13,karlthepug +31068,11,43246,13,katanasword13 +31068,11,43246,13,katetelly +31068,11,43246,13,kelann08 +31068,11,43246,13,kendallgrubbs +31068,11,43246,13,kenny00 +31068,11,43246,13,kezia +31068,11,43246,13,killclix +31068,11,43246,13,kim thevelein +31068,11,43246,13,kingmob1138 +31068,11,43246,13,kingsoby1 +31068,11,43246,13,kingtutt +31068,11,43246,13,knutage +31068,11,43246,13,koreanmeeple928 +31068,11,43246,13,krentler28 +31068,11,43246,13,krisser +31068,11,43246,13,labyala29 +31068,11,43246,13,lachazzz +31068,11,43246,13,lafey +31068,11,43246,13,lanternatomika +31068,11,43246,13,laurentd13 +31068,11,43246,13,leles +31068,11,43246,13,leo5cord +31068,11,43246,13,levihagyjalmar +31068,11,43246,13,limon ludico +31068,11,43246,13,lordrahl3333 +31068,11,43246,13,lronhubbard +31068,11,43246,13,luismw +31068,11,43246,13,lyoko37 +31068,11,43246,13,madmonkeyhb +31068,11,43246,13,magicofdodo +31068,11,43246,13,malk1983 +31068,11,43246,13,masdero +31068,11,43246,13,master jack +31068,11,43246,13,matax87 +31068,11,43246,13,matera +31068,11,43246,13,mathmatronaru +31068,11,43246,13,mdrog2 +31068,11,43246,13,meepledfw +31068,11,43246,13,melvina +31068,11,43246,13,merlinknights +31068,11,43246,13,midswing +31068,11,43246,13,moestuintje +31068,11,43246,13,monsterparty +31068,11,43246,13,mordamon +31068,11,43246,13,mrpnut98 +31068,11,43246,13,mrslade +31068,11,43246,13,muka +31068,11,43246,13,mulwell +31068,11,43246,13,mzrousar +31068,11,43246,13,naelsh +31068,11,43246,13,naggaroth_m +31068,11,43246,13,netdreamer +31068,11,43246,13,ngydvd +31068,11,43246,13,nickjm +31068,11,43246,13,nickpheas +31068,11,43246,13,nienie +31068,11,43246,13,nodnarber1 +31068,11,43246,13,notyourdoctor +31068,11,43246,13,nwd1028 +31068,11,43246,13,oavpi +31068,11,43246,13,ofmiceandmeeples +31068,11,43246,13,oghmagod +31068,11,43246,13,olafpyttlik +31068,11,43246,13,olblue +31068,11,43246,13,oneywan +31068,11,43246,13,orjandanielsen +31068,11,43246,13,outrage +31068,11,43246,13,oxothuk +31068,11,43246,13,pabbefa +31068,11,43246,13,palmistan +31068,11,43246,13,perpetualfx +31068,11,43246,13,phobos8 +31068,11,43246,13,phoffmann +31068,11,43246,13,pietruco +31068,11,43246,13,pittplayer +31068,11,43246,13,polvora_bass +31068,11,43246,13,pork1979 +31068,11,43246,13,porklasagna +31068,11,43246,13,potajacion +31068,11,43246,13,psychosockmonkee +31068,11,43246,13,pulsification +31068,11,43246,13,quarks +31068,11,43246,13,radruss +31068,11,43246,13,ragingbull +31068,11,43246,13,rauber +31068,11,43246,13,recycledpast +31068,11,43246,13,rexartur +31068,11,43246,13,rexas +31068,11,43246,13,rodigeun +31068,11,43246,13,rodrigua +31068,11,43246,13,roger67 +31068,11,43246,13,ronstock +31068,11,43246,13,rsmidnight +31068,11,43246,13,rustingknight +31068,11,43246,13,ryanwiz13 +31068,11,43246,13,rybka007 +31068,11,43246,13,ryjaz +31068,11,43246,13,ryo_akiyama +31068,11,43246,13,rypeleffect +31068,11,43246,13,saccia +31068,11,43246,13,samhastings +31068,11,43246,13,saneangel +31068,11,43246,13,sanketb +31068,11,43246,13,sauron6378 +31068,11,43246,13,seaapple +31068,11,43246,13,sein +31068,11,43246,13,seqen +31068,11,43246,13,sereal +31068,11,43246,13,shazzump +31068,11,43246,13,sherpaman78 +31068,11,43246,13,sheva +31068,11,43246,13,shodo92 +31068,11,43246,13,shumyum +31068,11,43246,13,sidjames +31068,11,43246,13,sillyoox +31068,11,43246,13,simmyp +31068,11,43246,13,singulusoculus +31068,11,43246,13,sipio +31068,11,43246,13,sku11man +31068,11,43246,13,slemay88 +31068,11,43246,13,smartturtle +31068,11,43246,13,smith6026 +31068,11,43246,13,spacemunky70 +31068,11,43246,13,spainer +31068,11,43246,13,spelfort +31068,11,43246,13,spudscarl +31068,11,43246,13,squaty +31068,11,43246,13,sr kiwi +31068,11,43246,13,stephcharx +31068,11,43246,13,stevemeddaugh +31068,11,43246,13,stevew2607 +31068,11,43246,13,steviec530 +31068,11,43246,13,sukhi729 +31068,11,43246,13,sv1dmc12 +31068,11,43246,13,swampers +31068,11,43246,13,swebel +31068,11,43246,13,sweet justin +31068,11,43246,13,tantil +31068,11,43246,13,tarari25 +31068,11,43246,13,taufbold +31068,11,43246,13,tectectectec +31068,11,43246,13,tejot +31068,11,43246,13,tenchy +31068,11,43246,13,the_game_pucv +31068,11,43246,13,thecodezombie +31068,11,43246,13,thegameninja +31068,11,43246,13,thewoj +31068,11,43246,13,theyankowski +31068,11,43246,13,theycallmesquare +31068,11,43246,13,thodde +31068,11,43246,13,tikvigor +31068,11,43246,13,timaa +31068,11,43246,13,tjsomething +31068,11,43246,13,tliamatt +31068,11,43246,13,tod_13 +31068,11,43246,13,toekneegee +31068,11,43246,13,toerag77 +31068,11,43246,13,toombs79 +31068,11,43246,13,tophermurr +31068,11,43246,13,toredenmark +31068,11,43246,13,tower +31068,11,43246,13,tripleblacktri +31068,11,43246,13,tsune08 +31068,11,43246,13,ucf612 +31068,11,43246,13,ullapool +31068,11,43246,13,unfrev +31068,11,43246,13,unicorniest +31068,11,43246,13,valdaface +31068,11,43246,13,vanepps3 +31068,11,43246,13,varovaro +31068,11,43246,13,vger7 +31068,11,43246,13,vikutori +31068,11,43246,13,virgy +31068,11,43246,13,vm2531 +31068,11,43246,13,vojkob18 +31068,11,43246,13,wadefox +31068,11,43246,13,waterkantroyal +31068,11,43246,13,wilinili +31068,11,43246,13,windrunnertx +31068,11,43246,13,winterplum +31068,11,43246,13,wrongdoorbuddy +31068,11,43246,13,xdya +31068,11,43246,13,xico +31068,11,43246,13,xipri06 +31068,11,43246,13,yodasmeee +31068,11,43246,13,yoji +31068,11,43246,13,zabby +31068,11,43246,13,zambu +31068,11,43246,13,zetsuen +31068,11,43246,13,zoob39 +31068,11,43246,13,zuul42 +31068,11,47029,12,2bpencil +31068,11,47029,12,abelincoln +31068,11,47029,12,adamthesonofgod +31068,11,47029,12,agent_pendergast +31068,11,47029,12,ahalejcio +31068,11,47029,12,arnongold +31068,11,47029,12,awesomeoosh +31068,11,47029,12,biebeldebom +31068,11,47029,12,brekaka02 +31068,11,47029,12,bronzite +31068,11,47029,12,c00lman +31068,11,47029,12,chonchuuk +31068,11,47029,12,corneliusl +31068,11,47029,12,courtsupport +31068,11,47029,12,czyisby +31068,11,47029,12,ddarrell6 +31068,11,47029,12,dflonetree +31068,11,47029,12,didibern +31068,11,47029,12,dieselpower +31068,11,47029,12,dieverrueckte +31068,11,47029,12,dimand7 +31068,11,47029,12,dvation +31068,11,47029,12,egebo +31068,11,47029,12,endre +31068,11,47029,12,faustinoh +31068,11,47029,12,fingus +31068,11,47029,12,flapj4cks +31068,11,47029,12,jmenas +31068,11,47029,12,jmoulina +31068,11,47029,12,joe9 +31068,11,47029,12,jorgerios +31068,11,47029,12,joseph2302 +31068,11,47029,12,kahunasan +31068,11,47029,12,kazozza +31068,11,47029,12,kesaru +31068,11,47029,12,klaatuhorror +31068,11,47029,12,kreuzberg +31068,11,47029,12,lcg2043 +31068,11,47029,12,littlebanshee +31068,11,47029,12,lloegr +31068,11,47029,12,lordwarf +31068,11,47029,12,maftiosi +31068,11,47029,12,marbor83 +31068,11,47029,12,max_cleverer +31068,11,47029,12,mhaessler +31068,11,47029,12,mhmoser03 +31068,11,47029,12,mikemar +31068,11,47029,12,nymus86 +31068,11,47029,12,pincushionqueen +31068,11,47029,12,poundofbull +31068,11,47029,12,prgary +31068,11,47029,12,ras5899 +31068,11,47029,12,rathstar +31068,11,47029,12,retteketet +31068,11,47029,12,sbreug +31068,11,47029,12,shjivak +31068,11,47029,12,shoitaan +31068,11,47029,12,singhalex +31068,11,47029,12,solisoli +31068,11,47029,12,sprayoncrayon +31068,11,47029,12,srgzer +31068,11,47029,12,strangejensen +31068,11,47029,12,tamalin +31068,11,47029,12,tinchen87 +31068,11,47029,12,ubermonkey +31068,11,47029,12,valentines +31068,11,47029,12,viddwizard +31068,11,47029,12,zedizdead +31068,11,51125,11,bomack +31068,11,51125,11,middick +31068,11,51125,11,nyquole +31068,11,51125,11,smurdy +35778,10,190,91,kjpoalses +35778,10,289,82,tommyredskin +35778,10,361,77,smirnoffpete +35778,10,522,71,mikegnr +35778,10,522,71,ofanim +35778,10,696,66,vespergo +35778,10,2053,50,emuldoon +35778,10,2204,49,bardiagamesgeekly +35778,10,2204,49,fabriarge +35778,10,2204,49,mu0n +35778,10,2351,48,manassas9570 +35778,10,2351,48,slavakonashkov +35778,10,2555,47,4x scalper +35778,10,2555,47,josiejams +35778,10,3216,44,docbach +35778,10,3514,43,jester1993 +35778,10,3815,42,svobodan +35778,10,4092,41,alexb2020 +35778,10,4092,41,inermis +35778,10,4426,40,ryanthibault +35778,10,4782,39,alaiac +35778,10,4782,39,daeddrax +35778,10,5150,38,alejandro6969 +35778,10,5150,38,bobcatscry +35778,10,5150,38,sluggonics +35778,10,5624,37,dorabobo +35778,10,5624,37,fiveplus5is55 +35778,10,5624,37,net384 +35778,10,6063,36,akumavern +35778,10,6063,36,alcarbohne +35778,10,6063,36,fanis24 +35778,10,6063,36,juanabis +35778,10,6063,36,junkfoot +35778,10,6063,36,kelfecil +35778,10,6063,36,kimtjik +35778,10,6063,36,mrli +35778,10,6063,36,ronzacapa +35778,10,6063,36,runaway +35778,10,6063,36,skiesbleed +35778,10,6063,36,solone +35778,10,6063,36,surrak +35778,10,6573,35,dwizard +35778,10,6573,35,jasta6 +35778,10,6573,35,marshal13th +35778,10,6573,35,thepantsman +35778,10,7100,34,imthewhiterabbit +35778,10,7100,34,tzj21 +35778,10,7679,33,bigredone82 +35778,10,7679,33,boomflare +35778,10,7679,33,dello77 +35778,10,7679,33,dwzn +35778,10,7679,33,fungamebob +35778,10,7679,33,gregkroleski +35778,10,7679,33,harmosly +35778,10,7679,33,mipiti +35778,10,7679,33,tobinlopes +35778,10,7679,33,wyrmancer +35778,10,8351,32,earlblue +35778,10,8351,32,mir4ge +35778,10,8351,32,zorcon +35778,10,9086,31,cj1582 +35778,10,9086,31,djgutierrez77 +35778,10,9086,31,earlofwessex +35778,10,9086,31,mummykitty +35778,10,9086,31,murphyramusovic +35778,10,9086,31,stoicakovic +35778,10,9910,30,brayy +35778,10,9910,30,cpf86 +35778,10,9910,30,gcookie +35778,10,9910,30,pawelk +35778,10,9910,30,slipkpie +35778,10,9910,30,toddius maximus +35778,10,9910,30,uncleho +35778,10,10868,29,ashraamcpc +35778,10,10868,29,camblorete +35778,10,10868,29,farriem +35778,10,10868,29,handoverfist64 +35778,10,10868,29,jakemanus +35778,10,10868,29,majorisoor +35778,10,10868,29,mateui +35778,10,10868,29,mrachieve +35778,10,10868,29,prince arhain +35778,10,10868,29,rikker +35778,10,10868,29,soulreaverpl +35778,10,10868,29,spiff +35778,10,10868,29,thallian folmin +35778,10,10868,29,the bard +35778,10,10868,29,watoop +35778,10,11831,28,angelo +35778,10,11831,28,annikal +35778,10,11831,28,anoik +35778,10,11831,28,behindthehype +35778,10,11831,28,casadeisogniburritts +35778,10,11831,28,diis +35778,10,11831,28,dvdozzo +35778,10,11831,28,falquian77 +35778,10,11831,28,funguy +35778,10,11831,28,gorthyn +35778,10,11831,28,lisa laser +35778,10,11831,28,mainman99 +35778,10,11831,28,markusfriend +35778,10,11831,28,matadorpl +35778,10,11831,28,numberonewally +35778,10,11831,28,simondugard +35778,10,11831,28,skorpan +35778,10,11831,28,sunpai +35778,10,11831,28,svan +35778,10,11831,28,tentator +35778,10,12910,27,aki_ta +35778,10,12910,27,digren +35778,10,12910,27,emanueldiniz +35778,10,12910,27,excalipoor +35778,10,12910,27,feelin jolly +35778,10,12910,27,lpscharen +35778,10,12910,27,mckel +35778,10,12910,27,mckufin +35778,10,12910,27,mrjdwoody +35778,10,12910,27,nwstf +35778,10,12910,27,paulyg +35778,10,14030,26,blisscraft +35778,10,14030,26,bslange +35778,10,14030,26,chrisjoho +35778,10,14030,26,clenfle +35778,10,14030,26,dochott +35778,10,14030,26,flashman1998 +35778,10,14030,26,gamesou +35778,10,14030,26,hoodedhawk +35778,10,14030,26,manufaktugra +35778,10,14030,26,midgardserpent +35778,10,14030,26,monumentx +35778,10,14030,26,pax52 +35778,10,14030,26,rwauls +35778,10,14030,26,trond79 +35778,10,15326,25,artemisd6 +35778,10,15326,25,bazo +35778,10,15326,25,black raider +35778,10,15326,25,boreos +35778,10,15326,25,bullseyemf +35778,10,15326,25,cakeland +35778,10,15326,25,catycat +35778,10,15326,25,dangermark +35778,10,15326,25,dorktron2000 +35778,10,15326,25,emoney +35778,10,15326,25,eranel +35778,10,15326,25,ghostlawns +35778,10,15326,25,gobi +35778,10,15326,25,jigojitoku +35778,10,15326,25,kingfra +35778,10,15326,25,lizriz +35778,10,15326,25,lordpike +35778,10,15326,25,megasabin +35778,10,15326,25,mgouffon +35778,10,15326,25,michcio +35778,10,15326,25,mikerobinson33 +35778,10,15326,25,petalakis +35778,10,15326,25,roviseor +35778,10,15326,25,rudrahorn +35778,10,15326,25,t0mo +35778,10,15326,25,trevor goodchild +35778,10,15326,25,waciq +35778,10,15326,25,yoje1991 +35778,10,16710,24,aardball +35778,10,16710,24,accordion11 +35778,10,16710,24,alan saunders +35778,10,16710,24,castanza +35778,10,16710,24,crowarden +35778,10,16710,24,drax kramer +35778,10,16710,24,dudill +35778,10,16710,24,frisbee_bear +35778,10,16710,24,jclayface +35778,10,16710,24,kitsunenosaka +35778,10,16710,24,kylewyatt +35778,10,16710,24,lemouss +35778,10,16710,24,looleypalooley +35778,10,16710,24,ltkiffkroker +35778,10,16710,24,maizehare +35778,10,16710,24,mazzame +35778,10,16710,24,mersion +35778,10,16710,24,mrzombie +35778,10,16710,24,mvpfez89 +35778,10,16710,24,patricer +35778,10,16710,24,pinkmonkey +35778,10,16710,24,robbiedw +35778,10,16710,24,seagull206 +35778,10,16710,24,sodechy +35778,10,16710,24,tabletopgeek +35778,10,16710,24,tchazzar +35778,10,16710,24,undertaker022289 +35778,10,16710,24,vrieskist +35778,10,18170,23,ahmedhadzi +35778,10,18170,23,astroplayer +35778,10,18170,23,biophys +35778,10,18170,23,blakkhole +35778,10,18170,23,bonkers95 +35778,10,18170,23,brawl +35778,10,18170,23,bugzaroni +35778,10,18170,23,ciuniek +35778,10,18170,23,classicalmoser +35778,10,18170,23,coffeeandgames +35778,10,18170,23,ctnoll +35778,10,18170,23,dcmed +35778,10,18170,23,duazewar +35778,10,18170,23,emilxf +35778,10,18170,23,faefae +35778,10,18170,23,filippudak +35778,10,18170,23,foiegras23 +35778,10,18170,23,helgard +35778,10,18170,23,herodoc +35778,10,18170,23,hungrysaint17 +35778,10,18170,23,igycrctl +35778,10,18170,23,jjdb210 +35778,10,18170,23,josephfeller +35778,10,18170,23,kiak +35778,10,18170,23,kuznec_foma +35778,10,18170,23,masama +35778,10,18170,23,mattdonnelly11 +35778,10,18170,23,mattias79 +35778,10,18170,23,memlak +35778,10,18170,23,metalbag +35778,10,18170,23,nberdiales +35778,10,18170,23,nicholasnbarclay +35778,10,18170,23,patilas +35778,10,18170,23,qute +35778,10,18170,23,ronniesong0809 +35778,10,18170,23,scaurus +35778,10,18170,23,sethp +35778,10,18170,23,shadow91110 +35778,10,18170,23,spiralus +35778,10,18170,23,syhra29 +35778,10,18170,23,tatomiranda +35778,10,18170,23,vanharler +35778,10,18170,23,vlight +35778,10,18170,23,wes1212 +35778,10,18170,23,zilfalon +35778,10,19906,22,acon17 +35778,10,19906,22,aprilthev +35778,10,19906,22,arctanas +35778,10,19906,22,bk_otj +35778,10,19906,22,boardgamergeek +35778,10,19906,22,bxrrr +35778,10,19906,22,caelias +35778,10,19906,22,carlosfabionunez +35778,10,19906,22,chillasaur +35778,10,19906,22,devon harmon +35778,10,19906,22,docikowski +35778,10,19906,22,dorrdon +35778,10,19906,22,emptycupoz +35778,10,19906,22,fetseroony +35778,10,19906,22,fxchou +35778,10,19906,22,ginkgo01 +35778,10,19906,22,graypockets +35778,10,19906,22,hgborea +35778,10,19906,22,imagineer +35778,10,19906,22,kickflic +35778,10,19906,22,konekoy +35778,10,19906,22,ksoltys +35778,10,19906,22,kuchenmeister +35778,10,19906,22,lawmen +35778,10,19906,22,lockscash +35778,10,19906,22,mav82 +35778,10,19906,22,milf and cookies +35778,10,19906,22,murkyfs +35778,10,19906,22,neoskywalker +35778,10,19906,22,nicktlk +35778,10,19906,22,noizette +35778,10,19906,22,oursronchon +35778,10,19906,22,pacoholliday +35778,10,19906,22,panagaeus +35778,10,19906,22,redgarz +35778,10,19906,22,sabro4 +35778,10,19906,22,salmunna +35778,10,19906,22,sarus85 +35778,10,19906,22,sdsb110 +35778,10,19906,22,seires +35778,10,19906,22,skuijs +35778,10,19906,22,solocutor +35778,10,19906,22,srpomelo +35778,10,19906,22,sue unlimited +35778,10,19906,22,teapot37 +35778,10,19906,22,thatdudeguy +35778,10,19906,22,thebestlai +35778,10,19906,22,theymademedothat +35778,10,19906,22,tizbass +35778,10,19906,22,troll_player +35778,10,19906,22,voy_tak +35778,10,19906,22,zoyfar +35778,10,21713,21,alainn +35778,10,21713,21,alan g +35778,10,21713,21,amberdark +35778,10,21713,21,amerlik +35778,10,21713,21,atomheartmother +35778,10,21713,21,badshape +35778,10,21713,21,bat395 +35778,10,21713,21,beau831 +35778,10,21713,21,bedivere +35778,10,21713,21,benhale +35778,10,21713,21,benihill23 +35778,10,21713,21,bjeebus +35778,10,21713,21,boaer85 +35778,10,21713,21,bostongreekgeek +35778,10,21713,21,carbolic +35778,10,21713,21,cheeseisdisgusting +35778,10,21713,21,chocopie9 +35778,10,21713,21,chuckcarroll +35778,10,21713,21,chusbert +35778,10,21713,21,colin777 +35778,10,21713,21,coolhanded88 +35778,10,21713,21,cooperben71 +35778,10,21713,21,cva3 +35778,10,21713,21,cybergarf +35778,10,21713,21,dbonamer +35778,10,21713,21,derpipo +35778,10,21713,21,desole +35778,10,21713,21,dukah +35778,10,21713,21,elektravrago +35778,10,21713,21,elshire +35778,10,21713,21,eziolf +35778,10,21713,21,fabian ka +35778,10,21713,21,fodder841 +35778,10,21713,21,frejay +35778,10,21713,21,garrett000 +35778,10,21713,21,gloryutd +35778,10,21713,21,godfrey33 +35778,10,21713,21,han67solo +35778,10,21713,21,hedia +35778,10,21713,21,heisenberg +35778,10,21713,21,jadderknight +35778,10,21713,21,jaiaxe +35778,10,21713,21,jheeter14 +35778,10,21713,21,jinksee +35778,10,21713,21,johane +35778,10,21713,21,karadevaney +35778,10,21713,21,kfraser +35778,10,21713,21,kieubass +35778,10,21713,21,koftan +35778,10,21713,21,leezus +35778,10,21713,21,mathiasc +35778,10,21713,21,matrix_by +35778,10,21713,21,mattcalaho +35778,10,21713,21,mauimallard13 +35778,10,21713,21,maulei +35778,10,21713,21,mesh242 +35778,10,21713,21,midgetjacks +35778,10,21713,21,mstkn4strangers +35778,10,21713,21,mustafanasr +35778,10,21713,21,najpersklaka +35778,10,21713,21,ngwalme +35778,10,21713,21,nkouk7 +35778,10,21713,21,raulhorcio19 +35778,10,21713,21,redgeophoenix +35778,10,21713,21,rosen2rc +35778,10,21713,21,ruarigh +35778,10,21713,21,rufuswalrus +35778,10,21713,21,ryan2j +35778,10,21713,21,sircoolio +35778,10,21713,21,skotothalamos +35778,10,21713,21,slapash +35778,10,21713,21,sniperkrizz +35778,10,21713,21,snowdog_ix +35778,10,21713,21,stiansb +35778,10,21713,21,surgy77 +35778,10,21713,21,theubiquitous +35778,10,21713,21,theystolekyloren +35778,10,21713,21,tsugo +35778,10,21713,21,vstene +35778,10,21713,21,woosh_ito +35778,10,21713,21,yogiroth +35778,10,21713,21,zandre10 +35778,10,21713,21,zoobert74 +35778,10,21713,21,zorrogp +35778,10,23640,20,acab1537 +35778,10,23640,20,actorios +35778,10,23640,20,aidden +35778,10,23640,20,akarasimos +35778,10,23640,20,alinagoja76 +35778,10,23640,20,altauri +35778,10,23640,20,angelbann +35778,10,23640,20,barbegeek +35778,10,23640,20,beghilos +35778,10,23640,20,bertb711 +35778,10,23640,20,bogalaci +35778,10,23640,20,boxfrenzy +35778,10,23640,20,boybogart +35778,10,23640,20,bradymccann +35778,10,23640,20,brettspielgeschaeft +35778,10,23640,20,bsheer1 +35778,10,23640,20,butters87 +35778,10,23640,20,d_mcdougall +35778,10,23640,20,danielud +35778,10,23640,20,dasvotronic5000 +35778,10,23640,20,definitelybenny +35778,10,23640,20,derentis +35778,10,23640,20,des06 +35778,10,23640,20,dethpoet +35778,10,23640,20,dinky_gnatbane +35778,10,23640,20,dojokahn +35778,10,23640,20,drest85 +35778,10,23640,20,eguell +35778,10,23640,20,ellyemem +35778,10,23640,20,fmsnook +35778,10,23640,20,fountmw +35778,10,23640,20,franky145 +35778,10,23640,20,genghis khandybar +35778,10,23640,20,griffted +35778,10,23640,20,hargorin +35778,10,23640,20,harrypotter567 +35778,10,23640,20,jacobugath +35778,10,23640,20,jannick soerensen +35778,10,23640,20,jcustar07 +35778,10,23640,20,jjtony +35778,10,23640,20,joerg49 +35778,10,23640,20,jomps +35778,10,23640,20,karierteshorts +35778,10,23640,20,katsuro76e +35778,10,23640,20,kenhonecker +35778,10,23640,20,kf4vkp +35778,10,23640,20,kjuba +35778,10,23640,20,klinsy73 +35778,10,23640,20,korbi07 +35778,10,23640,20,kperryua +35778,10,23640,20,kruchek +35778,10,23640,20,kuncik +35778,10,23640,20,laytforlife +35778,10,23640,20,lbn7349 +35778,10,23640,20,leadfoot5 +35778,10,23640,20,leeandpamela3 +35778,10,23640,20,leif erikson +35778,10,23640,20,lempriere +35778,10,23640,20,leodaveenchy +35778,10,23640,20,leoniek +35778,10,23640,20,lycanthropos +35778,10,23640,20,maciuspiotrus +35778,10,23640,20,magicgeek +35778,10,23640,20,magicking +35778,10,23640,20,maitopoika +35778,10,23640,20,marcolino79 +35778,10,23640,20,mickman +35778,10,23640,20,molotov fiesta +35778,10,23640,20,mopped +35778,10,23640,20,morande +35778,10,23640,20,mrdrock +35778,10,23640,20,msdebruin +35778,10,23640,20,mwaters5 +35778,10,23640,20,neewolah +35778,10,23640,20,newswami +35778,10,23640,20,olaria +35778,10,23640,20,olli7 +35778,10,23640,20,pandanute +35778,10,23640,20,patrickstockton +35778,10,23640,20,pelobola +35778,10,23640,20,pr34ch3r +35778,10,23640,20,ratto01 +35778,10,23640,20,rejohnson0729 +35778,10,23640,20,rikastigador +35778,10,23640,20,rsiltre +35778,10,23640,20,rudd1ger +35778,10,23640,20,schil +35778,10,23640,20,schrike +35778,10,23640,20,sigmunds +35778,10,23640,20,silentbob85 +35778,10,23640,20,silverfear +35778,10,23640,20,simguy +35778,10,23640,20,snakeplissken +35778,10,23640,20,snooches +35778,10,23640,20,stevelectric +35778,10,23640,20,sydo +35778,10,23640,20,sylvestris +35778,10,23640,20,takumi +35778,10,23640,20,tesdeor +35778,10,23640,20,theshowends +35778,10,23640,20,tomasy +35778,10,23640,20,tontonlolo73 +35778,10,23640,20,tonytastey1 +35778,10,23640,20,topdecker577 +35778,10,23640,20,triske +35778,10,23640,20,yonitdm +35778,10,23640,20,ytsemike +35778,10,23640,20,zimtfuerst +35778,10,25880,19,ace2021 +35778,10,25880,19,adrice97 +35778,10,25880,19,aenema89 +35778,10,25880,19,aerogoose +35778,10,25880,19,afantozzi +35778,10,25880,19,akaroads +35778,10,25880,19,akihiro +35778,10,25880,19,alanako26 +35778,10,25880,19,alexgarcigregor +35778,10,25880,19,alpo181 +35778,10,25880,19,ambennett86 +35778,10,25880,19,andrerusso +35778,10,25880,19,asalvail +35778,10,25880,19,azadson +35778,10,25880,19,beegneeek +35778,10,25880,19,biarien +35778,10,25880,19,bibu +35778,10,25880,19,bien +35778,10,25880,19,blackfrog86 +35778,10,25880,19,blupickle +35778,10,25880,19,boulderdash70 +35778,10,25880,19,bpmitche +35778,10,25880,19,brigham +35778,10,25880,19,bscapa +35778,10,25880,19,caleskws +35778,10,25880,19,camsoh +35778,10,25880,19,cantuse +35778,10,25880,19,chiehko +35778,10,25880,19,chrisbinsea +35778,10,25880,19,cimianop +35778,10,25880,19,closeke +35778,10,25880,19,colorful_mountain +35778,10,25880,19,cooperflood +35778,10,25880,19,coryandcarrie +35778,10,25880,19,coryj +35778,10,25880,19,csfod +35778,10,25880,19,csgtmyork +35778,10,25880,19,cymi +35778,10,25880,19,da_boss +35778,10,25880,19,darksavage111 +35778,10,25880,19,deathhammer6 +35778,10,25880,19,dermichel +35778,10,25880,19,detritus +35778,10,25880,19,dicedout +35778,10,25880,19,dirty harry +35778,10,25880,19,dmr06001 +35778,10,25880,19,donkathh +35778,10,25880,19,dr80 +35778,10,25880,19,dragonineden +35778,10,25880,19,drscotto +35778,10,25880,19,dungdna2000 +35778,10,25880,19,ektorakos +35778,10,25880,19,elegant_brawler +35778,10,25880,19,elenturil +35778,10,25880,19,enni +35778,10,25880,19,enormare +35778,10,25880,19,fajardo83 +35778,10,25880,19,flat_tangelo +35778,10,25880,19,garrett361 +35778,10,25880,19,gummidemon +35778,10,25880,19,hackxel +35778,10,25880,19,hagakure1964 +35778,10,25880,19,herr von ragend +35778,10,25880,19,highwaterflow +35778,10,25880,19,hobograndpa +35778,10,25880,19,hoppyishere +35778,10,25880,19,iamjfd +35778,10,25880,19,ianc1002 +35778,10,25880,19,ibtportugal +35778,10,25880,19,iplayfornickbe +35778,10,25880,19,jacob193 +35778,10,25880,19,jamesbaud +35778,10,25880,19,jappri +35778,10,25880,19,jasonfalcon +35778,10,25880,19,jaythegreenling +35778,10,25880,19,jazzik +35778,10,25880,19,joe1234 +35778,10,25880,19,joeymcjoeysalot +35778,10,25880,19,john greenwood +35778,10,25880,19,jonny morbid +35778,10,25880,19,kamus73 +35778,10,25880,19,keithlommel +35778,10,25880,19,kenmorefield +35778,10,25880,19,kkwanz +35778,10,25880,19,klsoren +35778,10,25880,19,koolkat67 +35778,10,25880,19,kornelius +35778,10,25880,19,kp_prime +35778,10,25880,19,krasnoludek +35778,10,25880,19,krispy +35778,10,25880,19,kthuen +35778,10,25880,19,kvargas +35778,10,25880,19,lasbelin +35778,10,25880,19,leander_ +35778,10,25880,19,lhcostap +35778,10,25880,19,locke23 +35778,10,25880,19,luckydwarf +35778,10,25880,19,madantichris +35778,10,25880,19,maligno +35778,10,25880,19,manwith_manycheeses +35778,10,25880,19,mariogolbee +35778,10,25880,19,matthewcc74 +35778,10,25880,19,matthias maccabeus +35778,10,25880,19,mehmetelber +35778,10,25880,19,memorable_meeple +35778,10,25880,19,metapod +35778,10,25880,19,mishta +35778,10,25880,19,modernarcade +35778,10,25880,19,mr_ron78 +35778,10,25880,19,mrsmith +35778,10,25880,19,mrsvedo +35778,10,25880,19,musicisthelove +35778,10,25880,19,myalya +35778,10,25880,19,naeandpete +35778,10,25880,19,nicogubler +35778,10,25880,19,nocadlee +35778,10,25880,19,ola j +35778,10,25880,19,oldfamiliarscene +35778,10,25880,19,ophidion +35778,10,25880,19,ordinaryevidence +35778,10,25880,19,oskarkrantz +35778,10,25880,19,paitlan +35778,10,25880,19,pawel_mendel +35778,10,25880,19,pelihun +35778,10,25880,19,petersm1978 +35778,10,25880,19,petito +35778,10,25880,19,phantom25 +35778,10,25880,19,picardias +35778,10,25880,19,picker89 +35778,10,25880,19,plarcy mcstufflewitz +35778,10,25880,19,polyhedralist +35778,10,25880,19,puzzler16 +35778,10,25880,19,quasarjones +35778,10,25880,19,quasarqueso +35778,10,25880,19,quinn +35778,10,25880,19,railhead mike +35778,10,25880,19,raininbermuda +35778,10,25880,19,rampag394 +35778,10,25880,19,rasmushoygaard +35778,10,25880,19,rdbruski +35778,10,25880,19,ristan +35778,10,25880,19,rogerpaixao +35778,10,25880,19,roja +35778,10,25880,19,sandan1 +35778,10,25880,19,scae +35778,10,25880,19,scifilaura +35778,10,25880,19,scinque +35778,10,25880,19,shebhnt +35778,10,25880,19,simem +35778,10,25880,19,simonbolivar +35778,10,25880,19,skars +35778,10,25880,19,skugo89 +35778,10,25880,19,spaced1999 +35778,10,25880,19,specter02147 +35778,10,25880,19,stoebner +35778,10,25880,19,stpitner +35778,10,25880,19,strangemike +35778,10,25880,19,swennie +35778,10,25880,19,tagore84 +35778,10,25880,19,taiji2 +35778,10,25880,19,takuanuge +35778,10,25880,19,tataencu +35778,10,25880,19,taveren81 +35778,10,25880,19,the deliberate +35778,10,25880,19,thejollysnowman +35778,10,25880,19,thetak +35778,10,25880,19,thsp +35778,10,25880,19,toaster83 +35778,10,25880,19,topomaximo +35778,10,25880,19,torlen +35778,10,25880,19,trenzor +35778,10,25880,19,twothreelowkick +35778,10,25880,19,tyrionson +35778,10,25880,19,uberk +35778,10,25880,19,venusiancat +35778,10,25880,19,vicpool +35778,10,25880,19,vivi_0_0 +35778,10,25880,19,wrathofminis +35778,10,25880,19,xarien +35778,10,25880,19,xixi_233 +35778,10,25880,19,yjacket55 +35778,10,25880,19,zephyril +35778,10,25880,19,zippyshakez +35778,10,25880,19,zsoo +35778,10,28174,18,0osquallo0 +35778,10,28174,18,454501605 +35778,10,28174,18,aburdiss +35778,10,28174,18,acrassic +35778,10,28174,18,ae2010 +35778,10,28174,18,afrowarlord +35778,10,28174,18,aiolosgames +35778,10,28174,18,akquaternion +35778,10,28174,18,alexcode +35778,10,28174,18,always the dog +35778,10,28174,18,anderjas +35778,10,28174,18,andreloha +35778,10,28174,18,apex72 +35778,10,28174,18,arjans +35778,10,28174,18,badasscaveman +35778,10,28174,18,ban_ogd +35778,10,28174,18,barklund +35778,10,28174,18,basen +35778,10,28174,18,bast8 +35778,10,28174,18,bchia +35778,10,28174,18,beffe +35778,10,28174,18,bgg_koala +35778,10,28174,18,biohazard +35778,10,28174,18,blackrainbow +35778,10,28174,18,blakken +35778,10,28174,18,blarg25 +35778,10,28174,18,borderchappy +35778,10,28174,18,borishko +35778,10,28174,18,bossko +35778,10,28174,18,brianschoff +35778,10,28174,18,buddhasack +35778,10,28174,18,bysta +35778,10,28174,18,cap909 +35778,10,28174,18,captainmilly +35778,10,28174,18,captdaf +35778,10,28174,18,carloso +35778,10,28174,18,cbdarden +35778,10,28174,18,commonraven +35778,10,28174,18,counterrefinisher +35778,10,28174,18,cradleofchaos +35778,10,28174,18,cup of coffee +35778,10,28174,18,dablackgobbo +35778,10,28174,18,damo164 +35778,10,28174,18,dandc0711 +35778,10,28174,18,danielctin14 +35778,10,28174,18,dathon12 +35778,10,28174,18,davidesacra +35778,10,28174,18,davidsci +35778,10,28174,18,dboxx +35778,10,28174,18,ddembrovski +35778,10,28174,18,ddlaw11 +35778,10,28174,18,ddrifmeyer84 +35778,10,28174,18,deathhammer66 +35778,10,28174,18,decer7 +35778,10,28174,18,der_wolf_ +35778,10,28174,18,devo78 +35778,10,28174,18,dfu4ever +35778,10,28174,18,dmckellip +35778,10,28174,18,dnygard +35778,10,28174,18,dogthreezero +35778,10,28174,18,dystopian_wonder +35778,10,28174,18,echooperative +35778,10,28174,18,eirikr +35778,10,28174,18,eishwin grimnar +35778,10,28174,18,ejectorman +35778,10,28174,18,eladoransureshot +35778,10,28174,18,elanus +35778,10,28174,18,elmoandzoey +35778,10,28174,18,elsegolas +35778,10,28174,18,emkang +35778,10,28174,18,enanotrilero +35778,10,28174,18,ender7576 +35778,10,28174,18,ethien666 +35778,10,28174,18,evilariena +35778,10,28174,18,exialius +35778,10,28174,18,family +35778,10,28174,18,fantazindy_ +35778,10,28174,18,felipepelayo +35778,10,28174,18,ferdman1969 +35778,10,28174,18,filiposss +35778,10,28174,18,fistofkross +35778,10,28174,18,fxku +35778,10,28174,18,galaxyxy +35778,10,28174,18,galdrianna +35778,10,28174,18,geobirder +35778,10,28174,18,gessleta +35778,10,28174,18,gigdirio +35778,10,28174,18,gilligan54 +35778,10,28174,18,glencannon +35778,10,28174,18,gmaestro43 +35778,10,28174,18,golyadkin +35778,10,28174,18,gomp411 +35778,10,28174,18,gridiron_16 +35778,10,28174,18,grueni +35778,10,28174,18,gryphon tracks +35778,10,28174,18,grzegorz973 +35778,10,28174,18,gunstoomuch +35778,10,28174,18,hachi_18xx +35778,10,28174,18,halohogg +35778,10,28174,18,harrypouncer +35778,10,28174,18,headlessdevil +35778,10,28174,18,hernameiseva +35778,10,28174,18,hidaseku +35778,10,28174,18,hikingboarder +35778,10,28174,18,hoffy +35778,10,28174,18,hubsche +35778,10,28174,18,iamcackimon +35778,10,28174,18,ichnou +35778,10,28174,18,iimakis +35778,10,28174,18,illiniorange +35778,10,28174,18,imh0tep +35778,10,28174,18,impermanent +35778,10,28174,18,iowageek81 +35778,10,28174,18,ixio55 +35778,10,28174,18,iznogood909 +35778,10,28174,18,j0nezn +35778,10,28174,18,jacobs_son90 +35778,10,28174,18,jade2e +35778,10,28174,18,jdk1974 +35778,10,28174,18,jehronimo +35778,10,28174,18,jexhai +35778,10,28174,18,jlswiw +35778,10,28174,18,johnnyoffice +35778,10,28174,18,jordsau +35778,10,28174,18,justhonour +35778,10,28174,18,karsten0220 +35778,10,28174,18,katalbot +35778,10,28174,18,katzenkraft +35778,10,28174,18,keaton1975 +35778,10,28174,18,keesvanloomacklin +35778,10,28174,18,king of arthur +35778,10,28174,18,kingjames01 +35778,10,28174,18,knickpoint +35778,10,28174,18,konpaku +35778,10,28174,18,koyl +35778,10,28174,18,krazykillerkoala +35778,10,28174,18,kyrean01 +35778,10,28174,18,lafi +35778,10,28174,18,leibowitz +35778,10,28174,18,lejend +35778,10,28174,18,lohengrin777 +35778,10,28174,18,lowhin111 +35778,10,28174,18,lum_lum +35778,10,28174,18,lutece89 +35778,10,28174,18,macnach +35778,10,28174,18,mafogo +35778,10,28174,18,maik_stich +35778,10,28174,18,marianoazej +35778,10,28174,18,marimbaman +35778,10,28174,18,matador7 +35778,10,28174,18,matdavid001 +35778,10,28174,18,mc84 +35778,10,28174,18,mccarpen +35778,10,28174,18,mdollarbill +35778,10,28174,18,medon +35778,10,28174,18,mel_shenron +35778,10,28174,18,mindguru +35778,10,28174,18,minomano +35778,10,28174,18,mr andy +35778,10,28174,18,n120by60w +35778,10,28174,18,nervzzz +35778,10,28174,18,nevvyboyuk +35778,10,28174,18,nomrefuse +35778,10,28174,18,nzretep +35778,10,28174,18,ogdens +35778,10,28174,18,orbek +35778,10,28174,18,paulymuller +35778,10,28174,18,paxis +35778,10,28174,18,pbanddrinks +35778,10,28174,18,pedronsantos +35778,10,28174,18,peef +35778,10,28174,18,pepelefrogg +35778,10,28174,18,perezron +35778,10,28174,18,perlmutter +35778,10,28174,18,peterthepirate +35778,10,28174,18,petra23 +35778,10,28174,18,photographer bolton +35778,10,28174,18,pipil19 +35778,10,28174,18,pitchblack3 +35778,10,28174,18,pjorge +35778,10,28174,18,plerumque +35778,10,28174,18,pocketfox +35778,10,28174,18,poorjester +35778,10,28174,18,potterboy1968 +35778,10,28174,18,raginrasheen +35778,10,28174,18,randomdude +35778,10,28174,18,renarok +35778,10,28174,18,rickmir +35778,10,28174,18,rockyrambo +35778,10,28174,18,rotdotdot +35778,10,28174,18,rotimus +35778,10,28174,18,ruinsofzach +35778,10,28174,18,saintsup +35778,10,28174,18,sanderknoben +35778,10,28174,18,scarko +35778,10,28174,18,seeliebb +35778,10,28174,18,seitus +35778,10,28174,18,senkifiasenki +35778,10,28174,18,senom +35778,10,28174,18,sgrognard +35778,10,28174,18,sherck +35778,10,28174,18,sheridan +35778,10,28174,18,shig4th +35778,10,28174,18,shobai +35778,10,28174,18,sibirak2010 +35778,10,28174,18,siloubser +35778,10,28174,18,sirgalin +35778,10,28174,18,sissi30 +35778,10,28174,18,siyano +35778,10,28174,18,skythian +35778,10,28174,18,smartie447 +35778,10,28174,18,smokechaser +35778,10,28174,18,snakebelly +35778,10,28174,18,sneek +35778,10,28174,18,socrmmd58 +35778,10,28174,18,spacechef +35778,10,28174,18,spidersam7 +35778,10,28174,18,spielteam iberica +35778,10,28174,18,spixel +35778,10,28174,18,ssmith71710 +35778,10,28174,18,strykin +35778,10,28174,18,sudroy +35778,10,28174,18,susuris +35778,10,28174,18,synik224 +35778,10,28174,18,szasza007 +35778,10,28174,18,taeraresh +35778,10,28174,18,talloaf +35778,10,28174,18,tanakin +35778,10,28174,18,tarot70 +35778,10,28174,18,techguynate +35778,10,28174,18,tgibi +35778,10,28174,18,thahawka +35778,10,28174,18,the jaysta +35778,10,28174,18,thejuice027 +35778,10,28174,18,therealquash +35778,10,28174,18,thereisonebear +35778,10,28174,18,theyeas +35778,10,28174,18,thomasvanreeth +35778,10,28174,18,thouartasmitemeister +35778,10,28174,18,tmperes +35778,10,28174,18,tomomot +35778,10,28174,18,tseksek +35778,10,28174,18,turgon4 +35778,10,28174,18,unsolved5 +35778,10,28174,18,vasilis5755 +35778,10,28174,18,veking +35778,10,28174,18,viciadosdemesa +35778,10,28174,18,vimaire +35778,10,28174,18,vitaldaniel +35778,10,28174,18,whiskey drinker +35778,10,28174,18,wilk39 +35778,10,28174,18,xy12und +35778,10,28174,18,ykphuah +35778,10,30791,17,-=yod@=- +35778,10,30791,17,16 bit warrior +35778,10,30791,17,1havok12 +35778,10,30791,17,aaastrike +35778,10,30791,17,abstractite +35778,10,30791,17,agentrock +35778,10,30791,17,ajmiller +35778,10,30791,17,albaasecas +35778,10,30791,17,albertneri +35778,10,30791,17,albionloveden +35778,10,30791,17,alekseenk01 +35778,10,30791,17,alexmadness +35778,10,30791,17,alohaglide +35778,10,30791,17,alrith72 +35778,10,30791,17,amolan34 +35778,10,30791,17,amyamy86 +35778,10,30791,17,anakin13 +35778,10,30791,17,anti11 +35778,10,30791,17,aqwerty +35778,10,30791,17,ariswink +35778,10,30791,17,artabetes +35778,10,30791,17,asigh +35778,10,30791,17,asthumshadow +35778,10,30791,17,azron_the_old +35778,10,30791,17,baksg3 +35778,10,30791,17,bane316 +35778,10,30791,17,barhocker +35778,10,30791,17,barrigas83 +35778,10,30791,17,basket10 +35778,10,30791,17,batmandan +35778,10,30791,17,bballer83 +35778,10,30791,17,bbhouserodent +35778,10,30791,17,beep_beep +35778,10,30791,17,belyron +35778,10,30791,17,bethrobinson +35778,10,30791,17,bgtudulu +35778,10,30791,17,bhixon +35778,10,30791,17,bigj2081 +35778,10,30791,17,bigsnoot mcsnuff +35778,10,30791,17,birdnird +35778,10,30791,17,biscuitthecat +35778,10,30791,17,bittelsworth +35778,10,30791,17,bminsker +35778,10,30791,17,bobvatar +35778,10,30791,17,branzi +35778,10,30791,17,bratty +35778,10,30791,17,breaker +35778,10,30791,17,brievb +35778,10,30791,17,caedwallax +35778,10,30791,17,carlosgs31 +35778,10,30791,17,catface +35778,10,30791,17,catrine +35778,10,30791,17,caussourd +35778,10,30791,17,cburningham +35778,10,30791,17,cetvrti_magi +35778,10,30791,17,ch4v3r1 +35778,10,30791,17,champion eternal +35778,10,30791,17,chaorain +35778,10,30791,17,charliewilson +35778,10,30791,17,cheto5999_2 +35778,10,30791,17,chindestructible +35778,10,30791,17,chomik2007 +35778,10,30791,17,chrisculy +35778,10,30791,17,cidringles +35778,10,30791,17,circusfire +35778,10,30791,17,corvusveis +35778,10,30791,17,cperonto +35778,10,30791,17,cpkiln +35778,10,30791,17,crashdamaged +35778,10,30791,17,crimsonknave +35778,10,30791,17,crimsonnoise +35778,10,30791,17,crissydue +35778,10,30791,17,csokipitypang +35778,10,30791,17,culkasi +35778,10,30791,17,cut & space +35778,10,30791,17,cykwong +35778,10,30791,17,d4vr0s +35778,10,30791,17,dacookle +35778,10,30791,17,daddygoat +35778,10,30791,17,dakryon +35778,10,30791,17,damianiii +35778,10,30791,17,daniel_a +35778,10,30791,17,danielpower +35778,10,30791,17,dasambi +35778,10,30791,17,davader +35778,10,30791,17,deebster +35778,10,30791,17,dejaepu +35778,10,30791,17,derudo +35778,10,30791,17,deviantzipy +35778,10,30791,17,disturbing_presence +35778,10,30791,17,dlsmd45 +35778,10,30791,17,dmmoelle +35778,10,30791,17,dracosf2 +35778,10,30791,17,dragonchilde21 +35778,10,30791,17,dragonwolf_pt +35778,10,30791,17,dudas22 +35778,10,30791,17,duke_rufus +35778,10,30791,17,dusk2dawn +35778,10,30791,17,edulm26 +35778,10,30791,17,elquesada +35778,10,30791,17,elviscs27 +35778,10,30791,17,embryonichydra +35778,10,30791,17,emiliajayne +35778,10,30791,17,empire_of_the_clouds +35778,10,30791,17,empires +35778,10,30791,17,epaminondas56 +35778,10,30791,17,ericajean79 +35778,10,30791,17,eriklevin +35778,10,30791,17,ext4ur +35778,10,30791,17,ezhelan +35778,10,30791,17,faintlymacabre66 +35778,10,30791,17,farkasbenedek +35778,10,30791,17,felicisimus +35778,10,30791,17,fenderbenter +35778,10,30791,17,fizzdizz +35778,10,30791,17,flecha2 +35778,10,30791,17,fourquartets +35778,10,30791,17,fragia +35778,10,30791,17,frastarc +35778,10,30791,17,frede +35778,10,30791,17,fungilover +35778,10,30791,17,furiousgeorge +35778,10,30791,17,furqonii +35778,10,30791,17,g90215 +35778,10,30791,17,gafik +35778,10,30791,17,gautam_dxb +35778,10,30791,17,gbgen +35778,10,30791,17,gglkid +35778,10,30791,17,giandesanti +35778,10,30791,17,gillesbourque +35778,10,30791,17,glasmaul +35778,10,30791,17,gleasoneast +35778,10,30791,17,gloinul +35778,10,30791,17,gorior +35778,10,30791,17,greasermedic +35778,10,30791,17,great_mazinga +35778,10,30791,17,greatestwookiee +35778,10,30791,17,greyorangejuju +35778,10,30791,17,grishnak4711 +35778,10,30791,17,grumblerbear +35778,10,30791,17,gunlok +35778,10,30791,17,gustic +35778,10,30791,17,halobungieman +35778,10,30791,17,halojill +35778,10,30791,17,hanohtep +35778,10,30791,17,harley57 +35778,10,30791,17,hatbeard +35778,10,30791,17,hergambit +35778,10,30791,17,hetimea42 +35778,10,30791,17,houseded +35778,10,30791,17,iggy4mayor +35778,10,30791,17,infernarl +35778,10,30791,17,interhawk +35778,10,30791,17,ireadalot +35778,10,30791,17,itsfrankii +35778,10,30791,17,jaescartin +35778,10,30791,17,jakov +35778,10,30791,17,jdbuckley +35778,10,30791,17,jeff weber +35778,10,30791,17,jemione +35778,10,30791,17,jeremysexton +35778,10,30791,17,jetaudio77 +35778,10,30791,17,jmrichar +35778,10,30791,17,joaninhe +35778,10,30791,17,jpcaruana +35778,10,30791,17,jqgamer +35778,10,30791,17,jthodges +35778,10,30791,17,k1rst1n +35778,10,30791,17,kashisaur +35778,10,30791,17,kecaj +35778,10,30791,17,keithalexmiller +35778,10,30791,17,killahimp +35778,10,30791,17,kirzupal +35778,10,30791,17,klausenburgischer +35778,10,30791,17,kmbgg +35778,10,30791,17,koblar +35778,10,30791,17,kovacs +35778,10,30791,17,krisspics +35778,10,30791,17,krjo03 +35778,10,30791,17,ksisu +35778,10,30791,17,lafrose +35778,10,30791,17,leamgn +35778,10,30791,17,leash +35778,10,30791,17,leumas818 +35778,10,30791,17,level 1 +35778,10,30791,17,lfcoelho +35778,10,30791,17,lisiqi +35778,10,30791,17,lockeout +35778,10,30791,17,lommy +35778,10,30791,17,lookass +35778,10,30791,17,lotuselise +35778,10,30791,17,loveb1rd +35778,10,30791,17,lowplayer +35778,10,30791,17,lozionica +35778,10,30791,17,lucsen +35778,10,30791,17,luisiireuu +35778,10,30791,17,lutzabella +35778,10,30791,17,m4rw03l +35778,10,30791,17,ma5xx +35778,10,30791,17,macs +35778,10,30791,17,madewokherd +35778,10,30791,17,makulatur +35778,10,30791,17,mangavalk +35778,10,30791,17,maniujordan23 +35778,10,30791,17,manuel_lopez8a +35778,10,30791,17,marazefe +35778,10,30791,17,mardana +35778,10,30791,17,marilu_yomisma +35778,10,30791,17,markcooke +35778,10,30791,17,marrog +35778,10,30791,17,martinmenke +35778,10,30791,17,massallen +35778,10,30791,17,mattman861 +35778,10,30791,17,mbannwar84 +35778,10,30791,17,mbork +35778,10,30791,17,mccarty13 +35778,10,30791,17,mecomouna +35778,10,30791,17,medrian +35778,10,30791,17,menippa +35778,10,30791,17,mfernando85 +35778,10,30791,17,mihocik +35778,10,30791,17,mikej6 +35778,10,30791,17,miker257 +35778,10,30791,17,mikerubens +35778,10,30791,17,ming +35778,10,30791,17,mirror81 +35778,10,30791,17,mjw85 +35778,10,30791,17,mnkindrachuk +35778,10,30791,17,mojo293 +35778,10,30791,17,monkeysmell +35778,10,30791,17,morituri80 +35778,10,30791,17,mrfunkyland +35778,10,30791,17,mrs mouse +35778,10,30791,17,mruokoko +35778,10,30791,17,msbs +35778,10,30791,17,naughtydams +35778,10,30791,17,nest1 +35778,10,30791,17,nianosticks +35778,10,30791,17,nickel eye +35778,10,30791,17,nickroca +35778,10,30791,17,niftysolid +35778,10,30791,17,ninjamaster2 +35778,10,30791,17,njking +35778,10,30791,17,nka_2800 +35778,10,30791,17,nljnorman +35778,10,30791,17,no_gamer5 +35778,10,30791,17,nollscoffen +35778,10,30791,17,nonorou68 +35778,10,30791,17,nordlicht85 +35778,10,30791,17,nornor +35778,10,30791,17,originalfritz +35778,10,30791,17,osgor +35778,10,30791,17,pacino86845 +35778,10,30791,17,pandoracaitiff +35778,10,30791,17,panmajster +35778,10,30791,17,papatsa +35778,10,30791,17,paulieiiv +35778,10,30791,17,pavel_zloba +35778,10,30791,17,pavlaq +35778,10,30791,17,persi14 +35778,10,30791,17,petebarnes100 +35778,10,30791,17,peter fey +35778,10,30791,17,philjoyce +35778,10,30791,17,phineusphule +35778,10,30791,17,phoenixmoo +35778,10,30791,17,phoenixsong +35778,10,30791,17,piggy200 +35778,10,30791,17,poborskij +35778,10,30791,17,pojopep +35778,10,30791,17,pontymatrac +35778,10,30791,17,possiblepenguin +35778,10,30791,17,potionsmaster +35778,10,30791,17,powellc001920391 +35778,10,30791,17,pphh +35778,10,30791,17,prazma +35778,10,30791,17,pvzed +35778,10,30791,17,qemisti +35778,10,30791,17,r0xeeqc +35778,10,30791,17,ragingoptimist +35778,10,30791,17,raiderrogers +35778,10,30791,17,randominfection +35778,10,30791,17,ratticus +35778,10,30791,17,ravingloon +35778,10,30791,17,rc_ds2 +35778,10,30791,17,red dragon +35778,10,30791,17,reef144 +35778,10,30791,17,rev seamus +35778,10,30791,17,rgaustin +35778,10,30791,17,rho lambda +35778,10,30791,17,robledo +35778,10,30791,17,rocksteady92 +35778,10,30791,17,rogerrabbit1978 +35778,10,30791,17,rubonstein +35778,10,30791,17,russect +35778,10,30791,17,rusteenh +35778,10,30791,17,sabaen +35778,10,30791,17,sabode +35778,10,30791,17,sakai +35778,10,30791,17,samrayner +35778,10,30791,17,sasa93 +35778,10,30791,17,sawtoothautumn +35778,10,30791,17,scaretheplants +35778,10,30791,17,scarletfiver +35778,10,30791,17,scorched earth +35778,10,30791,17,seekerpol +35778,10,30791,17,senhawk +35778,10,30791,17,sepomatik +35778,10,30791,17,seskador +35778,10,30791,17,sexton +35778,10,30791,17,sfaqer +35778,10,30791,17,shiguya +35778,10,30791,17,sjoerd wenings +35778,10,30791,17,skinkdoktor +35778,10,30791,17,slo_fila +35778,10,30791,17,smapdy0 +35778,10,30791,17,speckwurst +35778,10,30791,17,spirit of 70 +35778,10,30791,17,sszy59 +35778,10,30791,17,stinger +35778,10,30791,17,stone_goat +35778,10,30791,17,stonewolf +35778,10,30791,17,stryyder +35778,10,30791,17,sunrisegaming +35778,10,30791,17,superstu +35778,10,30791,17,taateli +35778,10,30791,17,tallbrian +35778,10,30791,17,tardistimewarp +35778,10,30791,17,tasran +35778,10,30791,17,tek3_dude +35778,10,30791,17,telwarin +35778,10,30791,17,tericcreel +35778,10,30791,17,th3_g0nz0 +35778,10,30791,17,the machine god +35778,10,30791,17,the1gofer +35778,10,30791,17,thekickdown +35778,10,30791,17,themyrmidon +35778,10,30791,17,thiex +35778,10,30791,17,thistef +35778,10,30791,17,tiddleydwarf +35778,10,30791,17,tinskuliisa +35778,10,30791,17,tiruvor +35778,10,30791,17,titigaganu +35778,10,30791,17,toddbauer1923 +35778,10,30791,17,tonienbarra +35778,10,30791,17,toyas +35778,10,30791,17,trysco +35778,10,30791,17,tulioz +35778,10,30791,17,tychonof +35778,10,30791,17,tylerdq +35778,10,30791,17,tyrtiuliu +35778,10,30791,17,ubirata +35778,10,30791,17,ufila +35778,10,30791,17,ugogreevy +35778,10,30791,17,ultijim82 +35778,10,30791,17,ultimoratio +35778,10,30791,17,ultramafic +35778,10,30791,17,v0lratt +35778,10,30791,17,venetianphil +35778,10,30791,17,vesa +35778,10,30791,17,vgmosca +35778,10,30791,17,vidbot +35778,10,30791,17,w4nt3d +35778,10,30791,17,warchief_levi +35778,10,30791,17,warmfrost +35778,10,30791,17,weirdsalmon +35778,10,30791,17,weow +35778,10,30791,17,werelove +35778,10,30791,17,wince +35778,10,30791,17,wingedstone +35778,10,30791,17,wisi78 +35778,10,30791,17,wolverine5523 +35778,10,30791,17,wtanaka +35778,10,30791,17,wullschl +35778,10,30791,17,xdeniiiseee +35778,10,30791,17,xpour +35778,10,30791,17,yavalion +35778,10,30791,17,youzhura +35778,10,30791,17,yuffie +35778,10,30791,17,zbbower12 +35778,10,30791,17,zeik +35778,10,30791,17,zerome +35778,10,30791,17,zillie +35778,10,30791,17,zinned +35778,10,30791,17,zodmaster +35778,10,30791,17,zutcorp +35778,10,33518,16,abernath +35778,10,33518,16,abige +35778,10,33518,16,abnormallyramsey +35778,10,33518,16,acariatre +35778,10,33518,16,akaiready +35778,10,33518,16,akurczak +35778,10,33518,16,alaeus +35778,10,33518,16,alastairtaylor +35778,10,33518,16,albertjvm +35778,10,33518,16,alegrias1306 +35778,10,33518,16,alex_luka23 +35778,10,33518,16,alexprof +35778,10,33518,16,aliceisabeast +35778,10,33518,16,alisaschofield +35778,10,33518,16,allenjess11 +35778,10,33518,16,alnesterov +35778,10,33518,16,alterado15 +35778,10,33518,16,alyphis +35778,10,33518,16,anamilena +35778,10,33518,16,andreasdgr +35778,10,33518,16,andrewsoft +35778,10,33518,16,andye +35778,10,33518,16,andyso +35778,10,33518,16,anidiego +35778,10,33518,16,annuverscotinexile +35778,10,33518,16,anyregularnamewilldo +35778,10,33518,16,apocrypha +35778,10,33518,16,arcanumpet +35778,10,33518,16,asimplesturgeon +35778,10,33518,16,atarki +35778,10,33518,16,atstapley +35778,10,33518,16,austin_byrum +35778,10,33518,16,austinoctane +35778,10,33518,16,b0xors +35778,10,33518,16,badmuzzy +35778,10,33518,16,bamafancoop +35778,10,33518,16,bamitsunami +35778,10,33518,16,barnowl713 +35778,10,33518,16,basketo24 +35778,10,33518,16,bcharlebois +35778,10,33518,16,bjstick +35778,10,33518,16,blaar +35778,10,33518,16,blink723 +35778,10,33518,16,bluesnow2412 +35778,10,33518,16,boardgamer_girl +35778,10,33518,16,boettler +35778,10,33518,16,boisse +35778,10,33518,16,boombar +35778,10,33518,16,boredboard +35778,10,33518,16,boyangr +35778,10,33518,16,bpowers +35778,10,33518,16,bquigs +35778,10,33518,16,brannart +35778,10,33518,16,brummsummse +35778,10,33518,16,brund the decrepit +35778,10,33518,16,brusiks +35778,10,33518,16,brystermyster +35778,10,33518,16,cafule +35778,10,33518,16,calmik +35778,10,33518,16,calving +35778,10,33518,16,captain yid +35778,10,33518,16,capteneo +35778,10,33518,16,captnklap +35778,10,33518,16,carey +35778,10,33518,16,catbuggy +35778,10,33518,16,catiarm +35778,10,33518,16,cbb614 +35778,10,33518,16,chamomileon +35778,10,33518,16,charahoui +35778,10,33518,16,charles vasey +35778,10,33518,16,chinless +35778,10,33518,16,chris 34 +35778,10,33518,16,chrisd73 +35778,10,33518,16,christiangl +35778,10,33518,16,chrm +35778,10,33518,16,chungka +35778,10,33518,16,chunnert +35778,10,33518,16,ciraecchi +35778,10,33518,16,cjthom +35778,10,33518,16,clearly5000 +35778,10,33518,16,cleinlish +35778,10,33518,16,clermont +35778,10,33518,16,clumsydad +35778,10,33518,16,cmontgo2 +35778,10,33518,16,cnquist +35778,10,33518,16,co_thn +35778,10,33518,16,coen97 +35778,10,33518,16,colifestyle +35778,10,33518,16,comteestruc +35778,10,33518,16,coraline13 +35778,10,33518,16,corkalot +35778,10,33518,16,corpsified +35778,10,33518,16,cpawley +35778,10,33518,16,crosschop +35778,10,33518,16,crow6oy +35778,10,33518,16,csherkat +35778,10,33518,16,cubthulhu +35778,10,33518,16,cvijaxo +35778,10,33518,16,cweeks1872 +35778,10,33518,16,cygnusx1 +35778,10,33518,16,d_hoopster +35778,10,33518,16,daantjerrr +35778,10,33518,16,daff30 +35778,10,33518,16,damevfx +35778,10,33518,16,damienmocata +35778,10,33518,16,danielgomez909 +35778,10,33518,16,danmillar +35778,10,33518,16,dannywalkman +35778,10,33518,16,dano19606 +35778,10,33518,16,dantitan1981 +35778,10,33518,16,darkfox099 +35778,10,33518,16,darkxc +35778,10,33518,16,davdi +35778,10,33518,16,daveygriff +35778,10,33518,16,db-one +35778,10,33518,16,dblows +35778,10,33518,16,dcastillo_03 +35778,10,33518,16,ddwilbury +35778,10,33518,16,dedios +35778,10,33518,16,deep sleep operative +35778,10,33518,16,deika1979 +35778,10,33518,16,deikorim +35778,10,33518,16,delmalf +35778,10,33518,16,denvilcahill +35778,10,33518,16,derogan +35778,10,33518,16,dervich +35778,10,33518,16,devergrace +35778,10,33518,16,dewiatan +35778,10,33518,16,dgpitts +35778,10,33518,16,diarrheag +35778,10,33518,16,diarrheaperlman +35778,10,33518,16,diogolopes +35778,10,33518,16,dipperdog +35778,10,33518,16,dirtyharry_217 +35778,10,33518,16,disconnectdisconnect +35778,10,33518,16,dm_sarris +35778,10,33518,16,dopehatman +35778,10,33518,16,dougiep +35778,10,33518,16,dpearson588 +35778,10,33518,16,dr_sapirstein +35778,10,33518,16,dragonnox +35778,10,33518,16,dranger +35778,10,33518,16,drieka_mk +35778,10,33518,16,drixxi +35778,10,33518,16,dsemitit +35778,10,33518,16,dsj2001 +35778,10,33518,16,dtshatteredstar +35778,10,33518,16,durdleexpert +35778,10,33518,16,dy979 +35778,10,33518,16,dyce666 +35778,10,33518,16,eatmedrinkme +35778,10,33518,16,edwarddrake99 +35778,10,33518,16,ekaun +35778,10,33518,16,ekrem +35778,10,33518,16,el colono +35778,10,33518,16,el_pilo +35778,10,33518,16,elalonsou +35778,10,33518,16,eliashelfer +35778,10,33518,16,elti +35778,10,33518,16,enkido +35778,10,33518,16,enriqueque +35778,10,33518,16,estorninoimpertinent +35778,10,33518,16,etherium717 +35778,10,33518,16,etr_eryk +35778,10,33518,16,ewentz79 +35778,10,33518,16,expander +35778,10,33518,16,extermiknuter +35778,10,33518,16,faidherbelille +35778,10,33518,16,fargonz +35778,10,33518,16,faustos +35778,10,33518,16,faël +35778,10,33518,16,feedthefreak +35778,10,33518,16,feisreiling +35778,10,33518,16,fenchel +35778,10,33518,16,fenwayfrank +35778,10,33518,16,ferran renalias +35778,10,33518,16,fhoara +35778,10,33518,16,fiendsamurai +35778,10,33518,16,figaro123 +35778,10,33518,16,filgonfin +35778,10,33518,16,finring +35778,10,33518,16,fireman7665 +35778,10,33518,16,fishuu +35778,10,33518,16,flattfam +35778,10,33518,16,flosse07 +35778,10,33518,16,fostheboss97 +35778,10,33518,16,foxtrot318 +35778,10,33518,16,fredyduquette +35778,10,33518,16,fukudamiyasato +35778,10,33518,16,fusag +35778,10,33518,16,futurewalker +35778,10,33518,16,gabavon320 +35778,10,33518,16,gabdewulf +35778,10,33518,16,gangzda +35778,10,33518,16,garoose +35778,10,33518,16,genepar +35778,10,33518,16,generationx +35778,10,33518,16,ghost604 +35778,10,33518,16,giraffeninja +35778,10,33518,16,glenss +35778,10,33518,16,gliitch +35778,10,33518,16,goldcrowe +35778,10,33518,16,graydetrick +35778,10,33518,16,groundloop +35778,10,33518,16,grymer +35778,10,33518,16,gudamwarrior +35778,10,33518,16,guiosca +35778,10,33518,16,gusto87 +35778,10,33518,16,haakonts +35778,10,33518,16,haegar72 +35778,10,33518,16,hagel +35778,10,33518,16,hajo83 +35778,10,33518,16,hammypita +35778,10,33518,16,harkerm +35778,10,33518,16,havok03 +35778,10,33518,16,hawaiipizza74 +35778,10,33518,16,hedinnn +35778,10,33518,16,helenac +35778,10,33518,16,helvi +35778,10,33518,16,herbiliza +35778,10,33518,16,herman hervé +35778,10,33518,16,herodotus herodotus +35778,10,33518,16,hesistant +35778,10,33518,16,hexanauta +35778,10,33518,16,hipcio_stg +35778,10,33518,16,horsestar8812 +35778,10,33518,16,hrahukka +35778,10,33518,16,hussbuss +35778,10,33518,16,hypnotoadz +35778,10,33518,16,i_lol +35778,10,33518,16,iggy79 +35778,10,33518,16,ingridv +35778,10,33518,16,inkenious +35778,10,33518,16,insearchofspace +35778,10,33518,16,introvertron +35778,10,33518,16,irvine1803 +35778,10,33518,16,isaquelazaro +35778,10,33518,16,isengard +35778,10,33518,16,itkarta +35778,10,33518,16,ivyhymn +35778,10,33518,16,jabby +35778,10,33518,16,jackov_spades +35778,10,33518,16,jacobean +35778,10,33518,16,jacokrk +35778,10,33518,16,jagbag13 +35778,10,33518,16,jahermed +35778,10,33518,16,james5559 +35778,10,33518,16,jamestoole7 +35778,10,33518,16,jampalma +35778,10,33518,16,janprader +35778,10,33518,16,jayxtcbx +35778,10,33518,16,jbillmann +35778,10,33518,16,jcrim13 +35778,10,33518,16,jdd2023 +35778,10,33518,16,jennj +35778,10,33518,16,jesuscm +35778,10,33518,16,jgpenner +35778,10,33518,16,jmwrainwater +35778,10,33518,16,joecosta +35778,10,33518,16,joelschroeder +35778,10,33518,16,joesark +35778,10,33518,16,john_chettiar +35778,10,33518,16,jonky +35778,10,33518,16,joshuasjots +35778,10,33518,16,jotaengine +35778,10,33518,16,jsforella +35778,10,33518,16,jville2434 +35778,10,33518,16,kaiyubgg +35778,10,33518,16,kanjhi +35778,10,33518,16,karatox +35778,10,33518,16,karzuu +35778,10,33518,16,katsuias +35778,10,33518,16,kazeshini +35778,10,33518,16,kelvingreen +35778,10,33518,16,kennethkenneth +35778,10,33518,16,khatoo +35778,10,33518,16,kidonaleash +35778,10,33518,16,killasamuri11 +35778,10,33518,16,kjell1979 +35778,10,33518,16,klaetsch +35778,10,33518,16,klinkerpopper +35778,10,33518,16,kornishon +35778,10,33518,16,koz_12 +35778,10,33518,16,krespo1989 +35778,10,33518,16,kryptopirat +35778,10,33518,16,kuyam +35778,10,33518,16,kvothegd +35778,10,33518,16,kwebec +35778,10,33518,16,lamope22 +35778,10,33518,16,largestill +35778,10,33518,16,lawrence hung +35778,10,33518,16,leahdenise +35778,10,33518,16,leesmith +35778,10,33518,16,legendarydromedary +35778,10,33518,16,lemon8tree +35778,10,33518,16,lemoneg +35778,10,33518,16,lensyash +35778,10,33518,16,lewztheryn +35778,10,33518,16,limaper +35778,10,33518,16,livelovetravel +35778,10,33518,16,lividentity +35778,10,33518,16,lokyjack +35778,10,33518,16,lordflies +35778,10,33518,16,lordzavian +35778,10,33518,16,louiseh +35778,10,33518,16,lrpa +35778,10,33518,16,luckyartie +35778,10,33518,16,m4stermage +35778,10,33518,16,m4th13u +35778,10,33518,16,mabrueko +35778,10,33518,16,maciver +35778,10,33518,16,made2worship +35778,10,33518,16,mafia l45h +35778,10,33518,16,magdeth +35778,10,33518,16,magicmoose66 +35778,10,33518,16,mahgeetah +35778,10,33518,16,malkivian +35778,10,33518,16,mallowrain +35778,10,33518,16,manelvb2 +35778,10,33518,16,manitis +35778,10,33518,16,manos77 +35778,10,33518,16,manstein +35778,10,33518,16,manuel_alexis +35778,10,33518,16,marcam1 +35778,10,33518,16,marcella1775 +35778,10,33518,16,marcin_jaw +35778,10,33518,16,marcinb +35778,10,33518,16,mart_bradley +35778,10,33518,16,marxmarvelous +35778,10,33518,16,masteryodi +35778,10,33518,16,matcappel +35778,10,33518,16,mathroy3 +35778,10,33518,16,matsseger +35778,10,33518,16,matt_gday +35778,10,33518,16,mattomaw +35778,10,33518,16,mattprom +35778,10,33518,16,mattymoo728 +35778,10,33518,16,maxnovikoff +35778,10,33518,16,mbrowne119 +35778,10,33518,16,meerkat +35778,10,33518,16,megacthulhu +35778,10,33518,16,mephistophelles +35778,10,33518,16,mich_sal +35778,10,33518,16,mightymars +35778,10,33518,16,miohn_vdc +35778,10,33518,16,mirlord +35778,10,33518,16,mirologe +35778,10,33518,16,misch1jr +35778,10,33518,16,misterflea +35778,10,33518,16,mkbrini +35778,10,33518,16,mlinka +35778,10,33518,16,mococtor +35778,10,33518,16,mokas9 +35778,10,33518,16,monboisse +35778,10,33518,16,mongolo +35778,10,33518,16,mongoosethe +35778,10,33518,16,moorimurka +35778,10,33518,16,mountaingardner +35778,10,33518,16,mr brown +35778,10,33518,16,mrboolf +35778,10,33518,16,mrkorky +35778,10,33518,16,mrlector +35778,10,33518,16,mrmuppet +35778,10,33518,16,mrred33 +35778,10,33518,16,msduguid +35778,10,33518,16,msfeli +35778,10,33518,16,naib_stilgar +35778,10,33518,16,natelusk +35778,10,33518,16,naturelich +35778,10,33518,16,nemezismm +35778,10,33518,16,neokurgan +35778,10,33518,16,neoplay7 +35778,10,33518,16,nesnay2 +35778,10,33518,16,nevisilien +35778,10,33518,16,nexttothemoon +35778,10,33518,16,nexus_6 +35778,10,33518,16,neypp +35778,10,33518,16,nicch +35778,10,33518,16,nickgriffin +35778,10,33518,16,nikgid +35778,10,33518,16,niranbala +35778,10,33518,16,no_way +35778,10,33518,16,notyoufuneral +35778,10,33518,16,nrefzen +35778,10,33518,16,nurglepus +35778,10,33518,16,nzl_ghost +35778,10,33518,16,obsessionexpression +35778,10,33518,16,odde +35778,10,33518,16,ohhimarina +35778,10,33518,16,olak +35778,10,33518,16,oneeyedbartender +35778,10,33518,16,onemoredead +35778,10,33518,16,onurozudogru +35778,10,33518,16,ordinarygatsby +35778,10,33518,16,orsum8 +35778,10,33518,16,oryo +35778,10,33518,16,oseando +35778,10,33518,16,otorek +35778,10,33518,16,ottosg +35778,10,33518,16,oymo +35778,10,33518,16,p00q +35778,10,33518,16,pakman +35778,10,33518,16,pbice +35778,10,33518,16,pepejake +35778,10,33518,16,phantomgamer +35778,10,33518,16,phinblade +35778,10,33518,16,phloog +35778,10,33518,16,pisfin +35778,10,33518,16,plethora +35778,10,33518,16,plisnu +35778,10,33518,16,plosfas +35778,10,33518,16,plw3 +35778,10,33518,16,pmtu223 +35778,10,33518,16,praktyss +35778,10,33518,16,primuspillus +35778,10,33518,16,profanat +35778,10,33518,16,prorock1975 +35778,10,33518,16,pzc_crash +35778,10,33518,16,q90036 +35778,10,33518,16,qkershner +35778,10,33518,16,quebinalv1 +35778,10,33518,16,qwirz +35778,10,33518,16,rabbitz69 +35778,10,33518,16,rackitycoon +35778,10,33518,16,randk +35778,10,33518,16,randomnewb +35778,10,33518,16,randotron +35778,10,33518,16,raquelrp +35778,10,33518,16,raul catalano +35778,10,33518,16,rebee +35778,10,33518,16,reddinkje +35778,10,33518,16,redeyedghost +35778,10,33518,16,reynoldsmcr +35778,10,33518,16,rgrbrian +35778,10,33518,16,rhviid +35778,10,33518,16,ricexnxrolls +35778,10,33518,16,richardbliss +35778,10,33518,16,richeldarto69 +35778,10,33518,16,richyrichric81 +35778,10,33518,16,ricsto +35778,10,33518,16,rillian +35778,10,33518,16,risky712 +35778,10,33518,16,rothkorperation +35778,10,33518,16,rovenblake +35778,10,33518,16,royalflush37 +35778,10,33518,16,rssaffy +35778,10,33518,16,rurik +35778,10,33518,16,ruslanep +35778,10,33518,16,rusty_kun +35778,10,33518,16,ryaneldridge +35778,10,33518,16,sabanoo +35778,10,33518,16,sadece +35778,10,33518,16,samalott +35778,10,33518,16,sanasani +35778,10,33518,16,santi_ikari +35778,10,33518,16,sarettalu +35778,10,33518,16,says you +35778,10,33518,16,scooter630 +35778,10,33518,16,secabeen +35778,10,33518,16,senorocho +35778,10,33518,16,sensdoo +35778,10,33518,16,seriouscat +35778,10,33518,16,shakeandbake34 +35778,10,33518,16,shoelaser +35778,10,33518,16,siemowir +35778,10,33518,16,sila7 +35778,10,33518,16,singerbard +35778,10,33518,16,sipalittletea +35778,10,33518,16,sir_gunblade +35778,10,33518,16,sirmythos +35778,10,33518,16,sjeng +35778,10,33518,16,sjulsenste +35778,10,33518,16,skynight8 +35778,10,33518,16,slava_eiji +35778,10,33518,16,sliw2 +35778,10,33518,16,smintie +35778,10,33518,16,smirnyi +35778,10,33518,16,smow +35778,10,33518,16,snowbunny +35778,10,33518,16,snugglewood +35778,10,33518,16,solanthos +35778,10,33518,16,sonatajessica +35778,10,33518,16,sonny_life +35778,10,33518,16,sorbusdom +35778,10,33518,16,spirale +35778,10,33518,16,spottedhyena +35778,10,33518,16,sprydle1 +35778,10,33518,16,stanwest +35778,10,33518,16,stephengehring +35778,10,33518,16,stever2003 +35778,10,33518,16,stinek +35778,10,33518,16,stonedjuarez +35778,10,33518,16,storm00crow +35778,10,33518,16,svenbart +35778,10,33518,16,takai +35778,10,33518,16,taluagel +35778,10,33518,16,tanker73 +35778,10,33518,16,tasskenders +35778,10,33518,16,teaturtle +35778,10,33518,16,techsamurai +35778,10,33518,16,teej8713 +35778,10,33518,16,tenhole +35778,10,33518,16,tenmaya +35778,10,33518,16,tfrixi1 +35778,10,33518,16,the_taco_waffle +35778,10,33518,16,thegvx +35778,10,33518,16,theonemarlowe +35778,10,33518,16,thesama +35778,10,33518,16,thsr +35778,10,33518,16,thuichi +35778,10,33518,16,timapollo +35778,10,33518,16,tinl9 +35778,10,33518,16,tivis014 +35778,10,33518,16,tlawson1982 +35778,10,33518,16,tomandmomplay +35778,10,33518,16,tomaszwojas +35778,10,33518,16,tomg +35778,10,33518,16,tomtries +35778,10,33518,16,tonkatsu +35778,10,33518,16,tophergopher +35778,10,33518,16,tormenta +35778,10,33518,16,trixygamer +35778,10,33518,16,trzewik +35778,10,33518,16,tschlu +35778,10,33518,16,turbo2125 +35778,10,33518,16,twistedsciences +35778,10,33518,16,twistedtea +35778,10,33518,16,tylergingrich +35778,10,33518,16,ulfgdar +35778,10,33518,16,uncdave13 +35778,10,33518,16,upliftingangel +35778,10,33518,16,uuneter +35778,10,33518,16,vacsi14 +35778,10,33518,16,vanguelor +35778,10,33518,16,vargen666 +35778,10,33518,16,verdun +35778,10,33518,16,versimilitude +35778,10,33518,16,vesir +35778,10,33518,16,vidsolo +35778,10,33518,16,vigerus +35778,10,33518,16,villelotta +35778,10,33518,16,viniciuspr00 +35778,10,33518,16,vitruvianmeeple +35778,10,33518,16,vityammy +35778,10,33518,16,vladk +35778,10,33518,16,vollhrin +35778,10,33518,16,vortilion +35778,10,33518,16,watcher969 +35778,10,33518,16,wawe +35778,10,33518,16,wbrp +35778,10,33518,16,whitesymphonia +35778,10,33518,16,wiktorro +35778,10,33518,16,willowfb +35778,10,33518,16,willuknight +35778,10,33518,16,wizhyun +35778,10,33518,16,wjones14 +35778,10,33518,16,wojciech_b +35778,10,33518,16,wolle78pt +35778,10,33518,16,xaviermi +35778,10,33518,16,xice +35778,10,33518,16,xkneepkens +35778,10,33518,16,xongile +35778,10,33518,16,yagello +35778,10,33518,16,yardapejv +35778,10,33518,16,yewtah +35778,10,33518,16,yukihaze +35778,10,33518,16,yukondog +35778,10,33518,16,yuripp +35778,10,33518,16,yylin +35778,10,33518,16,zallock +35778,10,33518,16,zangster +35778,10,33518,16,zapcek +35778,10,33518,16,zenaka +35778,10,33518,16,zhenya +35778,10,33518,16,zydoz +35778,10,33518,16,zygomax +35778,10,36419,15,19tdi +35778,10,36419,15,4n6gamer +35778,10,36419,15,5truikr0ver +35778,10,36419,15,_ega_ +35778,10,36419,15,aaleto14 +35778,10,36419,15,aaron77177 +35778,10,36419,15,absed +35778,10,36419,15,acadius +35778,10,36419,15,adabard +35778,10,36419,15,adamc92 +35778,10,36419,15,adi_venturer +35778,10,36419,15,admiral_discomfort +35778,10,36419,15,adrdomeniconi +35778,10,36419,15,adriata +35778,10,36419,15,adxmws +35778,10,36419,15,aernil +35778,10,36419,15,afoxling +35778,10,36419,15,ahazperutz +35778,10,36419,15,aikchung +35778,10,36419,15,ailj89 +35778,10,36419,15,ainecrevette +35778,10,36419,15,airton +35778,10,36419,15,ajaxeler +35778,10,36419,15,aksendaz +35778,10,36419,15,al_e +35778,10,36419,15,albates12 +35778,10,36419,15,ale615 +35778,10,36419,15,aleks +35778,10,36419,15,aleksispi +35778,10,36419,15,alexekrug +35778,10,36419,15,alphabus +35778,10,36419,15,alpmurphy +35778,10,36419,15,alube +35778,10,36419,15,alwaysjung +35778,10,36419,15,alxin +35778,10,36419,15,amandil +35778,10,36419,15,amarrero45 +35778,10,36419,15,amelendez100 +35778,10,36419,15,ammorphalisk +35778,10,36419,15,amnezia +35778,10,36419,15,anazi79 +35778,10,36419,15,ando2099 +35778,10,36419,15,andresgpr +35778,10,36419,15,andsil +35778,10,36419,15,anduril42 +35778,10,36419,15,angelo83 +35778,10,36419,15,anomalouskeklol +35778,10,36419,15,ar_aliaksei +35778,10,36419,15,arahmon +35778,10,36419,15,arwynt +35778,10,36419,15,arzga +35778,10,36419,15,aston_ +35778,10,36419,15,astuntas +35778,10,36419,15,atcblake +35778,10,36419,15,auberjini +35778,10,36419,15,audacon +35778,10,36419,15,aveldman +35778,10,36419,15,averydylan +35778,10,36419,15,azriel +35778,10,36419,15,badkarma1588 +35778,10,36419,15,badoran +35778,10,36419,15,bailysbeads +35778,10,36419,15,balhata +35778,10,36419,15,bananadrama +35778,10,36419,15,barasha +35778,10,36419,15,barmyraisin +35778,10,36419,15,bartol666 +35778,10,36419,15,bastianz +35778,10,36419,15,batsku +35778,10,36419,15,baztard4ever +35778,10,36419,15,bb_costa +35778,10,36419,15,bbqgamerbbq +35778,10,36419,15,bcool680 +35778,10,36419,15,bcwall +35778,10,36419,15,beakermx +35778,10,36419,15,belafi74 +35778,10,36419,15,beliqpor +35778,10,36419,15,beltzlore +35778,10,36419,15,belzebuvlad +35778,10,36419,15,benthegoose +35778,10,36419,15,bernytheking +35778,10,36419,15,bertimus9 +35778,10,36419,15,bertinc +35778,10,36419,15,bgbhb +35778,10,36419,15,bgg__ +35778,10,36419,15,bigal_tp +35778,10,36419,15,bigironbar +35778,10,36419,15,bigmag173 +35778,10,36419,15,bigoslfc +35778,10,36419,15,bjsnyder28 +35778,10,36419,15,blackgondra +35778,10,36419,15,blackwaffle +35778,10,36419,15,blaiseandtara +35778,10,36419,15,blij_meisje +35778,10,36419,15,blineyy +35778,10,36419,15,blnichol +35778,10,36419,15,blobbfischer +35778,10,36419,15,bltt +35778,10,36419,15,blu3fish +35778,10,36419,15,bluephish +35778,10,36419,15,blutrot +35778,10,36419,15,bmalveira +35778,10,36419,15,bn322 +35778,10,36419,15,boardalchemist +35778,10,36419,15,boardgames_abovebeyo +35778,10,36419,15,boardgamevoyeur +35778,10,36419,15,bob_3002 +35778,10,36419,15,bobbydaz +35778,10,36419,15,bobbylam +35778,10,36419,15,bodun007 +35778,10,36419,15,booma2xs +35778,10,36419,15,booszie +35778,10,36419,15,braislo +35778,10,36419,15,brandonrule4 +35778,10,36419,15,brawrud +35778,10,36419,15,brina409 +35778,10,36419,15,brucx +35778,10,36419,15,bvanleeuwen6 +35778,10,36419,15,bwagskp03 +35778,10,36419,15,cactaceae +35778,10,36419,15,cajun fiesta +35778,10,36419,15,calebchen0125 +35778,10,36419,15,capitanmimitos +35778,10,36419,15,capt carry on +35778,10,36419,15,carolpneves +35778,10,36419,15,carper27 +35778,10,36419,15,casensio17 +35778,10,36419,15,catscradle101 +35778,10,36419,15,catsonboardgames +35778,10,36419,15,cauletta +35778,10,36419,15,ccds +35778,10,36419,15,cck1977 +35778,10,36419,15,cdn hates snow +35778,10,36419,15,cealjo +35778,10,36419,15,celedhring +35778,10,36419,15,cesarramos +35778,10,36419,15,cetigol +35778,10,36419,15,charliedeegan +35778,10,36419,15,charlya +35778,10,36419,15,cheapskate +35778,10,36419,15,chelleblock +35778,10,36419,15,chemikally +35778,10,36419,15,chibbnchag +35778,10,36419,15,chippy242 +35778,10,36419,15,chishko4 +35778,10,36419,15,chodges21 +35778,10,36419,15,chronje +35778,10,36419,15,chroster +35778,10,36419,15,chunkymermaid +35778,10,36419,15,chwshen +35778,10,36419,15,cicloide84 +35778,10,36419,15,cklabonski +35778,10,36419,15,clage +35778,10,36419,15,clartann +35778,10,36419,15,classicl337 +35778,10,36419,15,clmdvd +35778,10,36419,15,cole_man55 +35778,10,36419,15,comicsserg +35778,10,36419,15,coolguy0955 +35778,10,36419,15,covsenerdit +35778,10,36419,15,coyo04 +35778,10,36419,15,cpt_pugwash +35778,10,36419,15,cptdiomedes +35778,10,36419,15,crankin666 +35778,10,36419,15,crazyj007 +35778,10,36419,15,crblais +35778,10,36419,15,crothlisberger +35778,10,36419,15,crysp +35778,10,36419,15,cthompsonguy +35778,10,36419,15,cucharilla45 +35778,10,36419,15,czaruuu +35778,10,36419,15,d2zl +35778,10,36419,15,daarunia +35778,10,36419,15,dagny88 +35778,10,36419,15,damnpixel +35778,10,36419,15,damondarth +35778,10,36419,15,dan van goyen +35778,10,36419,15,daphneann +35778,10,36419,15,daqius +35778,10,36419,15,dariaa_o +35778,10,36419,15,dariusb03 +35778,10,36419,15,darkening +35778,10,36419,15,dauntlessk +35778,10,36419,15,davece +35778,10,36419,15,davejw +35778,10,36419,15,dawoif +35778,10,36419,15,dawsonalex19 +35778,10,36419,15,day2dan +35778,10,36419,15,dazbro +35778,10,36419,15,dbreen27 +35778,10,36419,15,dearearthling +35778,10,36419,15,deat +35778,10,36419,15,def0r +35778,10,36419,15,deluii +35778,10,36419,15,denist +35778,10,36419,15,derfinot +35778,10,36419,15,dettmarp +35778,10,36419,15,devaquinn +35778,10,36419,15,diabloopi +35778,10,36419,15,dickun +35778,10,36419,15,diego90 +35778,10,36419,15,dirtdevl +35778,10,36419,15,dischord40 +35778,10,36419,15,djjolley +35778,10,36419,15,dlguiga +35778,10,36419,15,dlow +35778,10,36419,15,doctortuxedo +35778,10,36419,15,dogtarget +35778,10,36419,15,dolmansaxlil +35778,10,36419,15,donteatmeplease +35778,10,36419,15,doppelbock +35778,10,36419,15,double_z +35778,10,36419,15,doubtedlunchbox +35778,10,36419,15,dovafett +35778,10,36419,15,dr_loomis +35778,10,36419,15,drachetanzer +35778,10,36419,15,dragnipur494 +35778,10,36419,15,dragyn7 +35778,10,36419,15,driver1775 +35778,10,36419,15,drsmaug +35778,10,36419,15,dryrain +35778,10,36419,15,dsaxon +35778,10,36419,15,dukuntronic +35778,10,36419,15,durinnl +35778,10,36419,15,dvandereecken +35778,10,36419,15,echochee +35778,10,36419,15,edith333 +35778,10,36419,15,edomaiden +35778,10,36419,15,elbrycko +35778,10,36419,15,eleibowitz +35778,10,36419,15,eluvia +35778,10,36419,15,elviciodelocio +35778,10,36419,15,emole +35778,10,36419,15,endofdreams +35778,10,36419,15,enhasu +35778,10,36419,15,entiroir +35778,10,36419,15,ericchen93 +35778,10,36419,15,ernst72 +35778,10,36419,15,etighe +35778,10,36419,15,eulerpi +35778,10,36419,15,evanjohnson +35778,10,36419,15,evilninjaphil +35778,10,36419,15,evstank +35778,10,36419,15,ezekremiah +35778,10,36419,15,fairymcduck +35778,10,36419,15,fatpretzel +35778,10,36419,15,fermion +35778,10,36419,15,fikuhta +35778,10,36419,15,fischgeist +35778,10,36419,15,fish13one +35778,10,36419,15,fleecer +35778,10,36419,15,flenek +35778,10,36419,15,flvmtl +35778,10,36419,15,fox5903 +35778,10,36419,15,framb +35778,10,36419,15,friendof +35778,10,36419,15,fritolay +35778,10,36419,15,fritzbraun +35778,10,36419,15,funkcracker +35778,10,36419,15,fxndndg +35778,10,36419,15,game junkie +35778,10,36419,15,gamingtilldawn +35778,10,36419,15,garou +35778,10,36419,15,gatortuba +35778,10,36419,15,gcmandrake +35778,10,36419,15,geekguy1000110 +35778,10,36419,15,gelfur +35778,10,36419,15,george_anderson +35778,10,36419,15,georgetennisman +35778,10,36419,15,ghenov +35778,10,36419,15,glassairports +35778,10,36419,15,glowstickwar +35778,10,36419,15,gnza24 +35778,10,36419,15,goad15 +35778,10,36419,15,golferjim +35778,10,36419,15,gomatt +35778,10,36419,15,gordius +35778,10,36419,15,gowan +35778,10,36419,15,grandmarquis1986 +35778,10,36419,15,grauwacke +35778,10,36419,15,grave50 +35778,10,36419,15,graymice +35778,10,36419,15,grayousious +35778,10,36419,15,greatlands +35778,10,36419,15,greenknyght +35778,10,36419,15,greenmutt24 +35778,10,36419,15,gregkusumi +35778,10,36419,15,grend +35778,10,36419,15,grinch +35778,10,36419,15,gruffdris +35778,10,36419,15,gruul +35778,10,36419,15,grzegorzpl +35778,10,36419,15,gscolle +35778,10,36419,15,gunmanx +35778,10,36419,15,gzp___ +35778,10,36419,15,hamelj +35778,10,36419,15,hamiltonjames17 +35778,10,36419,15,hammer_ortiz +35778,10,36419,15,hansheld +35778,10,36419,15,harleymo +35778,10,36419,15,hawkowlgaming +35778,10,36419,15,heixue +35778,10,36419,15,helznicht +35778,10,36419,15,hemon +35778,10,36419,15,heroofevil +35778,10,36419,15,hexpixy +35778,10,36419,15,hoep +35778,10,36419,15,hoppel +35778,10,36419,15,hrgames +35778,10,36419,15,iamwildunknown +35778,10,36419,15,ic_xc +35778,10,36419,15,icurnvss +35778,10,36419,15,idaft +35778,10,36419,15,idcs0906 +35778,10,36419,15,ilex16 +35778,10,36419,15,iljake +35778,10,36419,15,imrryk77 +35778,10,36419,15,incanadaeh +35778,10,36419,15,indians32 +35778,10,36419,15,indywolfmanx64 +35778,10,36419,15,innsmouth_look +35778,10,36419,15,insektennest +35778,10,36419,15,iosifsp +35778,10,36419,15,isabellenadeau +35778,10,36419,15,jackt +35778,10,36419,15,jamiekysn +35778,10,36419,15,janelaakkonen +35778,10,36419,15,jangalinski +35778,10,36419,15,jarom_antes +35778,10,36419,15,jarrod39 +35778,10,36419,15,jarrodburns +35778,10,36419,15,jayv +35778,10,36419,15,jbdrft +35778,10,36419,15,jblubinus +35778,10,36419,15,jbmholkenborg +35778,10,36419,15,jcfore21 +35778,10,36419,15,jdkj +35778,10,36419,15,jedaye +35778,10,36419,15,jedistitch +35778,10,36419,15,jeldo +35778,10,36419,15,jellyfis +35778,10,36419,15,jellyfishjoe +35778,10,36419,15,jerodev +35778,10,36419,15,jevgenij88 +35778,10,36419,15,jgoehle +35778,10,36419,15,jhag odhan +35778,10,36419,15,jhdrn +35778,10,36419,15,jhmanso +35778,10,36419,15,jimosaurus +35778,10,36419,15,jjjanusss +35778,10,36419,15,jjxjj8 +35778,10,36419,15,jmhohensee +35778,10,36419,15,jminsi +35778,10,36419,15,jodyray25 +35778,10,36419,15,joearmonic +35778,10,36419,15,joecolade +35778,10,36419,15,johanseti +35778,10,36419,15,johnhandy +35778,10,36419,15,johnny dangerously +35778,10,36419,15,johnot234294 +35778,10,36419,15,jokersmiley +35778,10,36419,15,jollyroger77 +35778,10,36419,15,jonclayh +35778,10,36419,15,jonesgareth +35778,10,36419,15,jophan +35778,10,36419,15,josecarmonalh +35778,10,36419,15,joshripley2415 +35778,10,36419,15,jost +35778,10,36419,15,jsez444 +35778,10,36419,15,jugglinghands +35778,10,36419,15,jukejudlow +35778,10,36419,15,julio cesar +35778,10,36419,15,jussta +35778,10,36419,15,just old +35778,10,36419,15,justinhiltz +35778,10,36419,15,jwilliams3007 +35778,10,36419,15,jyef16 +35778,10,36419,15,kaicho6bd +35778,10,36419,15,kamja +35778,10,36419,15,kansaskyle +35778,10,36419,15,kapollard +35778,10,36419,15,kassir +35778,10,36419,15,katlan +35778,10,36419,15,katulu +35778,10,36419,15,kazinova +35778,10,36419,15,kazz711 +35778,10,36419,15,kelazon +35778,10,36419,15,kenndogg +35778,10,36419,15,kfuller412 +35778,10,36419,15,kiannello +35778,10,36419,15,kiliranshero +35778,10,36419,15,kilroy2626 +35778,10,36419,15,kingjabba +35778,10,36419,15,kipel +35778,10,36419,15,kiralyj +35778,10,36419,15,kiski205 +35778,10,36419,15,kistehro +35778,10,36419,15,kixdsky +35778,10,36419,15,klngi +35778,10,36419,15,kokichan +35778,10,36419,15,kostra1cz +35778,10,36419,15,koty +35778,10,36419,15,kounotori +35778,10,36419,15,krakonos +35778,10,36419,15,krayuns +35778,10,36419,15,krivens +35778,10,36419,15,kuakgan +35778,10,36419,15,kukumaku +35778,10,36419,15,kumokns +35778,10,36419,15,ladyg +35778,10,36419,15,laeron +35778,10,36419,15,laidbeck +35778,10,36419,15,lakesong +35778,10,36419,15,lakis21 +35778,10,36419,15,landrysooner +35778,10,36419,15,lankylou +35778,10,36419,15,latafrakt +35778,10,36419,15,laureneve +35778,10,36419,15,laurichi +35778,10,36419,15,lbertito +35778,10,36419,15,leffotsirk +35778,10,36419,15,leftas +35778,10,36419,15,legionarii +35778,10,36419,15,lengthtoavoid +35778,10,36419,15,leowynmartell10 +35778,10,36419,15,lextor +35778,10,36419,15,libbydoe +35778,10,36419,15,lilyh7 +35778,10,36419,15,lisp_rsq +35778,10,36419,15,litany_eu +35778,10,36419,15,littlenose +35778,10,36419,15,live_bait +35778,10,36419,15,lkotor +35778,10,36419,15,llanjaron +35778,10,36419,15,llyandrin +35778,10,36419,15,logic2nd +35778,10,36419,15,lombardo313 +35778,10,36419,15,longronsilver +35778,10,36419,15,lotraw +35778,10,36419,15,lours +35778,10,36419,15,lovecraftcountry +35778,10,36419,15,lovemegs +35778,10,36419,15,ltness +35778,10,36419,15,lubi123 +35778,10,36419,15,lucianodortas +35778,10,36419,15,luckyoneputt +35778,10,36419,15,lucmetal +35778,10,36419,15,lucyvers +35778,10,36419,15,luigivampa33 +35778,10,36419,15,luisin +35778,10,36419,15,lukemm +35778,10,36419,15,lukerboy +35778,10,36419,15,lws8888 +35778,10,36419,15,lyun73 +35778,10,36419,15,maalkor +35778,10,36419,15,mad0m +35778,10,36419,15,madbee +35778,10,36419,15,magagpa +35778,10,36419,15,magicdave321 +35778,10,36419,15,maloyarl +35778,10,36419,15,manarak +35778,10,36419,15,marac +35778,10,36419,15,marcodk +35778,10,36419,15,mario18cr +35778,10,36419,15,marjo285 +35778,10,36419,15,mark of the beast +35778,10,36419,15,markin0 +35778,10,36419,15,markraisin +35778,10,36419,15,martincastor +35778,10,36419,15,mat1da +35778,10,36419,15,materix01 +35778,10,36419,15,mathijs_gregoir +35778,10,36419,15,matim90 +35778,10,36419,15,mattersnotnow +35778,10,36419,15,maus007 +35778,10,36419,15,maxtermac +35778,10,36419,15,mb21guru +35778,10,36419,15,mckrakalaka +35778,10,36419,15,mcoppel +35778,10,36419,15,meeple_mit_hut +35778,10,36419,15,mehmets +35778,10,36419,15,meisterchow +35778,10,36419,15,mellman99 +35778,10,36419,15,memnos +35778,10,36419,15,meridiani +35778,10,36419,15,merlinius +35778,10,36419,15,merrickjo +35778,10,36419,15,mia123 +35778,10,36419,15,michal_filipiak +35778,10,36419,15,micklizzy +35778,10,36419,15,micromach +35778,10,36419,15,mightybluebeard +35778,10,36419,15,miguemarrano +35778,10,36419,15,mikecostanzo +35778,10,36419,15,miljenko +35778,10,36419,15,milouts +35778,10,36419,15,miniatureman +35778,10,36419,15,misasagi589 +35778,10,36419,15,missfie +35778,10,36419,15,mitch2011 +35778,10,36419,15,miwi +35778,10,36419,15,mkasser +35778,10,36419,15,mls1 +35778,10,36419,15,mmew626 +35778,10,36419,15,mnmdd +35778,10,36419,15,mntbrrycrunch11 +35778,10,36419,15,molluskscape +35778,10,36419,15,moniekepiek +35778,10,36419,15,monwich81 +35778,10,36419,15,mooseturd_tiger +35778,10,36419,15,moosh21 +35778,10,36419,15,mottelz +35778,10,36419,15,mourthus +35778,10,36419,15,mr_bickman +35778,10,36419,15,mr_demolka +35778,10,36419,15,mrbearry +35778,10,36419,15,mrbriandev +35778,10,36419,15,mrchungo +35778,10,36419,15,mrfunk +35778,10,36419,15,mrproxy3 +35778,10,36419,15,msparks +35778,10,36419,15,mtolsen33 +35778,10,36419,15,mule50 +35778,10,36419,15,murphjp +35778,10,36419,15,muscho +35778,10,36419,15,muyoze +35778,10,36419,15,muzrobertson +35778,10,36419,15,muzzinjapan +35778,10,36419,15,muzzle246 +35778,10,36419,15,mysticsoul512 +35778,10,36419,15,myxtappp +35778,10,36419,15,n0dramallama +35778,10,36419,15,nancypantsbr +35778,10,36419,15,naterpotater +35778,10,36419,15,nattyice +35778,10,36419,15,naughtyzombie +35778,10,36419,15,nebuhcaneza +35778,10,36419,15,ner0888 +35778,10,36419,15,nerdlingmum +35778,10,36419,15,nerfbuff +35778,10,36419,15,nervegas +35778,10,36419,15,netako +35778,10,36419,15,newobj +35778,10,36419,15,ngamer06 +35778,10,36419,15,nicg66 +35778,10,36419,15,nicholaskillin +35778,10,36419,15,nick_eades +35778,10,36419,15,nicobearn +35778,10,36419,15,nikola93 +35778,10,36419,15,nilblank +35778,10,36419,15,njr5 +35778,10,36419,15,nobselec +35778,10,36419,15,novashock +35778,10,36419,15,nows7 +35778,10,36419,15,ntoxin +35778,10,36419,15,nu89 +35778,10,36419,15,nukleik +35778,10,36419,15,nurpearl +35778,10,36419,15,nwolfe35 +35778,10,36419,15,nyhk23 +35778,10,36419,15,oborro +35778,10,36419,15,obzidian +35778,10,36419,15,ocbrad +35778,10,36419,15,odennsonn +35778,10,36419,15,ohmince +35778,10,36419,15,okorz001 +35778,10,36419,15,olawaco +35778,10,36419,15,onlyanothernsong +35778,10,36419,15,ontarget +35778,10,36419,15,onzebol +35778,10,36419,15,optimalplay +35778,10,36419,15,outlaw pete +35778,10,36419,15,pa35633 +35778,10,36419,15,pa5t0rd +35778,10,36419,15,paeskie +35778,10,36419,15,pajdl +35778,10,36419,15,paladinrush +35778,10,36419,15,panzergraf +35778,10,36419,15,papayaberry +35778,10,36419,15,paskq +35778,10,36419,15,patdragon +35778,10,36419,15,paul1986 +35778,10,36419,15,paverson +35778,10,36419,15,pavtip +35778,10,36419,15,paz_inc +35778,10,36419,15,pechy +35778,10,36419,15,peetreeblinky +35778,10,36419,15,peloquin81 +35778,10,36419,15,peng2526 +35778,10,36419,15,peqtymothem +35778,10,36419,15,pestanos11 +35778,10,36419,15,peterparker65 +35778,10,36419,15,pezburu +35778,10,36419,15,phantom69 +35778,10,36419,15,phatratpack +35778,10,36419,15,phenom92 +35778,10,36419,15,phillysmalls1026 +35778,10,36419,15,pibou +35778,10,36419,15,piet13 +35778,10,36419,15,pigio +35778,10,36419,15,pinkfloi +35778,10,36419,15,piotruspan +35778,10,36419,15,pixelatedpegasus +35778,10,36419,15,pkafel +35778,10,36419,15,plentz +35778,10,36419,15,ploderup +35778,10,36419,15,pnom143 +35778,10,36419,15,polo15 +35778,10,36419,15,potatomango +35778,10,36419,15,poznan1977 +35778,10,36419,15,pramman +35778,10,36419,15,preben88 +35778,10,36419,15,primavera87 +35778,10,36419,15,purpleprincess +35778,10,36419,15,quadrature_strategy +35778,10,36419,15,quicksand02 +35778,10,36419,15,quietleni +35778,10,36419,15,quimeraec +35778,10,36419,15,quinjamincy +35778,10,36419,15,quiz pwatt +35778,10,36419,15,quyckslvr +35778,10,36419,15,r8tzi +35778,10,36419,15,radiaki +35778,10,36419,15,raf richman +35778,10,36419,15,railman +35778,10,36419,15,ralfchr +35778,10,36419,15,rav2533 +35778,10,36419,15,ravensburger3 +35778,10,36419,15,raydiance6 +35778,10,36419,15,rccoll +35778,10,36419,15,rebeckak +35778,10,36419,15,recaster +35778,10,36419,15,reckoner +35778,10,36419,15,red tomacco +35778,10,36419,15,reddaza +35778,10,36419,15,redwhelp +35778,10,36419,15,reguuu +35778,10,36419,15,reinbakker64 +35778,10,36419,15,rendezvous_salatiga +35778,10,36419,15,renevanderlinden +35778,10,36419,15,renogeek +35778,10,36419,15,requiem online +35778,10,36419,15,rescuediver007 +35778,10,36419,15,riccardo91 +35778,10,36419,15,richieb +35778,10,36419,15,richo72 +35778,10,36419,15,riph85 +35778,10,36419,15,ritterton +35778,10,36419,15,rk86 +35778,10,36419,15,rkinkade +35778,10,36419,15,rkvk +35778,10,36419,15,rldoyle64 +35778,10,36419,15,robbie_7688 +35778,10,36419,15,robcannon +35778,10,36419,15,robert_stringer22888 +35778,10,36419,15,robobigfoot +35778,10,36419,15,robwebster +35778,10,36419,15,robymus +35778,10,36419,15,rockman1216 +35778,10,36419,15,rockplaza +35778,10,36419,15,rogerm +35778,10,36419,15,rolodium +35778,10,36419,15,romawhite +35778,10,36419,15,roshavi4ak +35778,10,36419,15,rozenbotteljam +35778,10,36419,15,ruber22 +35778,10,36419,15,rukus20 +35778,10,36419,15,runwildcat +35778,10,36419,15,ryokolaindw +35778,10,36419,15,ryukhan +35778,10,36419,15,saaman +35778,10,36419,15,saberj +35778,10,36419,15,salnihra +35778,10,36419,15,samsaboy +35778,10,36419,15,samuelbrissette +35778,10,36419,15,sandersmets +35778,10,36419,15,sanslos +35778,10,36419,15,sara1989 +35778,10,36419,15,sara_montoro +35778,10,36419,15,saranemeth +35778,10,36419,15,sarika +35778,10,36419,15,saucepockets +35778,10,36419,15,saw516 +35778,10,36419,15,scessor +35778,10,36419,15,schreini +35778,10,36419,15,sciencesax +35778,10,36419,15,scottydoesntknow +35778,10,36419,15,scrapyardarmory +35778,10,36419,15,scubastevekzoo +35778,10,36419,15,sdonohue +35778,10,36419,15,sebulba128 +35778,10,36419,15,senator52 +35778,10,36419,15,senorqueso +35778,10,36419,15,sethep +35778,10,36419,15,sethharr +35778,10,36419,15,sethicus +35778,10,36419,15,sfglbkf +35778,10,36419,15,sgtmaster +35778,10,36419,15,shanebrown +35778,10,36419,15,sharkytjark +35778,10,36419,15,shebby +35778,10,36419,15,shortandloud +35778,10,36419,15,shpongle +35778,10,36419,15,sidvix +35778,10,36419,15,siegmund1941 +35778,10,36419,15,silvercompassdesigns +35778,10,36419,15,simonjay77 +35778,10,36419,15,sinnedyam +35778,10,36419,15,sir_tonyx +35778,10,36419,15,sirjaguar +35778,10,36419,15,sirshysheep +35778,10,36419,15,skwib +35778,10,36419,15,sleevemcdichael +35778,10,36419,15,slightly askew +35778,10,36419,15,sliyan +35778,10,36419,15,smutteringplib +35778,10,36419,15,sot07 +35778,10,36419,15,sotnyk_lv +35778,10,36419,15,soulgain +35778,10,36419,15,soxpants +35778,10,36419,15,spezzafan39 +35778,10,36419,15,spiorog +35778,10,36419,15,sporc +35778,10,36419,15,sport25 +35778,10,36419,15,sprak_ +35778,10,36419,15,sprout100 +35778,10,36419,15,sr819 +35778,10,36419,15,stephen4lumis +35778,10,36419,15,stepx +35778,10,36419,15,steve.skywalker +35778,10,36419,15,stevelabny +35778,10,36419,15,stever87 +35778,10,36419,15,stoic squirrel +35778,10,36419,15,stonesand +35778,10,36419,15,strangeland49 +35778,10,36419,15,stucki +35778,10,36419,15,superdupergeek +35778,10,36419,15,sweetkiwi +35778,10,36419,15,swenn91 +35778,10,36419,15,switchbeat +35778,10,36419,15,switzer51 +35778,10,36419,15,syrinks +35778,10,36419,15,szesophie +35778,10,36419,15,szofi00 +35778,10,36419,15,t3njyxi +35778,10,36419,15,taavet +35778,10,36419,15,taiko_ts +35778,10,36419,15,talba610 +35778,10,36419,15,taranthewanderer +35778,10,36419,15,teddi +35778,10,36419,15,tedone +35778,10,36419,15,teje00 +35778,10,36419,15,teklaa87 +35778,10,36419,15,termini +35778,10,36419,15,terraformer +35778,10,36419,15,tewatko +35778,10,36419,15,tfoth +35778,10,36419,15,tharkun_dv +35778,10,36419,15,the plaid pirate +35778,10,36419,15,the10drforever +35778,10,36419,15,the_sylvan +35778,10,36419,15,theblackhole25 +35778,10,36419,15,thedancingclown +35778,10,36419,15,theflax +35778,10,36419,15,thekoni +35778,10,36419,15,thembl +35778,10,36419,15,thereat +35778,10,36419,15,thermicjosu34 +35778,10,36419,15,thomastkp +35778,10,36419,15,tiago92 +35778,10,36419,15,tiggerous +35778,10,36419,15,timboshwimbo +35778,10,36419,15,timminger74 +35778,10,36419,15,tkiem +35778,10,36419,15,tmoch +35778,10,36419,15,todor +35778,10,36419,15,tomaquin +35778,10,36419,15,tommimh +35778,10,36419,15,tompori +35778,10,36419,15,tomrel +35778,10,36419,15,tomtaylormlis +35778,10,36419,15,tonibeti +35778,10,36419,15,torti91 +35778,10,36419,15,toyempire +35778,10,36419,15,toyotawolf +35778,10,36419,15,traekos77 +35778,10,36419,15,traknast +35778,10,36419,15,trancendence_66 +35778,10,36419,15,trantor10 +35778,10,36419,15,trapezoidberg +35778,10,36419,15,trentontron +35778,10,36419,15,trev +35778,10,36419,15,trhoads +35778,10,36419,15,trickster79 +35778,10,36419,15,tripelius +35778,10,36419,15,tripleghost +35778,10,36419,15,trippleb9 +35778,10,36419,15,tstanek +35778,10,36419,15,tufturek +35778,10,36419,15,tylrprtr +35778,10,36419,15,umrmeche +35778,10,36419,15,unalc +35778,10,36419,15,unexpected party +35778,10,36419,15,unknownamnesiac +35778,10,36419,15,unoodle +35778,10,36419,15,urieldusk +35778,10,36419,15,vampero +35778,10,36419,15,vdmitry +35778,10,36419,15,vex85 +35778,10,36419,15,vic502 +35778,10,36419,15,vilarinho91 +35778,10,36419,15,virag +35778,10,36419,15,vittorioxxx +35778,10,36419,15,vizzerdricks +35778,10,36419,15,vkolbe +35778,10,36419,15,volfield +35778,10,36419,15,voodoomac +35778,10,36419,15,w0036471 +35778,10,36419,15,w0lf90 +35778,10,36419,15,wduluoz +35778,10,36419,15,whogoesfirst +35778,10,36419,15,wiebedierick +35778,10,36419,15,wilkinsjohns +35778,10,36419,15,willemwoestenenk +35778,10,36419,15,williamludlow +35778,10,36419,15,williar1 +35778,10,36419,15,willnurspielen +35778,10,36419,15,wolvie02 +35778,10,36419,15,wosly +35778,10,36419,15,wowgeek +35778,10,36419,15,wyman856 +35778,10,36419,15,wyvern1 +35778,10,36419,15,xabbusan +35778,10,36419,15,xh0n1 +35778,10,36419,15,xirus +35778,10,36419,15,xxtomek93xx +35778,10,36419,15,yaozu +35778,10,36419,15,yng21 +35778,10,36419,15,yngwie1751 +35778,10,36419,15,zabin +35778,10,36419,15,zadjs1 +35778,10,36419,15,zedoh6 +35778,10,36419,15,zetarho +35778,10,36419,15,zhit +35778,10,36419,15,zubi12 +35778,10,36419,15,zuggy +35778,10,36419,15,zuhzuhzuh +35778,10,36419,15,zulucore +35778,10,36419,15,zzzoren +35778,10,39699,14,2intensegamer +35778,10,39699,14,5eawolf +35778,10,39699,14,_sebs_ +35778,10,39699,14,aagrjr +35778,10,39699,14,abask +35778,10,39699,14,abc2030 +35778,10,39699,14,adamturner +35778,10,39699,14,adeptusace +35778,10,39699,14,adtopa +35778,10,39699,14,afrey15 +35778,10,39699,14,afternod +35778,10,39699,14,agamecafe +35778,10,39699,14,agent washingtub +35778,10,39699,14,agulanka +35778,10,39699,14,aguni524 +35778,10,39699,14,aithor_okami +35778,10,39699,14,akiosix +35778,10,39699,14,akitainu +35778,10,39699,14,akkedul +35778,10,39699,14,aldendegrit +35778,10,39699,14,ale_012 +35778,10,39699,14,aleksd +35778,10,39699,14,alexpet +35778,10,39699,14,alfieadams +35778,10,39699,14,alhay1959 +35778,10,39699,14,aliakel +35778,10,39699,14,alicelouise58 +35778,10,39699,14,aliplaysalot +35778,10,39699,14,allgamesnewnold +35778,10,39699,14,allzweck +35778,10,39699,14,alonsoaguilar +35778,10,39699,14,alphamale063 +35778,10,39699,14,alpopone +35778,10,39699,14,althecrazy +35778,10,39699,14,altoid guy +35778,10,39699,14,alzhiel +35778,10,39699,14,amadt5 +35778,10,39699,14,amilianna +35778,10,39699,14,aminsrz +35778,10,39699,14,amnos0405 +35778,10,39699,14,ancor +35778,10,39699,14,andrew leung +35778,10,39699,14,andrew2280 +35778,10,39699,14,andyload +35778,10,39699,14,andynosaure +35778,10,39699,14,andziksan +35778,10,39699,14,annabamama +35778,10,39699,14,another_stefan +35778,10,39699,14,ansem_t +35778,10,39699,14,anticharm +35778,10,39699,14,apfrisch +35778,10,39699,14,apokaluo +35778,10,39699,14,apophisbe +35778,10,39699,14,arekku +35778,10,39699,14,areyal +35778,10,39699,14,argsei43 +35778,10,39699,14,arianatarellia +35778,10,39699,14,arjuna12344321 +35778,10,39699,14,armagnac +35778,10,39699,14,arman2 +35778,10,39699,14,armandesigner +35778,10,39699,14,arnauldvm +35778,10,39699,14,arthurgeek +35778,10,39699,14,aruncjo +35778,10,39699,14,asariy +35778,10,39699,14,asgood23 +35778,10,39699,14,ashka36 +35778,10,39699,14,asphyxion +35778,10,39699,14,astien +35778,10,39699,14,attackroll +35778,10,39699,14,auracyanin +35778,10,39699,14,aurion707 +35778,10,39699,14,averkon +35778,10,39699,14,ayo23 +35778,10,39699,14,b93ppito +35778,10,39699,14,backslash0 +35778,10,39699,14,bailsofhay +35778,10,39699,14,baish +35778,10,39699,14,bakelitetm +35778,10,39699,14,balexander +35778,10,39699,14,balivo +35778,10,39699,14,band1t +35778,10,39699,14,bankerl +35778,10,39699,14,barnyddd +35778,10,39699,14,basti36 +35778,10,39699,14,bbulkley +35778,10,39699,14,beachmaus +35778,10,39699,14,beastofmizer +35778,10,39699,14,beatrizokamoto +35778,10,39699,14,beef2tony +35778,10,39699,14,beejune +35778,10,39699,14,beffatotale +35778,10,39699,14,belaragorn +35778,10,39699,14,belltowerjockey +35778,10,39699,14,bender850 +35778,10,39699,14,berenice614 +35778,10,39699,14,bergwombat +35778,10,39699,14,berto92 +35778,10,39699,14,bgg_ronie +35778,10,39699,14,bggthunder +35778,10,39699,14,bhladczuk +35778,10,39699,14,biedrone +35778,10,39699,14,bigoursbisou +35778,10,39699,14,binzer +35778,10,39699,14,bishop7734 +35778,10,39699,14,bishop8799 +35778,10,39699,14,bjacquet +35778,10,39699,14,boardgame_roof +35778,10,39699,14,bobafett89 +35778,10,39699,14,bobsquid +35778,10,39699,14,bobstepnowski +35778,10,39699,14,bock +35778,10,39699,14,bohner68 +35778,10,39699,14,bojomi +35778,10,39699,14,bolm +35778,10,39699,14,bootstrap +35778,10,39699,14,boredgamedad +35778,10,39699,14,bouchard4 +35778,10,39699,14,bouzou +35778,10,39699,14,bowserm +35778,10,39699,14,boyerling3 +35778,10,39699,14,brandilove +35778,10,39699,14,brantar +35778,10,39699,14,breakingpoint0 +35778,10,39699,14,brettspielmann +35778,10,39699,14,brightboarders +35778,10,39699,14,brilsmurf +35778,10,39699,14,briskknight +35778,10,39699,14,brittafilter +35778,10,39699,14,brochd +35778,10,39699,14,broders23 +35778,10,39699,14,brojn +35778,10,39699,14,brokito +35778,10,39699,14,broozels +35778,10,39699,14,brot_und_spiel +35778,10,39699,14,brotherjo +35778,10,39699,14,brumi +35778,10,39699,14,brunaldo9 +35778,10,39699,14,bryros +35778,10,39699,14,bsaucy +35778,10,39699,14,bszzsolt +35778,10,39699,14,btoddedalus +35778,10,39699,14,buchas +35778,10,39699,14,butch +35778,10,39699,14,buurin +35778,10,39699,14,bwohmie +35778,10,39699,14,caild +35778,10,39699,14,calvint +35778,10,39699,14,canaking13 +35778,10,39699,14,canblas +35778,10,39699,14,canglingy +35778,10,39699,14,capellablue +35778,10,39699,14,captain1957 +35778,10,39699,14,captain_bacon +35778,10,39699,14,captainobi +35778,10,39699,14,captainwow88 +35778,10,39699,14,caput mortuum +35778,10,39699,14,carcassian +35778,10,39699,14,cardboard_reflection +35778,10,39699,14,carissa_n_wonderland +35778,10,39699,14,carlosblanco +35778,10,39699,14,cassidykh +35778,10,39699,14,castrator +35778,10,39699,14,cathysbrain +35778,10,39699,14,cavs +35778,10,39699,14,ceripapa +35778,10,39699,14,cgg1989 +35778,10,39699,14,cgoss0929 +35778,10,39699,14,chaoslegs +35778,10,39699,14,chavi1206 +35778,10,39699,14,check6987 +35778,10,39699,14,cheese383 +35778,10,39699,14,chenproton +35778,10,39699,14,chim +35778,10,39699,14,chongheinrich +35778,10,39699,14,chriseyoung +35778,10,39699,14,chtitphilou +35778,10,39699,14,cidieffe +35778,10,39699,14,cjcjazz +35778,10,39699,14,cjp0605 +35778,10,39699,14,cjustinc +35778,10,39699,14,clawhook +35778,10,39699,14,cocobgg +35778,10,39699,14,coffy3 +35778,10,39699,14,colargol +35778,10,39699,14,coldfield +35778,10,39699,14,colonistu +35778,10,39699,14,commisaro +35778,10,39699,14,conanthepunctual +35778,10,39699,14,condabas +35778,10,39699,14,consaibot47 +35778,10,39699,14,cosmic_geek +35778,10,39699,14,couchoud +35778,10,39699,14,countaugust +35778,10,39699,14,cpagames +35778,10,39699,14,crazyg0od33 +35778,10,39699,14,critfaildelete +35778,10,39699,14,crowleyhammer +35778,10,39699,14,cruxford +35778,10,39699,14,cueing +35778,10,39699,14,cupcak +35778,10,39699,14,cuppajoe +35778,10,39699,14,cyrilw +35778,10,39699,14,d00mstalker +35778,10,39699,14,d_skywalk +35778,10,39699,14,dabackpt +35778,10,39699,14,dafarar +35778,10,39699,14,dallasdakota +35778,10,39699,14,damaga +35778,10,39699,14,damallo +35778,10,39699,14,dancad +35778,10,39699,14,dandeliona +35778,10,39699,14,danketch +35778,10,39699,14,danule +35778,10,39699,14,darkartistgirl +35778,10,39699,14,darkscorpius +35778,10,39699,14,darkwho2 +35778,10,39699,14,darrenledwards +35778,10,39699,14,dartez +35778,10,39699,14,dasich84 +35778,10,39699,14,datfadeaway +35778,10,39699,14,dave_au +35778,10,39699,14,daverve +35778,10,39699,14,davidpit94 +35778,10,39699,14,davidstat +35778,10,39699,14,dawson hettrick +35778,10,39699,14,dawson_osu +35778,10,39699,14,daymanin3d +35778,10,39699,14,dboeren +35778,10,39699,14,dcamp1976 +35778,10,39699,14,dchopa +35778,10,39699,14,dedaydedi +35778,10,39699,14,degenerateelite +35778,10,39699,14,delfar +35778,10,39699,14,deltaoak +35778,10,39699,14,deltic117 +35778,10,39699,14,deluxxe +35778,10,39699,14,demodus +35778,10,39699,14,derheroldzkg +35778,10,39699,14,derpy76 +35778,10,39699,14,deshasaquestion +35778,10,39699,14,deskjunkie91 +35778,10,39699,14,destinythinker +35778,10,39699,14,dgorgan +35778,10,39699,14,dh1983 +35778,10,39699,14,diefade +35778,10,39699,14,dienes +35778,10,39699,14,dijoist +35778,10,39699,14,discofix +35778,10,39699,14,djir +35778,10,39699,14,djneron +35778,10,39699,14,djr423 +35778,10,39699,14,djsongstorm +35778,10,39699,14,djusto +35778,10,39699,14,dmaldonado31 +35778,10,39699,14,dmpezan +35778,10,39699,14,dnus +35778,10,39699,14,dobbyhelpsmaster +35778,10,39699,14,dodkalm81 +35778,10,39699,14,doneal4180 +35778,10,39699,14,dorhan +35778,10,39699,14,doubled356 +35778,10,39699,14,dr_poulpito +35778,10,39699,14,dracomar +35778,10,39699,14,draggarg +35778,10,39699,14,dragonreborn01 +35778,10,39699,14,dreagan_luna +35778,10,39699,14,dreamshadow +35778,10,39699,14,drey1082 +35778,10,39699,14,drimas +35778,10,39699,14,drone6190 +35778,10,39699,14,dthipp +35778,10,39699,14,dthundr +35778,10,39699,14,dukesalamander +35778,10,39699,14,dummiz +35778,10,39699,14,durls54 +35778,10,39699,14,eblack +35778,10,39699,14,ebroder +35778,10,39699,14,edbutcher +35778,10,39699,14,edgerly +35778,10,39699,14,edwood86 +35778,10,39699,14,eilertsen +35778,10,39699,14,ejohnson2010 +35778,10,39699,14,el_demo +35778,10,39699,14,elderane +35778,10,39699,14,elderhat +35778,10,39699,14,elektra12 +35778,10,39699,14,elercey +35778,10,39699,14,eljenso6 +35778,10,39699,14,ellament +35778,10,39699,14,ellenripley +35778,10,39699,14,elvis82566 +35778,10,39699,14,embi04 +35778,10,39699,14,emperormeow +35778,10,39699,14,emutheelf +35778,10,39699,14,eomacedo +35778,10,39699,14,erks +35778,10,39699,14,erusnine +35778,10,39699,14,esperant0 +35778,10,39699,14,evanrchristo +35778,10,39699,14,evilcheesypoof +35778,10,39699,14,evitcelfer +35778,10,39699,14,exalander +35778,10,39699,14,exquisitecactus +35778,10,39699,14,exsercrat +35778,10,39699,14,extra beef +35778,10,39699,14,f4ll0ut +35778,10,39699,14,falconup +35778,10,39699,14,falkraptor +35778,10,39699,14,falloutfan +35778,10,39699,14,faratum +35778,10,39699,14,farling +35778,10,39699,14,farwalker +35778,10,39699,14,fatthon91 +35778,10,39699,14,fckw +35778,10,39699,14,fdelahoya +35778,10,39699,14,fdny2001 +35778,10,39699,14,fedon +35778,10,39699,14,fictionman +35778,10,39699,14,filthyron +35778,10,39699,14,firmeet +35778,10,39699,14,firthy11 +35778,10,39699,14,fisiot06 +35778,10,39699,14,flakespeare +35778,10,39699,14,flakvierling +35778,10,39699,14,flamebadger +35778,10,39699,14,flippyc +35778,10,39699,14,flipshot +35778,10,39699,14,fluka +35778,10,39699,14,flyingfish +35778,10,39699,14,foppish +35778,10,39699,14,forcepulse +35778,10,39699,14,fortunenglory_fan +35778,10,39699,14,fotch +35778,10,39699,14,francis +35778,10,39699,14,frankth +35778,10,39699,14,franmercado +35778,10,39699,14,fravi +35778,10,39699,14,fridayknightgames +35778,10,39699,14,frier +35778,10,39699,14,fulopkr14 +35778,10,39699,14,funstorm +35778,10,39699,14,furiousx +35778,10,39699,14,furlywurly +35778,10,39699,14,gabbehector +35778,10,39699,14,gabbi +35778,10,39699,14,game2board +35778,10,39699,14,gamegrl2 +35778,10,39699,14,gamer-stu +35778,10,39699,14,gamerdad +35778,10,39699,14,gamingguy912 +35778,10,39699,14,gandur +35778,10,39699,14,garberus +35778,10,39699,14,garflik +35778,10,39699,14,gatotonto +35778,10,39699,14,gembrera +35778,10,39699,14,geneprio +35778,10,39699,14,geodian +35778,10,39699,14,geoffking +35778,10,39699,14,gerben_k +35778,10,39699,14,gergo1977 +35778,10,39699,14,gerrminator +35778,10,39699,14,ggierling +35778,10,39699,14,gi_tom +35778,10,39699,14,giemes +35778,10,39699,14,gilnean +35778,10,39699,14,gimlet777 +35778,10,39699,14,ging3rjo3 +35778,10,39699,14,givagomorongma +35778,10,39699,14,gkempen +35778,10,39699,14,glash +35778,10,39699,14,glirp +35778,10,39699,14,gmarsau +35778,10,39699,14,gnidelwold +35778,10,39699,14,gnislew +35778,10,39699,14,goinghalvesongames +35778,10,39699,14,goldenkebab +35778,10,39699,14,gooodday +35778,10,39699,14,gopher of pern +35778,10,39699,14,gordus +35778,10,39699,14,gorkalonso +35778,10,39699,14,gorost +35778,10,39699,14,gotrek987 +35778,10,39699,14,grapeape +35778,10,39699,14,greenmachine001 +35778,10,39699,14,greensign +35778,10,39699,14,grey deceiver +35778,10,39699,14,grey9 +35778,10,39699,14,grignerd +35778,10,39699,14,grintus +35778,10,39699,14,grugno +35778,10,39699,14,grzged +35778,10,39699,14,gspott +35778,10,39699,14,gumgummo +35778,10,39699,14,gunslinger +35778,10,39699,14,hagsalman +35778,10,39699,14,halbsodoppelt +35778,10,39699,14,hallmarkie +35778,10,39699,14,hamstahuey +35778,10,39699,14,hanashiko +35778,10,39699,14,harbit +35778,10,39699,14,hardcase +35778,10,39699,14,harmonium +35778,10,39699,14,hausofqwert +35778,10,39699,14,hayda +35778,10,39699,14,helson +35778,10,39699,14,hendrigunauan +35778,10,39699,14,herrleichenwald +35778,10,39699,14,heyburt +35778,10,39699,14,hini2001 +35778,10,39699,14,holliday88 +35778,10,39699,14,homeycd +35778,10,39699,14,hun1ahpu +35778,10,39699,14,hurtle +35778,10,39699,14,huskerphin +35778,10,39699,14,hutchsea +35778,10,39699,14,i_c_y +35778,10,39699,14,ibiliss +35778,10,39699,14,iced +35778,10,39699,14,igloo cool +35778,10,39699,14,igrekk +35778,10,39699,14,ihatemusic +35778,10,39699,14,ikheun +35778,10,39699,14,il1ch +35778,10,39699,14,ilmena +35778,10,39699,14,iltonjr +35778,10,39699,14,imogen129 +35778,10,39699,14,imperialstout +35778,10,39699,14,inakirm +35778,10,39699,14,invarianz16 +35778,10,39699,14,inwardpanic +35778,10,39699,14,ipaav +35778,10,39699,14,iron_ravenstorm +35778,10,39699,14,iscariot +35778,10,39699,14,ispaghet +35778,10,39699,14,jack_cade +35778,10,39699,14,jackburtonjr +35778,10,39699,14,jackpritchard87 +35778,10,39699,14,jackshoku +35778,10,39699,14,jacobsommer +35778,10,39699,14,jagarklato +35778,10,39699,14,jajas83 +35778,10,39699,14,jakubwakiec +35778,10,39699,14,jandrul +35778,10,39699,14,jarekw +35778,10,39699,14,jarponen +35778,10,39699,14,jarratt +35778,10,39699,14,jaruffe +35778,10,39699,14,jassouille +35778,10,39699,14,jaster669 +35778,10,39699,14,javabird +35778,10,39699,14,jay_zrh +35778,10,39699,14,jaybiz +35778,10,39699,14,jayroe +35778,10,39699,14,jbeerdev +35778,10,39699,14,jbright +35778,10,39699,14,jdemarcos +35778,10,39699,14,jdgordon +35778,10,39699,14,jdhintx +35778,10,39699,14,jdm64 +35778,10,39699,14,jdoki +35778,10,39699,14,jdsellars +35778,10,39699,14,jedrial +35778,10,39699,14,jeffcomedy +35778,10,39699,14,jelly_titan +35778,10,39699,14,jennifermartin28 +35778,10,39699,14,jennius +35778,10,39699,14,jezior +35778,10,39699,14,jgbarea +35778,10,39699,14,jgulick +35778,10,39699,14,jiapeter +35778,10,39699,14,jiggly21 +35778,10,39699,14,jimmyd101 +35778,10,39699,14,jimmymania +35778,10,39699,14,jimnshelle +35778,10,39699,14,jlveld +35778,10,39699,14,jm1389 +35778,10,39699,14,joanna_h +35778,10,39699,14,joaoluizc +35778,10,39699,14,jobrious +35778,10,39699,14,joebananas +35778,10,39699,14,joekolade +35778,10,39699,14,joewyka +35778,10,39699,14,john_locke77 +35778,10,39699,14,johnbosscastle +35778,10,39699,14,johnrgordon +35778,10,39699,14,jokeralma +35778,10,39699,14,jonathanpost +35778,10,39699,14,jorgei_b +35778,10,39699,14,joseaguerof +35778,10,39699,14,josemodi +35778,10,39699,14,joshuadbruton +35778,10,39699,14,jossel_ozoryu +35778,10,39699,14,jouso +35778,10,39699,14,jovai +35778,10,39699,14,joz3 +35778,10,39699,14,jpmckane +35778,10,39699,14,jpnovello +35778,10,39699,14,judo artist +35778,10,39699,14,julienyaz +35778,10,39699,14,junkster775 +35778,10,39699,14,justino19 +35778,10,39699,14,jwkurusa +35778,10,39699,14,k1d_a +35778,10,39699,14,ka20 +35778,10,39699,14,kaelor_aetel +35778,10,39699,14,kafka +35778,10,39699,14,kalmanedit +35778,10,39699,14,kalywampas +35778,10,39699,14,kamashiri +35778,10,39699,14,karlo82 +35778,10,39699,14,karlob +35778,10,39699,14,kateh +35778,10,39699,14,kekko +35778,10,39699,14,kekouse +35778,10,39699,14,ken_nicholson +35778,10,39699,14,kerosone +35778,10,39699,14,kestutissan +35778,10,39699,14,kevin v +35778,10,39699,14,khader +35778,10,39699,14,khobal +35778,10,39699,14,kiekeboenl +35778,10,39699,14,kiggyerek +35778,10,39699,14,kimz0519 +35778,10,39699,14,kingbogly +35778,10,39699,14,kingoflions +35778,10,39699,14,kingonyborg +35778,10,39699,14,kingpikey +35778,10,39699,14,kinseysdad +35778,10,39699,14,kirtash17 +35778,10,39699,14,kitwick +35778,10,39699,14,kobus20 +35778,10,39699,14,koenigmingo +35778,10,39699,14,kollin +35778,10,39699,14,konrados +35778,10,39699,14,korrok421 +35778,10,39699,14,kourieien +35778,10,39699,14,kovan +35778,10,39699,14,kozzi +35778,10,39699,14,krakus98 +35778,10,39699,14,krenkel +35778,10,39699,14,kris_83 +35778,10,39699,14,kronic24601 +35778,10,39699,14,kubsio +35778,10,39699,14,kulaspg +35778,10,39699,14,kuniboo +35778,10,39699,14,kutozai +35778,10,39699,14,kyle kaizan +35778,10,39699,14,kylemonty86 +35778,10,39699,14,lammy73 +35778,10,39699,14,lampshade4 +35778,10,39699,14,lansan1ty +35778,10,39699,14,lanser84 +35778,10,39699,14,lassy +35778,10,39699,14,latex_666 +35778,10,39699,14,lawrencelove +35778,10,39699,14,le_geo26 +35778,10,39699,14,lebkuchenmann92 +35778,10,39699,14,leeuw62 +35778,10,39699,14,legendary3620 +35778,10,39699,14,legrey +35778,10,39699,14,lezplayboardgames +35778,10,39699,14,lilmc +35778,10,39699,14,limly +35778,10,39699,14,lindah82 +35778,10,39699,14,lionbahys +35778,10,39699,14,lionelandrew +35778,10,39699,14,littlematty +35778,10,39699,14,llthium +35778,10,39699,14,lobsterjohn +35778,10,39699,14,lock4815162342 +35778,10,39699,14,locusshifter +35778,10,39699,14,logicbalm +35778,10,39699,14,logicbomb +35778,10,39699,14,lohmaty +35778,10,39699,14,longboard +35778,10,39699,14,lord goon +35778,10,39699,14,lord nefarious +35778,10,39699,14,lordflashheart +35778,10,39699,14,lorenzopoli +35778,10,39699,14,lost_dm +35778,10,39699,14,loulaughlin +35778,10,39699,14,lpaniza +35778,10,39699,14,lpiche +35778,10,39699,14,lrickar1 +35778,10,39699,14,lubomirvaic +35778,10,39699,14,lucasalves +35778,10,39699,14,lucasplamondon +35778,10,39699,14,lucko21 +35778,10,39699,14,ludstifer +35778,10,39699,14,ludwigk +35778,10,39699,14,lukelebens +35778,10,39699,14,lustanap +35778,10,39699,14,lythari311 +35778,10,39699,14,m3mory +35778,10,39699,14,m4rch20 +35778,10,39699,14,maartend +35778,10,39699,14,machamaan86 +35778,10,39699,14,macpit +35778,10,39699,14,madela123 +35778,10,39699,14,mads544b +35778,10,39699,14,mafela +35778,10,39699,14,mahon +35778,10,39699,14,makhno1917 +35778,10,39699,14,makondo +35778,10,39699,14,malted +35778,10,39699,14,mandelweb +35778,10,39699,14,marcezpl +35778,10,39699,14,marcinesal +35778,10,39699,14,marco2020 +35778,10,39699,14,marcosdombroski +35778,10,39699,14,marcusfaith +35778,10,39699,14,marinush +35778,10,39699,14,markbloom +35778,10,39699,14,markcowper +35778,10,39699,14,markobee +35778,10,39699,14,martannen +35778,10,39699,14,marthian80 +35778,10,39699,14,marxy +35778,10,39699,14,masstran +35778,10,39699,14,masterreso +35778,10,39699,14,masterwu +35778,10,39699,14,matizito +35778,10,39699,14,mattchoules82 +35778,10,39699,14,mattyp9er +35778,10,39699,14,maverius32 +35778,10,39699,14,max_machine +35778,10,39699,14,maxartea +35778,10,39699,14,maxell +35778,10,39699,14,mayec +35778,10,39699,14,mazz_o +35778,10,39699,14,mdollin +35778,10,39699,14,mduck1985 +35778,10,39699,14,meadyokergamer +35778,10,39699,14,media_spin +35778,10,39699,14,medvebence +35778,10,39699,14,meepleexplorador +35778,10,39699,14,meeplesrwoodenpeople +35778,10,39699,14,megan de troyes +35778,10,39699,14,megg82 +35778,10,39699,14,meketnemty +35778,10,39699,14,meldryn +35778,10,39699,14,meleke +35778,10,39699,14,mercer505 +35778,10,39699,14,merchfriese +35778,10,39699,14,metitloup +35778,10,39699,14,meydenni +35778,10,39699,14,mgilmo +35778,10,39699,14,mhmail +35778,10,39699,14,michael6055 +35778,10,39699,14,michaeln91 +35778,10,39699,14,michal_kempka +35778,10,39699,14,michelleb2018 +35778,10,39699,14,mijal +35778,10,39699,14,mike_haxell +35778,10,39699,14,mikeinbc +35778,10,39699,14,minh_nguyen +35778,10,39699,14,mireco +35778,10,39699,14,miror +35778,10,39699,14,mishmish123 +35778,10,39699,14,misssadie +35778,10,39699,14,mistermouser +35778,10,39699,14,mithrarian +35778,10,39699,14,mittch +35778,10,39699,14,mjordanpower +35778,10,39699,14,mkrakoff +35778,10,39699,14,mkyrmse +35778,10,39699,14,mmuthig +35778,10,39699,14,mncsr +35778,10,39699,14,moggus +35778,10,39699,14,monterash +35778,10,39699,14,mormegil_khorne +35778,10,39699,14,morten larsen +35778,10,39699,14,moticon +35778,10,39699,14,move85 +35778,10,39699,14,mpires +35778,10,39699,14,mr4kul4 +35778,10,39699,14,mrcourtney +35778,10,39699,14,mrdissing +35778,10,39699,14,mrmanmatt +35778,10,39699,14,mrphildog +35778,10,39699,14,msanto +35778,10,39699,14,mugvaj +35778,10,39699,14,mulder69 +35778,10,39699,14,munchkinvall +35778,10,39699,14,murruy +35778,10,39699,14,murteas +35778,10,39699,14,muttonchopmac +35778,10,39699,14,mxl85 +35778,10,39699,14,mysteryhours +35778,10,39699,14,mysticeagle +35778,10,39699,14,mythmon +35778,10,39699,14,nagai +35778,10,39699,14,naiboc +35778,10,39699,14,nakamura +35778,10,39699,14,nakedbatboy +35778,10,39699,14,nammu +35778,10,39699,14,nanit +35778,10,39699,14,nanuk01 +35778,10,39699,14,nareshram121 +35778,10,39699,14,nasosp01 +35778,10,39699,14,navaro +35778,10,39699,14,nayrium +35778,10,39699,14,nekromisantrop +35778,10,39699,14,nelolis +35778,10,39699,14,neomander +35778,10,39699,14,neso91 +35778,10,39699,14,netjeret +35778,10,39699,14,nickmcnz +35778,10,39699,14,niftysc2 +35778,10,39699,14,nightbringer21 +35778,10,39699,14,nightmarizm +35778,10,39699,14,ninjap +35778,10,39699,14,njmclellan +35778,10,39699,14,nlspelernl +35778,10,39699,14,nmtadam +35778,10,39699,14,nodtonothing +35778,10,39699,14,norphinkr21 +35778,10,39699,14,nosdasil +35778,10,39699,14,nuckollz +35778,10,39699,14,nursedawn +35778,10,39699,14,nvthblake +35778,10,39699,14,nydor +35778,10,39699,14,nye1006 +35778,10,39699,14,objectgolf +35778,10,39699,14,ocir +35778,10,39699,14,odinq +35778,10,39699,14,oduh +35778,10,39699,14,oekobudde +35778,10,39699,14,ogzz +35778,10,39699,14,old_el_paso +35778,10,39699,14,olivigarden +35778,10,39699,14,omenar +35778,10,39699,14,onaldan +35778,10,39699,14,oramon +35778,10,39699,14,orderoftheflame +35778,10,39699,14,origman +35778,10,39699,14,oscar +35778,10,39699,14,oscargranberg +35778,10,39699,14,ostry2010 +35778,10,39699,14,ozimek +35778,10,39699,14,paberu +35778,10,39699,14,pablohere +35778,10,39699,14,paclac7 +35778,10,39699,14,paco104 +35778,10,39699,14,pad9 +35778,10,39699,14,pandachann +35778,10,39699,14,paolo kovrelho +35778,10,39699,14,paolo robino +35778,10,39699,14,patagiorgi +35778,10,39699,14,pathief +35778,10,39699,14,patoweb +35778,10,39699,14,paulomart +35778,10,39699,14,paupauet +35778,10,39699,14,pbflannery +35778,10,39699,14,pd_ok +35778,10,39699,14,pdx1elw +35778,10,39699,14,peartree +35778,10,39699,14,pekemon +35778,10,39699,14,pekko +35778,10,39699,14,peru500 +35778,10,39699,14,piquer +35778,10,39699,14,piticutzi +35778,10,39699,14,plixxi +35778,10,39699,14,plytho +35778,10,39699,14,polimorfizm +35778,10,39699,14,polloloco +35778,10,39699,14,popebabylon +35778,10,39699,14,porghar +35778,10,39699,14,poskasto +35778,10,39699,14,posullivan +35778,10,39699,14,potajillo +35778,10,39699,14,pscipio +35778,10,39699,14,psycospank +35778,10,39699,14,psyjam +35778,10,39699,14,psythe +35778,10,39699,14,puck4604 +35778,10,39699,14,pumpkin510 +35778,10,39699,14,pureair +35778,10,39699,14,q9w8e6 +35778,10,39699,14,quantaloup +35778,10,39699,14,queenpamedalah +35778,10,39699,14,quickdrawpdx +35778,10,39699,14,quidding +35778,10,39699,14,quuids +35778,10,39699,14,ra66it +35778,10,39699,14,radrart +35778,10,39699,14,raecrias +35778,10,39699,14,rafalolek +35778,10,39699,14,rafaukov +35778,10,39699,14,raffa80 +35778,10,39699,14,rahaka +35778,10,39699,14,ralafasko +35778,10,39699,14,ralphika +35778,10,39699,14,ramkitty +35778,10,39699,14,ramonpa +35778,10,39699,14,rap_14 +35778,10,39699,14,rarre +35778,10,39699,14,rattle1992 +35778,10,39699,14,raulikar +35778,10,39699,14,rawipon +35778,10,39699,14,rbruines +35778,10,39699,14,reaktiivi +35778,10,39699,14,red_bar1 +35778,10,39699,14,redmunster +35778,10,39699,14,reinhold23 +35778,10,39699,14,revenshadow +35778,10,39699,14,revlob +35778,10,39699,14,rexmadden +35778,10,39699,14,rgitzel +35778,10,39699,14,rhianna_ +35778,10,39699,14,rhonner +35778,10,39699,14,richard09 +35778,10,39699,14,rigole +35778,10,39699,14,rizban +35778,10,39699,14,rlddrummer +35778,10,39699,14,rmahone +35778,10,39699,14,rob3k +35778,10,39699,14,robert64 +35778,10,39699,14,robertthescott +35778,10,39699,14,robvel +35778,10,39699,14,rockchalk18 +35778,10,39699,14,rockm4nx +35778,10,39699,14,rogerrap +35778,10,39699,14,rogezno +35778,10,39699,14,romuk +35778,10,39699,14,ronanr +35778,10,39699,14,roo414 +35778,10,39699,14,roplesaurus +35778,10,39699,14,roskirth +35778,10,39699,14,royalsalaman +35778,10,39699,14,rremer +35778,10,39699,14,rrrray +35778,10,39699,14,rsmithx +35778,10,39699,14,rucky +35778,10,39699,14,rusakus +35778,10,39699,14,rutledgek +35778,10,39699,14,ryan wheeler +35778,10,39699,14,s3vn +35778,10,39699,14,sadek2 +35778,10,39699,14,saeok +35778,10,39699,14,sakuragi +35778,10,39699,14,salazar12eric +35778,10,39699,14,salomc +35778,10,39699,14,salvato +35778,10,39699,14,samaganda +35778,10,39699,14,sammitch +35778,10,39699,14,samofsiam +35778,10,39699,14,samruts +35778,10,39699,14,samuellowry +35778,10,39699,14,samuraj248 +35778,10,39699,14,sandrof +35778,10,39699,14,satrap92 +35778,10,39699,14,saxphonic +35778,10,39699,14,schaulustiger +35778,10,39699,14,schonochini +35778,10,39699,14,scottneil +35778,10,39699,14,scrambledmeggs +35778,10,39699,14,scubapauly +35778,10,39699,14,sean_68333 +35778,10,39699,14,sebasvstheocean +35778,10,39699,14,sebol1 +35778,10,39699,14,sebu_thefox +35778,10,39699,14,sedro +35778,10,39699,14,senhordetodoomal +35778,10,39699,14,sentientslayer +35778,10,39699,14,september +35778,10,39699,14,serginator +35778,10,39699,14,sgosaric +35778,10,39699,14,sgtredman +35778,10,39699,14,sh33sh +35778,10,39699,14,shadehoup +35778,10,39699,14,shadowjump +35778,10,39699,14,shaerka +35778,10,39699,14,shaggermeisterl +35778,10,39699,14,shineless +35778,10,39699,14,shortielah +35778,10,39699,14,shred17 +35778,10,39699,14,shudohsoccer +35778,10,39699,14,sigmazero13 +35778,10,39699,14,silentrob +35778,10,39699,14,silvenfire +35778,10,39699,14,simonmacwh +35778,10,39699,14,simonsencody +35778,10,39699,14,sir charles oslow 3 +35778,10,39699,14,sir_ollibolli +35778,10,39699,14,sirpierre +35778,10,39699,14,sistergray +35778,10,39699,14,skahmed +35778,10,39699,14,skinman +35778,10,39699,14,skjeggriske +35778,10,39699,14,skypirate +35778,10,39699,14,skyriderde +35778,10,39699,14,slakj +35778,10,39699,14,slenderpie +35778,10,39699,14,smartquin +35778,10,39699,14,snowlock92 +35778,10,39699,14,sockerpappan +35778,10,39699,14,solankaranga +35778,10,39699,14,sonicrick +35778,10,39699,14,sornars +35778,10,39699,14,soucpower +35778,10,39699,14,souldiver66 +35778,10,39699,14,sourcreamsuicide +35778,10,39699,14,sparklebutt +35778,10,39699,14,spbtool +35778,10,39699,14,spielossi +35778,10,39699,14,srboardgames +35778,10,39699,14,srgank +35778,10,39699,14,sricatti +35778,10,39699,14,starplayer +35778,10,39699,14,stephenlovsmith +35778,10,39699,14,steppenwolf83 +35778,10,39699,14,steve5uk20016 +35778,10,39699,14,stevenjump +35778,10,39699,14,steviec678 +35778,10,39699,14,stonebrook +35778,10,39699,14,strano +35778,10,39699,14,stratitoni +35778,10,39699,14,strawberryf00l +35778,10,39699,14,strickhouser +35778,10,39699,14,sttsunami +35778,10,39699,14,stupei +35778,10,39699,14,styrmirh +35778,10,39699,14,sumidur +35778,10,39699,14,supertito81 +35778,10,39699,14,superwotan +35778,10,39699,14,surguch +35778,10,39699,14,sushipasta +35778,10,39699,14,svatahor +35778,10,39699,14,swany +35778,10,39699,14,sweatmeanswin +35778,10,39699,14,swordman5 +35778,10,39699,14,sxmpxr +35778,10,39699,14,synnarc +35778,10,39699,14,szamár +35778,10,39699,14,szhveronika +35778,10,39699,14,szilgyo +35778,10,39699,14,tacoknight +35778,10,39699,14,taezer +35778,10,39699,14,taifu91 +35778,10,39699,14,takashi honda +35778,10,39699,14,talkstochalk +35778,10,39699,14,tallest_mexican +35778,10,39699,14,tanuki +35778,10,39699,14,targ_hotte +35778,10,39699,14,tarod +35778,10,39699,14,tbarlag +35778,10,39699,14,tdaan +35778,10,39699,14,tdmacrev +35778,10,39699,14,teemonek +35778,10,39699,14,tempar +35778,10,39699,14,temper +35778,10,39699,14,templararic +35778,10,39699,14,tepgoq +35778,10,39699,14,terraformingjosh +35778,10,39699,14,terramarsmystica +35778,10,39699,14,tgcrequiem +35778,10,39699,14,th3p4yn3 +35778,10,39699,14,th3tick +35778,10,39699,14,thaddel +35778,10,39699,14,thatoneguybrad +35778,10,39699,14,the_guide +35778,10,39699,14,the_omnius +35778,10,39699,14,thebigherman +35778,10,39699,14,thecasuals +35778,10,39699,14,thedocawesome +35778,10,39699,14,thedoctor7 +35778,10,39699,14,thedouglas +35778,10,39699,14,thegarking +35778,10,39699,14,thegoddamnbatman +35778,10,39699,14,theironicspark +35778,10,39699,14,themuricandictator +35778,10,39699,14,theonetar +35778,10,39699,14,therealcause +35778,10,39699,14,therealshakeyt +35778,10,39699,14,theriot +35778,10,39699,14,thombryc +35778,10,39699,14,thor93 +35778,10,39699,14,thorsten koch +35778,10,39699,14,thrander +35778,10,39699,14,threegalki +35778,10,39699,14,thuddeus +35778,10,39699,14,tickmanfan +35778,10,39699,14,tiger1982 +35778,10,39699,14,tigersfan +35778,10,39699,14,timo_t +35778,10,39699,14,timori +35778,10,39699,14,tinkivinkiinbotinki +35778,10,39699,14,tksc4 +35778,10,39699,14,tlawler13 +35778,10,39699,14,tograth +35778,10,39699,14,tolarianrector +35778,10,39699,14,tolero317 +35778,10,39699,14,tominatorx +35778,10,39699,14,tomjoad82 +35778,10,39699,14,tonique +35778,10,39699,14,tonyhawk127 +35778,10,39699,14,tootwagger +35778,10,39699,14,topaidi2002 +35778,10,39699,14,tothgeri +35778,10,39699,14,tragiccommons +35778,10,39699,14,travman5298 +35778,10,39699,14,trevdberry +35778,10,39699,14,triad1 +35778,10,39699,14,tricnik +35778,10,39699,14,tro6inson +35778,10,39699,14,troemck +35778,10,39699,14,tsoren +35778,10,39699,14,tumby1974 +35778,10,39699,14,tuncerny +35778,10,39699,14,twinpiiks +35778,10,39699,14,twinzus +35778,10,39699,14,tysonxy +35778,10,39699,14,udvi86 +35778,10,39699,14,uncle_sean +35778,10,39699,14,unclejosh +35778,10,39699,14,uphoe +35778,10,39699,14,uscfan4ever +35778,10,39699,14,v1ieg +35778,10,39699,14,val42 +35778,10,39699,14,valeriozaglio +35778,10,39699,14,validcat +35778,10,39699,14,vampwang +35778,10,39699,14,vangerwenfan1 +35778,10,39699,14,vengyr +35778,10,39699,14,verminose +35778,10,39699,14,victoriole +35778,10,39699,14,vious +35778,10,39699,14,volprj +35778,10,39699,14,w0tever +35778,10,39699,14,w_madcat +35778,10,39699,14,wade wilson +35778,10,39699,14,wala91 +35778,10,39699,14,waleslie +35778,10,39699,14,walksteady +35778,10,39699,14,wcp4to +35778,10,39699,14,wd354 +35778,10,39699,14,webabar +35778,10,39699,14,werder123 +35778,10,39699,14,whatgame +35778,10,39699,14,whippet82 +35778,10,39699,14,willdutch +35778,10,39699,14,williamns +35778,10,39699,14,willoo78 +35778,10,39699,14,wingate32 +35778,10,39699,14,wingtale +35778,10,39699,14,winooski +35778,10,39699,14,wiplash +35778,10,39699,14,wisbrian +35778,10,39699,14,wizardru +35778,10,39699,14,woebie +35778,10,39699,14,wojson +35778,10,39699,14,woodyrealm +35778,10,39699,14,woowoo997 +35778,10,39699,14,wozik +35778,10,39699,14,wunderslice +35778,10,39699,14,wwalser +35778,10,39699,14,xane +35778,10,39699,14,xsanfz +35778,10,39699,14,yadugar +35778,10,39699,14,yeichis +35778,10,39699,14,zantk +35778,10,39699,14,zarjanda +35778,10,39699,14,zbeast +35778,10,39699,14,zdge56 +35778,10,39699,14,zeegeit +35778,10,39699,14,zepphead5 +35778,10,39699,14,zigzou +35778,10,39699,14,znortax +35778,10,39699,14,zopper-alf +35778,10,39699,14,zuzu_son +35778,10,39699,14,zyzzyvas +35778,10,43246,13,0doacre +35778,10,43246,13,3ddevine +35778,10,43246,13,8cindylim8 +35778,10,43246,13,9snick4 +35778,10,43246,13,_mrq_ +35778,10,43246,13,_rvh_ +35778,10,43246,13,a2kddough +35778,10,43246,13,aamanley +35778,10,43246,13,abaffledwaffle +35778,10,43246,13,abletablegaming +35778,10,43246,13,aburgos +35778,10,43246,13,ac86 +35778,10,43246,13,acaelustitan +35778,10,43246,13,aceofsp4d3s +35778,10,43246,13,adamr +35778,10,43246,13,adamredwoods +35778,10,43246,13,adeegan +35778,10,43246,13,adel9591 +35778,10,43246,13,admanwebb +35778,10,43246,13,aegidus +35778,10,43246,13,affenhagel +35778,10,43246,13,aftermatik +35778,10,43246,13,agathorlehman +35778,10,43246,13,aggieamy +35778,10,43246,13,agressman +35778,10,43246,13,agydi +35778,10,43246,13,aheleine1 +35778,10,43246,13,ahuntsbe +35778,10,43246,13,airdrawn78 +35778,10,43246,13,airstyle99 +35778,10,43246,13,ajozbo +35778,10,43246,13,akke +35778,10,43246,13,akmma4 +35778,10,43246,13,akryphjel +35778,10,43246,13,ala i greg +35778,10,43246,13,alae +35778,10,43246,13,alamoth +35778,10,43246,13,alantfig +35778,10,43246,13,alasahi +35778,10,43246,13,alaskaner +35778,10,43246,13,alenasenk +35778,10,43246,13,alex110010 +35778,10,43246,13,alex_under +35778,10,43246,13,alexscarcella73 +35778,10,43246,13,alexsila +35778,10,43246,13,aligirl5867 +35778,10,43246,13,allienn +35778,10,43246,13,allisam +35778,10,43246,13,almant +35778,10,43246,13,altaripa +35778,10,43246,13,ambassador1 +35778,10,43246,13,analia_99 +35778,10,43246,13,anapaulandia +35778,10,43246,13,andersn +35778,10,43246,13,anderspree +35778,10,43246,13,andtoxnie +35778,10,43246,13,angel73 +35778,10,43246,13,anjo4711 +35778,10,43246,13,anna_kaa +35778,10,43246,13,annametreveli +35778,10,43246,13,anniebeth172 +35778,10,43246,13,anubislom +35778,10,43246,13,aoeaoeaoe +35778,10,43246,13,aoltean1976 +35778,10,43246,13,aott1989 +35778,10,43246,13,apotheos +35778,10,43246,13,araxe +35778,10,43246,13,arcane87 +35778,10,43246,13,archaicdevil +35778,10,43246,13,ard_ +35778,10,43246,13,ardmhacha +35778,10,43246,13,armani612 +35778,10,43246,13,arnorec +35778,10,43246,13,aropie +35778,10,43246,13,arsenal +35778,10,43246,13,artem88 +35778,10,43246,13,arthona +35778,10,43246,13,arythas +35778,10,43246,13,asgsnak +35778,10,43246,13,asinuss +35778,10,43246,13,aslanator +35778,10,43246,13,atliorn85 +35778,10,43246,13,atomikey +35778,10,43246,13,ausleh +35778,10,43246,13,auso +35778,10,43246,13,autumnsong13 +35778,10,43246,13,aweaponofchoice +35778,10,43246,13,awesomeunclet +35778,10,43246,13,azelrpg +35778,10,43246,13,b8841135 +35778,10,43246,13,bafo de onca +35778,10,43246,13,basicivanx +35778,10,43246,13,bassassassin +35778,10,43246,13,bayern307 +35778,10,43246,13,bburns +35778,10,43246,13,bdavis506 +35778,10,43246,13,beachgirlpcola +35778,10,43246,13,beal +35778,10,43246,13,bellemuis +35778,10,43246,13,bennettboy +35778,10,43246,13,bennybill +35778,10,43246,13,bensition +35778,10,43246,13,beresh +35778,10,43246,13,bettina_spelplezier +35778,10,43246,13,big_ed +35778,10,43246,13,billgrant +35778,10,43246,13,bittedabke +35778,10,43246,13,bittibixie +35778,10,43246,13,bjiwke +35778,10,43246,13,blakeolas +35778,10,43246,13,blekgc +35778,10,43246,13,blindanimator +35778,10,43246,13,blindrayge +35778,10,43246,13,bluesdancer +35778,10,43246,13,bluezio +35778,10,43246,13,bmorehou +35778,10,43246,13,boardgame_inspo +35778,10,43246,13,bobajob +35778,10,43246,13,bobpazjr +35778,10,43246,13,bobxx21 +35778,10,43246,13,boldleonidas +35778,10,43246,13,bondy05 +35778,10,43246,13,boonec +35778,10,43246,13,boredflak +35778,10,43246,13,boskelley +35778,10,43246,13,bosstempo +35778,10,43246,13,bosswald +35778,10,43246,13,boxboyo +35778,10,43246,13,boxesonboxes +35778,10,43246,13,boytink +35778,10,43246,13,bp9980 +35778,10,43246,13,brettspielnerd +35778,10,43246,13,brikken +35778,10,43246,13,brogshan +35778,10,43246,13,brooster +35778,10,43246,13,browncoat18 +35778,10,43246,13,brusashi +35778,10,43246,13,bsmart31 +35778,10,43246,13,bubblemakergamer +35778,10,43246,13,buhlertj +35778,10,43246,13,buliforma +35778,10,43246,13,burgelkutt +35778,10,43246,13,burgomaestre +35778,10,43246,13,burr510 +35778,10,43246,13,burzum51 +35778,10,43246,13,buschsoevn +35778,10,43246,13,cahuna +35778,10,43246,13,caiaphas +35778,10,43246,13,caithnes +35778,10,43246,13,cake_lover +35778,10,43246,13,cantalopian +35778,10,43246,13,captaincorbin +35778,10,43246,13,carbo20 +35778,10,43246,13,carbonjello +35778,10,43246,13,carnage50008 +35778,10,43246,13,carola1971 +35778,10,43246,13,carolynx98713 +35778,10,43246,13,carorasa +35778,10,43246,13,carrasco21 +35778,10,43246,13,carsonbrown +35778,10,43246,13,catanujaya +35778,10,43246,13,cbronander +35778,10,43246,13,cckj +35778,10,43246,13,ceelte +35778,10,43246,13,cele2 +35778,10,43246,13,cernunos +35778,10,43246,13,ceruleannn +35778,10,43246,13,cesaralves83 +35778,10,43246,13,chameau +35778,10,43246,13,changoperro +35778,10,43246,13,chel74 +35778,10,43246,13,chiesi +35778,10,43246,13,chilibean +35778,10,43246,13,chiquitta +35778,10,43246,13,chobmania +35778,10,43246,13,choosetimright +35778,10,43246,13,chrisaavfc +35778,10,43246,13,chubby +35778,10,43246,13,chull +35778,10,43246,13,cianolol +35778,10,43246,13,cicciburicci +35778,10,43246,13,cicobalico +35778,10,43246,13,clammy721 +35778,10,43246,13,clarinet00 +35778,10,43246,13,cloakedbartender +35778,10,43246,13,cmpterman2 +35778,10,43246,13,coldfury +35778,10,43246,13,colliath +35778,10,43246,13,colnago +35778,10,43246,13,compyweb +35778,10,43246,13,con_stanze +35778,10,43246,13,conundrum66 +35778,10,43246,13,cooprfbi +35778,10,43246,13,coprariedog +35778,10,43246,13,corgibuttz +35778,10,43246,13,cormyr +35778,10,43246,13,corneliusdamey +35778,10,43246,13,corross +35778,10,43246,13,corsariohierro +35778,10,43246,13,crawdad95 +35778,10,43246,13,crawler103 +35778,10,43246,13,crazierhorse +35778,10,43246,13,creems +35778,10,43246,13,cromusz +35778,10,43246,13,cyberkp +35778,10,43246,13,cycosan +35778,10,43246,13,cynotik +35778,10,43246,13,d1eg01 +35778,10,43246,13,daedaluszm +35778,10,43246,13,daermonwolf +35778,10,43246,13,daferr +35778,10,43246,13,daniair +35778,10,43246,13,danielrg34 +35778,10,43246,13,danimeir +35778,10,43246,13,daoshifu +35778,10,43246,13,darius241 +35778,10,43246,13,darkace78 +35778,10,43246,13,darkbrooklyn +35778,10,43246,13,darkdexter +35778,10,43246,13,darkrai08 +35778,10,43246,13,darkronin +35778,10,43246,13,dathkadan +35778,10,43246,13,davethevenerable +35778,10,43246,13,davidhazardous +35778,10,43246,13,davidsilos +35778,10,43246,13,davoy +35778,10,43246,13,davr87 +35778,10,43246,13,dawnglare +35778,10,43246,13,dbanks +35778,10,43246,13,dcamarsh +35778,10,43246,13,deebanasatron +35778,10,43246,13,dellskch +35778,10,43246,13,delooij +35778,10,43246,13,delsmore +35778,10,43246,13,demminik +35778,10,43246,13,derfos +35778,10,43246,13,derhannes +35778,10,43246,13,designbot +35778,10,43246,13,dexatwood +35778,10,43246,13,dharfold +35778,10,43246,13,dhmzeug +35778,10,43246,13,diatto +35778,10,43246,13,dicelove +35778,10,43246,13,diegosantos88 +35778,10,43246,13,digitaldemigod +35778,10,43246,13,dimanikus +35778,10,43246,13,dionne1993 +35778,10,43246,13,dipmoy +35778,10,43246,13,disc000 +35778,10,43246,13,diva de 21 +35778,10,43246,13,dmc977 +35778,10,43246,13,dmitrydavis +35778,10,43246,13,dniel +35778,10,43246,13,domagojd +35778,10,43246,13,domiend +35778,10,43246,13,dongdingly +35778,10,43246,13,donini_felipe +35778,10,43246,13,donstr +35778,10,43246,13,doojini1004 +35778,10,43246,13,dooley82 +35778,10,43246,13,doppelich 1412 +35778,10,43246,13,dotalizer +35778,10,43246,13,doughboy730 +35778,10,43246,13,dpl3987 +35778,10,43246,13,dr.octopus +35778,10,43246,13,dr_lavo +35778,10,43246,13,dragoonleader2011 +35778,10,43246,13,dramaplastika +35778,10,43246,13,drazhar +35778,10,43246,13,dreamotion +35778,10,43246,13,drew_of_independence +35778,10,43246,13,drjanitor37 +35778,10,43246,13,drmiller32 +35778,10,43246,13,drossier +35778,10,43246,13,drteeth65 +35778,10,43246,13,dslizz +35778,10,43246,13,dthompson +35778,10,43246,13,dumon +35778,10,43246,13,dy2018 +35778,10,43246,13,eapeas +35778,10,43246,13,eatyouroreos +35778,10,43246,13,ebisu03 +35778,10,43246,13,eclipse6 +35778,10,43246,13,edersonayres +35778,10,43246,13,edgarmarcel +35778,10,43246,13,eduardov_rj +35778,10,43246,13,educatedgravy +35778,10,43246,13,edword +35778,10,43246,13,ehro +35778,10,43246,13,ejedi +35778,10,43246,13,elakorte +35778,10,43246,13,elf_2000 +35778,10,43246,13,elisyna +35778,10,43246,13,ellen01 +35778,10,43246,13,elwoodbdr +35778,10,43246,13,emperor_neuro +35778,10,43246,13,ender72 +35778,10,43246,13,endie +35778,10,43246,13,enni10 +35778,10,43246,13,enonsense +35778,10,43246,13,erasmus5 +35778,10,43246,13,ericgrimm22 +35778,10,43246,13,erliandwiggin +35778,10,43246,13,erlik122 +35778,10,43246,13,estorsky +35778,10,43246,13,everybody_lies +35778,10,43246,13,evilsunz +35778,10,43246,13,excellentc +35778,10,43246,13,eyeofthebeholder +35778,10,43246,13,fabiomancino +35778,10,43246,13,fabseb +35778,10,43246,13,fardaza +35778,10,43246,13,fattaft23 +35778,10,43246,13,fecundity +35778,10,43246,13,fendra +35778,10,43246,13,feraswheel +35778,10,43246,13,ferdigan +35778,10,43246,13,fergalleon +35778,10,43246,13,fermmoylle +35778,10,43246,13,fiahwerkz +35778,10,43246,13,fighting squirrel +35778,10,43246,13,filmfreund +35778,10,43246,13,findi63 +35778,10,43246,13,findus +35778,10,43246,13,finkreg +35778,10,43246,13,firefighterjosh +35778,10,43246,13,fireslide +35778,10,43246,13,fireyaztce +35778,10,43246,13,firlefanz +35778,10,43246,13,fishgoat +35778,10,43246,13,fjongus +35778,10,43246,13,flamingwombat +35778,10,43246,13,fliegen +35778,10,43246,13,flinkis +35778,10,43246,13,flips13 +35778,10,43246,13,flohzirkus +35778,10,43246,13,flooli +35778,10,43246,13,flowmastahd +35778,10,43246,13,flutegirl +35778,10,43246,13,fone bone +35778,10,43246,13,fpraena +35778,10,43246,13,fraenrico +35778,10,43246,13,frecklefacebcb +35778,10,43246,13,fredsacramento +35778,10,43246,13,fridcot +35778,10,43246,13,friendfive +35778,10,43246,13,frodostunin +35778,10,43246,13,fulner +35778,10,43246,13,furiousbroccoli +35778,10,43246,13,g33k_babe +35778,10,43246,13,game aholic +35778,10,43246,13,gamebear13 +35778,10,43246,13,gamecaptain +35778,10,43246,13,gamegirlchic +35778,10,43246,13,gamingmaine +35778,10,43246,13,gantonioc +35778,10,43246,13,garcy +35778,10,43246,13,gaycawley +35778,10,43246,13,gazolyn +35778,10,43246,13,gedo +35778,10,43246,13,geekzap +35778,10,43246,13,geimz +35778,10,43246,13,geirinn +35778,10,43246,13,geldun +35778,10,43246,13,geoarg1981 +35778,10,43246,13,gernot1 +35778,10,43246,13,gianluigifauci +35778,10,43246,13,gianni88 +35778,10,43246,13,gibbsman +35778,10,43246,13,gizmo_ber +35778,10,43246,13,glenwn +35778,10,43246,13,glorioambe +35778,10,43246,13,glunsforddavis +35778,10,43246,13,gnimraw +35778,10,43246,13,goblingobbler +35778,10,43246,13,gohladucan +35778,10,43246,13,goliard +35778,10,43246,13,goreng17 +35778,10,43246,13,gotten55 +35778,10,43246,13,graad +35778,10,43246,13,grboulton1979 +35778,10,43246,13,greecian +35778,10,43246,13,greenpawn +35778,10,43246,13,greslack +35778,10,43246,13,grizzlygrowler +35778,10,43246,13,gtatters +35778,10,43246,13,gtessa +35778,10,43246,13,gthomas927 +35778,10,43246,13,guderian2 +35778,10,43246,13,guerrasalgado +35778,10,43246,13,guet +35778,10,43246,13,gunnar_j +35778,10,43246,13,guntervdauwera +35778,10,43246,13,gunther glockweiss +35778,10,43246,13,gunz2120 +35778,10,43246,13,gurusax +35778,10,43246,13,gusti +35778,10,43246,13,gwintner +35778,10,43246,13,gwvance +35778,10,43246,13,halin +35778,10,43246,13,haloot +35778,10,43246,13,hanfmann39 +35778,10,43246,13,hansolosuncle +35778,10,43246,13,harenki +35778,10,43246,13,harvey guesso +35778,10,43246,13,havlatm +35778,10,43246,13,hayabusakatana +35778,10,43246,13,heleniki +35778,10,43246,13,hgibbs03 +35778,10,43246,13,hgurov +35778,10,43246,13,hinne +35778,10,43246,13,hl_maddy +35778,10,43246,13,hoiwaiyuen +35778,10,43246,13,holliday50 +35778,10,43246,13,holysmoke +35778,10,43246,13,holzmann +35778,10,43246,13,honj +35778,10,43246,13,hotsaucewally +35778,10,43246,13,iamovidiu +35778,10,43246,13,ibanlopez +35778,10,43246,13,iceddawn +35778,10,43246,13,ifeelhorst +35778,10,43246,13,ifitfitsifitit +35778,10,43246,13,igameallday +35778,10,43246,13,imrahil6 +35778,10,43246,13,indianajo883 +35778,10,43246,13,indjk +35778,10,43246,13,indywiseguy +35778,10,43246,13,infiniwild +35778,10,43246,13,innsmouthmedic +35778,10,43246,13,inpaner +35778,10,43246,13,ipaul +35778,10,43246,13,iquito +35778,10,43246,13,ironoxide11 +35778,10,43246,13,irreprossible1 +35778,10,43246,13,isawawaldek +35778,10,43246,13,j0ebl0w +35778,10,43246,13,jackliw +35778,10,43246,13,jackson5399 +35778,10,43246,13,jagochdu +35778,10,43246,13,jahco1980 +35778,10,43246,13,jamesjimmynolan +35778,10,43246,13,janism +35778,10,43246,13,jarshman +35778,10,43246,13,jasofillo +35778,10,43246,13,jasonryan +35778,10,43246,13,javiersalber +35778,10,43246,13,javiriva +35778,10,43246,13,jaya +35778,10,43246,13,jbenz32 +35778,10,43246,13,jbh680 +35778,10,43246,13,jcosmic +35778,10,43246,13,jdq38 +35778,10,43246,13,jebsquatch21 +35778,10,43246,13,jeddercheese +35778,10,43246,13,jeefy +35778,10,43246,13,jeff4moso +35778,10,43246,13,jelomas +35778,10,43246,13,jensverwaest +35778,10,43246,13,jerdel +35778,10,43246,13,jermsdawg101 +35778,10,43246,13,jerry vercella +35778,10,43246,13,jerry2554 +35778,10,43246,13,jesberpen +35778,10,43246,13,jetinoto +35778,10,43246,13,jfjohnny5 +35778,10,43246,13,jimba81 +35778,10,43246,13,jimleigh1313 +35778,10,43246,13,jimmyjazz1982 +35778,10,43246,13,jimtacobs +35778,10,43246,13,jjosselyn +35778,10,43246,13,jlingwal +35778,10,43246,13,jmichael86 +35778,10,43246,13,jmlk +35778,10,43246,13,jo_gee +35778,10,43246,13,joaomiau +35778,10,43246,13,joaoperru +35778,10,43246,13,jockerhausen1 +35778,10,43246,13,joe_a +35778,10,43246,13,joebackgammon +35778,10,43246,13,joetelefair +35778,10,43246,13,johan andersson +35778,10,43246,13,joholil +35778,10,43246,13,jonisthebest +35778,10,43246,13,jonnaj +35778,10,43246,13,jono1989 +35778,10,43246,13,jonzard +35778,10,43246,13,jopek12 +35778,10,43246,13,jorgkuck +35778,10,43246,13,joseandres02gr +35778,10,43246,13,joulesfect +35778,10,43246,13,jricco101 +35778,10,43246,13,jslloyd +35778,10,43246,13,juanuxdelux +35778,10,43246,13,jugad insensatos +35778,10,43246,13,juliaisaway +35778,10,43246,13,junkbin +35778,10,43246,13,just_me_1990 +35778,10,43246,13,jvandooren +35778,10,43246,13,jvaught +35778,10,43246,13,jwelv +35778,10,43246,13,jyeackle +35778,10,43246,13,k2ruckus +35778,10,43246,13,kabalm +35778,10,43246,13,kacarfamily +35778,10,43246,13,kaijinchicken +35778,10,43246,13,kaktus morderca +35778,10,43246,13,kalmar86 +35778,10,43246,13,kamcor84 +35778,10,43246,13,kan_d +35778,10,43246,13,karloch +35778,10,43246,13,kdickerson_az +35778,10,43246,13,keebie +35778,10,43246,13,kegis79 +35778,10,43246,13,kenh +35778,10,43246,13,kenofthedead +35778,10,43246,13,kernmist +35778,10,43246,13,khlan +35778,10,43246,13,kidjersey +35778,10,43246,13,kiheeabaha +35778,10,43246,13,killermarmot +35778,10,43246,13,kilt46 +35778,10,43246,13,kilted viking +35778,10,43246,13,king82 +35778,10,43246,13,kingflo10 +35778,10,43246,13,kingfusser8 +35778,10,43246,13,kingofgraceland +35778,10,43246,13,kingsexylegs +35778,10,43246,13,kinkin +35778,10,43246,13,kk165 +35778,10,43246,13,kknaus +35778,10,43246,13,klbarrus +35778,10,43246,13,knives32 +35778,10,43246,13,knupug +35778,10,43246,13,kongkaj +35778,10,43246,13,konsta_wolf +35778,10,43246,13,kosatomi10 +35778,10,43246,13,krabs +35778,10,43246,13,krahnium +35778,10,43246,13,krinie_nl +35778,10,43246,13,kronosmasteroftime +35778,10,43246,13,krytain +35778,10,43246,13,krzysiekk86 +35778,10,43246,13,ks92310 +35778,10,43246,13,kshows +35778,10,43246,13,ktoff +35778,10,43246,13,ktothebey +35778,10,43246,13,kubo10 +35778,10,43246,13,kuir7987 +35778,10,43246,13,kungrico +35778,10,43246,13,kururu1 +35778,10,43246,13,kwanwen1987 +35778,10,43246,13,labyfan1313 +35778,10,43246,13,lada +35778,10,43246,13,lamadiluce +35778,10,43246,13,latex jedi +35778,10,43246,13,latron +35778,10,43246,13,lcrow +35778,10,43246,13,ldurrant20 +35778,10,43246,13,lechuck421 +35778,10,43246,13,leebot +35778,10,43246,13,leg00 +35778,10,43246,13,lega4 +35778,10,43246,13,legger +35778,10,43246,13,lemac +35778,10,43246,13,lemoworks +35778,10,43246,13,lercio +35778,10,43246,13,lestarp +35778,10,43246,13,lestat7 +35778,10,43246,13,levairich +35778,10,43246,13,lewinbgf +35778,10,43246,13,lexen +35778,10,43246,13,lexmanni +35778,10,43246,13,lilithgow +35778,10,43246,13,litk +35778,10,43246,13,littlebigeddy +35778,10,43246,13,lizzyserro +35778,10,43246,13,loboblack4 +35778,10,43246,13,lolis4allah +35778,10,43246,13,looney80 +35778,10,43246,13,lord nieve +35778,10,43246,13,lordofcarthago +35778,10,43246,13,lordqbix +35778,10,43246,13,loser23 +35778,10,43246,13,lucas bathaus +35778,10,43246,13,luckyd75 +35778,10,43246,13,luishsm +35778,10,43246,13,luisod +35778,10,43246,13,luldawen +35778,10,43246,13,luma_ +35778,10,43246,13,lunartofu +35778,10,43246,13,lurkmat +35778,10,43246,13,lutz68 +35778,10,43246,13,lwfrq80 +35778,10,43246,13,lyxye +35778,10,43246,13,m4rkoni +35778,10,43246,13,machelite +35778,10,43246,13,mackpoke +35778,10,43246,13,maclor +35778,10,43246,13,macroon70 +35778,10,43246,13,madmoon +35778,10,43246,13,maedchen_tanz +35778,10,43246,13,maedh +35778,10,43246,13,maelmorholt +35778,10,43246,13,magnetizer +35778,10,43246,13,makko94 +35778,10,43246,13,malkari +35778,10,43246,13,malross +35778,10,43246,13,mantao +35778,10,43246,13,manux1251 +35778,10,43246,13,marchus +35778,10,43246,13,marcus de bassus +35778,10,43246,13,marechal_massena +35778,10,43246,13,mari24 +35778,10,43246,13,marius6 +35778,10,43246,13,mark20 +35778,10,43246,13,marshallsimpson +35778,10,43246,13,martellhun +35778,10,43246,13,martinmcu +35778,10,43246,13,martinstikbakke +35778,10,43246,13,marvelousfloyd7 +35778,10,43246,13,mary1710 +35778,10,43246,13,masckedmaster +35778,10,43246,13,massoelsb +35778,10,43246,13,massyet +35778,10,43246,13,master78 +35778,10,43246,13,mathwhizuta +35778,10,43246,13,matt booker +35778,10,43246,13,mattbcha1 +35778,10,43246,13,mattisbananaman +35778,10,43246,13,mattyt91 +35778,10,43246,13,matyszm +35778,10,43246,13,maxrebo +35778,10,43246,13,maxx_uk +35778,10,43246,13,maygli +35778,10,43246,13,mazootman +35778,10,43246,13,mcculloh +35778,10,43246,13,mcraun +35778,10,43246,13,mcszarka +35778,10,43246,13,mcvikingpants +35778,10,43246,13,meercat1 +35778,10,43246,13,megalodon360 +35778,10,43246,13,meiere01 +35778,10,43246,13,meik +35778,10,43246,13,melack70 +35778,10,43246,13,melvinplays +35778,10,43246,13,mementomari +35778,10,43246,13,menguita +35778,10,43246,13,meran0 +35778,10,43246,13,mewzor +35778,10,43246,13,mfaulk80 +35778,10,43246,13,michaeldhm +35778,10,43246,13,michalrohnka +35778,10,43246,13,mightyice +35778,10,43246,13,mikaoj +35778,10,43246,13,mikemafia +35778,10,43246,13,mikevlo +35778,10,43246,13,mikusmaximus +35778,10,43246,13,milchlubi +35778,10,43246,13,mille12 +35778,10,43246,13,miloxcoco +35778,10,43246,13,milton +35778,10,43246,13,mindaras +35778,10,43246,13,mintilmidnight +35778,10,43246,13,mister lunch +35778,10,43246,13,mjmill13 +35778,10,43246,13,mjudee +35778,10,43246,13,mmeggles +35778,10,43246,13,moden13 +35778,10,43246,13,mohnkern +35778,10,43246,13,molgor +35778,10,43246,13,monsieur flynn +35778,10,43246,13,moonlight serenade +35778,10,43246,13,moosekretz +35778,10,43246,13,morganus +35778,10,43246,13,morsi +35778,10,43246,13,moscerino +35778,10,43246,13,moshbag +35778,10,43246,13,motta45 +35778,10,43246,13,mpcar14 +35778,10,43246,13,mr jon3s +35778,10,43246,13,mr_mountainman +35778,10,43246,13,mrbuckle +35778,10,43246,13,mrgarris0n +35778,10,43246,13,mrlink +35778,10,43246,13,mrsir5 +35778,10,43246,13,msryaninnyc +35778,10,43246,13,muccalla +35778,10,43246,13,murderdonut +35778,10,43246,13,mursiegalo +35778,10,43246,13,murwiz +35778,10,43246,13,mytt +35778,10,43246,13,n3lik +35778,10,43246,13,n8atkinson +35778,10,43246,13,nachlealbe +35778,10,43246,13,nachotron +35778,10,43246,13,nadisio19 +35778,10,43246,13,nanfer +35778,10,43246,13,nanodilwen +35778,10,43246,13,nappi +35778,10,43246,13,nasekunibert +35778,10,43246,13,nathan17w +35778,10,43246,13,nattybumpo +35778,10,43246,13,naufragos +35778,10,43246,13,navmachine +35778,10,43246,13,nebyoolae +35778,10,43246,13,neevan +35778,10,43246,13,neolord +35778,10,43246,13,neomatdam +35778,10,43246,13,nerdicle +35778,10,43246,13,nerdsbeware +35778,10,43246,13,nergal_lcn +35778,10,43246,13,newtothishobby +35778,10,43246,13,nezin +35778,10,43246,13,nichademos +35778,10,43246,13,nicknacks +35778,10,43246,13,nickws81 +35778,10,43246,13,nikoms +35778,10,43246,13,nilssonius +35778,10,43246,13,nimbre +35778,10,43246,13,niniane +35778,10,43246,13,ninjanja +35778,10,43246,13,nitrogenw +35778,10,43246,13,nivasoliveira +35778,10,43246,13,nnaten +35778,10,43246,13,no_use +35778,10,43246,13,nobwallace +35778,10,43246,13,noirxephon +35778,10,43246,13,norrman +35778,10,43246,13,norse_code +35778,10,43246,13,nrkissed +35778,10,43246,13,nsmaree +35778,10,43246,13,nunduj +35778,10,43246,13,nye27 +35778,10,43246,13,o5c4r +35778,10,43246,13,ocibear +35778,10,43246,13,oddyoddy +35778,10,43246,13,oggy04 +35778,10,43246,13,ohman84 +35778,10,43246,13,ohsun666 +35778,10,43246,13,olid +35778,10,43246,13,olli_gold +35778,10,43246,13,oly13 +35778,10,43246,13,omagnus +35778,10,43246,13,omentos +35778,10,43246,13,onslaughtwn +35778,10,43246,13,orkan68 +35778,10,43246,13,oseali +35778,10,43246,13,oslar +35778,10,43246,13,ostoja +35778,10,43246,13,oswaldtaylor +35778,10,43246,13,oszita +35778,10,43246,13,outlandian +35778,10,43246,13,ovaldo +35778,10,43246,13,oyobi7 +35778,10,43246,13,pacifico +35778,10,43246,13,paku +35778,10,43246,13,pakuul +35778,10,43246,13,pandemic_grid +35778,10,43246,13,pandemicshock +35778,10,43246,13,papayaparade +35778,10,43246,13,party hats +35778,10,43246,13,pat7734 +35778,10,43246,13,patrickwu0725 +35778,10,43246,13,paul65 +35778,10,43246,13,pavelr +35778,10,43246,13,pavin +35778,10,43246,13,pawseidon +35778,10,43246,13,pcjohnstone +35778,10,43246,13,pdaddy1015 +35778,10,43246,13,pdp_odin +35778,10,43246,13,pecas +35778,10,43246,13,pegazi1 +35778,10,43246,13,pepetelsueco +35778,10,43246,13,perkoz8 +35778,10,43246,13,pery22 +35778,10,43246,13,petemki +35778,10,43246,13,peter3555 +35778,10,43246,13,peterschoutteten +35778,10,43246,13,petew +35778,10,43246,13,pgtman +35778,10,43246,13,phatguydat +35778,10,43246,13,phildarb +35778,10,43246,13,philosoph +35778,10,43246,13,physicsgeektoo +35778,10,43246,13,pielogic +35778,10,43246,13,pigeoncamera +35778,10,43246,13,piotrek54 +35778,10,43246,13,piratedave84 +35778,10,43246,13,piratenpapa +35778,10,43246,13,pkhan +35778,10,43246,13,pkk516 +35778,10,43246,13,pleasureflamer +35778,10,43246,13,plumgeocat +35778,10,43246,13,pmdickey +35778,10,43246,13,pmmalmeida +35778,10,43246,13,polkmn7749 +35778,10,43246,13,polloctj +35778,10,43246,13,poly88 +35778,10,43246,13,pott_meeple +35778,10,43246,13,ppaltice +35778,10,43246,13,privilegedelitist +35778,10,43246,13,prju +35778,10,43246,13,punthehun +35778,10,43246,13,puopjik +35778,10,43246,13,pvtvoid +35778,10,43246,13,q_e_d +35778,10,43246,13,qbeck82 +35778,10,43246,13,qej_kike +35778,10,43246,13,quadraphonic +35778,10,43246,13,quebecsti +35778,10,43246,13,quetzal513 +35778,10,43246,13,quibily +35778,10,43246,13,quicksteady +35778,10,43246,13,radiofyr309 +35778,10,43246,13,radmik125 +35778,10,43246,13,raelity +35778,10,43246,13,rakion2141 +35778,10,43246,13,raksholi +35778,10,43246,13,rakuda1988 +35778,10,43246,13,rampshik +35778,10,43246,13,randomasduck +35778,10,43246,13,randomdumdums +35778,10,43246,13,randomshadow +35778,10,43246,13,rangan87 +35778,10,43246,13,rarmour18 +35778,10,43246,13,rasmus4690 +35778,10,43246,13,raw_wax +35778,10,43246,13,rbk2012 +35778,10,43246,13,realcele +35778,10,43246,13,redavthe1st +35778,10,43246,13,reillydolphin +35778,10,43246,13,reldresal +35778,10,43246,13,relequestual +35778,10,43246,13,renaat +35778,10,43246,13,renuka2010 +35778,10,43246,13,renzyhorrie +35778,10,43246,13,reoludico +35778,10,43246,13,retroshovel +35778,10,43246,13,retsam96 +35778,10,43246,13,revin07 +35778,10,43246,13,rexis +35778,10,43246,13,rianane +35778,10,43246,13,riblord +35778,10,43246,13,rich13 +35778,10,43246,13,richlcamp +35778,10,43246,13,riddlebox85 +35778,10,43246,13,rob96 +35778,10,43246,13,robertl87 +35778,10,43246,13,robinson4623 +35778,10,43246,13,rocketboots +35778,10,43246,13,rogpal +35778,10,43246,13,roi7 +35778,10,43246,13,roland08 +35778,10,43246,13,romanbickler +35778,10,43246,13,romfish +35778,10,43246,13,romtos +35778,10,43246,13,ron stuckel +35778,10,43246,13,rooiekazooie +35778,10,43246,13,rosie_187 +35778,10,43246,13,roycelin3 +35778,10,43246,13,royco_91 +35778,10,43246,13,rroby +35778,10,43246,13,rshipley +35778,10,43246,13,rsholtzer +35778,10,43246,13,rub99 +35778,10,43246,13,rubyskies +35778,10,43246,13,rugger0702 +35778,10,43246,13,rumbabum +35778,10,43246,13,rustedrain92 +35778,10,43246,13,rustic +35778,10,43246,13,rvrratt +35778,10,43246,13,rvtk +35778,10,43246,13,rycman +35778,10,43246,13,rynorem +35778,10,43246,13,ryocortsei +35778,10,43246,13,ryu101 +35778,10,43246,13,saifahli +35778,10,43246,13,saintarz +35778,10,43246,13,sakopip +35778,10,43246,13,saltyxylo +35778,10,43246,13,sandrab80 +35778,10,43246,13,sandys89 +35778,10,43246,13,sapien0101 +35778,10,43246,13,saspahrilla +35778,10,43246,13,savdog +35778,10,43246,13,seanboy21 +35778,10,43246,13,sebajdm +35778,10,43246,13,sebastian_alsing +35778,10,43246,13,sebastian_bergmann +35778,10,43246,13,sebelo2 +35778,10,43246,13,seniscram +35778,10,43246,13,sennet +35778,10,43246,13,septic_piggy +35778,10,43246,13,septimuspryme +35778,10,43246,13,seraphyym +35778,10,43246,13,sernnn +35778,10,43246,13,shaego950 +35778,10,43246,13,shafaegalo +35778,10,43246,13,shagans +35778,10,43246,13,shaneben +35778,10,43246,13,shavlik +35778,10,43246,13,shawnspring +35778,10,43246,13,shay81 +35778,10,43246,13,shion +35778,10,43246,13,shuttlefield +35778,10,43246,13,siddartha13 +35778,10,43246,13,silentg413 +35778,10,43246,13,silly_sausage +35778,10,43246,13,siloe +35778,10,43246,13,silverrobert +35778,10,43246,13,simonbnt +35778,10,43246,13,simonofx87 +35778,10,43246,13,simpak9 +35778,10,43246,13,sippi +35778,10,43246,13,sirc +35778,10,43246,13,sirmacarthur +35778,10,43246,13,sirmojo +35778,10,43246,13,siroj +35778,10,43246,13,sjua +35778,10,43246,13,skeze12 +35778,10,43246,13,skroob4prez +35778,10,43246,13,slackerking +35778,10,43246,13,slapymcgee +35778,10,43246,13,smallrobot +35778,10,43246,13,smitster +35778,10,43246,13,smschutte1 +35778,10,43246,13,snapdragoness +35778,10,43246,13,snezni +35778,10,43246,13,snrborn +35778,10,43246,13,snyperwulf +35778,10,43246,13,somi713 +35778,10,43246,13,soupness +35778,10,43246,13,spaceboot +35778,10,43246,13,spamspam2 +35778,10,43246,13,spatarum +35778,10,43246,13,spatulaguy +35778,10,43246,13,speedygerre +35778,10,43246,13,spicydisaster +35778,10,43246,13,spiosek +35778,10,43246,13,spoonbe +35778,10,43246,13,sport +35778,10,43246,13,spottydogs +35778,10,43246,13,squeakzaur +35778,10,43246,13,squeezle +35778,10,43246,13,srichod44 +35778,10,43246,13,startrackfan +35778,10,43246,13,steelazz +35778,10,43246,13,stevmachine +35778,10,43246,13,stoffl +35778,10,43246,13,stonecutter +35778,10,43246,13,strwuwwelpeter +35778,10,43246,13,stubentiger +35778,10,43246,13,stunke +35778,10,43246,13,sumo +35778,10,43246,13,sundog +35778,10,43246,13,supermarcelos +35778,10,43246,13,supertobal +35778,10,43246,13,suppe kasper +35778,10,43246,13,svtroya +35778,10,43246,13,swangie +35778,10,43246,13,switter +35778,10,43246,13,sydoniaa +35778,10,43246,13,sylba +35778,10,43246,13,t47rogue2 +35778,10,43246,13,tabletoplivestream +35778,10,43246,13,tachhire +35778,10,43246,13,taggrip +35778,10,43246,13,tailz +35778,10,43246,13,takfar +35778,10,43246,13,tallyhoyall +35778,10,43246,13,tatsumaki +35778,10,43246,13,tbm_burn +35778,10,43246,13,tborg4 +35778,10,43246,13,tehgh0s7 +35778,10,43246,13,telane +35778,10,43246,13,templedf +35778,10,43246,13,teomasatorius +35778,10,43246,13,terry_yan +35778,10,43246,13,tfairweather +35778,10,43246,13,tgov +35778,10,43246,13,thaikovsky +35778,10,43246,13,thatguy +35778,10,43246,13,thatvietguy +35778,10,43246,13,the admiral +35778,10,43246,13,the_crople +35778,10,43246,13,theboggler +35778,10,43246,13,thedenlin +35778,10,43246,13,thegameagent +35778,10,43246,13,thekirbstr +35778,10,43246,13,thelongshot +35778,10,43246,13,thenikopico +35778,10,43246,13,theotherkb +35778,10,43246,13,thetick077 +35778,10,43246,13,thewhichking +35778,10,43246,13,this_machine +35778,10,43246,13,thisgirlcanwrite +35778,10,43246,13,thomkpm +35778,10,43246,13,thrasho +35778,10,43246,13,thyuchev +35778,10,43246,13,tiktak23 +35778,10,43246,13,tinykitty +35778,10,43246,13,tito pulo 1976 +35778,10,43246,13,tlorow +35778,10,43246,13,tomtom3989 +35778,10,43246,13,toni_el_calvo +35778,10,43246,13,tonycog +35778,10,43246,13,tonydanzig +35778,10,43246,13,topherferguson1 +35778,10,43246,13,topherr +35778,10,43246,13,torgothegreat +35778,10,43246,13,tphilly +35778,10,43246,13,trajanus +35778,10,43246,13,transcend11 +35778,10,43246,13,tridens92 +35778,10,43246,13,truekid +35778,10,43246,13,trunkss +35778,10,43246,13,tscott +35778,10,43246,13,ttxyz +35778,10,43246,13,tuari +35778,10,43246,13,twilightskye +35778,10,43246,13,tyfys25 +35778,10,43246,13,tyler +35778,10,43246,13,tyrkkl +35778,10,43246,13,uberuberrich +35778,10,43246,13,umokden +35778,10,43246,13,uncleo +35778,10,43246,13,underdeks +35778,10,43246,13,ungvarizs +35778,10,43246,13,urbanwatts +35778,10,43246,13,urbinatajs +35778,10,43246,13,vahlir +35778,10,43246,13,valecom +35778,10,43246,13,vazquezmario +35778,10,43246,13,verasha +35778,10,43246,13,verive +35778,10,43246,13,verlisia +35778,10,43246,13,vetish +35778,10,43246,13,vicenc_mntmlo +35778,10,43246,13,viktorpersson +35778,10,43246,13,vinx911 +35778,10,43246,13,violetnaenae +35778,10,43246,13,viperman +35778,10,43246,13,vittorioso +35778,10,43246,13,vladdclingwrap +35778,10,43246,13,vladimirmarch +35778,10,43246,13,vladislavmalyy +35778,10,43246,13,vorpalfrog +35778,10,43246,13,vrzhch +35778,10,43246,13,vulvegang +35778,10,43246,13,vviijj +35778,10,43246,13,walkinge +35778,10,43246,13,wallawalla4591 +35778,10,43246,13,wambulance +35778,10,43246,13,warp75 +35778,10,43246,13,wasin +35778,10,43246,13,wazza454 +35778,10,43246,13,weceq +35778,10,43246,13,weezknight +35778,10,43246,13,weimpiece +35778,10,43246,13,wenas +35778,10,43246,13,wendyvdc +35778,10,43246,13,werdynerdy +35778,10,43246,13,wereknight +35778,10,43246,13,wetgos +35778,10,43246,13,whatsup42 +35778,10,43246,13,whiteshadowhk +35778,10,43246,13,wilbus +35778,10,43246,13,will565 +35778,10,43246,13,wmorales +35778,10,43246,13,wolf691 +35778,10,43246,13,woodandmeeples +35778,10,43246,13,wootfindle +35778,10,43246,13,wraythestl +35778,10,43246,13,wulfgarv +35778,10,43246,13,xigod +35778,10,43246,13,xnore81x +35778,10,43246,13,xplaygroundzerox +35778,10,43246,13,xruptor +35778,10,43246,13,xuspicillo +35778,10,43246,13,xweekend97 +35778,10,43246,13,xxjaredxx +35778,10,43246,13,xyhoo +35778,10,43246,13,ydigiusto13 +35778,10,43246,13,yeahtobi +35778,10,43246,13,yekrats +35778,10,43246,13,yessit +35778,10,43246,13,ymellz +35778,10,43246,13,yokochi +35778,10,43246,13,yossu +35778,10,43246,13,yowza71 +35778,10,43246,13,yuriy_yekovenko +35778,10,43246,13,zaireen +35778,10,43246,13,zajooo +35778,10,43246,13,zemus +35778,10,43246,13,zephired +35778,10,43246,13,zerosuit +35778,10,43246,13,zerosum +35778,10,43246,13,zetsubo +35778,10,43246,13,zhod +35778,10,43246,13,zodiac 26 +35778,10,43246,13,zohar84 +35778,10,43246,13,zoilberg1976 +35778,10,43246,13,zounds +35778,10,43246,13,zozzbomb +35778,10,43246,13,zpimpslappa +35778,10,43246,13,zugvogel +35778,10,43246,13,zultarra +35778,10,43246,13,zurzu +35778,10,43246,13,zwaq +35778,10,43246,13,zwyagel +35778,10,47029,12,aaalone +35778,10,47029,12,abinrml +35778,10,47029,12,absola16 +35778,10,47029,12,acrerake +35778,10,47029,12,adambruderer +35778,10,47029,12,adrian754 +35778,10,47029,12,aecorumbra +35778,10,47029,12,aevum decessus +35778,10,47029,12,agabban +35778,10,47029,12,ahmadneama +35778,10,47029,12,aioria0704 +35778,10,47029,12,akarabat +35778,10,47029,12,akimalenagamers +35778,10,47029,12,albatrocity +35778,10,47029,12,alexlouderback +35778,10,47029,12,alexpi +35778,10,47029,12,alfadur +35778,10,47029,12,alibanez +35778,10,47029,12,allfunandgames +35778,10,47029,12,allob +35778,10,47029,12,almahonbgg +35778,10,47029,12,alucard1440 +35778,10,47029,12,ame_31 +35778,10,47029,12,ancalagonthe black +35778,10,47029,12,ancyberturtle +35778,10,47029,12,andresbar +35778,10,47029,12,angel_p +35778,10,47029,12,annema +35778,10,47029,12,antiduke +35778,10,47029,12,antmpzs +35778,10,47029,12,anykyn +35778,10,47029,12,aoshi84 +35778,10,47029,12,apankarlsson +35778,10,47029,12,archerave +35778,10,47029,12,ardrikk +35778,10,47029,12,argylethunder +35778,10,47029,12,ariakus +35778,10,47029,12,armenj +35778,10,47029,12,arrakeen native +35778,10,47029,12,artfuldodgr42 +35778,10,47029,12,atlas76 +35778,10,47029,12,aztarun +35778,10,47029,12,badjulien +35778,10,47029,12,baguafox +35778,10,47029,12,bajablaster +35778,10,47029,12,baldur12c +35778,10,47029,12,bartlett_ +35778,10,47029,12,basacag +35778,10,47029,12,bayernmax82 +35778,10,47029,12,bayl234 +35778,10,47029,12,beggi +35778,10,47029,12,belgarath_ +35778,10,47029,12,bemas +35778,10,47029,12,benelfreako +35778,10,47029,12,bengereng +35778,10,47029,12,benisace +35778,10,47029,12,bibea +35778,10,47029,12,bicro +35778,10,47029,12,bigas138 +35778,10,47029,12,bigtop305 +35778,10,47029,12,bkgage +35778,10,47029,12,bkqc +35778,10,47029,12,blaby +35778,10,47029,12,black2lily +35778,10,47029,12,blakeburns20 +35778,10,47029,12,blamesimian +35778,10,47029,12,bmillerbwm +35778,10,47029,12,board together +35778,10,47029,12,boardgamesroomnl +35778,10,47029,12,boardmeup +35778,10,47029,12,bogey1974 +35778,10,47029,12,boredkat +35778,10,47029,12,bpiehler +35778,10,47029,12,brachychiton_84 +35778,10,47029,12,brainiac122 +35778,10,47029,12,bralrocker +35778,10,47029,12,bregus +35778,10,47029,12,brelsnhmr +35778,10,47029,12,brerfrog +35778,10,47029,12,britzel +35778,10,47029,12,buckyjoebill +35778,10,47029,12,bureke11 +35778,10,47029,12,butiki +35778,10,47029,12,c_purcell +35778,10,47029,12,calico_jack +35778,10,47029,12,calli thaala +35778,10,47029,12,cammo35 +35778,10,47029,12,carlos michan amado +35778,10,47029,12,cavalierseul +35778,10,47029,12,caveman_kevin +35778,10,47029,12,ccowan +35778,10,47029,12,celiboat +35778,10,47029,12,chaoticjigsaw +35778,10,47029,12,checkmate123 +35778,10,47029,12,chkogd +35778,10,47029,12,chrisstark +35778,10,47029,12,chronotab +35778,10,47029,12,chrstphrrbn +35778,10,47029,12,chutchi +35778,10,47029,12,cicatriz +35778,10,47029,12,cimbaman +35778,10,47029,12,clairepeebles1 +35778,10,47029,12,clavillo +35778,10,47029,12,clesius +35778,10,47029,12,clinisbud +35778,10,47029,12,clockworks204 +35778,10,47029,12,cloudweaver +35778,10,47029,12,cmicha +35778,10,47029,12,cowstriker +35778,10,47029,12,crimsonphoenix75 +35778,10,47029,12,crosswayboy +35778,10,47029,12,cruxterminatus +35778,10,47029,12,cubit2017 +35778,10,47029,12,curiousdesimind +35778,10,47029,12,cwcase +35778,10,47029,12,cybernetiko82 +35778,10,47029,12,cycopath +35778,10,47029,12,cynch +35778,10,47029,12,dajohns +35778,10,47029,12,danielbs +35778,10,47029,12,danieldac10 +35778,10,47029,12,danik13 +35778,10,47029,12,danurq +35778,10,47029,12,dargonsheinto +35778,10,47029,12,darkimus_prime +35778,10,47029,12,darklord2160 +35778,10,47029,12,darkshu +35778,10,47029,12,darschs +35778,10,47029,12,darth_siegfried +35778,10,47029,12,dave442 +35778,10,47029,12,david35 +35778,10,47029,12,davypi +35778,10,47029,12,dawue +35778,10,47029,12,dbler +35778,10,47029,12,dchird +35778,10,47029,12,ddkk +35778,10,47029,12,de struikrover +35778,10,47029,12,debasercl +35778,10,47029,12,dedfly +35778,10,47029,12,deehizzle +35778,10,47029,12,deej1976 +35778,10,47029,12,derekpears +35778,10,47029,12,deva7 +35778,10,47029,12,dexter g +35778,10,47029,12,dextrous +35778,10,47029,12,dezza88 +35778,10,47029,12,dice_chucker +35778,10,47029,12,didi81 +35778,10,47029,12,dimon22_g +35778,10,47029,12,diometri +35778,10,47029,12,dmfn +35778,10,47029,12,dobernike +35778,10,47029,12,doctorbox +35778,10,47029,12,donb +35778,10,47029,12,donvitos +35778,10,47029,12,doogie581 +35778,10,47029,12,dp1180 +35778,10,47029,12,drahken +35778,10,47029,12,drbrucington +35778,10,47029,12,drdombor +35778,10,47029,12,drush kabob +35778,10,47029,12,dsheatz +35778,10,47029,12,dtg3lilones +35778,10,47029,12,duelknives +35778,10,47029,12,dunderdarkie +35778,10,47029,12,duolith +35778,10,47029,12,dvrblast86 +35778,10,47029,12,e0001 +35778,10,47029,12,eastermonday +35778,10,47029,12,eddy7477 +35778,10,47029,12,ederfb +35778,10,47029,12,edualmer +35778,10,47029,12,eekki +35778,10,47029,12,eelberg +35778,10,47029,12,egoszmotyke +35778,10,47029,12,eherron +35778,10,47029,12,ekath +35778,10,47029,12,el heredero +35778,10,47029,12,eleanora_ +35778,10,47029,12,eledrion +35778,10,47029,12,elfje +35778,10,47029,12,embarrassed_ad_5884 +35778,10,47029,12,emilcavan +35778,10,47029,12,eofet +35778,10,47029,12,epicdiscardpile +35778,10,47029,12,erax +35778,10,47029,12,eric0871 +35778,10,47029,12,ersan +35778,10,47029,12,eskrut +35778,10,47029,12,essszz +35778,10,47029,12,ethman42 +35778,10,47029,12,eug1 +35778,10,47029,12,evilantal +35778,10,47029,12,evileyemcfungus +35778,10,47029,12,eyalgrossman +35778,10,47029,12,fabrice feller +35778,10,47029,12,fakxyz +35778,10,47029,12,fangirl +35778,10,47029,12,fenrirgarm +35778,10,47029,12,firox +35778,10,47029,12,firstin +35778,10,47029,12,five ahn +35778,10,47029,12,fivesheff +35778,10,47029,12,flash09ca +35778,10,47029,12,flowerfox +35778,10,47029,12,fofo8fl +35778,10,47029,12,fonza +35778,10,47029,12,fraist +35778,10,47029,12,framorin +35778,10,47029,12,frankys85 +35778,10,47029,12,fremenul +35778,10,47029,12,friendlyusertester +35778,10,47029,12,frozensushi +35778,10,47029,12,furiafranza +35778,10,47029,12,gamelover28 +35778,10,47029,12,gamer kal +35778,10,47029,12,ganint80 +35778,10,47029,12,garomi +35778,10,47029,12,gas73 +35778,10,47029,12,gatopardo7 +35778,10,47029,12,gavman225 +35778,10,47029,12,gayofina +35778,10,47029,12,gex_6 +35778,10,47029,12,ghospi +35778,10,47029,12,gibsongirl +35778,10,47029,12,gidiy +35778,10,47029,12,gillesheinisch +35778,10,47029,12,giradvanced +35778,10,47029,12,gonten +35778,10,47029,12,goobus +35778,10,47029,12,gorin +35778,10,47029,12,gottagame9000 +35778,10,47029,12,grax_earthgrinder +35778,10,47029,12,greatslack +35778,10,47029,12,grognard +35778,10,47029,12,groovenz +35778,10,47029,12,grumpug +35778,10,47029,12,gsgreatscot +35778,10,47029,12,gudi24 +35778,10,47029,12,guitardog +35778,10,47029,12,gundabad +35778,10,47029,12,gwsned +35778,10,47029,12,hakushaku +35778,10,47029,12,halfbrian +35778,10,47029,12,hankmccoy78 +35778,10,47029,12,hanzee +35778,10,47029,12,happyax +35778,10,47029,12,harrypuuter +35778,10,47029,12,hashlock +35778,10,47029,12,hayleysummer +35778,10,47029,12,helen_sav +35778,10,47029,12,hellgiss +35778,10,47029,12,hendrikrassmann +35778,10,47029,12,henku85 +35778,10,47029,12,hermokrates +35778,10,47029,12,herth +35778,10,47029,12,heyheymatthias +35778,10,47029,12,hiphopapatamus +35778,10,47029,12,hlruben +35778,10,47029,12,hoovape +35778,10,47029,12,horgboth +35778,10,47029,12,hustlerone +35778,10,47029,12,hutcharmy +35778,10,47029,12,iamsliou +35778,10,47029,12,iankez +35778,10,47029,12,ibtpreviews +35778,10,47029,12,idlewildblu +35778,10,47029,12,igzeppa +35778,10,47029,12,ikhor +35778,10,47029,12,iksu +35778,10,47029,12,illusion +35778,10,47029,12,imanolm +35778,10,47029,12,immortaldragon +35778,10,47029,12,inkstainedpapers +35778,10,47029,12,innerwalker +35778,10,47029,12,insomne +35778,10,47029,12,israft +35778,10,47029,12,iulius73 +35778,10,47029,12,jackransom +35778,10,47029,12,jacobcstephens13 +35778,10,47029,12,jals26 +35778,10,47029,12,jameskirkb10 +35778,10,47029,12,jamie +35778,10,47029,12,janispu +35778,10,47029,12,janu75 +35778,10,47029,12,jasonkw +35778,10,47029,12,jayhawk1219 +35778,10,47029,12,jdelrio +35778,10,47029,12,jeanmichmuch +35778,10,47029,12,jeraturc +35778,10,47029,12,jerevinan +35778,10,47029,12,jgreer17 +35778,10,47029,12,jhenry30 +35778,10,47029,12,jhin +35778,10,47029,12,jhunn41 +35778,10,47029,12,jimtrott +35778,10,47029,12,jjaime93 +35778,10,47029,12,jlsons +35778,10,47029,12,joeking127 +35778,10,47029,12,johny92 +35778,10,47029,12,jonathangmeyer +35778,10,47029,12,jonxthxn +35778,10,47029,12,josdelage +35778,10,47029,12,joselinares92 +35778,10,47029,12,jphyde9 +35778,10,47029,12,jrmytllmn +35778,10,47029,12,juand182 +35778,10,47029,12,julyie +35778,10,47029,12,jumpingsquare +35778,10,47029,12,justin1923 +35778,10,47029,12,jwilhm +35778,10,47029,12,jwillis2179 +35778,10,47029,12,jxd1689 +35778,10,47029,12,k_waterman +35778,10,47029,12,kaarukun +35778,10,47029,12,kairos75 +35778,10,47029,12,kakadorushoeve +35778,10,47029,12,kakambas90 +35778,10,47029,12,kame4 +35778,10,47029,12,kamil powalowski +35778,10,47029,12,kapraman +35778,10,47029,12,karn13 +35778,10,47029,12,kastir +35778,10,47029,12,kat_splat +35778,10,47029,12,katang +35778,10,47029,12,keelan1982 +35778,10,47029,12,kentherrien +35778,10,47029,12,ki_el +35778,10,47029,12,kichigai +35778,10,47029,12,kikerus27 +35778,10,47029,12,killinghope +35778,10,47029,12,kilmister83 +35778,10,47029,12,kinekor02 +35778,10,47029,12,kjelle94 +35778,10,47029,12,kkarenblabla +35778,10,47029,12,knilsch +35778,10,47029,12,kollapse +35778,10,47029,12,kouther +35778,10,47029,12,kronko +35778,10,47029,12,krzyiwa +35778,10,47029,12,kschultz +35778,10,47029,12,kulakov512 +35778,10,47029,12,kvintal +35778,10,47029,12,l0ser +35778,10,47029,12,lamachine +35778,10,47029,12,lampone +35778,10,47029,12,lardhead +35778,10,47029,12,largovos +35778,10,47029,12,larrywithonel +35778,10,47029,12,lartasster +35778,10,47029,12,laryl +35778,10,47029,12,ledne +35778,10,47029,12,leejs +35778,10,47029,12,leekenshin +35778,10,47029,12,lepintoi +35778,10,47029,12,lettuce fish +35778,10,47029,12,levibushue +35778,10,47029,12,liamn +35778,10,47029,12,lightranger17 +35778,10,47029,12,liih_ +35778,10,47029,12,lingersky +35778,10,47029,12,lion_l +35778,10,47029,12,loaru +35778,10,47029,12,loias +35778,10,47029,12,lolowest +35778,10,47029,12,loneraider01 +35778,10,47029,12,longlivesquare +35778,10,47029,12,loopioh +35778,10,47029,12,louchris +35778,10,47029,12,lowbeam +35778,10,47029,12,lozkin +35778,10,47029,12,lprunk +35778,10,47029,12,lukeypru +35778,10,47029,12,m__g +35778,10,47029,12,macennis +35778,10,47029,12,madamerousse +35778,10,47029,12,maddrax99 +35778,10,47029,12,madstorkmsu +35778,10,47029,12,magicirving +35778,10,47029,12,majikjack +35778,10,47029,12,malindovszky +35778,10,47029,12,malius +35778,10,47029,12,mamosuke +35778,10,47029,12,manlywan +35778,10,47029,12,many +35778,10,47029,12,marc_b_ca +35778,10,47029,12,marcoadb +35778,10,47029,12,marcus_aurelius +35778,10,47029,12,marie83 +35778,10,47029,12,markietaken +35778,10,47029,12,markta +35778,10,47029,12,martij +35778,10,47029,12,masodon +35778,10,47029,12,matchbox1202 +35778,10,47029,12,matfra +35778,10,47029,12,matthias23 +35778,10,47029,12,mattk545 +35778,10,47029,12,mauropask +35778,10,47029,12,mavric21 +35778,10,47029,12,maxburo1983 +35778,10,47029,12,maxim_goncharov +35778,10,47029,12,mcfer +35778,10,47029,12,mcrally +35778,10,47029,12,megiddo47 +35778,10,47029,12,mel_family +35778,10,47029,12,melikepuppy +35778,10,47029,12,meltzy +35778,10,47029,12,michaeljnt +35778,10,47029,12,michlou +35778,10,47029,12,mijidragon +35778,10,47029,12,mike6423 +35778,10,47029,12,mileslavin +35778,10,47029,12,milk12 +35778,10,47029,12,mindexperiences +35778,10,47029,12,mindthegap76 +35778,10,47029,12,misterfigs +35778,10,47029,12,mjvogt +35778,10,47029,12,mmezapor1 +35778,10,47029,12,mmgana +35778,10,47029,12,mnl95 +35778,10,47029,12,moj84 +35778,10,47029,12,monkeysuncle +35778,10,47029,12,montagne14 +35778,10,47029,12,monti1507 +35778,10,47029,12,montonye1 +35778,10,47029,12,mordicchio9188 +35778,10,47029,12,morfalcio +35778,10,47029,12,mortenkalten +35778,10,47029,12,mosestaff +35778,10,47029,12,mostrenko +35778,10,47029,12,mpereiro +35778,10,47029,12,mrdaveclements +35778,10,47029,12,mrdeniss +35778,10,47029,12,mrdrofficer +35778,10,47029,12,mroseksi +35778,10,47029,12,mrsrocknwool +35778,10,47029,12,mschemen +35778,10,47029,12,msoups999 +35778,10,47029,12,mukala +35778,10,47029,12,murk +35778,10,47029,12,musicalchalupa +35778,10,47029,12,mvcv +35778,10,47029,12,nandoevil +35778,10,47029,12,napyleon +35778,10,47029,12,natewhite33 +35778,10,47029,12,naughtyhuggles +35778,10,47029,12,necroidle +35778,10,47029,12,neilan_n +35778,10,47029,12,nellaarabrab +35778,10,47029,12,neopkwaii28 +35778,10,47029,12,netdancer +35778,10,47029,12,newboredgamer +35778,10,47029,12,ngiff3 +35778,10,47029,12,nickvdb22 +35778,10,47029,12,nicotupe +35778,10,47029,12,nightgecko +35778,10,47029,12,niki_george +35778,10,47029,12,nikitorezz +35778,10,47029,12,nikoalokin +35778,10,47029,12,nikoda +35778,10,47029,12,nikos_messis +35778,10,47029,12,nilspace +35778,10,47029,12,ninelives +35778,10,47029,12,niyaz +35778,10,47029,12,no dude +35778,10,47029,12,nordlight +35778,10,47029,12,norlin +35778,10,47029,12,notus2 +35778,10,47029,12,nsabo51 +35778,10,47029,12,nuitari_x +35778,10,47029,12,nukealchemist +35778,10,47029,12,numzab +35778,10,47029,12,oconn111 +35778,10,47029,12,oddmagnum +35778,10,47029,12,ogdentwohorn +35778,10,47029,12,ohartley +35778,10,47029,12,olivermp +35778,10,47029,12,omnipresence +35778,10,47029,12,operagirlie +35778,10,47029,12,orangewizard +35778,10,47029,12,orson9999999 +35778,10,47029,12,oskr22 +35778,10,47029,12,p1rd +35778,10,47029,12,paab79 +35778,10,47029,12,pampauer +35778,10,47029,12,paphoved +35778,10,47029,12,paroz +35778,10,47029,12,patat +35778,10,47029,12,pauledel +35778,10,47029,12,paulopeinado +35778,10,47029,12,pavía +35778,10,47029,12,pawelsekulak +35778,10,47029,12,peck614 +35778,10,47029,12,pedrod +35778,10,47029,12,pedrom +35778,10,47029,12,perditadurango +35778,10,47029,12,periskop +35778,10,47029,12,petehat +35778,10,47029,12,peterslax2 +35778,10,47029,12,petriesfamilygames +35778,10,47029,12,pettermork71 +35778,10,47029,12,pewallin +35778,10,47029,12,pezmc +35778,10,47029,12,pezzicle +35778,10,47029,12,pglowacki +35778,10,47029,12,phinfan2003 +35778,10,47029,12,phoenixrising211 +35778,10,47029,12,phurinat +35778,10,47029,12,phyreous +35778,10,47029,12,pierro29 +35778,10,47029,12,pinkygotsomebrain +35778,10,47029,12,pldevlin +35778,10,47029,12,pmharrell +35778,10,47029,12,pneumomaniac +35778,10,47029,12,poom +35778,10,47029,12,popcorn10 +35778,10,47029,12,popoppet +35778,10,47029,12,portierhs +35778,10,47029,12,powpow +35778,10,47029,12,pplum +35778,10,47029,12,presbycat +35778,10,47029,12,pseudo nymh +35778,10,47029,12,pseudoscorpion +35778,10,47029,12,ptish +35778,10,47029,12,ptwagner +35778,10,47029,12,pvarner +35778,10,47029,12,quantum swordsman +35778,10,47029,12,queen_sway +35778,10,47029,12,radicaleggnog +35778,10,47029,12,rafajam86 +35778,10,47029,12,ragnabob +35778,10,47029,12,rago99 +35778,10,47029,12,rahanson +35778,10,47029,12,raistlin_1978 +35778,10,47029,12,rakit +35778,10,47029,12,ranzak +35778,10,47029,12,raremind +35778,10,47029,12,rassat88 +35778,10,47029,12,rattle +35778,10,47029,12,razbot +35778,10,47029,12,razor367 +35778,10,47029,12,rcross +35778,10,47029,12,recbor +35778,10,47029,12,red dawn +35778,10,47029,12,reezel +35778,10,47029,12,regionaloriental +35778,10,47029,12,rhoho +35778,10,47029,12,rimba +35778,10,47029,12,rimidalv +35778,10,47029,12,rippedfromthecrypt +35778,10,47029,12,rjurado +35778,10,47029,12,rneely +35778,10,47029,12,rob0027 +35778,10,47029,12,rogermns +35778,10,47029,12,rojo_ababol +35778,10,47029,12,rolandrat1 +35778,10,47029,12,roll4criticism +35778,10,47029,12,ronricorum +35778,10,47029,12,rosco83 +35778,10,47029,12,rtfwong +35778,10,47029,12,rumbles +35778,10,47029,12,runman +35778,10,47029,12,ryanabrams +35778,10,47029,12,saikosain +35778,10,47029,12,saizar +35778,10,47029,12,sakuraclarsach +35778,10,47029,12,salems lot +35778,10,47029,12,salish +35778,10,47029,12,sallyjean612 +35778,10,47029,12,saloonstudios +35778,10,47029,12,sanovision +35778,10,47029,12,satyne666 +35778,10,47029,12,saxsoulo +35778,10,47029,12,sca1pa +35778,10,47029,12,schmike +35778,10,47029,12,scoriss +35778,10,47029,12,scottarutherford +35778,10,47029,12,scottf2 +35778,10,47029,12,scraimer +35778,10,47029,12,seigma +35778,10,47029,12,sergo +35778,10,47029,12,serguei_ +35778,10,47029,12,sewmice +35778,10,47029,12,shadowrydor +35778,10,47029,12,sharog +35778,10,47029,12,shinobi81 +35778,10,47029,12,sinyr +35778,10,47029,12,sirfink +35778,10,47029,12,siromist +35778,10,47029,12,sirpricklesworth +35778,10,47029,12,skidaddle +35778,10,47029,12,skippinmcg +35778,10,47029,12,skmac +35778,10,47029,12,slashonthenet +35778,10,47029,12,slide +35778,10,47029,12,smagda +35778,10,47029,12,smtudor +35778,10,47029,12,snuffulupagus +35778,10,47029,12,soflo0204 +35778,10,47029,12,soviet07 +35778,10,47029,12,sowizz +35778,10,47029,12,sparra11 +35778,10,47029,12,spelbreker +35778,10,47029,12,spencerdeanwill +35778,10,47029,12,spezza +35778,10,47029,12,splat2254 +35778,10,47029,12,squaraine +35778,10,47029,12,sralihn +35778,10,47029,12,starwarslegokid +35778,10,47029,12,steal_er +35778,10,47029,12,steelowl +35778,10,47029,12,stephenlshaw +35778,10,47029,12,steve777 +35778,10,47029,12,stevenchaffer +35778,10,47029,12,stewaraa +35778,10,47029,12,stork inc +35778,10,47029,12,straydawg +35778,10,47029,12,strogie +35778,10,47029,12,stuartt +35778,10,47029,12,stulin76 +35778,10,47029,12,summerteeth +35778,10,47029,12,superd898 +35778,10,47029,12,svenv +35778,10,47029,12,swalton7969 +35778,10,47029,12,sybar +35778,10,47029,12,sympa022 +35778,10,47029,12,szkatie +35778,10,47029,12,tagoodness +35778,10,47029,12,taishar +35778,10,47029,12,taitantos +35778,10,47029,12,takion +35778,10,47029,12,tammeo +35778,10,47029,12,tanjcc +35778,10,47029,12,tatamica +35778,10,47029,12,teewee +35778,10,47029,12,teh_kniferer +35778,10,47029,12,thabs +35778,10,47029,12,thatsvy +35778,10,47029,12,the minister +35778,10,47029,12,theamazingtux +35778,10,47029,12,thebeardedrelic +35778,10,47029,12,thebigwhitepolarbear +35778,10,47029,12,theconductr +35778,10,47029,12,theme matters +35778,10,47029,12,thenickandonly +35778,10,47029,12,theshadowsofcamelot +35778,10,47029,12,thestadiaarchitect +35778,10,47029,12,thiagogogo +35778,10,47029,12,thor_doomhammer +35778,10,47029,12,thorantafeli +35778,10,47029,12,thuri +35778,10,47029,12,tiktuk +35778,10,47029,12,timonemycat +35778,10,47029,12,tiniebla +35778,10,47029,12,tonyrizzuto +35778,10,47029,12,topkapi1971 +35778,10,47029,12,topvi +35778,10,47029,12,tote +35778,10,47029,12,transduser +35778,10,47029,12,triticuslev +35778,10,47029,12,trustmeneon +35778,10,47029,12,tuisjx +35778,10,47029,12,uc99041114 +35778,10,47029,12,uncelafo +35778,10,47029,12,unfairtooth +35778,10,47029,12,unlivedphalanx +35778,10,47029,12,urgol +35778,10,47029,12,usulamb +35778,10,47029,12,valkine +35778,10,47029,12,vampiresarego +35778,10,47029,12,vanajoe +35778,10,47029,12,vandal +35778,10,47029,12,vandergore +35778,10,47029,12,vanguarduk +35778,10,47029,12,vanhamster +35778,10,47029,12,vh2000 +35778,10,47029,12,viald +35778,10,47029,12,vikingcode +35778,10,47029,12,vinterkvisten +35778,10,47029,12,wakeme +35778,10,47029,12,wehomir +35778,10,47029,12,weijie_88 +35778,10,47029,12,weirdeye +35778,10,47029,12,weplayboardgames +35778,10,47029,12,werewolfii +35778,10,47029,12,wicuwe +35778,10,47029,12,widget0905 +35778,10,47029,12,wkdfrog +35778,10,47029,12,wordupsucka +35778,10,47029,12,xandao13br +35778,10,47029,12,xdday1944x +35778,10,47029,12,xlee +35778,10,47029,12,yaminosenshi +35778,10,47029,12,ynygma +35778,10,47029,12,yobink +35778,10,47029,12,yohanlaunay +35778,10,47029,12,zaidak +35778,10,47029,12,zajarin +35778,10,47029,12,zarthon +35778,10,47029,12,zin_in_een_spel +35778,10,47029,12,zoomer1202 +35778,10,47029,12,zzz77 +35778,10,47029,12,zzzeagle +35778,10,51125,11,abeniman +35778,10,51125,11,abrocker +35778,10,51125,11,aceronian +35778,10,51125,11,amiguero +35778,10,51125,11,andiboettger +35778,10,51125,11,angeloftheodd +35778,10,51125,11,anil17 +35778,10,51125,11,arielekst83 +35778,10,51125,11,arsilhindquarters +35778,10,51125,11,autumnwysh +35778,10,51125,11,avivesf +35778,10,51125,11,babyj3ans +35778,10,51125,11,batzeloar +35778,10,51125,11,bigg1989 +35778,10,51125,11,bistia +35778,10,51125,11,bk_works +35778,10,51125,11,blacklamb6 +35778,10,51125,11,bonnevier +35778,10,51125,11,bonneylakeplayer +35778,10,51125,11,bosheem +35778,10,51125,11,braramir +35778,10,51125,11,buho +35778,10,51125,11,cfmoss +35778,10,51125,11,charlieayers +35778,10,51125,11,chubbs7287 +35778,10,51125,11,corr +35778,10,51125,11,d33jaysturf +35778,10,51125,11,darkgreen +35778,10,51125,11,darlok +35778,10,51125,11,deesman247 +35778,10,51125,11,delphinidae +35778,10,51125,11,denis347 +35778,10,51125,11,deskomatla +35778,10,51125,11,detheus +35778,10,51125,11,dirtygbird +35778,10,51125,11,doctorius +35778,10,51125,11,donimbatron +35778,10,51125,11,dragonc +35778,10,51125,11,drakecoldwinter +35778,10,51125,11,drdizzer +35778,10,51125,11,drengy +35778,10,51125,11,drhealsmore +35778,10,51125,11,dsco_studio +35778,10,51125,11,dtray +35778,10,51125,11,duvalia +35778,10,51125,11,elandar +35778,10,51125,11,elcafetal +35778,10,51125,11,fethyra +35778,10,51125,11,franckf57 +35778,10,51125,11,gabeyjon +35778,10,51125,11,gaddoni3 +35778,10,51125,11,geenenniki +35778,10,51125,11,giorgosve +35778,10,51125,11,glutnix +35778,10,51125,11,gnascas +35778,10,51125,11,gobrowns +35778,10,51125,11,godsigmar +35778,10,51125,11,gracefulhope +35778,10,51125,11,greenapes +35778,10,51125,11,grizzlyanderson +35778,10,51125,11,guy2499 +35778,10,51125,11,harrisluigi +35778,10,51125,11,helldozer11 +35778,10,51125,11,highdown +35778,10,51125,11,hitchhiking_pirates +35778,10,51125,11,iamgavin +35778,10,51125,11,ice_mouton +35778,10,51125,11,icedpyre +35778,10,51125,11,indiffer +35778,10,51125,11,inlego +35778,10,51125,11,inspiron9400 +35778,10,51125,11,ivanorjuela +35778,10,51125,11,janos +35778,10,51125,11,janushpoha +35778,10,51125,11,jasonwocky +35778,10,51125,11,jenniferem +35778,10,51125,11,jomammie +35778,10,51125,11,josh1985777 +35778,10,51125,11,jsampieri +35778,10,51125,11,jskell +35778,10,51125,11,jvbren +35778,10,51125,11,kandres +35778,10,51125,11,kderosa +35778,10,51125,11,keiler175 +35778,10,51125,11,keiwa +35778,10,51125,11,khaine009 +35778,10,51125,11,kisakisa +35778,10,51125,11,kkorstjens +35778,10,51125,11,koriakin +35778,10,51125,11,korpiklaani +35778,10,51125,11,kpipe75 +35778,10,51125,11,leonhgomes +35778,10,51125,11,lonewolfpr +35778,10,51125,11,louiehawker +35778,10,51125,11,loush +35778,10,51125,11,luke93 +35778,10,51125,11,luweewu +35778,10,51125,11,lynnmilton +35778,10,51125,11,max sfu +35778,10,51125,11,messydreads +35778,10,51125,11,mightymouse103 +35778,10,51125,11,mkotsi +35778,10,51125,11,mmpunk +35778,10,51125,11,mnwx +35778,10,51125,11,mshopkins +35778,10,51125,11,msweazey +35778,10,51125,11,mtn55 +35778,10,51125,11,mtndrt +35778,10,51125,11,mythicivy +35778,10,51125,11,nater +35778,10,51125,11,neosamuri +35778,10,51125,11,nevelito +35778,10,51125,11,nielshvos +35778,10,51125,11,nolanolson +35778,10,51125,11,northerndice +35778,10,51125,11,nstr +35778,10,51125,11,oblious +35778,10,51125,11,ososnilknarf +35778,10,51125,11,oxfordcalc +35778,10,51125,11,panannis +35778,10,51125,11,pauwie +35778,10,51125,11,pepperized +35778,10,51125,11,pfctsqr +35778,10,51125,11,pinardouze +35778,10,51125,11,pirzerll +35778,10,51125,11,playolive +35778,10,51125,11,pointsalad +35778,10,51125,11,puerca +35778,10,51125,11,puppetman234 +35778,10,51125,11,purplesneaks +35778,10,51125,11,rerrek +35778,10,51125,11,rodolforeal +35778,10,51125,11,rvo1989 +35778,10,51125,11,ryhesling +35778,10,51125,11,schulzj +35778,10,51125,11,shemar +35778,10,51125,11,sikosis +35778,10,51125,11,sircaradoc +35778,10,51125,11,snapster15 +35778,10,51125,11,sobotka +35778,10,51125,11,son_of_zancle +35778,10,51125,11,spiderzav +35778,10,51125,11,spurven +35778,10,51125,11,ssjintrunks +35778,10,51125,11,ssolie +35778,10,51125,11,sssaasz +35778,10,51125,11,ster1l3r +35778,10,51125,11,stippish +35778,10,51125,11,sugata +35778,10,51125,11,supergraci +35778,10,51125,11,tacticalice +35778,10,51125,11,talli +35778,10,51125,11,tampaillini +35778,10,51125,11,tanial +35778,10,51125,11,tareqd +35778,10,51125,11,thehappymongoose +35778,10,51125,11,thevaliant +35778,10,51125,11,thytos +35778,10,51125,11,tropicaltundra +35778,10,51125,11,tsar1701 +35778,10,51125,11,twaldo44 +35778,10,51125,11,tzeetzch +35778,10,51125,11,veyx +35778,10,51125,11,wardancr +35778,10,51125,11,whalawa +35778,10,51125,11,whenindoubteatout +35778,10,51125,11,wiencken +35778,10,51125,11,willynch +35778,10,51125,11,wilso13 +35778,10,51125,11,winterbok +35778,10,51125,11,wintereyn +35778,10,51125,11,workwithmorgan +35778,10,51125,11,xbigtk13x +35778,10,51125,11,xtccs +35778,10,51125,11,yorkistj +35778,10,51125,11,yurimaiaribeiro +35778,10,51125,11,zackster +35778,10,51125,11,zaurak +35778,10,51125,11,zirkonia +35778,10,51125,11,zronos3008 +35778,10,51125,11,zyxyv +35778,10,55596,10,12henry14 +35778,10,55596,10,adam kwapinski +35778,10,55596,10,banjoqueen009 +35778,10,55596,10,betoborg +35778,10,55596,10,branwell +35778,10,55596,10,cbeale5150 +35778,10,55596,10,chops_15 +35778,10,55596,10,colinthil +35778,10,55596,10,connerg +35778,10,55596,10,darlingnadia +35778,10,55596,10,dzemikc +35778,10,55596,10,ettocrut +35778,10,55596,10,everbeam +35778,10,55596,10,farfyy +35778,10,55596,10,franciscoafonso +35778,10,55596,10,frodokinobi +35778,10,55596,10,ganadoll +35778,10,55596,10,gaz01uk +35778,10,55596,10,geekdadgamer +35778,10,55596,10,gio84 +35778,10,55596,10,goddesslaura +35778,10,55596,10,hansellinas +35778,10,55596,10,heraziel +35778,10,55596,10,hoyng +35778,10,55596,10,iamdrake +35778,10,55596,10,immersedreality +35778,10,55596,10,javicv +35778,10,55596,10,kaerugames +35778,10,55596,10,macy +35778,10,55596,10,mcabv11 +35778,10,55596,10,morez89 +35778,10,55596,10,nithradus +35778,10,55596,10,oscarbucky +35778,10,55596,10,owlicus +35778,10,55596,10,paoh +35778,10,55596,10,pinchnail +35778,10,55596,10,pipepintcross +35778,10,55596,10,psnixon +35778,10,55596,10,randomobfuscation +35778,10,55596,10,richie1st +35778,10,55596,10,rtsteffen +35778,10,55596,10,samuelism +35778,10,55596,10,sayvin +35778,10,55596,10,seanacookie +35778,10,55596,10,sgtvonfunk +35778,10,55596,10,siddhig +35778,10,55596,10,sittingbull +35778,10,55596,10,terumo +35778,10,55596,10,texibus +35778,10,55596,10,timawetzel +35778,10,55596,10,toughjax +35778,10,55596,10,tzax +35778,10,55596,10,unkyxenon +35778,10,55596,10,valonbard +35778,10,55596,10,whiteonmyoji +35778,10,55596,10,wnfeliz +35778,10,55596,10,wrecr +35778,10,55596,10,xcaptnmorgan +35778,10,55596,10,zecucumber diff --git a/experiments/g_index/poetry.lock b/experiments/g_index/poetry.lock new file mode 100644 index 0000000000000000000000000000000000000000..303d7850172a579f2da54468bb5b87ed111074b4 --- /dev/null +++ b/experiments/g_index/poetry.lock @@ -0,0 +1,2993 @@ +# This file is automatically @generated by Poetry 1.7.1 and should not be changed by hand. + +[[package]] +name = "anyio" +version = "4.3.0" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +optional = false +python-versions = ">=3.8" +files = [ + {file = "anyio-4.3.0-py3-none-any.whl", hash = "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8"}, + {file = "anyio-4.3.0.tar.gz", hash = "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6"}, +] + +[package.dependencies] +idna = ">=2.8" +sniffio = ">=1.1" + +[package.extras] +doc = ["Sphinx (>=7)", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme"] +test = ["anyio[trio]", "coverage[toml] (>=7)", "exceptiongroup (>=1.2.0)", "hypothesis (>=4.0)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] +trio = ["trio (>=0.23)"] + +[[package]] +name = "appnope" +version = "0.1.4" +description = "Disable App Nap on macOS >= 10.9" +optional = false +python-versions = ">=3.6" +files = [ + {file = "appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c"}, + {file = "appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee"}, +] + +[[package]] +name = "argon2-cffi" +version = "23.1.0" +description = "Argon2 for Python" +optional = false +python-versions = ">=3.7" +files = [ + {file = "argon2_cffi-23.1.0-py3-none-any.whl", hash = "sha256:c670642b78ba29641818ab2e68bd4e6a78ba53b7eff7b4c3815ae16abf91c7ea"}, + {file = "argon2_cffi-23.1.0.tar.gz", hash = "sha256:879c3e79a2729ce768ebb7d36d4609e3a78a4ca2ec3a9f12286ca057e3d0db08"}, +] + +[package.dependencies] +argon2-cffi-bindings = "*" + +[package.extras] +dev = ["argon2-cffi[tests,typing]", "tox (>4)"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-copybutton", "sphinx-notfound-page"] +tests = ["hypothesis", "pytest"] +typing = ["mypy"] + +[[package]] +name = "argon2-cffi-bindings" +version = "21.2.0" +description = "Low-level CFFI bindings for Argon2" +optional = false +python-versions = ">=3.6" +files = [ + {file = "argon2-cffi-bindings-21.2.0.tar.gz", hash = "sha256:bb89ceffa6c791807d1305ceb77dbfacc5aa499891d2c55661c6459651fc39e3"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:ccb949252cb2ab3a08c02024acb77cfb179492d5701c7cbdbfd776124d4d2367"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9524464572e12979364b7d600abf96181d3541da11e23ddf565a32e70bd4dc0d"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b746dba803a79238e925d9046a63aa26bf86ab2a2fe74ce6b009a1c3f5c8f2ae"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:58ed19212051f49a523abb1dbe954337dc82d947fb6e5a0da60f7c8471a8476c"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:bd46088725ef7f58b5a1ef7ca06647ebaf0eb4baff7d1d0d177c6cc8744abd86"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_i686.whl", hash = "sha256:8cd69c07dd875537a824deec19f978e0f2078fdda07fd5c42ac29668dda5f40f"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:f1152ac548bd5b8bcecfb0b0371f082037e47128653df2e8ba6e914d384f3c3e"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win32.whl", hash = "sha256:603ca0aba86b1349b147cab91ae970c63118a0f30444d4bc80355937c950c082"}, + {file = "argon2_cffi_bindings-21.2.0-cp36-abi3-win_amd64.whl", hash = "sha256:b2ef1c30440dbbcba7a5dc3e319408b59676e2e039e2ae11a8775ecf482b192f"}, + {file = "argon2_cffi_bindings-21.2.0-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e415e3f62c8d124ee16018e491a009937f8cf7ebf5eb430ffc5de21b900dad93"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3e385d1c39c520c08b53d63300c3ecc28622f076f4c2b0e6d7e796e9f6502194"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c3e3cc67fdb7d82c4718f19b4e7a87123caf8a93fde7e23cf66ac0337d3cb3f"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6a22ad9800121b71099d0fb0a65323810a15f2e292f2ba450810a7316e128ee5"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f9f8b450ed0547e3d473fdc8612083fd08dd2120d6ac8f73828df9b7d45bb351"}, + {file = "argon2_cffi_bindings-21.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:93f9bf70084f97245ba10ee36575f0c3f1e7d7724d67d8e5b08e61787c320ed7"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3b9ef65804859d335dc6b31582cad2c5166f0c3e7975f324d9ffaa34ee7e6583"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d4966ef5848d820776f5f562a7d45fdd70c2f330c961d0d745b784034bd9f48d"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:20ef543a89dee4db46a1a6e206cd015360e5a75822f76df533845c3cbaf72670"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ed2937d286e2ad0cc79a7087d3c272832865f779430e0cc2b4f3718d3159b0cb"}, + {file = "argon2_cffi_bindings-21.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5e00316dabdaea0b2dd82d141cc66889ced0cdcbfa599e8b471cf22c620c329a"}, +] + +[package.dependencies] +cffi = ">=1.0.1" + +[package.extras] +dev = ["cogapp", "pre-commit", "pytest", "wheel"] +tests = ["pytest"] + +[[package]] +name = "arrow" +version = "1.3.0" +description = "Better dates & times for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "arrow-1.3.0-py3-none-any.whl", hash = "sha256:c728b120ebc00eb84e01882a6f5e7927a53960aa990ce7dd2b10f39005a67f80"}, + {file = "arrow-1.3.0.tar.gz", hash = "sha256:d4540617648cb5f895730f1ad8c82a65f2dad0166f57b75f3ca54759c4d67a85"}, +] + +[package.dependencies] +python-dateutil = ">=2.7.0" +types-python-dateutil = ">=2.8.10" + +[package.extras] +doc = ["doc8", "sphinx (>=7.0.0)", "sphinx-autobuild", "sphinx-autodoc-typehints", "sphinx_rtd_theme (>=1.3.0)"] +test = ["dateparser (==1.*)", "pre-commit", "pytest", "pytest-cov", "pytest-mock", "pytz (==2021.1)", "simplejson (==3.*)"] + +[[package]] +name = "asttokens" +version = "2.4.1" +description = "Annotate AST trees with source code positions" +optional = false +python-versions = "*" +files = [ + {file = "asttokens-2.4.1-py2.py3-none-any.whl", hash = "sha256:051ed49c3dcae8913ea7cd08e46a606dba30b79993209636c4875bc1d637bc24"}, + {file = "asttokens-2.4.1.tar.gz", hash = "sha256:b03869718ba9a6eb027e134bfdf69f38a236d681c83c160d510768af11254ba0"}, +] + +[package.dependencies] +six = ">=1.12.0" + +[package.extras] +astroid = ["astroid (>=1,<2)", "astroid (>=2,<4)"] +test = ["astroid (>=1,<2)", "astroid (>=2,<4)", "pytest"] + +[[package]] +name = "async-lru" +version = "2.0.4" +description = "Simple LRU cache for asyncio" +optional = false +python-versions = ">=3.8" +files = [ + {file = "async-lru-2.0.4.tar.gz", hash = "sha256:b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627"}, + {file = "async_lru-2.0.4-py3-none-any.whl", hash = "sha256:ff02944ce3c288c5be660c42dbcca0742b32c3b279d6dceda655190240b99224"}, +] + +[[package]] +name = "attrs" +version = "23.2.0" +description = "Classes Without Boilerplate" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, + {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-mypy = ["mypy (>=1.6)", "pytest-mypy-plugins"] +tests-no-zope = ["attrs[tests-mypy]", "cloudpickle", "hypothesis", "pympler", "pytest (>=4.3.0)", "pytest-xdist[psutil]"] + +[[package]] +name = "babel" +version = "2.14.0" +description = "Internationalization utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "Babel-2.14.0-py3-none-any.whl", hash = "sha256:efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287"}, + {file = "Babel-2.14.0.tar.gz", hash = "sha256:6919867db036398ba21eb5c7a0f6b28ab8cbc3ae7a73a44ebe34ae74a4e7d363"}, +] + +[package.extras] +dev = ["freezegun (>=1.0,<2.0)", "pytest (>=6.0)", "pytest-cov"] + +[[package]] +name = "beautifulsoup4" +version = "4.12.3" +description = "Screen-scraping library" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed"}, + {file = "beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051"}, +] + +[package.dependencies] +soupsieve = ">1.2" + +[package.extras] +cchardet = ["cchardet"] +chardet = ["chardet"] +charset-normalizer = ["charset-normalizer"] +html5lib = ["html5lib"] +lxml = ["lxml"] + +[[package]] +name = "black" +version = "24.2.0" +description = "The uncompromising code formatter." +optional = false +python-versions = ">=3.8" +files = [ + {file = "black-24.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6981eae48b3b33399c8757036c7f5d48a535b962a7c2310d19361edeef64ce29"}, + {file = "black-24.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d533d5e3259720fdbc1b37444491b024003e012c5173f7d06825a77508085430"}, + {file = "black-24.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61a0391772490ddfb8a693c067df1ef5227257e72b0e4108482b8d41b5aee13f"}, + {file = "black-24.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:992e451b04667116680cb88f63449267c13e1ad134f30087dec8527242e9862a"}, + {file = "black-24.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:163baf4ef40e6897a2a9b83890e59141cc8c2a98f2dda5080dc15c00ee1e62cd"}, + {file = "black-24.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e37c99f89929af50ffaf912454b3e3b47fd64109659026b678c091a4cd450fb2"}, + {file = "black-24.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9de21bafcba9683853f6c96c2d515e364aee631b178eaa5145fc1c61a3cc92"}, + {file = "black-24.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:9db528bccb9e8e20c08e716b3b09c6bdd64da0dd129b11e160bf082d4642ac23"}, + {file = "black-24.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:d84f29eb3ee44859052073b7636533ec995bd0f64e2fb43aeceefc70090e752b"}, + {file = "black-24.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1e08fb9a15c914b81dd734ddd7fb10513016e5ce7e6704bdd5e1251ceee51ac9"}, + {file = "black-24.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:810d445ae6069ce64030c78ff6127cd9cd178a9ac3361435708b907d8a04c693"}, + {file = "black-24.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:ba15742a13de85e9b8f3239c8f807723991fbfae24bad92d34a2b12e81904982"}, + {file = "black-24.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:7e53a8c630f71db01b28cd9602a1ada68c937cbf2c333e6ed041390d6968faf4"}, + {file = "black-24.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:93601c2deb321b4bad8f95df408e3fb3943d85012dddb6121336b8e24a0d1218"}, + {file = "black-24.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0057f800de6acc4407fe75bb147b0c2b5cbb7c3ed110d3e5999cd01184d53b0"}, + {file = "black-24.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:faf2ee02e6612577ba0181f4347bcbcf591eb122f7841ae5ba233d12c39dcb4d"}, + {file = "black-24.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:057c3dc602eaa6fdc451069bd027a1b2635028b575a6c3acfd63193ced20d9c8"}, + {file = "black-24.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:08654d0797e65f2423f850fc8e16a0ce50925f9337fb4a4a176a7aa4026e63f8"}, + {file = "black-24.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca610d29415ee1a30a3f30fab7a8f4144e9d34c89a235d81292a1edb2b55f540"}, + {file = "black-24.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:4dd76e9468d5536abd40ffbc7a247f83b2324f0c050556d9c371c2b9a9a95e31"}, + {file = "black-24.2.0-py3-none-any.whl", hash = "sha256:e8a6ae970537e67830776488bca52000eaa37fa63b9988e8c487458d9cd5ace6"}, + {file = "black-24.2.0.tar.gz", hash = "sha256:bce4f25c27c3435e4dace4815bcb2008b87e167e3bf4ee47ccdc5ce906eb4894"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +packaging = ">=22.0" +pathspec = ">=0.9.0" +platformdirs = ">=2" + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)", "aiohttp (>=3.7.4,!=3.9.0)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "bleach" +version = "6.1.0" +description = "An easy safelist-based HTML-sanitizing tool." +optional = false +python-versions = ">=3.8" +files = [ + {file = "bleach-6.1.0-py3-none-any.whl", hash = "sha256:3225f354cfc436b9789c66c4ee030194bee0568fbf9cbdad3bc8b5c26c5f12b6"}, + {file = "bleach-6.1.0.tar.gz", hash = "sha256:0a31f1837963c41d46bbf1331b8778e1308ea0791db03cc4e7357b97cf42a8fe"}, +] + +[package.dependencies] +six = ">=1.9.0" +webencodings = "*" + +[package.extras] +css = ["tinycss2 (>=1.1.0,<1.3)"] + +[[package]] +name = "certifi" +version = "2024.2.2" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, + {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, +] + +[[package]] +name = "cffi" +version = "1.16.0" +description = "Foreign Function Interface for Python calling C code." +optional = false +python-versions = ">=3.8" +files = [ + {file = "cffi-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088"}, + {file = "cffi-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7"}, + {file = "cffi-1.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743"}, + {file = "cffi-1.16.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d"}, + {file = "cffi-1.16.0-cp310-cp310-win32.whl", hash = "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a"}, + {file = "cffi-1.16.0-cp310-cp310-win_amd64.whl", hash = "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404"}, + {file = "cffi-1.16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56"}, + {file = "cffi-1.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc"}, + {file = "cffi-1.16.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb"}, + {file = "cffi-1.16.0-cp311-cp311-win32.whl", hash = "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab"}, + {file = "cffi-1.16.0-cp311-cp311-win_amd64.whl", hash = "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956"}, + {file = "cffi-1.16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6"}, + {file = "cffi-1.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969"}, + {file = "cffi-1.16.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520"}, + {file = "cffi-1.16.0-cp312-cp312-win32.whl", hash = "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b"}, + {file = "cffi-1.16.0-cp312-cp312-win_amd64.whl", hash = "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235"}, + {file = "cffi-1.16.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b"}, + {file = "cffi-1.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324"}, + {file = "cffi-1.16.0-cp38-cp38-win32.whl", hash = "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a"}, + {file = "cffi-1.16.0-cp38-cp38-win_amd64.whl", hash = "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed"}, + {file = "cffi-1.16.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4"}, + {file = "cffi-1.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000"}, + {file = "cffi-1.16.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe"}, + {file = "cffi-1.16.0-cp39-cp39-win32.whl", hash = "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4"}, + {file = "cffi-1.16.0-cp39-cp39-win_amd64.whl", hash = "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8"}, + {file = "cffi-1.16.0.tar.gz", hash = "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.3.2" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win32.whl", hash = "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73"}, + {file = "charset_normalizer-3.3.2-cp310-cp310-win_amd64.whl", hash = "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win32.whl", hash = "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab"}, + {file = "charset_normalizer-3.3.2-cp311-cp311-win_amd64.whl", hash = "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win32.whl", hash = "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7"}, + {file = "charset_normalizer-3.3.2-cp312-cp312-win_amd64.whl", hash = "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win32.whl", hash = "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4"}, + {file = "charset_normalizer-3.3.2-cp37-cp37m-win_amd64.whl", hash = "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win32.whl", hash = "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25"}, + {file = "charset_normalizer-3.3.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win32.whl", hash = "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f"}, + {file = "charset_normalizer-3.3.2-cp39-cp39-win_amd64.whl", hash = "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d"}, + {file = "charset_normalizer-3.3.2-py3-none-any.whl", hash = "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc"}, +] + +[[package]] +name = "click" +version = "8.1.7" +description = "Composable command line interface toolkit" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.7-py3-none-any.whl", hash = "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28"}, + {file = "click-8.1.7.tar.gz", hash = "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "comm" +version = "0.2.1" +description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." +optional = false +python-versions = ">=3.8" +files = [ + {file = "comm-0.2.1-py3-none-any.whl", hash = "sha256:87928485c0dfc0e7976fd89fc1e187023cf587e7c353e4a9b417555b44adf021"}, + {file = "comm-0.2.1.tar.gz", hash = "sha256:0bc91edae1344d39d3661dcbc36937181fdaddb304790458f8b044dbc064b89a"}, +] + +[package.dependencies] +traitlets = ">=4" + +[package.extras] +test = ["pytest"] + +[[package]] +name = "contourpy" +version = "1.2.0" +description = "Python library for calculating contours of 2D quadrilateral grids" +optional = false +python-versions = ">=3.9" +files = [ + {file = "contourpy-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0274c1cb63625972c0c007ab14dd9ba9e199c36ae1a231ce45d725cbcbfd10a8"}, + {file = "contourpy-1.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ab459a1cbbf18e8698399c595a01f6dcc5c138220ca3ea9e7e6126232d102bb4"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fdd887f17c2f4572ce548461e4f96396681212d858cae7bd52ba3310bc6f00f"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d16edfc3fc09968e09ddffada434b3bf989bf4911535e04eada58469873e28e"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c203f617abc0dde5792beb586f827021069fb6d403d7f4d5c2b543d87edceb9"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b69303ceb2e4d4f146bf82fda78891ef7bcd80c41bf16bfca3d0d7eb545448aa"}, + {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:884c3f9d42d7218304bc74a8a7693d172685c84bd7ab2bab1ee567b769696df9"}, + {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4a1b1208102be6e851f20066bf0e7a96b7d48a07c9b0cfe6d0d4545c2f6cadab"}, + {file = "contourpy-1.2.0-cp310-cp310-win32.whl", hash = "sha256:34b9071c040d6fe45d9826cbbe3727d20d83f1b6110d219b83eb0e2a01d79488"}, + {file = "contourpy-1.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:bd2f1ae63998da104f16a8b788f685e55d65760cd1929518fd94cd682bf03e41"}, + {file = "contourpy-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dd10c26b4eadae44783c45ad6655220426f971c61d9b239e6f7b16d5cdaaa727"}, + {file = "contourpy-1.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5c6b28956b7b232ae801406e529ad7b350d3f09a4fde958dfdf3c0520cdde0dd"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebeac59e9e1eb4b84940d076d9f9a6cec0064e241818bcb6e32124cc5c3e377a"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:139d8d2e1c1dd52d78682f505e980f592ba53c9f73bd6be102233e358b401063"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e9dc350fb4c58adc64df3e0703ab076f60aac06e67d48b3848c23647ae4310e"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18fc2b4ed8e4a8fe849d18dce4bd3c7ea637758c6343a1f2bae1e9bd4c9f4686"}, + {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:16a7380e943a6d52472096cb7ad5264ecee36ed60888e2a3d3814991a0107286"}, + {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8d8faf05be5ec8e02a4d86f616fc2a0322ff4a4ce26c0f09d9f7fb5330a35c95"}, + {file = "contourpy-1.2.0-cp311-cp311-win32.whl", hash = "sha256:67b7f17679fa62ec82b7e3e611c43a016b887bd64fb933b3ae8638583006c6d6"}, + {file = "contourpy-1.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:99ad97258985328b4f207a5e777c1b44a83bfe7cf1f87b99f9c11d4ee477c4de"}, + {file = "contourpy-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:575bcaf957a25d1194903a10bc9f316c136c19f24e0985a2b9b5608bdf5dbfe0"}, + {file = "contourpy-1.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9e6c93b5b2dbcedad20a2f18ec22cae47da0d705d454308063421a3b290d9ea4"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:464b423bc2a009088f19bdf1f232299e8b6917963e2b7e1d277da5041f33a779"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:68ce4788b7d93e47f84edd3f1f95acdcd142ae60bc0e5493bfd120683d2d4316"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d7d1f8871998cdff5d2ff6a087e5e1780139abe2838e85b0b46b7ae6cc25399"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e739530c662a8d6d42c37c2ed52a6f0932c2d4a3e8c1f90692ad0ce1274abe0"}, + {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:247b9d16535acaa766d03037d8e8fb20866d054d3c7fbf6fd1f993f11fc60ca0"}, + {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:461e3ae84cd90b30f8d533f07d87c00379644205b1d33a5ea03381edc4b69431"}, + {file = "contourpy-1.2.0-cp312-cp312-win32.whl", hash = "sha256:1c2559d6cffc94890b0529ea7eeecc20d6fadc1539273aa27faf503eb4656d8f"}, + {file = "contourpy-1.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:491b1917afdd8638a05b611a56d46587d5a632cabead889a5440f7c638bc6ed9"}, + {file = "contourpy-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5fd1810973a375ca0e097dee059c407913ba35723b111df75671a1976efa04bc"}, + {file = "contourpy-1.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:999c71939aad2780f003979b25ac5b8f2df651dac7b38fb8ce6c46ba5abe6ae9"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7caf9b241464c404613512d5594a6e2ff0cc9cb5615c9475cc1d9b514218ae8"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:266270c6f6608340f6c9836a0fb9b367be61dde0c9a9a18d5ece97774105ff3e"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbd50d0a0539ae2e96e537553aff6d02c10ed165ef40c65b0e27e744a0f10af8"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11f8d2554e52f459918f7b8e6aa20ec2a3bce35ce95c1f0ef4ba36fbda306df5"}, + {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ce96dd400486e80ac7d195b2d800b03e3e6a787e2a522bfb83755938465a819e"}, + {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6d3364b999c62f539cd403f8123ae426da946e142312a514162adb2addd8d808"}, + {file = "contourpy-1.2.0-cp39-cp39-win32.whl", hash = "sha256:1c88dfb9e0c77612febebb6ac69d44a8d81e3dc60f993215425b62c1161353f4"}, + {file = "contourpy-1.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:78e6ad33cf2e2e80c5dfaaa0beec3d61face0fb650557100ee36db808bfa6843"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:be16975d94c320432657ad2402f6760990cb640c161ae6da1363051805fa8108"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b95a225d4948b26a28c08307a60ac00fb8671b14f2047fc5476613252a129776"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0d7e03c0f9a4f90dc18d4e77e9ef4ec7b7bbb437f7f675be8e530d65ae6ef956"}, + {file = "contourpy-1.2.0.tar.gz", hash = "sha256:171f311cb758de7da13fc53af221ae47a5877be5a0843a9fe150818c51ed276a"}, +] + +[package.dependencies] +numpy = ">=1.20,<2.0" + +[package.extras] +bokeh = ["bokeh", "selenium"] +docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.6.1)", "types-Pillow"] +test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] +test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] + +[[package]] +name = "cycler" +version = "0.12.1" +description = "Composable style cycles" +optional = false +python-versions = ">=3.8" +files = [ + {file = "cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30"}, + {file = "cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c"}, +] + +[package.extras] +docs = ["ipython", "matplotlib", "numpydoc", "sphinx"] +tests = ["pytest", "pytest-cov", "pytest-xdist"] + +[[package]] +name = "debugpy" +version = "1.8.1" +description = "An implementation of the Debug Adapter Protocol for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "debugpy-1.8.1-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:3bda0f1e943d386cc7a0e71bfa59f4137909e2ed947fb3946c506e113000f741"}, + {file = "debugpy-1.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dda73bf69ea479c8577a0448f8c707691152e6c4de7f0c4dec5a4bc11dee516e"}, + {file = "debugpy-1.8.1-cp310-cp310-win32.whl", hash = "sha256:3a79c6f62adef994b2dbe9fc2cc9cc3864a23575b6e387339ab739873bea53d0"}, + {file = "debugpy-1.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:7eb7bd2b56ea3bedb009616d9e2f64aab8fc7000d481faec3cd26c98a964bcdd"}, + {file = "debugpy-1.8.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:016a9fcfc2c6b57f939673c874310d8581d51a0fe0858e7fac4e240c5eb743cb"}, + {file = "debugpy-1.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd97ed11a4c7f6d042d320ce03d83b20c3fb40da892f994bc041bbc415d7a099"}, + {file = "debugpy-1.8.1-cp311-cp311-win32.whl", hash = "sha256:0de56aba8249c28a300bdb0672a9b94785074eb82eb672db66c8144fff673146"}, + {file = "debugpy-1.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:1a9fe0829c2b854757b4fd0a338d93bc17249a3bf69ecf765c61d4c522bb92a8"}, + {file = "debugpy-1.8.1-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:3ebb70ba1a6524d19fa7bb122f44b74170c447d5746a503e36adc244a20ac539"}, + {file = "debugpy-1.8.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2e658a9630f27534e63922ebf655a6ab60c370f4d2fc5c02a5b19baf4410ace"}, + {file = "debugpy-1.8.1-cp312-cp312-win32.whl", hash = "sha256:caad2846e21188797a1f17fc09c31b84c7c3c23baf2516fed5b40b378515bbf0"}, + {file = "debugpy-1.8.1-cp312-cp312-win_amd64.whl", hash = "sha256:edcc9f58ec0fd121a25bc950d4578df47428d72e1a0d66c07403b04eb93bcf98"}, + {file = "debugpy-1.8.1-cp38-cp38-macosx_11_0_x86_64.whl", hash = "sha256:7a3afa222f6fd3d9dfecd52729bc2e12c93e22a7491405a0ecbf9e1d32d45b39"}, + {file = "debugpy-1.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d915a18f0597ef685e88bb35e5d7ab968964b7befefe1aaea1eb5b2640b586c7"}, + {file = "debugpy-1.8.1-cp38-cp38-win32.whl", hash = "sha256:92116039b5500633cc8d44ecc187abe2dfa9b90f7a82bbf81d079fcdd506bae9"}, + {file = "debugpy-1.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:e38beb7992b5afd9d5244e96ad5fa9135e94993b0c551ceebf3fe1a5d9beb234"}, + {file = "debugpy-1.8.1-cp39-cp39-macosx_11_0_x86_64.whl", hash = "sha256:bfb20cb57486c8e4793d41996652e5a6a885b4d9175dd369045dad59eaacea42"}, + {file = "debugpy-1.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efd3fdd3f67a7e576dd869c184c5dd71d9aaa36ded271939da352880c012e703"}, + {file = "debugpy-1.8.1-cp39-cp39-win32.whl", hash = "sha256:58911e8521ca0c785ac7a0539f1e77e0ce2df753f786188f382229278b4cdf23"}, + {file = "debugpy-1.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:6df9aa9599eb05ca179fb0b810282255202a66835c6efb1d112d21ecb830ddd3"}, + {file = "debugpy-1.8.1-py2.py3-none-any.whl", hash = "sha256:28acbe2241222b87e255260c76741e1fbf04fdc3b6d094fcf57b6c6f75ce1242"}, + {file = "debugpy-1.8.1.zip", hash = "sha256:f696d6be15be87aef621917585f9bb94b1dc9e8aced570db1b8a6fc14e8f9b42"}, +] + +[[package]] +name = "decorator" +version = "5.1.1" +description = "Decorators for Humans" +optional = false +python-versions = ">=3.5" +files = [ + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +description = "XML bomb protection for Python stdlib modules" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, + {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, +] + +[[package]] +name = "executing" +version = "2.0.1" +description = "Get the currently executing AST node of a frame, and other information" +optional = false +python-versions = ">=3.5" +files = [ + {file = "executing-2.0.1-py2.py3-none-any.whl", hash = "sha256:eac49ca94516ccc753f9fb5ce82603156e590b27525a8bc32cce8ae302eb61bc"}, + {file = "executing-2.0.1.tar.gz", hash = "sha256:35afe2ce3affba8ee97f2d69927fa823b08b472b7b994e36a52a964b93d16147"}, +] + +[package.extras] +tests = ["asttokens (>=2.1.0)", "coverage", "coverage-enable-subprocess", "ipython", "littleutils", "pytest", "rich"] + +[[package]] +name = "fastjsonschema" +version = "2.19.1" +description = "Fastest Python implementation of JSON schema" +optional = false +python-versions = "*" +files = [ + {file = "fastjsonschema-2.19.1-py3-none-any.whl", hash = "sha256:3672b47bc94178c9f23dbb654bf47440155d4db9df5f7bc47643315f9c405cd0"}, + {file = "fastjsonschema-2.19.1.tar.gz", hash = "sha256:e3126a94bdc4623d3de4485f8d468a12f02a67921315ddc87836d6e456dc789d"}, +] + +[package.extras] +devel = ["colorama", "json-spec", "jsonschema", "pylint", "pytest", "pytest-benchmark", "pytest-cache", "validictory"] + +[[package]] +name = "fonttools" +version = "4.49.0" +description = "Tools to manipulate font files" +optional = false +python-versions = ">=3.8" +files = [ + {file = "fonttools-4.49.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d970ecca0aac90d399e458f0b7a8a597e08f95de021f17785fb68e2dc0b99717"}, + {file = "fonttools-4.49.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ac9a745b7609f489faa65e1dc842168c18530874a5f5b742ac3dd79e26bca8bc"}, + {file = "fonttools-4.49.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ba0e00620ca28d4ca11fc700806fd69144b463aa3275e1b36e56c7c09915559"}, + {file = "fonttools-4.49.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cdee3ab220283057e7840d5fb768ad4c2ebe65bdba6f75d5d7bf47f4e0ed7d29"}, + {file = "fonttools-4.49.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ce7033cb61f2bb65d8849658d3786188afd80f53dad8366a7232654804529532"}, + {file = "fonttools-4.49.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:07bc5ea02bb7bc3aa40a1eb0481ce20e8d9b9642a9536cde0218290dd6085828"}, + {file = "fonttools-4.49.0-cp310-cp310-win32.whl", hash = "sha256:86eef6aab7fd7c6c8545f3ebd00fd1d6729ca1f63b0cb4d621bccb7d1d1c852b"}, + {file = "fonttools-4.49.0-cp310-cp310-win_amd64.whl", hash = "sha256:1fac1b7eebfce75ea663e860e7c5b4a8831b858c17acd68263bc156125201abf"}, + {file = "fonttools-4.49.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:edc0cce355984bb3c1d1e89d6a661934d39586bb32191ebff98c600f8957c63e"}, + {file = "fonttools-4.49.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:83a0d9336de2cba86d886507dd6e0153df333ac787377325a39a2797ec529814"}, + {file = "fonttools-4.49.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:36c8865bdb5cfeec88f5028e7e592370a0657b676c6f1d84a2108e0564f90e22"}, + {file = "fonttools-4.49.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33037d9e56e2562c710c8954d0f20d25b8386b397250d65581e544edc9d6b942"}, + {file = "fonttools-4.49.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8fb022d799b96df3eaa27263e9eea306bd3d437cc9aa981820850281a02b6c9a"}, + {file = "fonttools-4.49.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:33c584c0ef7dc54f5dd4f84082eabd8d09d1871a3d8ca2986b0c0c98165f8e86"}, + {file = "fonttools-4.49.0-cp311-cp311-win32.whl", hash = "sha256:cbe61b158deb09cffdd8540dc4a948d6e8f4d5b4f3bf5cd7db09bd6a61fee64e"}, + {file = "fonttools-4.49.0-cp311-cp311-win_amd64.whl", hash = "sha256:fc11e5114f3f978d0cea7e9853627935b30d451742eeb4239a81a677bdee6bf6"}, + {file = "fonttools-4.49.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:d647a0e697e5daa98c87993726da8281c7233d9d4ffe410812a4896c7c57c075"}, + {file = "fonttools-4.49.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f3bbe672df03563d1f3a691ae531f2e31f84061724c319652039e5a70927167e"}, + {file = "fonttools-4.49.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bebd91041dda0d511b0d303180ed36e31f4f54b106b1259b69fade68413aa7ff"}, + {file = "fonttools-4.49.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4145f91531fd43c50f9eb893faa08399816bb0b13c425667c48475c9f3a2b9b5"}, + {file = "fonttools-4.49.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ea329dafb9670ffbdf4dbc3b0e5c264104abcd8441d56de77f06967f032943cb"}, + {file = "fonttools-4.49.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:c076a9e548521ecc13d944b1d261ff3d7825048c338722a4bd126d22316087b7"}, + {file = "fonttools-4.49.0-cp312-cp312-win32.whl", hash = "sha256:b607ea1e96768d13be26d2b400d10d3ebd1456343eb5eaddd2f47d1c4bd00880"}, + {file = "fonttools-4.49.0-cp312-cp312-win_amd64.whl", hash = "sha256:a974c49a981e187381b9cc2c07c6b902d0079b88ff01aed34695ec5360767034"}, + {file = "fonttools-4.49.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b85ec0bdd7bdaa5c1946398cbb541e90a6dfc51df76dfa88e0aaa41b335940cb"}, + {file = "fonttools-4.49.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:af20acbe198a8a790618ee42db192eb128afcdcc4e96d99993aca0b60d1faeb4"}, + {file = "fonttools-4.49.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d418b1fee41a1d14931f7ab4b92dc0bc323b490e41d7a333eec82c9f1780c75"}, + {file = "fonttools-4.49.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b44a52b8e6244b6548851b03b2b377a9702b88ddc21dcaf56a15a0393d425cb9"}, + {file = "fonttools-4.49.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:7c7125068e04a70739dad11857a4d47626f2b0bd54de39e8622e89701836eabd"}, + {file = "fonttools-4.49.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:29e89d0e1a7f18bc30f197cfadcbef5a13d99806447c7e245f5667579a808036"}, + {file = "fonttools-4.49.0-cp38-cp38-win32.whl", hash = "sha256:9d95fa0d22bf4f12d2fb7b07a46070cdfc19ef5a7b1c98bc172bfab5bf0d6844"}, + {file = "fonttools-4.49.0-cp38-cp38-win_amd64.whl", hash = "sha256:768947008b4dc552d02772e5ebd49e71430a466e2373008ce905f953afea755a"}, + {file = "fonttools-4.49.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:08877e355d3dde1c11973bb58d4acad1981e6d1140711230a4bfb40b2b937ccc"}, + {file = "fonttools-4.49.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fdb54b076f25d6b0f0298dc706acee5052de20c83530fa165b60d1f2e9cbe3cb"}, + {file = "fonttools-4.49.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0af65c720520710cc01c293f9c70bd69684365c6015cc3671db2b7d807fe51f2"}, + {file = "fonttools-4.49.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f255ce8ed7556658f6d23f6afd22a6d9bbc3edb9b96c96682124dc487e1bf42"}, + {file = "fonttools-4.49.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d00af0884c0e65f60dfaf9340e26658836b935052fdd0439952ae42e44fdd2be"}, + {file = "fonttools-4.49.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:263832fae27481d48dfafcc43174644b6706639661e242902ceb30553557e16c"}, + {file = "fonttools-4.49.0-cp39-cp39-win32.whl", hash = "sha256:0404faea044577a01bb82d47a8fa4bc7a54067fa7e324785dd65d200d6dd1133"}, + {file = "fonttools-4.49.0-cp39-cp39-win_amd64.whl", hash = "sha256:b050d362df50fc6e38ae3954d8c29bf2da52be384649ee8245fdb5186b620836"}, + {file = "fonttools-4.49.0-py3-none-any.whl", hash = "sha256:af281525e5dd7fa0b39fb1667b8d5ca0e2a9079967e14c4bfe90fd1cd13e0f18"}, + {file = "fonttools-4.49.0.tar.gz", hash = "sha256:ebf46e7f01b7af7861310417d7c49591a85d99146fc23a5ba82fdb28af156321"}, +] + +[package.extras] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "pycairo", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] +graphite = ["lz4 (>=1.7.4.2)"] +interpolatable = ["munkres", "pycairo", "scipy"] +lxml = ["lxml (>=4.0)"] +pathops = ["skia-pathops (>=0.5.0)"] +plot = ["matplotlib"] +repacker = ["uharfbuzz (>=0.23.0)"] +symfont = ["sympy"] +type1 = ["xattr"] +ufo = ["fs (>=2.2.0,<3)"] +unicode = ["unicodedata2 (>=15.1.0)"] +woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] + +[[package]] +name = "fqdn" +version = "1.5.1" +description = "Validates fully-qualified domain names against RFC 1123, so that they are acceptable to modern bowsers" +optional = false +python-versions = ">=2.7, !=3.0, !=3.1, !=3.2, !=3.3, !=3.4, <4" +files = [ + {file = "fqdn-1.5.1-py3-none-any.whl", hash = "sha256:3a179af3761e4df6eb2e026ff9e1a3033d3587bf980a0b1b2e1e5d08d7358014"}, + {file = "fqdn-1.5.1.tar.gz", hash = "sha256:105ed3677e767fb5ca086a0c1f4bb66ebc3c100be518f0e0d755d9eae164d89f"}, +] + +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "httpcore" +version = "1.0.4" +description = "A minimal low-level HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpcore-1.0.4-py3-none-any.whl", hash = "sha256:ac418c1db41bade2ad53ae2f3834a3a0f5ae76b56cf5aa497d2d033384fc7d73"}, + {file = "httpcore-1.0.4.tar.gz", hash = "sha256:cb2839ccfcba0d2d3c1131d3c3e26dfc327326fbe7a5dc0dbfe9f6c9151bb022"}, +] + +[package.dependencies] +certifi = "*" +h11 = ">=0.13,<0.15" + +[package.extras] +asyncio = ["anyio (>=4.0,<5.0)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] +trio = ["trio (>=0.22.0,<0.25.0)"] + +[[package]] +name = "httpx" +version = "0.27.0" +description = "The next generation HTTP client." +optional = false +python-versions = ">=3.8" +files = [ + {file = "httpx-0.27.0-py3-none-any.whl", hash = "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5"}, + {file = "httpx-0.27.0.tar.gz", hash = "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5"}, +] + +[package.dependencies] +anyio = "*" +certifi = "*" +httpcore = "==1.*" +idna = "*" +sniffio = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (==8.*)", "pygments (==2.*)", "rich (>=10,<14)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (==1.*)"] + +[[package]] +name = "idna" +version = "3.6" +description = "Internationalized Domain Names in Applications (IDNA)" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, + {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, +] + +[[package]] +name = "ipykernel" +version = "6.29.3" +description = "IPython Kernel for Jupyter" +optional = false +python-versions = ">=3.8" +files = [ + {file = "ipykernel-6.29.3-py3-none-any.whl", hash = "sha256:5aa086a4175b0229d4eca211e181fb473ea78ffd9869af36ba7694c947302a21"}, + {file = "ipykernel-6.29.3.tar.gz", hash = "sha256:e14c250d1f9ea3989490225cc1a542781b095a18a19447fcf2b5eaf7d0ac5bd2"}, +] + +[package.dependencies] +appnope = {version = "*", markers = "platform_system == \"Darwin\""} +comm = ">=0.1.1" +debugpy = ">=1.6.5" +ipython = ">=7.23.1" +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +matplotlib-inline = ">=0.1" +nest-asyncio = "*" +packaging = "*" +psutil = "*" +pyzmq = ">=24" +tornado = ">=6.1" +traitlets = ">=5.4.0" + +[package.extras] +cov = ["coverage[toml]", "curio", "matplotlib", "pytest-cov", "trio"] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "trio"] +pyqt5 = ["pyqt5"] +pyside6 = ["pyside6"] +test = ["flaky", "ipyparallel", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.23.5)", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "ipython" +version = "8.22.2" +description = "IPython: Productive Interactive Computing" +optional = false +python-versions = ">=3.10" +files = [ + {file = "ipython-8.22.2-py3-none-any.whl", hash = "sha256:3c86f284c8f3d8f2b6c662f885c4889a91df7cd52056fd02b7d8d6195d7f56e9"}, + {file = "ipython-8.22.2.tar.gz", hash = "sha256:2dcaad9049f9056f1fef63514f176c7d41f930daa78d05b82a176202818f2c14"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "sys_platform == \"win32\""} +decorator = "*" +jedi = ">=0.16" +matplotlib-inline = "*" +pexpect = {version = ">4.3", markers = "sys_platform != \"win32\" and sys_platform != \"emscripten\""} +prompt-toolkit = ">=3.0.41,<3.1.0" +pygments = ">=2.4.0" +stack-data = "*" +traitlets = ">=5.13.0" + +[package.extras] +all = ["ipython[black,doc,kernel,nbconvert,nbformat,notebook,parallel,qtconsole,terminal]", "ipython[test,test-extra]"] +black = ["black"] +doc = ["docrepr", "exceptiongroup", "ipykernel", "ipython[test]", "matplotlib", "setuptools (>=18.5)", "sphinx (>=1.3)", "sphinx-rtd-theme", "sphinxcontrib-jquery", "stack-data", "typing-extensions"] +kernel = ["ipykernel"] +nbconvert = ["nbconvert"] +nbformat = ["nbformat"] +notebook = ["ipywidgets", "notebook"] +parallel = ["ipyparallel"] +qtconsole = ["qtconsole"] +test = ["pickleshare", "pytest (<8)", "pytest-asyncio (<0.22)", "testpath"] +test-extra = ["curio", "ipython[test]", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.23)", "pandas", "trio"] + +[[package]] +name = "isoduration" +version = "20.11.0" +description = "Operations with ISO 8601 durations" +optional = false +python-versions = ">=3.7" +files = [ + {file = "isoduration-20.11.0-py3-none-any.whl", hash = "sha256:b2904c2a4228c3d44f409c8ae8e2370eb21a26f7ac2ec5446df141dde3452042"}, + {file = "isoduration-20.11.0.tar.gz", hash = "sha256:ac2f9015137935279eac671f94f89eb00584f940f5dc49462a0c4ee692ba1bd9"}, +] + +[package.dependencies] +arrow = ">=0.15.0" + +[[package]] +name = "jedi" +version = "0.19.1" +description = "An autocompletion tool for Python that can be used for text editors." +optional = false +python-versions = ">=3.6" +files = [ + {file = "jedi-0.19.1-py2.py3-none-any.whl", hash = "sha256:e983c654fe5c02867aef4cdfce5a2fbb4a50adc0af145f70504238f18ef5e7e0"}, + {file = "jedi-0.19.1.tar.gz", hash = "sha256:cf0496f3651bc65d7174ac1b7d043eff454892c708a87d1b683e57b569927ffd"}, +] + +[package.dependencies] +parso = ">=0.8.3,<0.9.0" + +[package.extras] +docs = ["Jinja2 (==2.11.3)", "MarkupSafe (==1.1.1)", "Pygments (==2.8.1)", "alabaster (==0.7.12)", "babel (==2.9.1)", "chardet (==4.0.0)", "commonmark (==0.8.1)", "docutils (==0.17.1)", "future (==0.18.2)", "idna (==2.10)", "imagesize (==1.2.0)", "mock (==1.0.1)", "packaging (==20.9)", "pyparsing (==2.4.7)", "pytz (==2021.1)", "readthedocs-sphinx-ext (==2.1.4)", "recommonmark (==0.5.0)", "requests (==2.25.1)", "six (==1.15.0)", "snowballstemmer (==2.1.0)", "sphinx (==1.8.5)", "sphinx-rtd-theme (==0.4.3)", "sphinxcontrib-serializinghtml (==1.1.4)", "sphinxcontrib-websupport (==1.2.4)", "urllib3 (==1.26.4)"] +qa = ["flake8 (==5.0.4)", "mypy (==0.971)", "types-setuptools (==67.2.0.1)"] +testing = ["Django", "attrs", "colorama", "docopt", "pytest (<7.0.0)"] + +[[package]] +name = "jinja2" +version = "3.1.3" +description = "A very fast and expressive template engine." +optional = false +python-versions = ">=3.7" +files = [ + {file = "Jinja2-3.1.3-py3-none-any.whl", hash = "sha256:7d6d50dd97d52cbc355597bd845fabfbac3f551e1f99619e39a35ce8c370b5fa"}, + {file = "Jinja2-3.1.3.tar.gz", hash = "sha256:ac8bd6544d4bb2c9792bf3a159e80bba8fda7f07e81bc3aed565432d5925ba90"}, +] + +[package.dependencies] +MarkupSafe = ">=2.0" + +[package.extras] +i18n = ["Babel (>=2.7)"] + +[[package]] +name = "json5" +version = "0.9.22" +description = "A Python implementation of the JSON5 data format." +optional = false +python-versions = ">=3.8" +files = [ + {file = "json5-0.9.22-py3-none-any.whl", hash = "sha256:6621007c70897652f8b5d03885f732771c48d1925591ad989aa80c7e0e5ad32f"}, + {file = "json5-0.9.22.tar.gz", hash = "sha256:b729bde7650b2196a35903a597d2b704b8fdf8648bfb67368cfb79f1174a17bd"}, +] + +[package.extras] +dev = ["hypothesis"] + +[[package]] +name = "jsonpointer" +version = "2.4" +description = "Identify specific nodes in a JSON document (RFC 6901)" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" +files = [ + {file = "jsonpointer-2.4-py2.py3-none-any.whl", hash = "sha256:15d51bba20eea3165644553647711d150376234112651b4f1811022aecad7d7a"}, + {file = "jsonpointer-2.4.tar.gz", hash = "sha256:585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"}, +] + +[[package]] +name = "jsonschema" +version = "4.21.1" +description = "An implementation of JSON Schema validation for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.21.1-py3-none-any.whl", hash = "sha256:7996507afae316306f9e2290407761157c6f78002dcf7419acb99822143d1c6f"}, + {file = "jsonschema-4.21.1.tar.gz", hash = "sha256:85727c00279f5fa6bedbe6238d2aa6403bedd8b4864ab11207d07df3cc1b2ee5"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +fqdn = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +idna = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +isoduration = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +jsonpointer = {version = ">1.13", optional = true, markers = "extra == \"format-nongpl\""} +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rfc3339-validator = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +rfc3986-validator = {version = ">0.1.0", optional = true, markers = "extra == \"format-nongpl\""} +rpds-py = ">=0.7.1" +uri-template = {version = "*", optional = true, markers = "extra == \"format-nongpl\""} +webcolors = {version = ">=1.11", optional = true, markers = "extra == \"format-nongpl\""} + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.12.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.12.1-py3-none-any.whl", hash = "sha256:87e4fdf3a94858b8a2ba2778d9ba57d8a9cafca7c7489c46ba0d30a8bc6a9c3c"}, + {file = "jsonschema_specifications-2023.12.1.tar.gz", hash = "sha256:48a76787b3e70f5ed53f1160d2b81f586e4ca6d1548c5de7085d1682674764cc"}, +] + +[package.dependencies] +referencing = ">=0.31.0" + +[[package]] +name = "jupyter-black" +version = "0.3.4" +description = "A simple extension for Jupyter Notebook and Jupyter Lab to beautify Python code automatically using Black. Fork of dnanhkhoa/nb_black." +optional = false +python-versions = "*" +files = [ + {file = "jupyter-black-0.3.4.tar.gz", hash = "sha256:2a38f33d4c321eb768f426103635ac9b80b40c9e42aa06072a729e3caddca4c3"}, + {file = "jupyter_black-0.3.4-py3-none-any.whl", hash = "sha256:8690ec1d16d173a74eecc44419755ca7209c494b213e0d7b04c40a878239e247"}, +] + +[package.dependencies] +black = ">=21" +ipython = ">=7" +tokenize-rt = ">=4" + +[package.extras] +dev = ["build (==0.9.0)", "twine (==4.0.1)", "wheel (==0.37.0)"] +test = ["flake8 (==3.9.2)", "flake8-docstrings (==1.6.0)", "flake8-import-order (==0.18.1)", "isort (==5.11.5)", "jupyterlab (==3.6.3)", "mypy (==1.2.0)", "pep8-naming (==0.12.1)", "playwright (==1.14.1)", "pytest (==7.3.1)", "tox (==4.5.1)"] + +[[package]] +name = "jupyter-client" +version = "8.6.0" +description = "Jupyter protocol implementation and client libraries" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_client-8.6.0-py3-none-any.whl", hash = "sha256:909c474dbe62582ae62b758bca86d6518c85234bdee2d908c778db6d72f39d99"}, + {file = "jupyter_client-8.6.0.tar.gz", hash = "sha256:0642244bb83b4764ae60d07e010e15f0e2d275ec4e918a8f7b80fbbef3ca60c7"}, +] + +[package.dependencies] +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +python-dateutil = ">=2.8.2" +pyzmq = ">=23.0" +tornado = ">=6.2" +traitlets = ">=5.3" + +[package.extras] +docs = ["ipykernel", "myst-parser", "pydata-sphinx-theme", "sphinx (>=4)", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["coverage", "ipykernel (>=6.14)", "mypy", "paramiko", "pre-commit", "pytest", "pytest-cov", "pytest-jupyter[client] (>=0.4.1)", "pytest-timeout"] + +[[package]] +name = "jupyter-core" +version = "5.7.1" +description = "Jupyter core package. A base package on which Jupyter projects rely." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_core-5.7.1-py3-none-any.whl", hash = "sha256:c65c82126453a723a2804aa52409930434598fd9d35091d63dfb919d2b765bb7"}, + {file = "jupyter_core-5.7.1.tar.gz", hash = "sha256:de61a9d7fc71240f688b2fb5ab659fbb56979458dc66a71decd098e03c79e218"}, +] + +[package.dependencies] +platformdirs = ">=2.5" +pywin32 = {version = ">=300", markers = "sys_platform == \"win32\" and platform_python_implementation != \"PyPy\""} +traitlets = ">=5.3" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-spelling", "traitlets"] +test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "jupyter-events" +version = "0.9.0" +description = "Jupyter Event System library" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_events-0.9.0-py3-none-any.whl", hash = "sha256:d853b3c10273ff9bc8bb8b30076d65e2c9685579db736873de6c2232dde148bf"}, + {file = "jupyter_events-0.9.0.tar.gz", hash = "sha256:81ad2e4bc710881ec274d31c6c50669d71bbaa5dd9d01e600b56faa85700d399"}, +] + +[package.dependencies] +jsonschema = {version = ">=4.18.0", extras = ["format-nongpl"]} +python-json-logger = ">=2.0.4" +pyyaml = ">=5.3" +referencing = "*" +rfc3339-validator = "*" +rfc3986-validator = ">=0.1.1" +traitlets = ">=5.3" + +[package.extras] +cli = ["click", "rich"] +docs = ["jupyterlite-sphinx", "myst-parser", "pydata-sphinx-theme", "sphinxcontrib-spelling"] +test = ["click", "pre-commit", "pytest (>=7.0)", "pytest-asyncio (>=0.19.0)", "pytest-console-scripts", "rich"] + +[[package]] +name = "jupyter-lsp" +version = "2.2.4" +description = "Multi-Language Server WebSocket proxy for Jupyter Notebook/Lab server" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter-lsp-2.2.4.tar.gz", hash = "sha256:5e50033149344065348e688608f3c6d654ef06d9856b67655bd7b6bac9ee2d59"}, + {file = "jupyter_lsp-2.2.4-py3-none-any.whl", hash = "sha256:da61cb63a16b6dff5eac55c2699cc36eac975645adee02c41bdfc03bf4802e77"}, +] + +[package.dependencies] +jupyter-server = ">=1.1.2" + +[[package]] +name = "jupyter-server" +version = "2.13.0" +description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_server-2.13.0-py3-none-any.whl", hash = "sha256:77b2b49c3831fbbfbdb5048cef4350d12946191f833a24e5f83e5f8f4803e97b"}, + {file = "jupyter_server-2.13.0.tar.gz", hash = "sha256:c80bfb049ea20053c3d9641c2add4848b38073bf79f1729cea1faed32fc1c78e"}, +] + +[package.dependencies] +anyio = ">=3.1.0" +argon2-cffi = "*" +jinja2 = "*" +jupyter-client = ">=7.4.4" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +jupyter-events = ">=0.9.0" +jupyter-server-terminals = "*" +nbconvert = ">=6.4.4" +nbformat = ">=5.3.0" +overrides = "*" +packaging = "*" +prometheus-client = "*" +pywinpty = {version = "*", markers = "os_name == \"nt\""} +pyzmq = ">=24" +send2trash = ">=1.8.2" +terminado = ">=0.8.3" +tornado = ">=6.2.0" +traitlets = ">=5.6.0" +websocket-client = "*" + +[package.extras] +docs = ["ipykernel", "jinja2", "jupyter-client", "jupyter-server", "myst-parser", "nbformat", "prometheus-client", "pydata-sphinx-theme", "send2trash", "sphinx-autodoc-typehints", "sphinxcontrib-github-alt", "sphinxcontrib-openapi (>=0.8.0)", "sphinxcontrib-spelling", "sphinxemoji", "tornado", "typing-extensions"] +test = ["flaky", "ipykernel", "pre-commit", "pytest (>=7.0)", "pytest-console-scripts", "pytest-jupyter[server] (>=0.7)", "pytest-timeout", "requests"] + +[[package]] +name = "jupyter-server-terminals" +version = "0.5.2" +description = "A Jupyter Server Extension Providing Terminals." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyter_server_terminals-0.5.2-py3-none-any.whl", hash = "sha256:1b80c12765da979513c42c90215481bbc39bd8ae7c0350b4f85bc3eb58d0fa80"}, + {file = "jupyter_server_terminals-0.5.2.tar.gz", hash = "sha256:396b5ccc0881e550bf0ee7012c6ef1b53edbde69e67cab1d56e89711b46052e8"}, +] + +[package.dependencies] +pywinpty = {version = ">=2.0.3", markers = "os_name == \"nt\""} +terminado = ">=0.8.3" + +[package.extras] +docs = ["jinja2", "jupyter-server", "mistune (<4.0)", "myst-parser", "nbformat", "packaging", "pydata-sphinx-theme", "sphinxcontrib-github-alt", "sphinxcontrib-openapi", "sphinxcontrib-spelling", "sphinxemoji", "tornado"] +test = ["jupyter-server (>=2.0.0)", "pytest (>=7.0)", "pytest-jupyter[server] (>=0.5.3)", "pytest-timeout"] + +[[package]] +name = "jupyterlab" +version = "4.1.4" +description = "JupyterLab computational environment" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab-4.1.4-py3-none-any.whl", hash = "sha256:f92c3f2b12b88efcf767205f49be9b2f86b85544f9c4f342bb5e9904a16cf931"}, + {file = "jupyterlab-4.1.4.tar.gz", hash = "sha256:e03c82c124ad8a0892e498b9dde79c50868b2c267819aca3f55ce47c57ebeb1d"}, +] + +[package.dependencies] +async-lru = ">=1.0.0" +httpx = ">=0.25.0" +ipykernel = "*" +jinja2 = ">=3.0.3" +jupyter-core = "*" +jupyter-lsp = ">=2.0.0" +jupyter-server = ">=2.4.0,<3" +jupyterlab-server = ">=2.19.0,<3" +notebook-shim = ">=0.2" +packaging = "*" +tornado = ">=6.2.0" +traitlets = "*" + +[package.extras] +dev = ["build", "bump2version", "coverage", "hatch", "pre-commit", "pytest-cov", "ruff (==0.2.0)"] +docs = ["jsx-lexer", "myst-parser", "pydata-sphinx-theme (>=0.13.0)", "pytest", "pytest-check-links", "pytest-jupyter", "sphinx (>=1.8,<7.3.0)", "sphinx-copybutton"] +docs-screenshots = ["altair (==5.2.0)", "ipython (==8.16.1)", "ipywidgets (==8.1.1)", "jupyterlab-geojson (==3.4.0)", "jupyterlab-language-pack-zh-cn (==4.0.post6)", "matplotlib (==3.8.2)", "nbconvert (>=7.0.0)", "pandas (==2.2.0)", "scipy (==1.12.0)", "vega-datasets (==0.9.0)"] +test = ["coverage", "pytest (>=7.0)", "pytest-check-links (>=0.7)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter (>=0.5.3)", "pytest-timeout", "pytest-tornasync", "requests", "requests-cache", "virtualenv"] + +[[package]] +name = "jupyterlab-pygments" +version = "0.3.0" +description = "Pygments theme using JupyterLab CSS variables" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780"}, + {file = "jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d"}, +] + +[[package]] +name = "jupyterlab-server" +version = "2.25.3" +description = "A set of server components for JupyterLab and JupyterLab like applications." +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupyterlab_server-2.25.3-py3-none-any.whl", hash = "sha256:c48862519fded9b418c71645d85a49b2f0ec50d032ba8316738e9276046088c1"}, + {file = "jupyterlab_server-2.25.3.tar.gz", hash = "sha256:846f125a8a19656611df5b03e5912c8393cea6900859baa64fa515eb64a8dc40"}, +] + +[package.dependencies] +babel = ">=2.10" +jinja2 = ">=3.0.3" +json5 = ">=0.9.0" +jsonschema = ">=4.18.0" +jupyter-server = ">=1.21,<3" +packaging = ">=21.3" +requests = ">=2.31" + +[package.extras] +docs = ["autodoc-traits", "jinja2 (<3.2.0)", "mistune (<4)", "myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinxcontrib-openapi (>0.8)"] +openapi = ["openapi-core (>=0.18.0,<0.19.0)", "ruamel-yaml"] +test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-validator (>=0.6.0,<0.8.0)", "pytest (>=7.0)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter[server] (>=0.6.2)", "pytest-timeout", "requests-mock", "ruamel-yaml", "sphinxcontrib-spelling", "strict-rfc3339", "werkzeug"] + +[[package]] +name = "jupytext" +version = "1.16.1" +description = "Jupyter notebooks as Markdown documents, Julia, Python or R scripts" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jupytext-1.16.1-py3-none-any.whl", hash = "sha256:796ec4f68ada663569e5d38d4ef03738a01284bfe21c943c485bc36433898bd0"}, + {file = "jupytext-1.16.1.tar.gz", hash = "sha256:68c7b68685e870e80e60fda8286fbd6269e9c74dc1df4316df6fe46eabc94c99"}, +] + +[package.dependencies] +markdown-it-py = ">=1.0" +mdit-py-plugins = "*" +nbformat = "*" +packaging = "*" +pyyaml = "*" +toml = "*" + +[package.extras] +dev = ["jupytext[test-cov,test-external]"] +docs = ["myst-parser", "sphinx", "sphinx-copybutton", "sphinx-rtd-theme"] +test = ["pytest", "pytest-randomly", "pytest-xdist"] +test-cov = ["jupytext[test-integration]", "pytest-cov (>=2.6.1)"] +test-external = ["autopep8", "black", "flake8", "gitpython", "isort", "jupyter-fs (<0.4.0)", "jupytext[test-integration]", "pre-commit", "sphinx-gallery (<0.8)"] +test-functional = ["jupytext[test]"] +test-integration = ["ipykernel", "jupyter-server (!=2.11)", "jupytext[test-functional]", "nbconvert"] +test-ui = ["calysto-bash"] + +[[package]] +name = "kiwisolver" +version = "1.4.5" +description = "A fast implementation of the Cassowary constraint solver" +optional = false +python-versions = ">=3.7" +files = [ + {file = "kiwisolver-1.4.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:05703cf211d585109fcd72207a31bb170a0f22144d68298dc5e61b3c946518af"}, + {file = "kiwisolver-1.4.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:146d14bebb7f1dc4d5fbf74f8a6cb15ac42baadee8912eb84ac0b3b2a3dc6ac3"}, + {file = "kiwisolver-1.4.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6ef7afcd2d281494c0a9101d5c571970708ad911d028137cd558f02b851c08b4"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9eaa8b117dc8337728e834b9c6e2611f10c79e38f65157c4c38e9400286f5cb1"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ec20916e7b4cbfb1f12380e46486ec4bcbaa91a9c448b97023fde0d5bbf9e4ff"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39b42c68602539407884cf70d6a480a469b93b81b7701378ba5e2328660c847a"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa12042de0171fad672b6c59df69106d20d5596e4f87b5e8f76df757a7c399aa"}, + {file = "kiwisolver-1.4.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a40773c71d7ccdd3798f6489aaac9eee213d566850a9533f8d26332d626b82c"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:19df6e621f6d8b4b9c4d45f40a66839294ff2bb235e64d2178f7522d9170ac5b"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:83d78376d0d4fd884e2c114d0621624b73d2aba4e2788182d286309ebdeed770"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e391b1f0a8a5a10ab3b9bb6afcfd74f2175f24f8975fb87ecae700d1503cdee0"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:852542f9481f4a62dbb5dd99e8ab7aedfeb8fb6342349a181d4036877410f525"}, + {file = "kiwisolver-1.4.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59edc41b24031bc25108e210c0def6f6c2191210492a972d585a06ff246bb79b"}, + {file = "kiwisolver-1.4.5-cp310-cp310-win32.whl", hash = "sha256:a6aa6315319a052b4ee378aa171959c898a6183f15c1e541821c5c59beaa0238"}, + {file = "kiwisolver-1.4.5-cp310-cp310-win_amd64.whl", hash = "sha256:d0ef46024e6a3d79c01ff13801cb19d0cad7fd859b15037aec74315540acc276"}, + {file = "kiwisolver-1.4.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:11863aa14a51fd6ec28688d76f1735f8f69ab1fabf388851a595d0721af042f5"}, + {file = "kiwisolver-1.4.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:8ab3919a9997ab7ef2fbbed0cc99bb28d3c13e6d4b1ad36e97e482558a91be90"}, + {file = "kiwisolver-1.4.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:fcc700eadbbccbf6bc1bcb9dbe0786b4b1cb91ca0dcda336eef5c2beed37b797"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dfdd7c0b105af050eb3d64997809dc21da247cf44e63dc73ff0fd20b96be55a9"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76c6a5964640638cdeaa0c359382e5703e9293030fe730018ca06bc2010c4437"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bbea0db94288e29afcc4c28afbf3a7ccaf2d7e027489c449cf7e8f83c6346eb9"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ceec1a6bc6cab1d6ff5d06592a91a692f90ec7505d6463a88a52cc0eb58545da"}, + {file = "kiwisolver-1.4.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:040c1aebeda72197ef477a906782b5ab0d387642e93bda547336b8957c61022e"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f91de7223d4c7b793867797bacd1ee53bfe7359bd70d27b7b58a04efbb9436c8"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:faae4860798c31530dd184046a900e652c95513796ef51a12bc086710c2eec4d"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0157420efcb803e71d1b28e2c287518b8808b7cf1ab8af36718fd0a2c453eb0"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:06f54715b7737c2fecdbf140d1afb11a33d59508a47bf11bb38ecf21dc9ab79f"}, + {file = "kiwisolver-1.4.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fdb7adb641a0d13bdcd4ef48e062363d8a9ad4a182ac7647ec88f695e719ae9f"}, + {file = "kiwisolver-1.4.5-cp311-cp311-win32.whl", hash = "sha256:bb86433b1cfe686da83ce32a9d3a8dd308e85c76b60896d58f082136f10bffac"}, + {file = "kiwisolver-1.4.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c08e1312a9cf1074d17b17728d3dfce2a5125b2d791527f33ffbe805200a355"}, + {file = "kiwisolver-1.4.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:32d5cf40c4f7c7b3ca500f8985eb3fb3a7dfc023215e876f207956b5ea26632a"}, + {file = "kiwisolver-1.4.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f846c260f483d1fd217fe5ed7c173fb109efa6b1fc8381c8b7552c5781756192"}, + {file = "kiwisolver-1.4.5-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5ff5cf3571589b6d13bfbfd6bcd7a3f659e42f96b5fd1c4830c4cf21d4f5ef45"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7269d9e5f1084a653d575c7ec012ff57f0c042258bf5db0954bf551c158466e7"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da802a19d6e15dffe4b0c24b38b3af68e6c1a68e6e1d8f30148c83864f3881db"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3aba7311af82e335dd1e36ffff68aaca609ca6290c2cb6d821a39aa075d8e3ff"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:763773d53f07244148ccac5b084da5adb90bfaee39c197554f01b286cf869228"}, + {file = "kiwisolver-1.4.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2270953c0d8cdab5d422bee7d2007f043473f9d2999631c86a223c9db56cbd16"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d099e745a512f7e3bbe7249ca835f4d357c586d78d79ae8f1dcd4d8adeb9bda9"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:74db36e14a7d1ce0986fa104f7d5637aea5c82ca6326ed0ec5694280942d1162"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:7e5bab140c309cb3a6ce373a9e71eb7e4873c70c2dda01df6820474f9889d6d4"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:0f114aa76dc1b8f636d077979c0ac22e7cd8f3493abbab152f20eb8d3cda71f3"}, + {file = "kiwisolver-1.4.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:88a2df29d4724b9237fc0c6eaf2a1adae0cdc0b3e9f4d8e7dc54b16812d2d81a"}, + {file = "kiwisolver-1.4.5-cp312-cp312-win32.whl", hash = "sha256:72d40b33e834371fd330fb1472ca19d9b8327acb79a5821d4008391db8e29f20"}, + {file = "kiwisolver-1.4.5-cp312-cp312-win_amd64.whl", hash = "sha256:2c5674c4e74d939b9d91dda0fae10597ac7521768fec9e399c70a1f27e2ea2d9"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:3a2b053a0ab7a3960c98725cfb0bf5b48ba82f64ec95fe06f1d06c99b552e130"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3cd32d6c13807e5c66a7cbb79f90b553642f296ae4518a60d8d76243b0ad2898"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:59ec7b7c7e1a61061850d53aaf8e93db63dce0c936db1fda2658b70e4a1be709"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:da4cfb373035def307905d05041c1d06d8936452fe89d464743ae7fb8371078b"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2400873bccc260b6ae184b2b8a4fec0e4082d30648eadb7c3d9a13405d861e89"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1b04139c4236a0f3aff534479b58f6f849a8b351e1314826c2d230849ed48985"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:4e66e81a5779b65ac21764c295087de82235597a2293d18d943f8e9e32746265"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:7931d8f1f67c4be9ba1dd9c451fb0eeca1a25b89e4d3f89e828fe12a519b782a"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:b3f7e75f3015df442238cca659f8baa5f42ce2a8582727981cbfa15fee0ee205"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:bbf1d63eef84b2e8c89011b7f2235b1e0bf7dacc11cac9431fc6468e99ac77fb"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4c380469bd3f970ef677bf2bcba2b6b0b4d5c75e7a020fb863ef75084efad66f"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-win32.whl", hash = "sha256:9408acf3270c4b6baad483865191e3e582b638b1654a007c62e3efe96f09a9a3"}, + {file = "kiwisolver-1.4.5-cp37-cp37m-win_amd64.whl", hash = "sha256:5b94529f9b2591b7af5f3e0e730a4e0a41ea174af35a4fd067775f9bdfeee01a"}, + {file = "kiwisolver-1.4.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:11c7de8f692fc99816e8ac50d1d1aef4f75126eefc33ac79aac02c099fd3db71"}, + {file = "kiwisolver-1.4.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:53abb58632235cd154176ced1ae8f0d29a6657aa1aa9decf50b899b755bc2b93"}, + {file = "kiwisolver-1.4.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:88b9f257ca61b838b6f8094a62418421f87ac2a1069f7e896c36a7d86b5d4c29"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3195782b26fc03aa9c6913d5bad5aeb864bdc372924c093b0f1cebad603dd712"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fc579bf0f502e54926519451b920e875f433aceb4624a3646b3252b5caa9e0b6"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5a580c91d686376f0f7c295357595c5a026e6cbc3d77b7c36e290201e7c11ecb"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cfe6ab8da05c01ba6fbea630377b5da2cd9bcbc6338510116b01c1bc939a2c18"}, + {file = "kiwisolver-1.4.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:d2e5a98f0ec99beb3c10e13b387f8db39106d53993f498b295f0c914328b1333"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:a51a263952b1429e429ff236d2f5a21c5125437861baeed77f5e1cc2d2c7c6da"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:3edd2fa14e68c9be82c5b16689e8d63d89fe927e56debd6e1dbce7a26a17f81b"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:74d1b44c6cfc897df648cc9fdaa09bc3e7679926e6f96df05775d4fb3946571c"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:76d9289ed3f7501012e05abb8358bbb129149dbd173f1f57a1bf1c22d19ab7cc"}, + {file = "kiwisolver-1.4.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:92dea1ffe3714fa8eb6a314d2b3c773208d865a0e0d35e713ec54eea08a66250"}, + {file = "kiwisolver-1.4.5-cp38-cp38-win32.whl", hash = "sha256:5c90ae8c8d32e472be041e76f9d2f2dbff4d0b0be8bd4041770eddb18cf49a4e"}, + {file = "kiwisolver-1.4.5-cp38-cp38-win_amd64.whl", hash = "sha256:c7940c1dc63eb37a67721b10d703247552416f719c4188c54e04334321351ced"}, + {file = "kiwisolver-1.4.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:9407b6a5f0d675e8a827ad8742e1d6b49d9c1a1da5d952a67d50ef5f4170b18d"}, + {file = "kiwisolver-1.4.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:15568384086b6df3c65353820a4473575dbad192e35010f622c6ce3eebd57af9"}, + {file = "kiwisolver-1.4.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0dc9db8e79f0036e8173c466d21ef18e1befc02de8bf8aa8dc0813a6dc8a7046"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:cdc8a402aaee9a798b50d8b827d7ecf75edc5fb35ea0f91f213ff927c15f4ff0"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:6c3bd3cde54cafb87d74d8db50b909705c62b17c2099b8f2e25b461882e544ff"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:955e8513d07a283056b1396e9a57ceddbd272d9252c14f154d450d227606eb54"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:346f5343b9e3f00b8db8ba359350eb124b98c99efd0b408728ac6ebf38173958"}, + {file = "kiwisolver-1.4.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b9098e0049e88c6a24ff64545cdfc50807818ba6c1b739cae221bbbcbc58aad3"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:00bd361b903dc4bbf4eb165f24d1acbee754fce22ded24c3d56eec268658a5cf"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7b8b454bac16428b22560d0a1cf0a09875339cab69df61d7805bf48919415901"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:f1d072c2eb0ad60d4c183f3fb44ac6f73fb7a8f16a2694a91f988275cbf352f9"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:31a82d498054cac9f6d0b53d02bb85811185bcb477d4b60144f915f3b3126342"}, + {file = "kiwisolver-1.4.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6512cb89e334e4700febbffaaa52761b65b4f5a3cf33f960213d5656cea36a77"}, + {file = "kiwisolver-1.4.5-cp39-cp39-win32.whl", hash = "sha256:9db8ea4c388fdb0f780fe91346fd438657ea602d58348753d9fb265ce1bca67f"}, + {file = "kiwisolver-1.4.5-cp39-cp39-win_amd64.whl", hash = "sha256:59415f46a37f7f2efeec758353dd2eae1b07640d8ca0f0c42548ec4125492635"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:5c7b3b3a728dc6faf3fc372ef24f21d1e3cee2ac3e9596691d746e5a536de920"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:620ced262a86244e2be10a676b646f29c34537d0d9cc8eb26c08f53d98013390"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:378a214a1e3bbf5ac4a8708304318b4f890da88c9e6a07699c4ae7174c09a68d"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaf7be1207676ac608a50cd08f102f6742dbfc70e8d60c4db1c6897f62f71523"}, + {file = "kiwisolver-1.4.5-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:ba55dce0a9b8ff59495ddd050a0225d58bd0983d09f87cfe2b6aec4f2c1234e4"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:fd32ea360bcbb92d28933fc05ed09bffcb1704ba3fc7942e81db0fd4f81a7892"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:5e7139af55d1688f8b960ee9ad5adafc4ac17c1c473fe07133ac092310d76544"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:dced8146011d2bc2e883f9bd68618b8247387f4bbec46d7392b3c3b032640126"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9bf3325c47b11b2e51bca0824ea217c7cd84491d8ac4eefd1e409705ef092bd"}, + {file = "kiwisolver-1.4.5-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:5794cf59533bc3f1b1c821f7206a3617999db9fbefc345360aafe2e067514929"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:e368f200bbc2e4f905b8e71eb38b3c04333bddaa6a2464a6355487b02bb7fb09"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5d706eba36b4c4d5bc6c6377bb6568098765e990cfc21ee16d13963fab7b3e7"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:85267bd1aa8880a9c88a8cb71e18d3d64d2751a790e6ca6c27b8ccc724bcd5ad"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:210ef2c3a1f03272649aff1ef992df2e724748918c4bc2d5a90352849eb40bea"}, + {file = "kiwisolver-1.4.5-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:11d011a7574eb3b82bcc9c1a1d35c1d7075677fdd15de527d91b46bd35e935ee"}, + {file = "kiwisolver-1.4.5.tar.gz", hash = "sha256:e57e563a57fb22a142da34f38acc2fc1a5c864bc29ca1517a88abc963e60d6ec"}, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +description = "Python port of markdown-it. Markdown parsing, done right!" +optional = false +python-versions = ">=3.8" +files = [ + {file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"}, + {file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"}, +] + +[package.dependencies] +mdurl = ">=0.1,<1.0" + +[package.extras] +benchmarking = ["psutil", "pytest", "pytest-benchmark"] +code-style = ["pre-commit (>=3.0,<4.0)"] +compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "mistletoe (>=1.0,<2.0)", "mistune (>=2.0,<3.0)", "panflute (>=2.3,<3.0)"] +linkify = ["linkify-it-py (>=1,<3)"] +plugins = ["mdit-py-plugins"] +profiling = ["gprof2dot"] +rtd = ["jupyter_sphinx", "mdit-py-plugins", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"] +testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "markupsafe" +version = "2.1.5" +description = "Safely add untrusted strings to HTML/XML markup." +optional = false +python-versions = ">=3.7" +files = [ + {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e61659ba32cf2cf1481e575d0462554625196a1f2fc06a1c777d3f48e8865d46"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2174c595a0d73a3080ca3257b40096db99799265e1c27cc5a610743acd86d62f"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ae2ad8ae6ebee9d2d94b17fb62763125f3f374c25618198f40cbb8b525411900"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:075202fa5b72c86ad32dc7d0b56024ebdbcf2048c0ba09f1cde31bfdd57bcfff"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:598e3276b64aff0e7b3451b72e94fa3c238d452e7ddcd893c3ab324717456bad"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:fce659a462a1be54d2ffcacea5e3ba2d74daa74f30f5f143fe0c58636e355fdd"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-win32.whl", hash = "sha256:d9fad5155d72433c921b782e58892377c44bd6252b5af2f67f16b194987338a4"}, + {file = "MarkupSafe-2.1.5-cp310-cp310-win_amd64.whl", hash = "sha256:bf50cd79a75d181c9181df03572cdce0fbb75cc353bc350712073108cba98de5"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:629ddd2ca402ae6dbedfceeba9c46d5f7b2a61d9749597d4307f943ef198fc1f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b7b716f97b52c5a14bffdf688f971b2d5ef4029127f1ad7a513973cfd818df2"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ec585f69cec0aa07d945b20805be741395e28ac1627333b1c5b0105962ffced"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b91c037585eba9095565a3556f611e3cbfaa42ca1e865f7b8015fe5c7336d5a5"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7502934a33b54030eaf1194c21c692a534196063db72176b0c4028e140f8f32c"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0e397ac966fdf721b2c528cf028494e86172b4feba51d65f81ffd65c63798f3f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:c061bb86a71b42465156a3ee7bd58c8c2ceacdbeb95d05a99893e08b8467359a"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:3a57fdd7ce31c7ff06cdfbf31dafa96cc533c21e443d57f5b1ecc6cdc668ec7f"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-win32.whl", hash = "sha256:397081c1a0bfb5124355710fe79478cdbeb39626492b15d399526ae53422b906"}, + {file = "MarkupSafe-2.1.5-cp311-cp311-win_amd64.whl", hash = "sha256:2b7c57a4dfc4f16f7142221afe5ba4e093e09e728ca65c51f5620c9aaeb9a617"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:8dec4936e9c3100156f8a2dc89c4b88d5c435175ff03413b443469c7c8c5f4d1"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:3c6b973f22eb18a789b1460b4b91bf04ae3f0c4234a0a6aa6b0a92f6f7b951d4"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac07bad82163452a6884fe8fa0963fb98c2346ba78d779ec06bd7a6262132aee"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5dfb42c4604dddc8e4305050aa6deb084540643ed5804d7455b5df8fe16f5e5"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ea3d8a3d18833cf4304cd2fc9cbb1efe188ca9b5efef2bdac7adc20594a0e46b"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d050b3361367a06d752db6ead6e7edeb0009be66bc3bae0ee9d97fb326badc2a"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:bec0a414d016ac1a18862a519e54b2fd0fc8bbfd6890376898a6c0891dd82e9f"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:58c98fee265677f63a4385256a6d7683ab1832f3ddd1e66fe948d5880c21a169"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-win32.whl", hash = "sha256:8590b4ae07a35970728874632fed7bd57b26b0102df2d2b233b6d9d82f6c62ad"}, + {file = "MarkupSafe-2.1.5-cp312-cp312-win_amd64.whl", hash = "sha256:823b65d8706e32ad2df51ed89496147a42a2a6e01c13cfb6ffb8b1e92bc910bb"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c8b29db45f8fe46ad280a7294f5c3ec36dbac9491f2d1c17345be8e69cc5928f"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ec6a563cff360b50eed26f13adc43e61bc0c04d94b8be985e6fb24b81f6dcfdf"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a549b9c31bec33820e885335b451286e2969a2d9e24879f83fe904a5ce59d70a"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4f11aa001c540f62c6166c7726f71f7573b52c68c31f014c25cc7901deea0b52"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:7b2e5a267c855eea6b4283940daa6e88a285f5f2a67f2220203786dfa59b37e9"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:2d2d793e36e230fd32babe143b04cec8a8b3eb8a3122d2aceb4a371e6b09b8df"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ce409136744f6521e39fd8e2a24c53fa18ad67aa5bc7c2cf83645cce5b5c4e50"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-win32.whl", hash = "sha256:4096e9de5c6fdf43fb4f04c26fb114f61ef0bf2e5604b6ee3019d51b69e8c371"}, + {file = "MarkupSafe-2.1.5-cp37-cp37m-win_amd64.whl", hash = "sha256:4275d846e41ecefa46e2015117a9f491e57a71ddd59bbead77e904dc02b1bed2"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:656f7526c69fac7f600bd1f400991cc282b417d17539a1b228617081106feb4a"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:97cafb1f3cbcd3fd2b6fbfb99ae11cdb14deea0736fc2b0952ee177f2b813a46"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f3fbcb7ef1f16e48246f704ab79d79da8a46891e2da03f8783a5b6fa41a9532"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa9db3f79de01457b03d4f01b34cf91bc0048eb2c3846ff26f66687c2f6d16ab"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ffee1f21e5ef0d712f9033568f8344d5da8cc2869dbd08d87c84656e6a2d2f68"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:5dedb4db619ba5a2787a94d877bc8ffc0566f92a01c0ef214865e54ecc9ee5e0"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:30b600cf0a7ac9234b2638fbc0fb6158ba5bdcdf46aeb631ead21248b9affbc4"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8dd717634f5a044f860435c1d8c16a270ddf0ef8588d4887037c5028b859b0c3"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-win32.whl", hash = "sha256:daa4ee5a243f0f20d528d939d06670a298dd39b1ad5f8a72a4275124a7819eff"}, + {file = "MarkupSafe-2.1.5-cp38-cp38-win_amd64.whl", hash = "sha256:619bc166c4f2de5caa5a633b8b7326fbe98e0ccbfacabd87268a2b15ff73a029"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7a68b554d356a91cce1236aa7682dc01df0edba8d043fd1ce607c49dd3c1edcf"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:db0b55e0f3cc0be60c1f19efdde9a637c32740486004f20d1cff53c3c0ece4d2"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e53af139f8579a6d5f7b76549125f0d94d7e630761a2111bc431fd820e163b8"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:17b950fccb810b3293638215058e432159d2b71005c74371d784862b7e4683f3"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c31f53cdae6ecfa91a77820e8b151dba54ab528ba65dfd235c80b086d68a465"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bff1b4290a66b490a2f4719358c0cdcd9bafb6b8f061e45c7a2460866bf50c2e"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bc1667f8b83f48511b94671e0e441401371dfd0f0a795c7daa4a3cd1dde55bea"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5049256f536511ee3f7e1b3f87d1d1209d327e818e6ae1365e8653d7e3abb6a6"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-win32.whl", hash = "sha256:00e046b6dd71aa03a41079792f8473dc494d564611a8f89bbbd7cb93295ebdcf"}, + {file = "MarkupSafe-2.1.5-cp39-cp39-win_amd64.whl", hash = "sha256:fa173ec60341d6bb97a89f5ea19c85c5643c1e7dedebc22f5181eb73573142c5"}, + {file = "MarkupSafe-2.1.5.tar.gz", hash = "sha256:d283d37a890ba4c1ae73ffadf8046435c76e7bc2247bbb63c00bd1a709c6544b"}, +] + +[[package]] +name = "matplotlib" +version = "3.8.3" +description = "Python plotting package" +optional = false +python-versions = ">=3.9" +files = [ + {file = "matplotlib-3.8.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:cf60138ccc8004f117ab2a2bad513cc4d122e55864b4fe7adf4db20ca68a078f"}, + {file = "matplotlib-3.8.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5f557156f7116be3340cdeef7f128fa99b0d5d287d5f41a16e169819dcf22357"}, + {file = "matplotlib-3.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f386cf162b059809ecfac3bcc491a9ea17da69fa35c8ded8ad154cd4b933d5ec"}, + {file = "matplotlib-3.8.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3c5f96f57b0369c288bf6f9b5274ba45787f7e0589a34d24bdbaf6d3344632f"}, + {file = "matplotlib-3.8.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:83e0f72e2c116ca7e571c57aa29b0fe697d4c6425c4e87c6e994159e0c008635"}, + {file = "matplotlib-3.8.3-cp310-cp310-win_amd64.whl", hash = "sha256:1c5c8290074ba31a41db1dc332dc2b62def469ff33766cbe325d32a3ee291aea"}, + {file = "matplotlib-3.8.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:5184e07c7e1d6d1481862ee361905b7059f7fe065fc837f7c3dc11eeb3f2f900"}, + {file = "matplotlib-3.8.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d7e7e0993d0758933b1a241a432b42c2db22dfa37d4108342ab4afb9557cbe3e"}, + {file = "matplotlib-3.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:04b36ad07eac9740fc76c2aa16edf94e50b297d6eb4c081e3add863de4bb19a7"}, + {file = "matplotlib-3.8.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7c42dae72a62f14982f1474f7e5c9959fc4bc70c9de11cc5244c6e766200ba65"}, + {file = "matplotlib-3.8.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bf5932eee0d428192c40b7eac1399d608f5d995f975cdb9d1e6b48539a5ad8d0"}, + {file = "matplotlib-3.8.3-cp311-cp311-win_amd64.whl", hash = "sha256:40321634e3a05ed02abf7c7b47a50be50b53ef3eaa3a573847431a545585b407"}, + {file = "matplotlib-3.8.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:09074f8057917d17ab52c242fdf4916f30e99959c1908958b1fc6032e2d0f6d4"}, + {file = "matplotlib-3.8.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5745f6d0fb5acfabbb2790318db03809a253096e98c91b9a31969df28ee604aa"}, + {file = "matplotlib-3.8.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b97653d869a71721b639714b42d87cda4cfee0ee74b47c569e4874c7590c55c5"}, + {file = "matplotlib-3.8.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:242489efdb75b690c9c2e70bb5c6550727058c8a614e4c7716f363c27e10bba1"}, + {file = "matplotlib-3.8.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:83c0653c64b73926730bd9ea14aa0f50f202ba187c307a881673bad4985967b7"}, + {file = "matplotlib-3.8.3-cp312-cp312-win_amd64.whl", hash = "sha256:ef6c1025a570354297d6c15f7d0f296d95f88bd3850066b7f1e7b4f2f4c13a39"}, + {file = "matplotlib-3.8.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:c4af3f7317f8a1009bbb2d0bf23dfaba859eb7dd4ccbd604eba146dccaaaf0a4"}, + {file = "matplotlib-3.8.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4c6e00a65d017d26009bac6808f637b75ceade3e1ff91a138576f6b3065eeeba"}, + {file = "matplotlib-3.8.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e7b49ab49a3bea17802df6872f8d44f664ba8f9be0632a60c99b20b6db2165b7"}, + {file = "matplotlib-3.8.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6728dde0a3997396b053602dbd907a9bd64ec7d5cf99e728b404083698d3ca01"}, + {file = "matplotlib-3.8.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:813925d08fb86aba139f2d31864928d67511f64e5945ca909ad5bc09a96189bb"}, + {file = "matplotlib-3.8.3-cp39-cp39-win_amd64.whl", hash = "sha256:cd3a0c2be76f4e7be03d34a14d49ded6acf22ef61f88da600a18a5cd8b3c5f3c"}, + {file = "matplotlib-3.8.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:fa93695d5c08544f4a0dfd0965f378e7afc410d8672816aff1e81be1f45dbf2e"}, + {file = "matplotlib-3.8.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e9764df0e8778f06414b9d281a75235c1e85071f64bb5d71564b97c1306a2afc"}, + {file = "matplotlib-3.8.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:5e431a09e6fab4012b01fc155db0ce6dccacdbabe8198197f523a4ef4805eb26"}, + {file = "matplotlib-3.8.3.tar.gz", hash = "sha256:7b416239e9ae38be54b028abbf9048aff5054a9aba5416bef0bd17f9162ce161"}, +] + +[package.dependencies] +contourpy = ">=1.0.1" +cycler = ">=0.10" +fonttools = ">=4.22.0" +kiwisolver = ">=1.3.1" +numpy = ">=1.21,<2" +packaging = ">=20.0" +pillow = ">=8" +pyparsing = ">=2.3.1" +python-dateutil = ">=2.7" + +[[package]] +name = "matplotlib-inline" +version = "0.1.6" +description = "Inline Matplotlib backend for Jupyter" +optional = false +python-versions = ">=3.5" +files = [ + {file = "matplotlib-inline-0.1.6.tar.gz", hash = "sha256:f887e5f10ba98e8d2b150ddcf4702c1e5f8b3a20005eb0f74bfdbd360ee6f304"}, + {file = "matplotlib_inline-0.1.6-py3-none-any.whl", hash = "sha256:f1f41aab5328aa5aaea9b16d083b128102f8712542f819fe7e6a420ff581b311"}, +] + +[package.dependencies] +traitlets = "*" + +[[package]] +name = "mdit-py-plugins" +version = "0.4.0" +description = "Collection of plugins for markdown-it-py" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mdit_py_plugins-0.4.0-py3-none-any.whl", hash = "sha256:b51b3bb70691f57f974e257e367107857a93b36f322a9e6d44ca5bf28ec2def9"}, + {file = "mdit_py_plugins-0.4.0.tar.gz", hash = "sha256:d8ab27e9aed6c38aa716819fedfde15ca275715955f8a185a8e1cf90fb1d2c1b"}, +] + +[package.dependencies] +markdown-it-py = ">=1.0.0,<4.0.0" + +[package.extras] +code-style = ["pre-commit"] +rtd = ["myst-parser", "sphinx-book-theme"] +testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "mdurl" +version = "0.1.2" +description = "Markdown URL utilities" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, + {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, +] + +[[package]] +name = "mistune" +version = "3.0.2" +description = "A sane and fast Markdown parser with useful plugins and renderers" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205"}, + {file = "mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8"}, +] + +[[package]] +name = "mypy" +version = "1.8.0" +description = "Optional static typing for Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "mypy-1.8.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:485a8942f671120f76afffff70f259e1cd0f0cfe08f81c05d8816d958d4577d3"}, + {file = "mypy-1.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:df9824ac11deaf007443e7ed2a4a26bebff98d2bc43c6da21b2b64185da011c4"}, + {file = "mypy-1.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2afecd6354bbfb6e0160f4e4ad9ba6e4e003b767dd80d85516e71f2e955ab50d"}, + {file = "mypy-1.8.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8963b83d53ee733a6e4196954502b33567ad07dfd74851f32be18eb932fb1cb9"}, + {file = "mypy-1.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:e46f44b54ebddbeedbd3d5b289a893219065ef805d95094d16a0af6630f5d410"}, + {file = "mypy-1.8.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:855fe27b80375e5c5878492f0729540db47b186509c98dae341254c8f45f42ae"}, + {file = "mypy-1.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:4c886c6cce2d070bd7df4ec4a05a13ee20c0aa60cb587e8d1265b6c03cf91da3"}, + {file = "mypy-1.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d19c413b3c07cbecf1f991e2221746b0d2a9410b59cb3f4fb9557f0365a1a817"}, + {file = "mypy-1.8.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9261ed810972061388918c83c3f5cd46079d875026ba97380f3e3978a72f503d"}, + {file = "mypy-1.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:51720c776d148bad2372ca21ca29256ed483aa9a4cdefefcef49006dff2a6835"}, + {file = "mypy-1.8.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:52825b01f5c4c1c4eb0db253ec09c7aa17e1a7304d247c48b6f3599ef40db8bd"}, + {file = "mypy-1.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f5ac9a4eeb1ec0f1ccdc6f326bcdb464de5f80eb07fb38b5ddd7b0de6bc61e55"}, + {file = "mypy-1.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afe3fe972c645b4632c563d3f3eff1cdca2fa058f730df2b93a35e3b0c538218"}, + {file = "mypy-1.8.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:42c6680d256ab35637ef88891c6bd02514ccb7e1122133ac96055ff458f93fc3"}, + {file = "mypy-1.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:720a5ca70e136b675af3af63db533c1c8c9181314d207568bbe79051f122669e"}, + {file = "mypy-1.8.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:028cf9f2cae89e202d7b6593cd98db6759379f17a319b5faf4f9978d7084cdc6"}, + {file = "mypy-1.8.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4e6d97288757e1ddba10dd9549ac27982e3e74a49d8d0179fc14d4365c7add66"}, + {file = "mypy-1.8.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f1478736fcebb90f97e40aff11a5f253af890c845ee0c850fe80aa060a267c6"}, + {file = "mypy-1.8.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:42419861b43e6962a649068a61f4a4839205a3ef525b858377a960b9e2de6e0d"}, + {file = "mypy-1.8.0-cp38-cp38-win_amd64.whl", hash = "sha256:2b5b6c721bd4aabaadead3a5e6fa85c11c6c795e0c81a7215776ef8afc66de02"}, + {file = "mypy-1.8.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5c1538c38584029352878a0466f03a8ee7547d7bd9f641f57a0f3017a7c905b8"}, + {file = "mypy-1.8.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ef4be7baf08a203170f29e89d79064463b7fc7a0908b9d0d5114e8009c3a259"}, + {file = "mypy-1.8.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7178def594014aa6c35a8ff411cf37d682f428b3b5617ca79029d8ae72f5402b"}, + {file = "mypy-1.8.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ab3c84fa13c04aeeeabb2a7f67a25ef5d77ac9d6486ff33ded762ef353aa5592"}, + {file = "mypy-1.8.0-cp39-cp39-win_amd64.whl", hash = "sha256:99b00bc72855812a60d253420d8a2eae839b0afa4938f09f4d2aa9bb4654263a"}, + {file = "mypy-1.8.0-py3-none-any.whl", hash = "sha256:538fd81bb5e430cc1381a443971c0475582ff9f434c16cd46d2c66763ce85d9d"}, + {file = "mypy-1.8.0.tar.gz", hash = "sha256:6ff8b244d7085a0b425b56d327b480c3b29cafbd2eff27316a004f9a7391ae07"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +mypyc = ["setuptools (>=50)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +optional = false +python-versions = ">=3.5" +files = [ + {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, + {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, +] + +[[package]] +name = "nbclient" +version = "0.9.0" +description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." +optional = false +python-versions = ">=3.8.0" +files = [ + {file = "nbclient-0.9.0-py3-none-any.whl", hash = "sha256:a3a1ddfb34d4a9d17fc744d655962714a866639acd30130e9be84191cd97cd15"}, + {file = "nbclient-0.9.0.tar.gz", hash = "sha256:4b28c207877cf33ef3a9838cdc7a54c5ceff981194a82eac59d558f05487295e"}, +] + +[package.dependencies] +jupyter-client = ">=6.1.12" +jupyter-core = ">=4.12,<5.0.dev0 || >=5.1.dev0" +nbformat = ">=5.1" +traitlets = ">=5.4" + +[package.extras] +dev = ["pre-commit"] +docs = ["autodoc-traits", "mock", "moto", "myst-parser", "nbclient[test]", "sphinx (>=1.7)", "sphinx-book-theme", "sphinxcontrib-spelling"] +test = ["flaky", "ipykernel (>=6.19.3)", "ipython", "ipywidgets", "nbconvert (>=7.0.0)", "pytest (>=7.0)", "pytest-asyncio", "pytest-cov (>=4.0)", "testpath", "xmltodict"] + +[[package]] +name = "nbconvert" +version = "7.16.2" +description = "Converting Jupyter Notebooks (.ipynb files) to other formats. Output formats include asciidoc, html, latex, markdown, pdf, py, rst, script. nbconvert can be used both as a Python library (`import nbconvert`) or as a command line tool (invoked as `jupyter nbconvert ...`)." +optional = false +python-versions = ">=3.8" +files = [ + {file = "nbconvert-7.16.2-py3-none-any.whl", hash = "sha256:0c01c23981a8de0220255706822c40b751438e32467d6a686e26be08ba784382"}, + {file = "nbconvert-7.16.2.tar.gz", hash = "sha256:8310edd41e1c43947e4ecf16614c61469ebc024898eb808cce0999860fc9fb16"}, +] + +[package.dependencies] +beautifulsoup4 = "*" +bleach = "!=5.0.0" +defusedxml = "*" +jinja2 = ">=3.0" +jupyter-core = ">=4.7" +jupyterlab-pygments = "*" +markupsafe = ">=2.0" +mistune = ">=2.0.3,<4" +nbclient = ">=0.5.0" +nbformat = ">=5.7" +packaging = "*" +pandocfilters = ">=1.4.1" +pygments = ">=2.4.1" +tinycss2 = "*" +traitlets = ">=5.1" + +[package.extras] +all = ["nbconvert[docs,qtpdf,serve,test,webpdf]"] +docs = ["ipykernel", "ipython", "myst-parser", "nbsphinx (>=0.2.12)", "pydata-sphinx-theme", "sphinx (==5.0.2)", "sphinxcontrib-spelling"] +qtpdf = ["nbconvert[qtpng]"] +qtpng = ["pyqtwebengine (>=5.15)"] +serve = ["tornado (>=6.1)"] +test = ["flaky", "ipykernel", "ipywidgets (>=7.5)", "pytest"] +webpdf = ["playwright"] + +[[package]] +name = "nbformat" +version = "5.9.2" +description = "The Jupyter Notebook format" +optional = false +python-versions = ">=3.8" +files = [ + {file = "nbformat-5.9.2-py3-none-any.whl", hash = "sha256:1c5172d786a41b82bcfd0c23f9e6b6f072e8fb49c39250219e4acfff1efe89e9"}, + {file = "nbformat-5.9.2.tar.gz", hash = "sha256:5f98b5ba1997dff175e77e0c17d5c10a96eaed2cbd1de3533d1fc35d5e111192"}, +] + +[package.dependencies] +fastjsonschema = "*" +jsonschema = ">=2.6" +jupyter-core = "*" +traitlets = ">=5.1" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx", "sphinxcontrib-github-alt", "sphinxcontrib-spelling"] +test = ["pep440", "pre-commit", "pytest", "testpath"] + +[[package]] +name = "nest-asyncio" +version = "1.6.0" +description = "Patch asyncio to allow nested event loops" +optional = false +python-versions = ">=3.5" +files = [ + {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, + {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, +] + +[[package]] +name = "notebook-shim" +version = "0.2.4" +description = "A shim layer for notebook traits and config" +optional = false +python-versions = ">=3.7" +files = [ + {file = "notebook_shim-0.2.4-py3-none-any.whl", hash = "sha256:411a5be4e9dc882a074ccbcae671eda64cceb068767e9a3419096986560e1cef"}, + {file = "notebook_shim-0.2.4.tar.gz", hash = "sha256:b4b2cfa1b65d98307ca24361f5b30fe785b53c3fd07b7a47e89acb5e6ac638cb"}, +] + +[package.dependencies] +jupyter-server = ">=1.8,<3" + +[package.extras] +test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync"] + +[[package]] +name = "numpy" +version = "1.26.4" +description = "Fundamental package for array computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, + {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4"}, + {file = "numpy-1.26.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a"}, + {file = "numpy-1.26.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2"}, + {file = "numpy-1.26.4-cp310-cp310-win32.whl", hash = "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07"}, + {file = "numpy-1.26.4-cp310-cp310-win_amd64.whl", hash = "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71"}, + {file = "numpy-1.26.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e"}, + {file = "numpy-1.26.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a"}, + {file = "numpy-1.26.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a"}, + {file = "numpy-1.26.4-cp311-cp311-win32.whl", hash = "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20"}, + {file = "numpy-1.26.4-cp311-cp311-win_amd64.whl", hash = "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218"}, + {file = "numpy-1.26.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b"}, + {file = "numpy-1.26.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a"}, + {file = "numpy-1.26.4-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0"}, + {file = "numpy-1.26.4-cp312-cp312-win32.whl", hash = "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110"}, + {file = "numpy-1.26.4-cp312-cp312-win_amd64.whl", hash = "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c"}, + {file = "numpy-1.26.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764"}, + {file = "numpy-1.26.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd"}, + {file = "numpy-1.26.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c"}, + {file = "numpy-1.26.4-cp39-cp39-win32.whl", hash = "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6"}, + {file = "numpy-1.26.4-cp39-cp39-win_amd64.whl", hash = "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c"}, + {file = "numpy-1.26.4-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0"}, + {file = "numpy-1.26.4.tar.gz", hash = "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010"}, +] + +[[package]] +name = "overrides" +version = "7.7.0" +description = "A decorator to automatically detect mismatch when overriding a method." +optional = false +python-versions = ">=3.6" +files = [ + {file = "overrides-7.7.0-py3-none-any.whl", hash = "sha256:c7ed9d062f78b8e4c1a7b70bd8796b35ead4d9f510227ef9c5dc7626c60d7e49"}, + {file = "overrides-7.7.0.tar.gz", hash = "sha256:55158fa3d93b98cc75299b1e67078ad9003ca27945c76162c1c0766d6f91820a"}, +] + +[[package]] +name = "packaging" +version = "23.2" +description = "Core utilities for Python packages" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, + {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, +] + +[[package]] +name = "pandas" +version = "2.2.1" +description = "Powerful data structures for data analysis, time series, and statistics" +optional = false +python-versions = ">=3.9" +files = [ + {file = "pandas-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8df8612be9cd1c7797c93e1c5df861b2ddda0b48b08f2c3eaa0702cf88fb5f88"}, + {file = "pandas-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0f573ab277252ed9aaf38240f3b54cfc90fff8e5cab70411ee1d03f5d51f3944"}, + {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f02a3a6c83df4026e55b63c1f06476c9aa3ed6af3d89b4f04ea656ccdaaaa359"}, + {file = "pandas-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c38ce92cb22a4bea4e3929429aa1067a454dcc9c335799af93ba9be21b6beb51"}, + {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:c2ce852e1cf2509a69e98358e8458775f89599566ac3775e70419b98615f4b06"}, + {file = "pandas-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53680dc9b2519cbf609c62db3ed7c0b499077c7fefda564e330286e619ff0dd9"}, + {file = "pandas-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:94e714a1cca63e4f5939cdce5f29ba8d415d85166be3441165edd427dc9f6bc0"}, + {file = "pandas-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f821213d48f4ab353d20ebc24e4faf94ba40d76680642fb7ce2ea31a3ad94f9b"}, + {file = "pandas-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c70e00c2d894cb230e5c15e4b1e1e6b2b478e09cf27cc593a11ef955b9ecc81a"}, + {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e97fbb5387c69209f134893abc788a6486dbf2f9e511070ca05eed4b930b1b02"}, + {file = "pandas-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101d0eb9c5361aa0146f500773395a03839a5e6ecde4d4b6ced88b7e5a1a6403"}, + {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:7d2ed41c319c9fb4fd454fe25372028dfa417aacb9790f68171b2e3f06eae8cd"}, + {file = "pandas-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:af5d3c00557d657c8773ef9ee702c61dd13b9d7426794c9dfeb1dc4a0bf0ebc7"}, + {file = "pandas-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:06cf591dbaefb6da9de8472535b185cba556d0ce2e6ed28e21d919704fef1a9e"}, + {file = "pandas-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:88ecb5c01bb9ca927ebc4098136038519aa5d66b44671861ffab754cae75102c"}, + {file = "pandas-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:04f6ec3baec203c13e3f8b139fb0f9f86cd8c0b94603ae3ae8ce9a422e9f5bee"}, + {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a935a90a76c44fe170d01e90a3594beef9e9a6220021acfb26053d01426f7dc2"}, + {file = "pandas-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c391f594aae2fd9f679d419e9a4d5ba4bce5bb13f6a989195656e7dc4b95c8f0"}, + {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9d1265545f579edf3f8f0cb6f89f234f5e44ba725a34d86535b1a1d38decbccc"}, + {file = "pandas-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:11940e9e3056576ac3244baef2fedade891977bcc1cb7e5cc8f8cc7d603edc89"}, + {file = "pandas-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:4acf681325ee1c7f950d058b05a820441075b0dd9a2adf5c4835b9bc056bf4fb"}, + {file = "pandas-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9bd8a40f47080825af4317d0340c656744f2bfdb6819f818e6ba3cd24c0e1397"}, + {file = "pandas-2.2.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:df0c37ebd19e11d089ceba66eba59a168242fc6b7155cba4ffffa6eccdfb8f16"}, + {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:739cc70eaf17d57608639e74d63387b0d8594ce02f69e7a0b046f117974b3019"}, + {file = "pandas-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9d3558d263073ed95e46f4650becff0c5e1ffe0fc3a015de3c79283dfbdb3df"}, + {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4aa1d8707812a658debf03824016bf5ea0d516afdea29b7dc14cf687bc4d4ec6"}, + {file = "pandas-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:76f27a809cda87e07f192f001d11adc2b930e93a2b0c4a236fde5429527423be"}, + {file = "pandas-2.2.1-cp39-cp39-win_amd64.whl", hash = "sha256:1ba21b1d5c0e43416218db63037dbe1a01fc101dc6e6024bcad08123e48004ab"}, + {file = "pandas-2.2.1.tar.gz", hash = "sha256:0ab90f87093c13f3e8fa45b48ba9f39181046e8f3317d3aadb2fffbb1b978572"}, +] + +[package.dependencies] +numpy = {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""} +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.7" + +[package.extras] +all = ["PyQt5 (>=5.15.9)", "SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)", "beautifulsoup4 (>=4.11.2)", "bottleneck (>=1.3.6)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=2022.12.0)", "fsspec (>=2022.11.0)", "gcsfs (>=2022.11.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.9.2)", "matplotlib (>=3.6.3)", "numba (>=0.56.4)", "numexpr (>=2.8.4)", "odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "pandas-gbq (>=0.19.0)", "psycopg2 (>=2.9.6)", "pyarrow (>=10.0.1)", "pymysql (>=1.0.2)", "pyreadstat (>=1.2.0)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "qtpy (>=2.3.0)", "s3fs (>=2022.11.0)", "scipy (>=1.10.0)", "tables (>=3.8.0)", "tabulate (>=0.9.0)", "xarray (>=2022.12.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)", "zstandard (>=0.19.0)"] +aws = ["s3fs (>=2022.11.0)"] +clipboard = ["PyQt5 (>=5.15.9)", "qtpy (>=2.3.0)"] +compression = ["zstandard (>=0.19.0)"] +computation = ["scipy (>=1.10.0)", "xarray (>=2022.12.0)"] +consortium-standard = ["dataframe-api-compat (>=0.1.7)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.1.0)", "python-calamine (>=0.1.7)", "pyxlsb (>=1.0.10)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.5)"] +feather = ["pyarrow (>=10.0.1)"] +fss = ["fsspec (>=2022.11.0)"] +gcp = ["gcsfs (>=2022.11.0)", "pandas-gbq (>=0.19.0)"] +hdf5 = ["tables (>=3.8.0)"] +html = ["beautifulsoup4 (>=4.11.2)", "html5lib (>=1.1)", "lxml (>=4.9.2)"] +mysql = ["SQLAlchemy (>=2.0.0)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.9.0)"] +parquet = ["pyarrow (>=10.0.1)"] +performance = ["bottleneck (>=1.3.6)", "numba (>=0.56.4)", "numexpr (>=2.8.4)"] +plot = ["matplotlib (>=3.6.3)"] +postgresql = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "psycopg2 (>=2.9.6)"] +pyarrow = ["pyarrow (>=10.0.1)"] +spss = ["pyreadstat (>=1.2.0)"] +sql-other = ["SQLAlchemy (>=2.0.0)", "adbc-driver-postgresql (>=0.8.0)", "adbc-driver-sqlite (>=0.8.0)"] +test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.9.2)"] + +[[package]] +name = "pandocfilters" +version = "1.5.1" +description = "Utilities for writing pandoc filters in python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc"}, + {file = "pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e"}, +] + +[[package]] +name = "parso" +version = "0.8.3" +description = "A Python Parser" +optional = false +python-versions = ">=3.6" +files = [ + {file = "parso-0.8.3-py2.py3-none-any.whl", hash = "sha256:c001d4636cd3aecdaf33cbb40aebb59b094be2a74c556778ef5576c175e19e75"}, + {file = "parso-0.8.3.tar.gz", hash = "sha256:8c07be290bb59f03588915921e29e8a50002acaf2cdc5fa0e0114f91709fafa0"}, +] + +[package.extras] +qa = ["flake8 (==3.8.3)", "mypy (==0.782)"] +testing = ["docopt", "pytest (<6.0.0)"] + +[[package]] +name = "pathspec" +version = "0.12.1" +description = "Utility library for gitignore style pattern matching of file paths." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, + {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, +] + +[[package]] +name = "pexpect" +version = "4.9.0" +description = "Pexpect allows easy control of interactive console applications." +optional = false +python-versions = "*" +files = [ + {file = "pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523"}, + {file = "pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f"}, +] + +[package.dependencies] +ptyprocess = ">=0.5" + +[[package]] +name = "pillow" +version = "10.2.0" +description = "Python Imaging Library (Fork)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, + {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fad5ff2f13d69b7e74ce5b4ecd12cc0ec530fcee76356cac6742785ff71c452"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da2b52b37dad6d9ec64e653637a096905b258d2fc2b984c41ae7d08b938a67e4"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:47c0995fc4e7f79b5cfcab1fc437ff2890b770440f7696a3ba065ee0fd496563"}, + {file = "pillow-10.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:322bdf3c9b556e9ffb18f93462e5f749d3444ce081290352c6070d014c93feb2"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:51f1a1bffc50e2e9492e87d8e09a17c5eea8409cda8d3f277eb6edc82813c17c"}, + {file = "pillow-10.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:69ffdd6120a4737710a9eee73e1d2e37db89b620f702754b8f6e62594471dee0"}, + {file = "pillow-10.2.0-cp310-cp310-win32.whl", hash = "sha256:c6dafac9e0f2b3c78df97e79af707cdc5ef8e88208d686a4847bab8266870023"}, + {file = "pillow-10.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:aebb6044806f2e16ecc07b2a2637ee1ef67a11840a66752751714a0d924adf72"}, + {file = "pillow-10.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:7049e301399273a0136ff39b84c3678e314f2158f50f517bc50285fb5ec847ad"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:35bb52c37f256f662abdfa49d2dfa6ce5d93281d323a9af377a120e89a9eafb5"}, + {file = "pillow-10.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9c23f307202661071d94b5e384e1e1dc7dfb972a28a2310e4ee16103e66ddb67"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:773efe0603db30c281521a7c0214cad7836c03b8ccff897beae9b47c0b657d61"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11fa2e5984b949b0dd6d7a94d967743d87c577ff0b83392f17cb3990d0d2fd6e"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:716d30ed977be8b37d3ef185fecb9e5a1d62d110dfbdcd1e2a122ab46fddb03f"}, + {file = "pillow-10.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:a086c2af425c5f62a65e12fbf385f7c9fcb8f107d0849dba5839461a129cf311"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:c8de2789052ed501dd829e9cae8d3dcce7acb4777ea4a479c14521c942d395b1"}, + {file = "pillow-10.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:609448742444d9290fd687940ac0b57fb35e6fd92bdb65386e08e99af60bf757"}, + {file = "pillow-10.2.0-cp311-cp311-win32.whl", hash = "sha256:823ef7a27cf86df6597fa0671066c1b596f69eba53efa3d1e1cb8b30f3533068"}, + {file = "pillow-10.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:1da3b2703afd040cf65ec97efea81cfba59cdbed9c11d8efc5ab09df9509fc56"}, + {file = "pillow-10.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:edca80cbfb2b68d7b56930b84a0e45ae1694aeba0541f798e908a49d66b837f1"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:1b5e1b74d1bd1b78bc3477528919414874748dd363e6272efd5abf7654e68bef"}, + {file = "pillow-10.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0eae2073305f451d8ecacb5474997c08569fb4eb4ac231ffa4ad7d342fdc25ac"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7c2286c23cd350b80d2fc9d424fc797575fb16f854b831d16fd47ceec078f2c"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1e23412b5c41e58cec602f1135c57dfcf15482013ce6e5f093a86db69646a5aa"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:52a50aa3fb3acb9cf7213573ef55d31d6eca37f5709c69e6858fe3bc04a5c2a2"}, + {file = "pillow-10.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:127cee571038f252a552760076407f9cff79761c3d436a12af6000cd182a9d04"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:8d12251f02d69d8310b046e82572ed486685c38f02176bd08baf216746eb947f"}, + {file = "pillow-10.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:54f1852cd531aa981bc0965b7d609f5f6cc8ce8c41b1139f6ed6b3c54ab82bfb"}, + {file = "pillow-10.2.0-cp312-cp312-win32.whl", hash = "sha256:257d8788df5ca62c980314053197f4d46eefedf4e6175bc9412f14412ec4ea2f"}, + {file = "pillow-10.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:154e939c5f0053a383de4fd3d3da48d9427a7e985f58af8e94d0b3c9fcfcf4f9"}, + {file = "pillow-10.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:f379abd2f1e3dddb2b61bc67977a6b5a0a3f7485538bcc6f39ec76163891ee48"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:8373c6c251f7ef8bda6675dd6d2b3a0fcc31edf1201266b5cf608b62a37407f9"}, + {file = "pillow-10.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:870ea1ada0899fd0b79643990809323b389d4d1d46c192f97342eeb6ee0b8483"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4b6b1e20608493548b1f32bce8cca185bf0480983890403d3b8753e44077129"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3031709084b6e7852d00479fd1d310b07d0ba82765f973b543c8af5061cf990e"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:3ff074fc97dd4e80543a3e91f69d58889baf2002b6be64347ea8cf5533188213"}, + {file = "pillow-10.2.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:cb4c38abeef13c61d6916f264d4845fab99d7b711be96c326b84df9e3e0ff62d"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b1b3020d90c2d8e1dae29cf3ce54f8094f7938460fb5ce8bc5c01450b01fbaf6"}, + {file = "pillow-10.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:170aeb00224ab3dc54230c797f8404507240dd868cf52066f66a41b33169bdbe"}, + {file = "pillow-10.2.0-cp38-cp38-win32.whl", hash = "sha256:c4225f5220f46b2fde568c74fca27ae9771536c2e29d7c04f4fb62c83275ac4e"}, + {file = "pillow-10.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0689b5a8c5288bc0504d9fcee48f61a6a586b9b98514d7d29b840143d6734f39"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:b792a349405fbc0163190fde0dc7b3fef3c9268292586cf5645598b48e63dc67"}, + {file = "pillow-10.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c570f24be1e468e3f0ce7ef56a89a60f0e05b30a3669a459e419c6eac2c35364"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8ecd059fdaf60c1963c58ceb8997b32e9dc1b911f5da5307aab614f1ce5c2fb"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c365fd1703040de1ec284b176d6af5abe21b427cb3a5ff68e0759e1e313a5e7e"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:70c61d4c475835a19b3a5aa42492409878bbca7438554a1f89d20d58a7c75c01"}, + {file = "pillow-10.2.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:b6f491cdf80ae540738859d9766783e3b3c8e5bd37f5dfa0b76abdecc5081f13"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:9d189550615b4948f45252d7f005e53c2040cea1af5b60d6f79491a6e147eef7"}, + {file = "pillow-10.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:49d9ba1ed0ef3e061088cd1e7538a0759aab559e2e0a80a36f9fd9d8c0c21591"}, + {file = "pillow-10.2.0-cp39-cp39-win32.whl", hash = "sha256:babf5acfede515f176833ed6028754cbcd0d206f7f614ea3447d67c33be12516"}, + {file = "pillow-10.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:0304004f8067386b477d20a518b50f3fa658a28d44e4116970abfcd94fac34a8"}, + {file = "pillow-10.2.0-cp39-cp39-win_arm64.whl", hash = "sha256:0fb3e7fc88a14eacd303e90481ad983fd5b69c761e9e6ef94c983f91025da869"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:322209c642aabdd6207517e9739c704dc9f9db943015535783239022002f054a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3eedd52442c0a5ff4f887fab0c1c0bb164d8635b32c894bc1faf4c618dd89df2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb28c753fd5eb3dd859b4ee95de66cc62af91bcff5db5f2571d32a520baf1f04"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:33870dc4653c5017bf4c8873e5488d8f8d5f8935e2f1fb9a2208c47cdd66efd2"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3c31822339516fb3c82d03f30e22b1d038da87ef27b6a78c9549888f8ceda39a"}, + {file = "pillow-10.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a2b56ba36e05f973d450582fb015594aaa78834fefe8dfb8fcd79b93e64ba4c6"}, + {file = "pillow-10.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:d8e6aeb9201e655354b3ad049cb77d19813ad4ece0df1249d3c793de3774f8c7"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:2247178effb34a77c11c0e8ac355c7a741ceca0a732b27bf11e747bbc950722f"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:15587643b9e5eb26c48e49a7b33659790d28f190fc514a322d55da2fb5c2950e"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:753cd8f2086b2b80180d9b3010dd4ed147efc167c90d3bf593fe2af21265e5a5"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7c8f97e8e7a9009bcacbe3766a36175056c12f9a44e6e6f2d5caad06dcfbf03b"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:d1b35bcd6c5543b9cb547dee3150c93008f8dd0f1fef78fc0cd2b141c5baf58a"}, + {file = "pillow-10.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:fe4c15f6c9285dc54ce6553a3ce908ed37c8f3825b5a51a15c91442bb955b868"}, + {file = "pillow-10.2.0.tar.gz", hash = "sha256:e87f0b2c78157e12d7686b27d63c070fd65d994e8ddae6f328e0dcf4a0cd007e"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] +fpx = ["olefile"] +mic = ["olefile"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] +typing = ["typing-extensions"] +xmp = ["defusedxml"] + +[[package]] +name = "platformdirs" +version = "4.2.0" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +optional = false +python-versions = ">=3.8" +files = [ + {file = "platformdirs-4.2.0-py3-none-any.whl", hash = "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068"}, + {file = "platformdirs-4.2.0.tar.gz", hash = "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768"}, +] + +[package.extras] +docs = ["furo (>=2023.9.10)", "proselint (>=0.13)", "sphinx (>=7.2.6)", "sphinx-autodoc-typehints (>=1.25.2)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.4.3)", "pytest-cov (>=4.1)", "pytest-mock (>=3.12)"] + +[[package]] +name = "polars" +version = "0.20.14" +description = "Blazingly fast DataFrame library" +optional = false +python-versions = ">=3.8" +files = [ + {file = "polars-0.20.14-cp38-abi3-macosx_10_12_x86_64.whl", hash = "sha256:ed6184584fd43db73098ab6dcac636c540016e7620a2647b0ab93703fc5dfa2d"}, + {file = "polars-0.20.14-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:7c23fee3b9838530dd5c39c189d8ba142601b46a66a70f5fbcda4a7adca26709"}, + {file = "polars-0.20.14-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d4ba27827c037f03bca1b81cac3e191f4b89522d2de532ab38d3ba5d2f02d9c"}, + {file = "polars-0.20.14-cp38-abi3-manylinux_2_24_aarch64.whl", hash = "sha256:04096fe285aea2adbb783969993494e4997426f7ac5586c76623fd41a86b531f"}, + {file = "polars-0.20.14-cp38-abi3-win_amd64.whl", hash = "sha256:a46b6c78b58358ff15fbdf623abe8816cb806a01932e6a564375ceaaa8094479"}, + {file = "polars-0.20.14.tar.gz", hash = "sha256:ce32c2cd2382bc42a0955005235020200d87c044ea0639bc1d5ba3a8faa69b80"}, +] + +[package.dependencies] +pandas = {version = "*", optional = true, markers = "extra == \"pandas\""} +pyarrow = {version = ">=7.0.0", optional = true, markers = "extra == \"pandas\""} + +[package.extras] +adbc = ["adbc-driver-sqlite"] +all = ["polars[adbc,cloudpickle,connectorx,deltalake,fsspec,gevent,numpy,pandas,plot,pyarrow,pydantic,pyiceberg,sqlalchemy,timezone,xlsx2csv,xlsxwriter]"] +cloudpickle = ["cloudpickle"] +connectorx = ["connectorx (>=0.3.2)"] +deltalake = ["deltalake (>=0.14.0)"] +fsspec = ["fsspec"] +gevent = ["gevent"] +matplotlib = ["matplotlib"] +numpy = ["numpy (>=1.16.0)"] +openpyxl = ["openpyxl (>=3.0.0)"] +pandas = ["pandas", "pyarrow (>=7.0.0)"] +plot = ["hvplot (>=0.9.1)"] +pyarrow = ["pyarrow (>=7.0.0)"] +pydantic = ["pydantic"] +pyiceberg = ["pyiceberg (>=0.5.0)"] +pyxlsb = ["pyxlsb (>=1.0)"] +sqlalchemy = ["pandas", "sqlalchemy"] +timezone = ["backports-zoneinfo", "tzdata"] +xlsx2csv = ["xlsx2csv (>=0.8.0)"] +xlsxwriter = ["xlsxwriter"] + +[[package]] +name = "prometheus-client" +version = "0.20.0" +description = "Python client for the Prometheus monitoring system." +optional = false +python-versions = ">=3.8" +files = [ + {file = "prometheus_client-0.20.0-py3-none-any.whl", hash = "sha256:cde524a85bce83ca359cc837f28b8c0db5cac7aa653a588fd7e84ba061c329e7"}, + {file = "prometheus_client-0.20.0.tar.gz", hash = "sha256:287629d00b147a32dcb2be0b9df905da599b2d82f80377083ec8463309a4bb89"}, +] + +[package.extras] +twisted = ["twisted"] + +[[package]] +name = "prompt-toolkit" +version = "3.0.43" +description = "Library for building powerful interactive command lines in Python" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "prompt_toolkit-3.0.43-py3-none-any.whl", hash = "sha256:a11a29cb3bf0a28a387fe5122cdb649816a957cd9261dcedf8c9f1fef33eacf6"}, + {file = "prompt_toolkit-3.0.43.tar.gz", hash = "sha256:3527b7af26106cbc65a040bcc84839a3566ec1b051bb0bfe953631e704b0ff7d"}, +] + +[package.dependencies] +wcwidth = "*" + +[[package]] +name = "psutil" +version = "5.9.8" +description = "Cross-platform lib for process and system monitoring in Python." +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" +files = [ + {file = "psutil-5.9.8-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:26bd09967ae00920df88e0352a91cff1a78f8d69b3ecabbfe733610c0af486c8"}, + {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:05806de88103b25903dff19bb6692bd2e714ccf9e668d050d144012055cbca73"}, + {file = "psutil-5.9.8-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:611052c4bc70432ec770d5d54f64206aa7203a101ec273a0cd82418c86503bb7"}, + {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:50187900d73c1381ba1454cf40308c2bf6f34268518b3f36a9b663ca87e65e36"}, + {file = "psutil-5.9.8-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:02615ed8c5ea222323408ceba16c60e99c3f91639b07da6373fb7e6539abc56d"}, + {file = "psutil-5.9.8-cp27-none-win32.whl", hash = "sha256:36f435891adb138ed3c9e58c6af3e2e6ca9ac2f365efe1f9cfef2794e6c93b4e"}, + {file = "psutil-5.9.8-cp27-none-win_amd64.whl", hash = "sha256:bd1184ceb3f87651a67b2708d4c3338e9b10c5df903f2e3776b62303b26cb631"}, + {file = "psutil-5.9.8-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:aee678c8720623dc456fa20659af736241f575d79429a0e5e9cf88ae0605cc81"}, + {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8cb6403ce6d8e047495a701dc7c5bd788add903f8986d523e3e20b98b733e421"}, + {file = "psutil-5.9.8-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d06016f7f8625a1825ba3732081d77c94589dca78b7a3fc072194851e88461a4"}, + {file = "psutil-5.9.8-cp36-cp36m-win32.whl", hash = "sha256:7d79560ad97af658a0f6adfef8b834b53f64746d45b403f225b85c5c2c140eee"}, + {file = "psutil-5.9.8-cp36-cp36m-win_amd64.whl", hash = "sha256:27cc40c3493bb10de1be4b3f07cae4c010ce715290a5be22b98493509c6299e2"}, + {file = "psutil-5.9.8-cp37-abi3-win32.whl", hash = "sha256:bc56c2a1b0d15aa3eaa5a60c9f3f8e3e565303b465dbf57a1b730e7a2b9844e0"}, + {file = "psutil-5.9.8-cp37-abi3-win_amd64.whl", hash = "sha256:8db4c1b57507eef143a15a6884ca10f7c73876cdf5d51e713151c1236a0e68cf"}, + {file = "psutil-5.9.8-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:d16bbddf0693323b8c6123dd804100241da461e41d6e332fb0ba6058f630f8c8"}, + {file = "psutil-5.9.8.tar.gz", hash = "sha256:6be126e3225486dff286a8fb9a06246a5253f4c7c53b475ea5f5ac934e64194c"}, +] + +[package.extras] +test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] + +[[package]] +name = "ptyprocess" +version = "0.7.0" +description = "Run a subprocess in a pseudo terminal" +optional = false +python-versions = "*" +files = [ + {file = "ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35"}, + {file = "ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220"}, +] + +[[package]] +name = "pure-eval" +version = "0.2.2" +description = "Safely evaluate AST nodes without side effects" +optional = false +python-versions = "*" +files = [ + {file = "pure_eval-0.2.2-py3-none-any.whl", hash = "sha256:01eaab343580944bc56080ebe0a674b39ec44a945e6d09ba7db3cb8cec289350"}, + {file = "pure_eval-0.2.2.tar.gz", hash = "sha256:2b45320af6dfaa1750f543d714b6d1c520a1688dec6fd24d339063ce0aaa9ac3"}, +] + +[package.extras] +tests = ["pytest"] + +[[package]] +name = "pyarrow" +version = "15.0.0" +description = "Python library for Apache Arrow" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pyarrow-15.0.0-cp310-cp310-macosx_10_15_x86_64.whl", hash = "sha256:0a524532fd6dd482edaa563b686d754c70417c2f72742a8c990b322d4c03a15d"}, + {file = "pyarrow-15.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:60a6bdb314affa9c2e0d5dddf3d9cbb9ef4a8dddaa68669975287d47ece67642"}, + {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:66958fd1771a4d4b754cd385835e66a3ef6b12611e001d4e5edfcef5f30391e2"}, + {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f500956a49aadd907eaa21d4fff75f73954605eaa41f61cb94fb008cf2e00c6"}, + {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:6f87d9c4f09e049c2cade559643424da84c43a35068f2a1c4653dc5b1408a929"}, + {file = "pyarrow-15.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:85239b9f93278e130d86c0e6bb455dcb66fc3fd891398b9d45ace8799a871a1e"}, + {file = "pyarrow-15.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:5b8d43e31ca16aa6e12402fcb1e14352d0d809de70edd185c7650fe80e0769e3"}, + {file = "pyarrow-15.0.0-cp311-cp311-macosx_10_15_x86_64.whl", hash = "sha256:fa7cd198280dbd0c988df525e50e35b5d16873e2cdae2aaaa6363cdb64e3eec5"}, + {file = "pyarrow-15.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8780b1a29d3c8b21ba6b191305a2a607de2e30dab399776ff0aa09131e266340"}, + {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fe0ec198ccc680f6c92723fadcb97b74f07c45ff3fdec9dd765deb04955ccf19"}, + {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:036a7209c235588c2f07477fe75c07e6caced9b7b61bb897c8d4e52c4b5f9555"}, + {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:2bd8a0e5296797faf9a3294e9fa2dc67aa7f10ae2207920dbebb785c77e9dbe5"}, + {file = "pyarrow-15.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:e8ebed6053dbe76883a822d4e8da36860f479d55a762bd9e70d8494aed87113e"}, + {file = "pyarrow-15.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:17d53a9d1b2b5bd7d5e4cd84d018e2a45bc9baaa68f7e6e3ebed45649900ba99"}, + {file = "pyarrow-15.0.0-cp312-cp312-macosx_10_15_x86_64.whl", hash = "sha256:9950a9c9df24090d3d558b43b97753b8f5867fb8e521f29876aa021c52fda351"}, + {file = "pyarrow-15.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:003d680b5e422d0204e7287bb3fa775b332b3fce2996aa69e9adea23f5c8f970"}, + {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f75fce89dad10c95f4bf590b765e3ae98bcc5ba9f6ce75adb828a334e26a3d40"}, + {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0ca9cb0039923bec49b4fe23803807e4ef39576a2bec59c32b11296464623dc2"}, + {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:9ed5a78ed29d171d0acc26a305a4b7f83c122d54ff5270810ac23c75813585e4"}, + {file = "pyarrow-15.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:6eda9e117f0402dfcd3cd6ec9bfee89ac5071c48fc83a84f3075b60efa96747f"}, + {file = "pyarrow-15.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:9a3a6180c0e8f2727e6f1b1c87c72d3254cac909e609f35f22532e4115461177"}, + {file = "pyarrow-15.0.0-cp38-cp38-macosx_10_15_x86_64.whl", hash = "sha256:19a8918045993349b207de72d4576af0191beef03ea655d8bdb13762f0cd6eac"}, + {file = "pyarrow-15.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d0ec076b32bacb6666e8813a22e6e5a7ef1314c8069d4ff345efa6246bc38593"}, + {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5db1769e5d0a77eb92344c7382d6543bea1164cca3704f84aa44e26c67e320fb"}, + {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e2617e3bf9df2a00020dd1c1c6dce5cc343d979efe10bc401c0632b0eef6ef5b"}, + {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:d31c1d45060180131caf10f0f698e3a782db333a422038bf7fe01dace18b3a31"}, + {file = "pyarrow-15.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:c8c287d1d479de8269398b34282e206844abb3208224dbdd7166d580804674b7"}, + {file = "pyarrow-15.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:07eb7f07dc9ecbb8dace0f58f009d3a29ee58682fcdc91337dfeb51ea618a75b"}, + {file = "pyarrow-15.0.0-cp39-cp39-macosx_10_15_x86_64.whl", hash = "sha256:47af7036f64fce990bb8a5948c04722e4e3ea3e13b1007ef52dfe0aa8f23cf7f"}, + {file = "pyarrow-15.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93768ccfff85cf044c418bfeeafce9a8bb0cee091bd8fd19011aff91e58de540"}, + {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f6ee87fd6892700960d90abb7b17a72a5abb3b64ee0fe8db6c782bcc2d0dc0b4"}, + {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:001fca027738c5f6be0b7a3159cc7ba16a5c52486db18160909a0831b063c4e4"}, + {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:d1c48648f64aec09accf44140dccb92f4f94394b8d79976c426a5b79b11d4fa7"}, + {file = "pyarrow-15.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:972a0141be402bb18e3201448c8ae62958c9c7923dfaa3b3d4530c835ac81aed"}, + {file = "pyarrow-15.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:f01fc5cf49081426429127aa2d427d9d98e1cb94a32cb961d583a70b7c4504e6"}, + {file = "pyarrow-15.0.0.tar.gz", hash = "sha256:876858f549d540898f927eba4ef77cd549ad8d24baa3207cf1b72e5788b50e83"}, +] + +[package.dependencies] +numpy = ">=1.16.6,<2" + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "pygments" +version = "2.17.2" +description = "Pygments is a syntax highlighting package written in Python." +optional = false +python-versions = ">=3.7" +files = [ + {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, + {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, +] + +[package.extras] +plugins = ["importlib-metadata"] +windows-terminal = ["colorama (>=0.4.6)"] + +[[package]] +name = "pyparsing" +version = "3.1.2" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" +optional = false +python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.1.2-py3-none-any.whl", hash = "sha256:f9db75911801ed778fe61bb643079ff86601aca99fcae6345aa67292038fb742"}, + {file = "pyparsing-3.1.2.tar.gz", hash = "sha256:a1bac0ce561155ecc3ed78ca94d3c9378656ad4c94c1270de543f621420f94ad"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "python-dateutil" +version = "2.9.0.post0" +description = "Extensions to the standard Python datetime module" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3"}, + {file = "python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-json-logger" +version = "2.0.7" +description = "A python library adding a json log formatter" +optional = false +python-versions = ">=3.6" +files = [ + {file = "python-json-logger-2.0.7.tar.gz", hash = "sha256:23e7ec02d34237c5aa1e29a070193a4ea87583bb4e7f8fd06d3de8264c4b2e1c"}, + {file = "python_json_logger-2.0.7-py3-none-any.whl", hash = "sha256:f380b826a991ebbe3de4d897aeec42760035ac760345e57b812938dc8b35e2bd"}, +] + +[[package]] +name = "pytz" +version = "2024.1" +description = "World timezone definitions, modern and historical" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, + {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, +] + +[[package]] +name = "pywin32" +version = "306" +description = "Python for Window Extensions" +optional = false +python-versions = "*" +files = [ + {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, + {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, + {file = "pywin32-306-cp311-cp311-win32.whl", hash = "sha256:e65028133d15b64d2ed8f06dd9fbc268352478d4f9289e69c190ecd6818b6407"}, + {file = "pywin32-306-cp311-cp311-win_amd64.whl", hash = "sha256:a7639f51c184c0272e93f244eb24dafca9b1855707d94c192d4a0b4c01e1100e"}, + {file = "pywin32-306-cp311-cp311-win_arm64.whl", hash = "sha256:70dba0c913d19f942a2db25217d9a1b726c278f483a919f1abfed79c9cf64d3a"}, + {file = "pywin32-306-cp312-cp312-win32.whl", hash = "sha256:383229d515657f4e3ed1343da8be101000562bf514591ff383ae940cad65458b"}, + {file = "pywin32-306-cp312-cp312-win_amd64.whl", hash = "sha256:37257794c1ad39ee9be652da0462dc2e394c8159dfd913a8a4e8eb6fd346da0e"}, + {file = "pywin32-306-cp312-cp312-win_arm64.whl", hash = "sha256:5821ec52f6d321aa59e2db7e0a35b997de60c201943557d108af9d4ae1ec7040"}, + {file = "pywin32-306-cp37-cp37m-win32.whl", hash = "sha256:1c73ea9a0d2283d889001998059f5eaaba3b6238f767c9cf2833b13e6a685f65"}, + {file = "pywin32-306-cp37-cp37m-win_amd64.whl", hash = "sha256:72c5f621542d7bdd4fdb716227be0dd3f8565c11b280be6315b06ace35487d36"}, + {file = "pywin32-306-cp38-cp38-win32.whl", hash = "sha256:e4c092e2589b5cf0d365849e73e02c391c1349958c5ac3e9d5ccb9a28e017b3a"}, + {file = "pywin32-306-cp38-cp38-win_amd64.whl", hash = "sha256:e8ac1ae3601bee6ca9f7cb4b5363bf1c0badb935ef243c4733ff9a393b1690c0"}, + {file = "pywin32-306-cp39-cp39-win32.whl", hash = "sha256:e25fd5b485b55ac9c057f67d94bc203f3f6595078d1fb3b458c9c28b7153a802"}, + {file = "pywin32-306-cp39-cp39-win_amd64.whl", hash = "sha256:39b61c15272833b5c329a2989999dcae836b1eed650252ab1b7bfbe1d59f30f4"}, +] + +[[package]] +name = "pywinpty" +version = "2.0.13" +description = "Pseudo terminal support for Windows from Python." +optional = false +python-versions = ">=3.8" +files = [ + {file = "pywinpty-2.0.13-cp310-none-win_amd64.whl", hash = "sha256:697bff211fb5a6508fee2dc6ff174ce03f34a9a233df9d8b5fe9c8ce4d5eaf56"}, + {file = "pywinpty-2.0.13-cp311-none-win_amd64.whl", hash = "sha256:b96fb14698db1284db84ca38c79f15b4cfdc3172065b5137383910567591fa99"}, + {file = "pywinpty-2.0.13-cp312-none-win_amd64.whl", hash = "sha256:2fd876b82ca750bb1333236ce98488c1be96b08f4f7647cfdf4129dfad83c2d4"}, + {file = "pywinpty-2.0.13-cp38-none-win_amd64.whl", hash = "sha256:61d420c2116c0212808d31625611b51caf621fe67f8a6377e2e8b617ea1c1f7d"}, + {file = "pywinpty-2.0.13-cp39-none-win_amd64.whl", hash = "sha256:71cb613a9ee24174730ac7ae439fd179ca34ccb8c5349e8d7b72ab5dea2c6f4b"}, + {file = "pywinpty-2.0.13.tar.gz", hash = "sha256:c34e32351a3313ddd0d7da23d27f835c860d32fe4ac814d372a3ea9594f41dde"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +optional = false +python-versions = ">=3.6" +files = [ + {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, + {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, + {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, + {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, + {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, + {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, + {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "pyzmq" +version = "25.1.2" +description = "Python bindings for 0MQ" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pyzmq-25.1.2-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:e624c789359f1a16f83f35e2c705d07663ff2b4d4479bad35621178d8f0f6ea4"}, + {file = "pyzmq-25.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:49151b0efece79f6a79d41a461d78535356136ee70084a1c22532fc6383f4ad0"}, + {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d9a5f194cf730f2b24d6af1f833c14c10f41023da46a7f736f48b6d35061e76e"}, + {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:faf79a302f834d9e8304fafdc11d0d042266667ac45209afa57e5efc998e3872"}, + {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f51a7b4ead28d3fca8dda53216314a553b0f7a91ee8fc46a72b402a78c3e43d"}, + {file = "pyzmq-25.1.2-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:0ddd6d71d4ef17ba5a87becf7ddf01b371eaba553c603477679ae817a8d84d75"}, + {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:246747b88917e4867e2367b005fc8eefbb4a54b7db363d6c92f89d69abfff4b6"}, + {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:00c48ae2fd81e2a50c3485de1b9d5c7c57cd85dc8ec55683eac16846e57ac979"}, + {file = "pyzmq-25.1.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a68d491fc20762b630e5db2191dd07ff89834086740f70e978bb2ef2668be08"}, + {file = "pyzmq-25.1.2-cp310-cp310-win32.whl", hash = "sha256:09dfe949e83087da88c4a76767df04b22304a682d6154de2c572625c62ad6886"}, + {file = "pyzmq-25.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:fa99973d2ed20417744fca0073390ad65ce225b546febb0580358e36aa90dba6"}, + {file = "pyzmq-25.1.2-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:82544e0e2d0c1811482d37eef297020a040c32e0687c1f6fc23a75b75db8062c"}, + {file = "pyzmq-25.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:01171fc48542348cd1a360a4b6c3e7d8f46cdcf53a8d40f84db6707a6768acc1"}, + {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bc69c96735ab501419c432110016329bf0dea8898ce16fab97c6d9106dc0b348"}, + {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3e124e6b1dd3dfbeb695435dff0e383256655bb18082e094a8dd1f6293114642"}, + {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7598d2ba821caa37a0f9d54c25164a4fa351ce019d64d0b44b45540950458840"}, + {file = "pyzmq-25.1.2-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:d1299d7e964c13607efd148ca1f07dcbf27c3ab9e125d1d0ae1d580a1682399d"}, + {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:4e6f689880d5ad87918430957297c975203a082d9a036cc426648fcbedae769b"}, + {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cc69949484171cc961e6ecd4a8911b9ce7a0d1f738fcae717177c231bf77437b"}, + {file = "pyzmq-25.1.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9880078f683466b7f567b8624bfc16cad65077be046b6e8abb53bed4eeb82dd3"}, + {file = "pyzmq-25.1.2-cp311-cp311-win32.whl", hash = "sha256:4e5837af3e5aaa99a091302df5ee001149baff06ad22b722d34e30df5f0d9097"}, + {file = "pyzmq-25.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:25c2dbb97d38b5ac9fd15586e048ec5eb1e38f3d47fe7d92167b0c77bb3584e9"}, + {file = "pyzmq-25.1.2-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:11e70516688190e9c2db14fcf93c04192b02d457b582a1f6190b154691b4c93a"}, + {file = "pyzmq-25.1.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:313c3794d650d1fccaaab2df942af9f2c01d6217c846177cfcbc693c7410839e"}, + {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b3cbba2f47062b85fe0ef9de5b987612140a9ba3a9c6d2543c6dec9f7c2ab27"}, + {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fc31baa0c32a2ca660784d5af3b9487e13b61b3032cb01a115fce6588e1bed30"}, + {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02c9087b109070c5ab0b383079fa1b5f797f8d43e9a66c07a4b8b8bdecfd88ee"}, + {file = "pyzmq-25.1.2-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:f8429b17cbb746c3e043cb986328da023657e79d5ed258b711c06a70c2ea7537"}, + {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:5074adeacede5f810b7ef39607ee59d94e948b4fd954495bdb072f8c54558181"}, + {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:7ae8f354b895cbd85212da245f1a5ad8159e7840e37d78b476bb4f4c3f32a9fe"}, + {file = "pyzmq-25.1.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b264bf2cc96b5bc43ce0e852be995e400376bd87ceb363822e2cb1964fcdc737"}, + {file = "pyzmq-25.1.2-cp312-cp312-win32.whl", hash = "sha256:02bbc1a87b76e04fd780b45e7f695471ae6de747769e540da909173d50ff8e2d"}, + {file = "pyzmq-25.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:ced111c2e81506abd1dc142e6cd7b68dd53747b3b7ae5edbea4578c5eeff96b7"}, + {file = "pyzmq-25.1.2-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:7b6d09a8962a91151f0976008eb7b29b433a560fde056ec7a3db9ec8f1075438"}, + {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:967668420f36878a3c9ecb5ab33c9d0ff8d054f9c0233d995a6d25b0e95e1b6b"}, + {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5edac3f57c7ddaacdb4d40f6ef2f9e299471fc38d112f4bc6d60ab9365445fb0"}, + {file = "pyzmq-25.1.2-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:0dabfb10ef897f3b7e101cacba1437bd3a5032ee667b7ead32bbcdd1a8422fe7"}, + {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:2c6441e0398c2baacfe5ba30c937d274cfc2dc5b55e82e3749e333aabffde561"}, + {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:16b726c1f6c2e7625706549f9dbe9b06004dfbec30dbed4bf50cbdfc73e5b32a"}, + {file = "pyzmq-25.1.2-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:a86c2dd76ef71a773e70551a07318b8e52379f58dafa7ae1e0a4be78efd1ff16"}, + {file = "pyzmq-25.1.2-cp36-cp36m-win32.whl", hash = "sha256:359f7f74b5d3c65dae137f33eb2bcfa7ad9ebefd1cab85c935f063f1dbb245cc"}, + {file = "pyzmq-25.1.2-cp36-cp36m-win_amd64.whl", hash = "sha256:55875492f820d0eb3417b51d96fea549cde77893ae3790fd25491c5754ea2f68"}, + {file = "pyzmq-25.1.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b8c8a419dfb02e91b453615c69568442e897aaf77561ee0064d789705ff37a92"}, + {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8807c87fa893527ae8a524c15fc505d9950d5e856f03dae5921b5e9aa3b8783b"}, + {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5e319ed7d6b8f5fad9b76daa0a68497bc6f129858ad956331a5835785761e003"}, + {file = "pyzmq-25.1.2-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:3c53687dde4d9d473c587ae80cc328e5b102b517447456184b485587ebd18b62"}, + {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:9add2e5b33d2cd765ad96d5eb734a5e795a0755f7fc49aa04f76d7ddda73fd70"}, + {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e690145a8c0c273c28d3b89d6fb32c45e0d9605b2293c10e650265bf5c11cfec"}, + {file = "pyzmq-25.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:00a06faa7165634f0cac1abb27e54d7a0b3b44eb9994530b8ec73cf52e15353b"}, + {file = "pyzmq-25.1.2-cp37-cp37m-win32.whl", hash = "sha256:0f97bc2f1f13cb16905a5f3e1fbdf100e712d841482b2237484360f8bc4cb3d7"}, + {file = "pyzmq-25.1.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6cc0020b74b2e410287e5942e1e10886ff81ac77789eb20bec13f7ae681f0fdd"}, + {file = "pyzmq-25.1.2-cp38-cp38-macosx_10_15_universal2.whl", hash = "sha256:bef02cfcbded83473bdd86dd8d3729cd82b2e569b75844fb4ea08fee3c26ae41"}, + {file = "pyzmq-25.1.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e10a4b5a4b1192d74853cc71a5e9fd022594573926c2a3a4802020360aa719d8"}, + {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8c5f80e578427d4695adac6fdf4370c14a2feafdc8cb35549c219b90652536ae"}, + {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:5dde6751e857910c1339890f3524de74007958557593b9e7e8c5f01cd919f8a7"}, + {file = "pyzmq-25.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea1608dd169da230a0ad602d5b1ebd39807ac96cae1845c3ceed39af08a5c6df"}, + {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:0f513130c4c361201da9bc69df25a086487250e16b5571ead521b31ff6b02220"}, + {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:019744b99da30330798bb37df33549d59d380c78e516e3bab9c9b84f87a9592f"}, + {file = "pyzmq-25.1.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:2e2713ef44be5d52dd8b8e2023d706bf66cb22072e97fc71b168e01d25192755"}, + {file = "pyzmq-25.1.2-cp38-cp38-win32.whl", hash = "sha256:07cd61a20a535524906595e09344505a9bd46f1da7a07e504b315d41cd42eb07"}, + {file = "pyzmq-25.1.2-cp38-cp38-win_amd64.whl", hash = "sha256:eb7e49a17fb8c77d3119d41a4523e432eb0c6932187c37deb6fbb00cc3028088"}, + {file = "pyzmq-25.1.2-cp39-cp39-macosx_10_15_universal2.whl", hash = "sha256:94504ff66f278ab4b7e03e4cba7e7e400cb73bfa9d3d71f58d8972a8dc67e7a6"}, + {file = "pyzmq-25.1.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:6dd0d50bbf9dca1d0bdea219ae6b40f713a3fb477c06ca3714f208fd69e16fd8"}, + {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:004ff469d21e86f0ef0369717351073e0e577428e514c47c8480770d5e24a565"}, + {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:c0b5ca88a8928147b7b1e2dfa09f3b6c256bc1135a1338536cbc9ea13d3b7add"}, + {file = "pyzmq-25.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c9a79f1d2495b167119d02be7448bfba57fad2a4207c4f68abc0bab4b92925b"}, + {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:518efd91c3d8ac9f9b4f7dd0e2b7b8bf1a4fe82a308009016b07eaa48681af82"}, + {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:1ec23bd7b3a893ae676d0e54ad47d18064e6c5ae1fadc2f195143fb27373f7f6"}, + {file = "pyzmq-25.1.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:db36c27baed588a5a8346b971477b718fdc66cf5b80cbfbd914b4d6d355e44e2"}, + {file = "pyzmq-25.1.2-cp39-cp39-win32.whl", hash = "sha256:39b1067f13aba39d794a24761e385e2eddc26295826530a8c7b6c6c341584289"}, + {file = "pyzmq-25.1.2-cp39-cp39-win_amd64.whl", hash = "sha256:8e9f3fabc445d0ce320ea2c59a75fe3ea591fdbdeebec5db6de530dd4b09412e"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a8c1d566344aee826b74e472e16edae0a02e2a044f14f7c24e123002dcff1c05"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:759cfd391a0996345ba94b6a5110fca9c557ad4166d86a6e81ea526c376a01e8"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7c61e346ac34b74028ede1c6b4bcecf649d69b707b3ff9dc0fab453821b04d1e"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4cb8fc1f8d69b411b8ec0b5f1ffbcaf14c1db95b6bccea21d83610987435f1a4"}, + {file = "pyzmq-25.1.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:3c00c9b7d1ca8165c610437ca0c92e7b5607b2f9076f4eb4b095c85d6e680a1d"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:df0c7a16ebb94452d2909b9a7b3337940e9a87a824c4fc1c7c36bb4404cb0cde"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:45999e7f7ed5c390f2e87ece7f6c56bf979fb213550229e711e45ecc7d42ccb8"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ac170e9e048b40c605358667aca3d94e98f604a18c44bdb4c102e67070f3ac9b"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1b604734bec94f05f81b360a272fc824334267426ae9905ff32dc2be433ab96"}, + {file = "pyzmq-25.1.2-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:a793ac733e3d895d96f865f1806f160696422554e46d30105807fdc9841b9f7d"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:0806175f2ae5ad4b835ecd87f5f85583316b69f17e97786f7443baaf54b9bb98"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:ef12e259e7bc317c7597d4f6ef59b97b913e162d83b421dd0db3d6410f17a244"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:ea253b368eb41116011add00f8d5726762320b1bda892f744c91997b65754d73"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1b9b1f2ad6498445a941d9a4fee096d387fee436e45cc660e72e768d3d8ee611"}, + {file = "pyzmq-25.1.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:8b14c75979ce932c53b79976a395cb2a8cd3aaf14aef75e8c2cb55a330b9b49d"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:889370d5174a741a62566c003ee8ddba4b04c3f09a97b8000092b7ca83ec9c49"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a18fff090441a40ffda8a7f4f18f03dc56ae73f148f1832e109f9bffa85df15"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:99a6b36f95c98839ad98f8c553d8507644c880cf1e0a57fe5e3a3f3969040882"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4345c9a27f4310afbb9c01750e9461ff33d6fb74cd2456b107525bbeebcb5be3"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:3516e0b6224cf6e43e341d56da15fd33bdc37fa0c06af4f029f7d7dfceceabbc"}, + {file = "pyzmq-25.1.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:146b9b1f29ead41255387fb07be56dc29639262c0f7344f570eecdcd8d683314"}, + {file = "pyzmq-25.1.2.tar.gz", hash = "sha256:93f1aa311e8bb912e34f004cf186407a4e90eec4f0ecc0efd26056bf7eda0226"}, +] + +[package.dependencies] +cffi = {version = "*", markers = "implementation_name == \"pypy\""} + +[[package]] +name = "referencing" +version = "0.33.0" +description = "JSON Referencing + Python" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.33.0-py3-none-any.whl", hash = "sha256:39240f2ecc770258f28b642dd47fd74bc8b02484de54e1882b74b35ebd779bd5"}, + {file = "referencing-0.33.0.tar.gz", hash = "sha256:c775fedf74bc0f9189c2a3be1c12fd03e8c23f4d371dce795df44e06c5b412f7"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rfc3339-validator" +version = "0.1.4" +description = "A pure python RFC3339 validator" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "rfc3339_validator-0.1.4-py2.py3-none-any.whl", hash = "sha256:24f6ec1eda14ef823da9e36ec7113124b39c04d50a4d3d3a3c2859577e7791fa"}, + {file = "rfc3339_validator-0.1.4.tar.gz", hash = "sha256:138a2abdf93304ad60530167e51d2dfb9549521a836871b88d7f4695d0022f6b"}, +] + +[package.dependencies] +six = "*" + +[[package]] +name = "rfc3986-validator" +version = "0.1.1" +description = "Pure python rfc3986 validator" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "rfc3986_validator-0.1.1-py2.py3-none-any.whl", hash = "sha256:2f235c432ef459970b4306369336b9d5dbdda31b510ca1e327636e01f528bfa9"}, + {file = "rfc3986_validator-0.1.1.tar.gz", hash = "sha256:3d44bde7921b3b9ec3ae4e3adca370438eccebc676456449b145d533b240d055"}, +] + +[[package]] +name = "rpds-py" +version = "0.18.0" +description = "Python bindings to Rust's persistent data structures (rpds)" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, + {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01e36a39af54a30f28b73096dd39b6802eddd04c90dbe161c1b8dbe22353189f"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d62dec4976954a23d7f91f2f4530852b0c7608116c257833922a896101336c51"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dd18772815d5f008fa03d2b9a681ae38d5ae9f0e599f7dda233c439fcaa00d40"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:923d39efa3cfb7279a0327e337a7958bff00cc447fd07a25cddb0a1cc9a6d2da"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:39514da80f971362f9267c600b6d459bfbbc549cffc2cef8e47474fddc9b45b1"}, + {file = "rpds_py-0.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a34d557a42aa28bd5c48a023c570219ba2593bcbbb8dc1b98d8cf5d529ab1434"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:93df1de2f7f7239dc9cc5a4a12408ee1598725036bd2dedadc14d94525192fc3"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:34b18ba135c687f4dac449aa5157d36e2cbb7c03cbea4ddbd88604e076aa836e"}, + {file = "rpds_py-0.18.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:c0b5dcf9193625afd8ecc92312d6ed78781c46ecbf39af9ad4681fc9f464af88"}, + {file = "rpds_py-0.18.0-cp310-none-win32.whl", hash = "sha256:c4325ff0442a12113a6379af66978c3fe562f846763287ef66bdc1d57925d337"}, + {file = "rpds_py-0.18.0-cp310-none-win_amd64.whl", hash = "sha256:7223a2a5fe0d217e60a60cdae28d6949140dde9c3bcc714063c5b463065e3d66"}, + {file = "rpds_py-0.18.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:3a96e0c6a41dcdba3a0a581bbf6c44bb863f27c541547fb4b9711fd8cf0ffad4"}, + {file = "rpds_py-0.18.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30f43887bbae0d49113cbaab729a112251a940e9b274536613097ab8b4899cf6"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fcb25daa9219b4cf3a0ab24b0eb9a5cc8949ed4dc72acb8fa16b7e1681aa3c58"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d68c93e381010662ab873fea609bf6c0f428b6d0bb00f2c6939782e0818d37bf"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b34b7aa8b261c1dbf7720b5d6f01f38243e9b9daf7e6b8bc1fd4657000062f2c"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e6d75ab12b0bbab7215e5d40f1e5b738aa539598db27ef83b2ec46747df90e1"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8612cd233543a3781bc659c731b9d607de65890085098986dfd573fc2befe5"}, + {file = "rpds_py-0.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:aec493917dd45e3c69d00a8874e7cbed844efd935595ef78a0f25f14312e33c6"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:661d25cbffaf8cc42e971dd570d87cb29a665f49f4abe1f9e76be9a5182c4688"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1df3659d26f539ac74fb3b0c481cdf9d725386e3552c6fa2974f4d33d78e544b"}, + {file = "rpds_py-0.18.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a1ce3ba137ed54f83e56fb983a5859a27d43a40188ba798993812fed73c70836"}, + {file = "rpds_py-0.18.0-cp311-none-win32.whl", hash = "sha256:69e64831e22a6b377772e7fb337533c365085b31619005802a79242fee620bc1"}, + {file = "rpds_py-0.18.0-cp311-none-win_amd64.whl", hash = "sha256:998e33ad22dc7ec7e030b3df701c43630b5bc0d8fbc2267653577e3fec279afa"}, + {file = "rpds_py-0.18.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:7f2facbd386dd60cbbf1a794181e6aa0bd429bd78bfdf775436020172e2a23f0"}, + {file = "rpds_py-0.18.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1d9a5be316c15ffb2b3c405c4ff14448c36b4435be062a7f578ccd8b01f0c4d8"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cd5bf1af8efe569654bbef5a3e0a56eca45f87cfcffab31dd8dde70da5982475"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5417558f6887e9b6b65b4527232553c139b57ec42c64570569b155262ac0754f"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:56a737287efecafc16f6d067c2ea0117abadcd078d58721f967952db329a3e5c"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8f03bccbd8586e9dd37219bce4d4e0d3ab492e6b3b533e973fa08a112cb2ffc9"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4457a94da0d5c53dc4b3e4de1158bdab077db23c53232f37a3cb7afdb053a4e3"}, + {file = "rpds_py-0.18.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0ab39c1ba9023914297dd88ec3b3b3c3f33671baeb6acf82ad7ce883f6e8e157"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:9d54553c1136b50fd12cc17e5b11ad07374c316df307e4cfd6441bea5fb68496"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0af039631b6de0397ab2ba16eaf2872e9f8fca391b44d3d8cac317860a700a3f"}, + {file = "rpds_py-0.18.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:84ffab12db93b5f6bad84c712c92060a2d321b35c3c9960b43d08d0f639d60d7"}, + {file = "rpds_py-0.18.0-cp312-none-win32.whl", hash = "sha256:685537e07897f173abcf67258bee3c05c374fa6fff89d4c7e42fb391b0605e98"}, + {file = "rpds_py-0.18.0-cp312-none-win_amd64.whl", hash = "sha256:e003b002ec72c8d5a3e3da2989c7d6065b47d9eaa70cd8808b5384fbb970f4ec"}, + {file = "rpds_py-0.18.0-cp38-cp38-macosx_10_12_x86_64.whl", hash = "sha256:08f9ad53c3f31dfb4baa00da22f1e862900f45908383c062c27628754af2e88e"}, + {file = "rpds_py-0.18.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:c0013fe6b46aa496a6749c77e00a3eb07952832ad6166bd481c74bda0dcb6d58"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e32a92116d4f2a80b629778280103d2a510a5b3f6314ceccd6e38006b5e92dcb"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e541ec6f2ec456934fd279a3120f856cd0aedd209fc3852eca563f81738f6861"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bed88b9a458e354014d662d47e7a5baafd7ff81c780fd91584a10d6ec842cb73"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2644e47de560eb7bd55c20fc59f6daa04682655c58d08185a9b95c1970fa1e07"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e8916ae4c720529e18afa0b879473049e95949bf97042e938530e072fde061d"}, + {file = "rpds_py-0.18.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:465a3eb5659338cf2a9243e50ad9b2296fa15061736d6e26240e713522b6235c"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:ea7d4a99f3b38c37eac212dbd6ec42b7a5ec51e2c74b5d3223e43c811609e65f"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:67071a6171e92b6da534b8ae326505f7c18022c6f19072a81dcf40db2638767c"}, + {file = "rpds_py-0.18.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:41ef53e7c58aa4ef281da975f62c258950f54b76ec8e45941e93a3d1d8580594"}, + {file = "rpds_py-0.18.0-cp38-none-win32.whl", hash = "sha256:fdea4952db2793c4ad0bdccd27c1d8fdd1423a92f04598bc39425bcc2b8ee46e"}, + {file = "rpds_py-0.18.0-cp38-none-win_amd64.whl", hash = "sha256:7cd863afe7336c62ec78d7d1349a2f34c007a3cc6c2369d667c65aeec412a5b1"}, + {file = "rpds_py-0.18.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:5307def11a35f5ae4581a0b658b0af8178c65c530e94893345bebf41cc139d33"}, + {file = "rpds_py-0.18.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:77f195baa60a54ef9d2de16fbbfd3ff8b04edc0c0140a761b56c267ac11aa467"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39f5441553f1c2aed4de4377178ad8ff8f9d733723d6c66d983d75341de265ab"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a00312dea9310d4cb7dbd7787e722d2e86a95c2db92fbd7d0155f97127bcb40"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8f2fc11e8fe034ee3c34d316d0ad8808f45bc3b9ce5857ff29d513f3ff2923a1"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:586f8204935b9ec884500498ccc91aa869fc652c40c093bd9e1471fbcc25c022"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ddc2f4dfd396c7bfa18e6ce371cba60e4cf9d2e5cdb71376aa2da264605b60b9"}, + {file = "rpds_py-0.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:5ddcba87675b6d509139d1b521e0c8250e967e63b5909a7e8f8944d0f90ff36f"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7bd339195d84439cbe5771546fe8a4e8a7a045417d8f9de9a368c434e42a721e"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:d7c36232a90d4755b720fbd76739d8891732b18cf240a9c645d75f00639a9024"}, + {file = "rpds_py-0.18.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6b0817e34942b2ca527b0e9298373e7cc75f429e8da2055607f4931fded23e20"}, + {file = "rpds_py-0.18.0-cp39-none-win32.whl", hash = "sha256:99f70b740dc04d09e6b2699b675874367885217a2e9f782bdf5395632ac663b7"}, + {file = "rpds_py-0.18.0-cp39-none-win_amd64.whl", hash = "sha256:6ef687afab047554a2d366e112dd187b62d261d49eb79b77e386f94644363294"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:ad36cfb355e24f1bd37cac88c112cd7730873f20fb0bdaf8ba59eedf8216079f"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:36b3ee798c58ace201289024b52788161e1ea133e4ac93fba7d49da5fec0ef9e"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8a2f084546cc59ea99fda8e070be2fd140c3092dc11524a71aa8f0f3d5a55ca"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e4461d0f003a0aa9be2bdd1b798a041f177189c1a0f7619fe8c95ad08d9a45d7"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8db715ebe3bb7d86d77ac1826f7d67ec11a70dbd2376b7cc214199360517b641"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:793968759cd0d96cac1e367afd70c235867831983f876a53389ad869b043c948"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66e6a3af5a75363d2c9a48b07cb27c4ea542938b1a2e93b15a503cdfa8490795"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ef0befbb5d79cf32d0266f5cff01545602344eda89480e1dd88aca964260b18"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1d4acf42190d449d5e89654d5c1ed3a4f17925eec71f05e2a41414689cda02d1"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:a5f446dd5055667aabaee78487f2b5ab72e244f9bc0b2ffebfeec79051679984"}, + {file = "rpds_py-0.18.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9dbbeb27f4e70bfd9eec1be5477517365afe05a9b2c441a0b21929ee61048124"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:22806714311a69fd0af9b35b7be97c18a0fc2826e6827dbb3a8c94eac6cf7eeb"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:b34ae4636dfc4e76a438ab826a0d1eed2589ca7d9a1b2d5bb546978ac6485461"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8c8370641f1a7f0e0669ddccca22f1da893cef7628396431eb445d46d893e5cd"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c8362467a0fdeccd47935f22c256bec5e6abe543bf0d66e3d3d57a8fb5731863"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11a8c85ef4a07a7638180bf04fe189d12757c696eb41f310d2426895356dcf05"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b316144e85316da2723f9d8dc75bada12fa58489a527091fa1d5a612643d1a0e"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf1ea2e34868f6fbf070e1af291c8180480310173de0b0c43fc38a02929fc0e3"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e546e768d08ad55b20b11dbb78a745151acbd938f8f00d0cfbabe8b0199b9880"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4901165d170a5fde6f589acb90a6b33629ad1ec976d4529e769c6f3d885e3e80"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:618a3d6cae6ef8ec88bb76dd80b83cfe415ad4f1d942ca2a903bf6b6ff97a2da"}, + {file = "rpds_py-0.18.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:ed4eb745efbff0a8e9587d22a84be94a5eb7d2d99c02dacf7bd0911713ed14dd"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:6c81e5f372cd0dc5dc4809553d34f832f60a46034a5f187756d9b90586c2c307"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:43fbac5f22e25bee1d482c97474f930a353542855f05c1161fd804c9dc74a09d"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6d7faa6f14017c0b1e69f5e2c357b998731ea75a442ab3841c0dbbbfe902d2c4"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:08231ac30a842bd04daabc4d71fddd7e6d26189406d5a69535638e4dcb88fe76"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:044a3e61a7c2dafacae99d1e722cc2d4c05280790ec5a05031b3876809d89a5c"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3f26b5bd1079acdb0c7a5645e350fe54d16b17bfc5e71f371c449383d3342e17"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:482103aed1dfe2f3b71a58eff35ba105289b8d862551ea576bd15479aba01f66"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1374f4129f9bcca53a1bba0bb86bf78325a0374577cf7e9e4cd046b1e6f20e24"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:635dc434ff724b178cb192c70016cc0ad25a275228f749ee0daf0eddbc8183b1"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:bc362ee4e314870a70f4ae88772d72d877246537d9f8cb8f7eacf10884862432"}, + {file = "rpds_py-0.18.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:4832d7d380477521a8c1644bbab6588dfedea5e30a7d967b5fb75977c45fd77f"}, + {file = "rpds_py-0.18.0.tar.gz", hash = "sha256:42821446ee7a76f5d9f71f9e33a4fb2ffd724bb3e7f93386150b61a43115788d"}, +] + +[[package]] +name = "ruff" +version = "0.3.1" +description = "An extremely fast Python linter and code formatter, written in Rust." +optional = false +python-versions = ">=3.7" +files = [ + {file = "ruff-0.3.1-py3-none-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl", hash = "sha256:6b82e3937d0d76554cd5796bc3342a7d40de44494d29ff490022d7a52c501744"}, + {file = "ruff-0.3.1-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ae7954c8f692b70e6a206087ae3988acc9295d84c550f8d90b66c62424c16771"}, + {file = "ruff-0.3.1-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b730f56ccf91225da0f06cfe421e83b8cc27b2a79393db9c3df02ed7e2bbc01"}, + {file = "ruff-0.3.1-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:c78bfa85637668f47bd82aa2ae17de2b34221ac23fea30926f6409f9e37fc927"}, + {file = "ruff-0.3.1-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6abaad602d6e6daaec444cbf4d9364df0a783e49604c21499f75bb92237d4af"}, + {file = "ruff-0.3.1-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:5f0c21b6914c3c9a25a59497cbb1e5b6c2d8d9beecc9b8e03ee986e24eee072e"}, + {file = "ruff-0.3.1-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:434c3fc72e6311c85cd143c4c448b0e60e025a9ac1781e63ba222579a8c29200"}, + {file = "ruff-0.3.1-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78a7025e6312cbba496341da5062e7cdd47d95f45c1b903e635cdeb1ba5ec2b9"}, + {file = "ruff-0.3.1-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:52b02bb46f1a79b0c1fa93f6495bc7e77e4ef76e6c28995b4974a20ed09c0833"}, + {file = "ruff-0.3.1-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:11b5699c42f7d0b771c633d620f2cb22e727fb226273aba775a91784a9ed856c"}, + {file = "ruff-0.3.1-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:54e5dca3e411772b51194b3102b5f23b36961e8ede463776b289b78180df71a0"}, + {file = "ruff-0.3.1-py3-none-musllinux_1_2_i686.whl", hash = "sha256:951efb610c5844e668bbec4f71cf704f8645cf3106e13f283413969527ebfded"}, + {file = "ruff-0.3.1-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:09c7333b25e983aabcf6e38445252cff0b4745420fc3bda45b8fce791cc7e9ce"}, + {file = "ruff-0.3.1-py3-none-win32.whl", hash = "sha256:d937f9b99ebf346e0606c3faf43c1e297a62ad221d87ef682b5bdebe199e01f6"}, + {file = "ruff-0.3.1-py3-none-win_amd64.whl", hash = "sha256:c0318a512edc9f4e010bbaab588b5294e78c5cdc9b02c3d8ab2d77c7ae1903e3"}, + {file = "ruff-0.3.1-py3-none-win_arm64.whl", hash = "sha256:d3b60e44240f7e903e6dbae3139a65032ea4c6f2ad99b6265534ff1b83c20afa"}, + {file = "ruff-0.3.1.tar.gz", hash = "sha256:d30db97141fc2134299e6e983a6727922c9e03c031ae4883a6d69461de722ae7"}, +] + +[[package]] +name = "scipy" +version = "1.12.0" +description = "Fundamental algorithms for scientific computing in Python" +optional = false +python-versions = ">=3.9" +files = [ + {file = "scipy-1.12.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:78e4402e140879387187f7f25d91cc592b3501a2e51dfb320f48dfb73565f10b"}, + {file = "scipy-1.12.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:f5f00ebaf8de24d14b8449981a2842d404152774c1a1d880c901bf454cb8e2a1"}, + {file = "scipy-1.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e53958531a7c695ff66c2e7bb7b79560ffdc562e2051644c5576c39ff8efb563"}, + {file = "scipy-1.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e32847e08da8d895ce09d108a494d9eb78974cf6de23063f93306a3e419960c"}, + {file = "scipy-1.12.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4c1020cad92772bf44b8e4cdabc1df5d87376cb219742549ef69fc9fd86282dd"}, + {file = "scipy-1.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:75ea2a144096b5e39402e2ff53a36fecfd3b960d786b7efd3c180e29c39e53f2"}, + {file = "scipy-1.12.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:408c68423f9de16cb9e602528be4ce0d6312b05001f3de61fe9ec8b1263cad08"}, + {file = "scipy-1.12.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5adfad5dbf0163397beb4aca679187d24aec085343755fcdbdeb32b3679f254c"}, + {file = "scipy-1.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c3003652496f6e7c387b1cf63f4bb720951cfa18907e998ea551e6de51a04467"}, + {file = "scipy-1.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8b8066bce124ee5531d12a74b617d9ac0ea59245246410e19bca549656d9a40a"}, + {file = "scipy-1.12.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8bee4993817e204d761dba10dbab0774ba5a8612e57e81319ea04d84945375ba"}, + {file = "scipy-1.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:a24024d45ce9a675c1fb8494e8e5244efea1c7a09c60beb1eeb80373d0fecc70"}, + {file = "scipy-1.12.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:e7e76cc48638228212c747ada851ef355c2bb5e7f939e10952bc504c11f4e372"}, + {file = "scipy-1.12.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:f7ce148dffcd64ade37b2df9315541f9adad6efcaa86866ee7dd5db0c8f041c3"}, + {file = "scipy-1.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c39f92041f490422924dfdb782527a4abddf4707616e07b021de33467f917bc"}, + {file = "scipy-1.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7ebda398f86e56178c2fa94cad15bf457a218a54a35c2a7b4490b9f9cb2676c"}, + {file = "scipy-1.12.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:95e5c750d55cf518c398a8240571b0e0782c2d5a703250872f36eaf737751338"}, + {file = "scipy-1.12.0-cp312-cp312-win_amd64.whl", hash = "sha256:e646d8571804a304e1da01040d21577685ce8e2db08ac58e543eaca063453e1c"}, + {file = "scipy-1.12.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:913d6e7956c3a671de3b05ccb66b11bc293f56bfdef040583a7221d9e22a2e35"}, + {file = "scipy-1.12.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:bba1b0c7256ad75401c73e4b3cf09d1f176e9bd4248f0d3112170fb2ec4db067"}, + {file = "scipy-1.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:730badef9b827b368f351eacae2e82da414e13cf8bd5051b4bdfd720271a5371"}, + {file = "scipy-1.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6546dc2c11a9df6926afcbdd8a3edec28566e4e785b915e849348c6dd9f3f490"}, + {file = "scipy-1.12.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:196ebad3a4882081f62a5bf4aeb7326aa34b110e533aab23e4374fcccb0890dc"}, + {file = "scipy-1.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:b360f1b6b2f742781299514e99ff560d1fe9bd1bff2712894b52abe528d1fd1e"}, + {file = "scipy-1.12.0.tar.gz", hash = "sha256:4bf5abab8a36d20193c698b0f1fc282c1d083c94723902c447e5d2f1780936a3"}, +] + +[package.dependencies] +numpy = ">=1.22.4,<1.29.0" + +[package.extras] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +test = ["asv", "gmpy2", "hypothesis", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] + +[[package]] +name = "seaborn" +version = "0.13.2" +description = "Statistical data visualization" +optional = false +python-versions = ">=3.8" +files = [ + {file = "seaborn-0.13.2-py3-none-any.whl", hash = "sha256:636f8336facf092165e27924f223d3c62ca560b1f2bb5dff7ab7fad265361987"}, + {file = "seaborn-0.13.2.tar.gz", hash = "sha256:93e60a40988f4d65e9f4885df477e2fdaff6b73a9ded434c1ab356dd57eefff7"}, +] + +[package.dependencies] +matplotlib = ">=3.4,<3.6.1 || >3.6.1" +numpy = ">=1.20,<1.24.0 || >1.24.0" +pandas = ">=1.2" + +[package.extras] +dev = ["flake8", "flit", "mypy", "pandas-stubs", "pre-commit", "pytest", "pytest-cov", "pytest-xdist"] +docs = ["ipykernel", "nbconvert", "numpydoc", "pydata_sphinx_theme (==0.10.0rc2)", "pyyaml", "sphinx (<6.0.0)", "sphinx-copybutton", "sphinx-design", "sphinx-issues"] +stats = ["scipy (>=1.7)", "statsmodels (>=0.12)"] + +[[package]] +name = "send2trash" +version = "1.8.2" +description = "Send file to trash natively under Mac OS X, Windows and Linux" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ + {file = "Send2Trash-1.8.2-py3-none-any.whl", hash = "sha256:a384719d99c07ce1eefd6905d2decb6f8b7ed054025bb0e618919f945de4f679"}, + {file = "Send2Trash-1.8.2.tar.gz", hash = "sha256:c132d59fa44b9ca2b1699af5c86f57ce9f4c5eb56629d5d55fbb7a35f84e2312"}, +] + +[package.extras] +nativelib = ["pyobjc-framework-Cocoa", "pywin32"] +objc = ["pyobjc-framework-Cocoa"] +win32 = ["pywin32"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "sniffio" +version = "1.3.1" +description = "Sniff out which async library your code is running under" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, +] + +[[package]] +name = "soupsieve" +version = "2.5" +description = "A modern CSS selector implementation for Beautiful Soup." +optional = false +python-versions = ">=3.8" +files = [ + {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, + {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, +] + +[[package]] +name = "stack-data" +version = "0.6.3" +description = "Extract data from python stack frames and tracebacks for informative displays" +optional = false +python-versions = "*" +files = [ + {file = "stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695"}, + {file = "stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9"}, +] + +[package.dependencies] +asttokens = ">=2.1.0" +executing = ">=1.2.0" +pure-eval = "*" + +[package.extras] +tests = ["cython", "littleutils", "pygments", "pytest", "typeguard"] + +[[package]] +name = "terminado" +version = "0.18.0" +description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." +optional = false +python-versions = ">=3.8" +files = [ + {file = "terminado-0.18.0-py3-none-any.whl", hash = "sha256:87b0d96642d0fe5f5abd7783857b9cab167f221a39ff98e3b9619a788a3c0f2e"}, + {file = "terminado-0.18.0.tar.gz", hash = "sha256:1ea08a89b835dd1b8c0c900d92848147cef2537243361b2e3f4dc15df9b6fded"}, +] + +[package.dependencies] +ptyprocess = {version = "*", markers = "os_name != \"nt\""} +pywinpty = {version = ">=1.1.0", markers = "os_name == \"nt\""} +tornado = ">=6.1.0" + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["pre-commit", "pytest (>=7.0)", "pytest-timeout"] +typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] + +[[package]] +name = "tinycss2" +version = "1.2.1" +description = "A tiny CSS parser" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tinycss2-1.2.1-py3-none-any.whl", hash = "sha256:2b80a96d41e7c3914b8cda8bc7f705a4d9c49275616e886103dd839dfc847847"}, + {file = "tinycss2-1.2.1.tar.gz", hash = "sha256:8cff3a8f066c2ec677c06dbc7b45619804a6938478d9d73c284b29d14ecb0627"}, +] + +[package.dependencies] +webencodings = ">=0.4" + +[package.extras] +doc = ["sphinx", "sphinx_rtd_theme"] +test = ["flake8", "isort", "pytest"] + +[[package]] +name = "tokenize-rt" +version = "5.2.0" +description = "A wrapper around the stdlib `tokenize` which roundtrips." +optional = false +python-versions = ">=3.8" +files = [ + {file = "tokenize_rt-5.2.0-py2.py3-none-any.whl", hash = "sha256:b79d41a65cfec71285433511b50271b05da3584a1da144a0752e9c621a285289"}, + {file = "tokenize_rt-5.2.0.tar.gz", hash = "sha256:9fe80f8a5c1edad2d3ede0f37481cc0cc1538a2f442c9c2f9e4feacd2792d054"}, +] + +[[package]] +name = "toml" +version = "0.10.2" +description = "Python Library for Tom's Obvious, Minimal Language" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, + {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, +] + +[[package]] +name = "tornado" +version = "6.4" +description = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +optional = false +python-versions = ">= 3.8" +files = [ + {file = "tornado-6.4-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0"}, + {file = "tornado-6.4-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7894c581ecdcf91666a0912f18ce5e757213999e183ebfc2c3fdbf4d5bd764e"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e43bc2e5370a6a8e413e1e1cd0c91bedc5bd62a74a532371042a18ef19e10579"}, + {file = "tornado-6.4-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0251554cdd50b4b44362f73ad5ba7126fc5b2c2895cc62b14a1c2d7ea32f212"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:fd03192e287fbd0899dd8f81c6fb9cbbc69194d2074b38f384cb6fa72b80e9c2"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_i686.whl", hash = "sha256:88b84956273fbd73420e6d4b8d5ccbe913c65d31351b4c004ae362eba06e1f78"}, + {file = "tornado-6.4-cp38-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:71ddfc23a0e03ef2df1c1397d859868d158c8276a0603b96cf86892bff58149f"}, + {file = "tornado-6.4-cp38-abi3-win32.whl", hash = "sha256:6f8a6c77900f5ae93d8b4ae1196472d0ccc2775cc1dfdc9e7727889145c45052"}, + {file = "tornado-6.4-cp38-abi3-win_amd64.whl", hash = "sha256:10aeaa8006333433da48dec9fe417877f8bcc21f48dda8d661ae79da357b2a63"}, + {file = "tornado-6.4.tar.gz", hash = "sha256:72291fa6e6bc84e626589f1c29d90a5a6d593ef5ae68052ee2ef000dfd273dee"}, +] + +[[package]] +name = "tqdm" +version = "4.66.2" +description = "Fast, Extensible Progress Meter" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.66.2-py3-none-any.whl", hash = "sha256:1ee4f8a893eb9bef51c6e35730cebf234d5d0b6bd112b0271e10ed7c24a02bd9"}, + {file = "tqdm-4.66.2.tar.gz", hash = "sha256:6cd52cdf0fef0e0f543299cfc96fec90d7b8a7e88745f411ec33eb44d5ed3531"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["pytest (>=6)", "pytest-cov", "pytest-timeout", "pytest-xdist"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + +[[package]] +name = "traitlets" +version = "5.14.1" +description = "Traitlets Python configuration system" +optional = false +python-versions = ">=3.8" +files = [ + {file = "traitlets-5.14.1-py3-none-any.whl", hash = "sha256:2e5a030e6eff91737c643231bfcf04a65b0132078dad75e4936700b213652e74"}, + {file = "traitlets-5.14.1.tar.gz", hash = "sha256:8585105b371a04b8316a43d5ce29c098575c2e477850b62b848b964f1444527e"}, +] + +[package.extras] +docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] +test = ["argcomplete (>=3.0.3)", "mypy (>=1.7.0)", "pre-commit", "pytest (>=7.0,<7.5)", "pytest-mock", "pytest-mypy-testing"] + +[[package]] +name = "types-python-dateutil" +version = "2.8.19.20240106" +description = "Typing stubs for python-dateutil" +optional = false +python-versions = ">=3.8" +files = [ + {file = "types-python-dateutil-2.8.19.20240106.tar.gz", hash = "sha256:1f8db221c3b98e6ca02ea83a58371b22c374f42ae5bbdf186db9c9a76581459f"}, + {file = "types_python_dateutil-2.8.19.20240106-py3-none-any.whl", hash = "sha256:efbbdc54590d0f16152fa103c9879c7d4a00e82078f6e2cf01769042165acaa2"}, +] + +[[package]] +name = "types-tqdm" +version = "4.66.0.20240106" +description = "Typing stubs for tqdm" +optional = false +python-versions = ">=3.8" +files = [ + {file = "types-tqdm-4.66.0.20240106.tar.gz", hash = "sha256:7acf4aade5bad3ded76eb829783f9961b1c2187948eaa6dd1ae8644dff95a938"}, + {file = "types_tqdm-4.66.0.20240106-py3-none-any.whl", hash = "sha256:7459b0f441b969735685645a5d8480f7912b10d05ab45f99a2db8a8e45cb550b"}, +] + +[[package]] +name = "typing-extensions" +version = "4.10.0" +description = "Backported and Experimental Type Hints for Python 3.8+" +optional = false +python-versions = ">=3.8" +files = [ + {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"}, + {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"}, +] + +[[package]] +name = "tzdata" +version = "2024.1" +description = "Provider of IANA time zone data" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, + {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, +] + +[[package]] +name = "uri-template" +version = "1.3.0" +description = "RFC 6570 URI Template Processor" +optional = false +python-versions = ">=3.7" +files = [ + {file = "uri-template-1.3.0.tar.gz", hash = "sha256:0e00f8eb65e18c7de20d595a14336e9f337ead580c70934141624b6d1ffdacc7"}, + {file = "uri_template-1.3.0-py3-none-any.whl", hash = "sha256:a44a133ea12d44a0c0f06d7d42a52d71282e77e2f937d8abd5655b8d56fc1363"}, +] + +[package.extras] +dev = ["flake8", "flake8-annotations", "flake8-bandit", "flake8-bugbear", "flake8-commas", "flake8-comprehensions", "flake8-continuation", "flake8-datetimez", "flake8-docstrings", "flake8-import-order", "flake8-literal", "flake8-modern-annotations", "flake8-noqa", "flake8-pyproject", "flake8-requirements", "flake8-typechecking-import", "flake8-use-fstring", "mypy", "pep8-naming", "types-PyYAML"] + +[[package]] +name = "urllib3" +version = "2.2.1" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.8" +files = [ + {file = "urllib3-2.2.1-py3-none-any.whl", hash = "sha256:450b20ec296a467077128bff42b73080516e71b56ff59a60a02bef2232c4fa9d"}, + {file = "urllib3-2.2.1.tar.gz", hash = "sha256:d0570876c61ab9e520d776c38acbbb5b05a776d3f9ff98a5c8fd5162a444cf19"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +h2 = ["h2 (>=4,<5)"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "wcwidth" +version = "0.2.13" +description = "Measures the displayed width of unicode strings in a terminal" +optional = false +python-versions = "*" +files = [ + {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, + {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, +] + +[[package]] +name = "webcolors" +version = "1.13" +description = "A library for working with the color formats defined by HTML and CSS." +optional = false +python-versions = ">=3.7" +files = [ + {file = "webcolors-1.13-py3-none-any.whl", hash = "sha256:29bc7e8752c0a1bd4a1f03c14d6e6a72e93d82193738fa860cbff59d0fcc11bf"}, + {file = "webcolors-1.13.tar.gz", hash = "sha256:c225b674c83fa923be93d235330ce0300373d02885cef23238813b0d5668304a"}, +] + +[package.extras] +docs = ["furo", "sphinx", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-notfound-page", "sphinxext-opengraph"] +tests = ["pytest", "pytest-cov"] + +[[package]] +name = "webencodings" +version = "0.5.1" +description = "Character encoding aliases for legacy web content" +optional = false +python-versions = "*" +files = [ + {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, + {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, +] + +[[package]] +name = "websocket-client" +version = "1.7.0" +description = "WebSocket client for Python with low level API options" +optional = false +python-versions = ">=3.8" +files = [ + {file = "websocket-client-1.7.0.tar.gz", hash = "sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6"}, + {file = "websocket_client-1.7.0-py3-none-any.whl", hash = "sha256:f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588"}, +] + +[package.extras] +docs = ["Sphinx (>=6.0)", "sphinx-rtd-theme (>=1.1.0)"] +optional = ["python-socks", "wsaccel"] +test = ["websockets"] + +[metadata] +lock-version = "2.0" +python-versions = "3.12.*" +content-hash = "452944dcc163f4b2fa877bdfb39d2b802ae12e583fe479af7ff13e0331b585d6" diff --git a/experiments/g_index/pyproject.toml b/experiments/g_index/pyproject.toml new file mode 100644 index 0000000000000000000000000000000000000000..99060380620e04d4f08654d855d73bc3b215a519 --- /dev/null +++ b/experiments/g_index/pyproject.toml @@ -0,0 +1,34 @@ +[tool.poetry] +name = "g-index" +version = "0.1.0" +description = "G-Index from BGG plays" +authors = ["Markus Shepherd "] + +[tool.poetry.dependencies] +python = "3.12.*" + +matplotlib = "*" +numpy = "*" +polars = {version = "*", extras = ["pandas"]} +pyarrow = "==15.0.0" +scipy = "*" +seaborn = "*" +tqdm = "*" + +[tool.poetry.group.dev.dependencies] +jupyter-black = "*" +jupyterlab = "*" +jupytext = "*" +mypy = "*" +ruff = "*" +types-tqdm = "*" + +[tool.ruff] +target-version = "py312" + +[tool.mypy] +python_version = "3.12" + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"