Advertisement
PJH

4nlikes -1000

PJH
Jan 19th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 81.04 KB | None | 0 0
  1.  
  2. WITH RECURSIVE Counter AS (
  3. SELECT 1 i
  4. UNION ALL
  5. SELECT i * 4 -- Exponential!
  6. FROM Counter
  7. WHERE i < 100000
  8. ),
  9. user_like_count AS (
  10. SELECT pa.user_id, count(pa.user_id) count
  11. FROM post_actions pa
  12. LEFT OUTER JOIN posts p ON pa.post_id = p.id
  13. WHERE post_action_type_id = 2
  14. -- Exclude Likes Topic
  15. AND p.topic_id NOT IN (1000)
  16. GROUP BY pa.user_id
  17. -- HAVING count(pa.user_id) > 10
  18. )
  19. SELECT u.username, current_timestamp - (Counter.i * INTERVAL '0.0001 seconds') granted_at, user_like_count.count, Counter.i
  20. FROM user_like_count
  21. JOIN Counter ON user_like_count.count > Counter.i
  22. JOIN users u on u.id=user_like_count.user_id
  23. -- ORDER BY Counter.i DESC, user_id ASC
  24.  
  25.  
  26. username | granted_at | count | i
  27. ----------------------+-------------------------------+-------+------
  28. Salamander | 2015-01-20 01:25:37.581251+00 | 300 | 1
  29. cconroy | 2015-01-20 01:25:37.581251+00 | 27 | 1
  30. hungrier | 2015-01-20 01:25:37.581251+00 | 3610 | 1
  31. nerd4sale | 2015-01-20 01:25:37.581251+00 | 2 | 1
  32. marinus | 2015-01-20 01:25:37.581251+00 | 282 | 1
  33. obeselymorbid | 2015-01-20 01:25:37.581251+00 | 1262 | 1
  34. RTapeLoadingError | 2015-01-20 01:25:37.581251+00 | 261 | 1
  35. AwesomeRick | 2015-01-20 01:25:37.581251+00 | 18 | 1
  36. papadumbass | 2015-01-20 01:25:37.581251+00 | 2 | 1
  37. piisawheel314 | 2015-01-20 01:25:37.581251+00 | 3 | 1
  38. jaming | 2015-01-20 01:25:37.581251+00 | 365 | 1
  39. jape | 2015-01-20 01:25:37.581251+00 | 5 | 1
  40. null_loop | 2015-01-20 01:25:37.581251+00 | 125 | 1
  41. charlieda | 2015-01-20 01:25:37.581251+00 | 2 | 1
  42. gnannann | 2015-01-20 01:25:37.581251+00 | 23 | 1
  43. martijntje | 2015-01-20 01:25:37.581251+00 | 23 | 1
  44. evandentremont | 2015-01-20 01:25:37.581251+00 | 20 | 1
  45. WernerCD | 2015-01-20 01:25:37.581251+00 | 8 | 1
  46. No_1 | 2015-01-20 01:25:37.581251+00 | 36 | 1
  47. fatbull | 2015-01-20 01:25:37.581251+00 | 78 | 1
  48. JazzyJosh | 2015-01-20 01:25:37.581251+00 | 248 | 1
  49. loopback0 | 2015-01-20 01:25:37.581251+00 | 1483 | 1
  50. Minimaul | 2015-01-20 01:25:37.581251+00 | 7 | 1
  51. SummonBot | 2015-01-20 01:25:37.581251+00 | 2 | 1
  52. FrostCat | 2015-01-20 01:25:37.581251+00 | 1001 | 1
  53. s73v3r | 2015-01-20 01:25:37.581251+00 | 6 | 1
  54. mratt | 2015-01-20 01:25:37.581251+00 | 21 | 1
  55. M_Adams | 2015-01-20 01:25:37.581251+00 | 1107 | 1
  56. presidentsdaughter | 2015-01-20 01:25:37.581251+00 | 53 | 1
  57. Jeddix | 2015-01-20 01:25:37.581251+00 | 2 | 1
  58. Matt_Westwood | 2015-01-20 01:25:37.581251+00 | 3 | 1
  59. error | 2015-01-20 01:25:37.581251+00 | 1354 | 1
  60. Frank | 2015-01-20 01:25:37.581251+00 | 449 | 1
  61. Cataria | 2015-01-20 01:25:37.581251+00 | 2 | 1
  62. Discourse | 2015-01-20 01:25:37.581251+00 | 6 | 1
  63. Felipe_Budinich | 2015-01-20 01:25:37.581251+00 | 18 | 1
  64. Zecc | 2015-01-20 01:25:37.581251+00 | 1112 | 1
  65. scudsucker | 2015-01-20 01:25:37.581251+00 | 11 | 1
  66. kylehutson | 2015-01-20 01:25:37.581251+00 | 5 | 1
  67. LurkerAbove | 2015-01-20 01:25:37.581251+00 | 106 | 1
  68. dahaka | 2015-01-20 01:25:37.581251+00 | 158 | 1
  69. grkvlt | 2015-01-20 01:25:37.581251+00 | 16 | 1
  70. MRAholeDBA | 2015-01-20 01:25:37.581251+00 | 2 | 1
  71. Nprz | 2015-01-20 01:25:37.581251+00 | 36 | 1
  72. Arantor | 2015-01-20 01:25:37.581251+00 | 9583 | 1
  73. Shoreline | 2015-01-20 01:25:37.581251+00 | 260 | 1
  74. xaade | 2015-01-20 01:25:37.581251+00 | 38 | 1
  75. exitcode1 | 2015-01-20 01:25:37.581251+00 | 2 | 1
  76. deadman | 2015-01-20 01:25:37.581251+00 | 7 | 1
  77. TwelveBaud | 2015-01-20 01:25:37.581251+00 | 1089 | 1
  78. DocMonster | 2015-01-20 01:25:37.581251+00 | 9 | 1
  79. foxyshadis | 2015-01-20 01:25:37.581251+00 | 27 | 1
  80. CarrieVS | 2015-01-20 01:25:37.581251+00 | 65 | 1
  81. PJH | 2015-01-20 01:25:37.581251+00 | 1247 | 1
  82. Supermathie | 2015-01-20 01:25:37.581251+00 | 5 | 1
  83. Luhmann | 2015-01-20 01:25:37.581251+00 | 2834 | 1
  84. ComputerForumUser | 2015-01-20 01:25:37.581251+00 | 5 | 1
  85. Matosawitko | 2015-01-20 01:25:37.581251+00 | 8 | 1
  86. Monarch | 2015-01-20 01:25:37.581251+00 | 377 | 1
  87. codlnghorror | 2015-01-20 01:25:37.581251+00 | 50 | 1
  88. CodingHorrorBot | 2015-01-20 01:25:37.581251+00 | 75 | 1
  89. Vempele | 2015-01-20 01:25:37.581251+00 | 2 | 1
  90. cpradio | 2015-01-20 01:25:37.581251+00 | 3 | 1
  91. Lorne_Kates | 2015-01-20 01:25:37.581251+00 | 15 | 1
  92. Peter_Wolff | 2015-01-20 01:25:37.581251+00 | 7 | 1
  93. fancypants | 2015-01-20 01:25:37.581251+00 | 4 | 1
  94. RichardNixonBot | 2015-01-20 01:25:37.581251+00 | 3 | 1
  95. LoremIpsum | 2015-01-20 01:25:37.581251+00 | 465 | 1
  96. ntqz | 2015-01-20 01:25:37.581251+00 | 6 | 1
  97. dcon | 2015-01-20 01:25:37.581251+00 | 48 | 1
  98. Watson | 2015-01-20 01:25:37.581251+00 | 7 | 1
  99. JohnnyFive | 2015-01-20 01:25:37.581251+00 | 3 | 1
  100. immibis_ | 2015-01-20 01:25:37.581251+00 | 47 | 1
  101. ufmace | 2015-01-20 01:25:37.581251+00 | 23 | 1
  102. Question_Mark | 2015-01-20 01:25:37.581251+00 | 2 | 1
  103. Spencer | 2015-01-20 01:25:37.581251+00 | 615 | 1
  104. Vilx | 2015-01-20 01:25:37.581251+00 | 2 | 1
  105. sjw | 2015-01-20 01:25:37.581251+00 | 5 | 1
  106. WTFeveryday | 2015-01-20 01:25:37.581251+00 | 2 | 1
  107. tarunik | 2015-01-20 01:25:37.581251+00 | 12833 | 1
  108. Cursorkeys | 2015-01-20 01:25:37.581251+00 | 296 | 1
  109. CreatedToDislikeThis | 2015-01-20 01:25:37.581251+00 | 99 | 1
  110. Kuro | 2015-01-20 01:25:37.581251+00 | 170 | 1
  111. Buddy | 2015-01-20 01:25:37.581251+00 | 567 | 1
  112. flwf | 2015-01-20 01:25:37.581251+00 | 49 | 1
  113. diegose | 2015-01-20 01:25:37.581251+00 | 4 | 1
  114. RandyHickey | 2015-01-20 01:25:37.581251+00 | 13 | 1
  115. Mikael_Svahnberg | 2015-01-20 01:25:37.581251+00 | 27 | 1
  116. Apple | 2015-01-20 01:25:37.581251+00 | 24 | 1
  117. KillaCoder | 2015-01-20 01:25:37.581251+00 | 713 | 1
  118. Jaloopa | 2015-01-20 01:25:37.581251+00 | 426 | 1
  119. oesor | 2015-01-20 01:25:37.581251+00 | 10 | 1
  120. razerwolf | 2015-01-20 01:25:37.581251+00 | 2 | 1
  121. Groaner | 2015-01-20 01:25:37.581251+00 | 116 | 1
  122. Masaaki_Hosoi | 2015-01-20 01:25:37.581251+00 | 2 | 1
  123. DCRoss | 2015-01-20 01:25:37.581251+00 | 3 | 1
  124. frsfnrrg | 2015-01-20 01:25:37.581251+00 | 2 | 1
  125. DJSpudplucker | 2015-01-20 01:25:37.581251+00 | 33 | 1
  126. CoyneTheDup | 2015-01-20 01:25:37.581251+00 | 39 | 1
  127. YellowOnline | 2015-01-20 01:25:37.581251+00 | 38 | 1
  128. ben_lubar | 2015-01-20 01:25:37.581251+00 | 4448 | 1
  129. Meltea | 2015-01-20 01:25:37.581251+00 | 2 | 1
  130. russ0519 | 2015-01-20 01:25:37.581251+00 | 3 | 1
  131. Fellshard | 2015-01-20 01:25:37.581251+00 | 8 | 1
  132. svieira | 2015-01-20 01:25:37.581251+00 | 66 | 1
  133. Avram | 2015-01-20 01:25:37.581251+00 | 4 | 1
  134. jkshapiro | 2015-01-20 01:25:37.581251+00 | 10 | 1
  135. aliceif | 2015-01-20 01:25:37.581251+00 | 4422 | 1
  136. asdf | 2015-01-20 01:25:37.581251+00 | 757 | 1
  137. machtyn | 2015-01-20 01:25:37.581251+00 | 3 | 1
  138. HaximusPrime | 2015-01-20 01:25:37.581251+00 | 4 | 1
  139. Gazzonyx | 2015-01-20 01:25:37.581251+00 | 4 | 1
  140. drachenstern | 2015-01-20 01:25:37.581251+00 | 2 | 1
  141. crazyal02 | 2015-01-20 01:25:37.581251+00 | 107 | 1
  142. Yamikuronue | 2015-01-20 01:25:37.581251+00 | 6417 | 1
  143. Zacrath | 2015-01-20 01:25:37.581251+00 | 96 | 1
  144. garaden | 2015-01-20 01:25:37.581251+00 | 9 | 1
  145. systern | 2015-01-20 01:25:37.581251+00 | 2 | 1
  146. npe | 2015-01-20 01:25:37.581251+00 | 34 | 1
  147. Squiggle | 2015-01-20 01:25:37.581251+00 | 24 | 1
  148. bp_ | 2015-01-20 01:25:37.581251+00 | 134 | 1
  149. ijij | 2015-01-20 01:25:37.581251+00 | 381 | 1
  150. JBert | 2015-01-20 01:25:37.581251+00 | 6253 | 1
  151. blakeyrat | 2015-01-20 01:25:37.581251+00 | 4 | 1
  152. some_damn_yank | 2015-01-20 01:25:37.581251+00 | 29 | 1
  153. pure | 2015-01-20 01:25:37.581251+00 | 2 | 1
  154. WTF | 2015-01-20 01:25:37.581251+00 | 17 | 1
  155. Cyxxon | 2015-01-20 01:25:37.581251+00 | 15 | 1
  156. danixdefcon5 | 2015-01-20 01:25:37.581251+00 | 2 | 1
  157. Rhywden | 2015-01-20 01:25:37.581251+00 | 14 | 1
  158. LB_ | 2015-01-20 01:25:37.581251+00 | 4 | 1
  159. The_Bytemaster | 2015-01-20 01:25:37.581251+00 | 6 | 1
  160. ChestRockwell | 2015-01-20 01:25:37.581251+00 | 28 | 1
  161. flabdablet | 2015-01-20 01:25:37.581251+00 | 179 | 1
  162. Deadfast | 2015-01-20 01:25:37.581251+00 | 987 | 1
  163. dkf | 2015-01-20 01:25:37.581251+00 | 6273 | 1
  164. AquaDuck | 2015-01-20 01:25:37.581251+00 | 4 | 1
  165. agbeladem | 2015-01-20 01:25:37.581251+00 | 98 | 1
  166. Voldemort | 2015-01-20 01:25:37.581251+00 | 2 | 1
  167. stillwater | 2015-01-20 01:25:37.581251+00 | 33 | 1
  168. myself | 2015-01-20 01:25:37.581251+00 | 3 | 1
  169. KillerDucky | 2015-01-20 01:25:37.581251+00 | 2 | 1
  170. royal_poet | 2015-01-20 01:25:37.581251+00 | 393 | 1
  171. DarthVader | 2015-01-20 01:25:37.581251+00 | 5 | 1
  172. another_sam | 2015-01-20 01:25:37.581251+00 | 445 | 1
  173. john_a | 2015-01-20 01:25:37.581251+00 | 2 | 1
  174. mott555 | 2015-01-20 01:25:37.581251+00 | 4420 | 1
  175. delta534 | 2015-01-20 01:25:37.581251+00 | 2 | 1
  176. OffByOne | 2015-01-20 01:25:37.581251+00 | 887 | 1
  177. cartman82 | 2015-01-20 01:25:37.581251+00 | 3332 | 1
  178. Quinnum | 2015-01-20 01:25:37.581251+00 | 2 | 1
  179. Dragnslcr | 2015-01-20 01:25:37.581251+00 | 6 | 1
  180. Douglasac | 2015-01-20 01:25:37.581251+00 | 4 | 1
  181. tufty | 2015-01-20 01:25:37.581251+00 | 315 | 1
  182. FILE_NOT_FOUND | 2015-01-20 01:25:37.581251+00 | 4 | 1
  183. RFoxmich | 2015-01-20 01:25:37.581251+00 | 3 | 1
  184. Bender | 2015-01-20 01:25:37.581251+00 | 3 | 1
  185. whatever | 2015-01-20 01:25:37.581251+00 | 3 | 1
  186. Zemm | 2015-01-20 01:25:37.581251+00 | 7 | 1
  187. jmk | 2015-01-20 01:25:37.581251+00 | 3 | 1
  188. TheIrritainer | 2015-01-20 01:25:37.581251+00 | 6 | 1
  189. Excelsior | 2015-01-20 01:25:37.581251+00 | 2 | 1
  190. BernieTheBernie | 2015-01-20 01:25:37.581251+00 | 3 | 1
  191. sloosecannon | 2015-01-20 01:25:37.581251+00 | 21 | 1
  192. boomzilla | 2015-01-20 01:25:37.581251+00 | 6534 | 1
  193. GettinSadda | 2015-01-20 01:25:37.581251+00 | 6 | 1
  194. devmonkey | 2015-01-20 01:25:37.581251+00 | 5 | 1
  195. operagost | 2015-01-20 01:25:37.581251+00 | 4 | 1
  196. subscript_error | 2015-01-20 01:25:37.581251+00 | 42 | 1
  197. penprog | 2015-01-20 01:25:37.581251+00 | 33 | 1
  198. Keith | 2015-01-20 01:25:37.581251+00 | 1852 | 1
  199. DividedByZer0 | 2015-01-20 01:25:37.581251+00 | 2 | 1
  200. FuckOffBob | 2015-01-20 01:25:37.581251+00 | 31 | 1
  201. kmeixner | 2015-01-20 01:25:37.581251+00 | 8 | 1
  202. thegoryone | 2015-01-20 01:25:37.581251+00 | 23 | 1
  203. smallshellscript | 2015-01-20 01:25:37.581251+00 | 235 | 1
  204. monkeyArms | 2015-01-20 01:25:37.581251+00 | 53 | 1
  205. nullptr | 2015-01-20 01:25:37.581251+00 | 35 | 1
  206. Mo6eB | 2015-01-20 01:25:37.581251+00 | 46 | 1
  207. eternaldensity | 2015-01-20 01:25:37.581251+00 | 2 | 1
  208. ofcource | 2015-01-20 01:25:37.581251+00 | 17 | 1
  209. Scarlet_Manuka | 2015-01-20 01:25:37.581251+00 | 11 | 1
  210. necromancer | 2015-01-20 01:25:37.581251+00 | 3 | 1
  211. ender | 2015-01-20 01:25:37.581251+00 | 36 | 1
  212. coldandtired | 2015-01-20 01:25:37.581251+00 | 13 | 1
  213. mark_bowytz | 2015-01-20 01:25:37.581251+00 | 194 | 1
  214. Anonymous | 2015-01-20 01:25:37.581251+00 | 15 | 1
  215. TGV | 2015-01-20 01:25:37.581251+00 | 76 | 1
  216. stinerman | 2015-01-20 01:25:37.581251+00 | 2 | 1
  217. cvi | 2015-01-20 01:25:37.581251+00 | 605 | 1
  218. Mikerad1979 | 2015-01-20 01:25:37.581251+00 | 4 | 1
  219. Mason_Wheeler | 2015-01-20 01:25:37.581251+00 | 6 | 1
  220. lyptt | 2015-01-20 01:25:37.581251+00 | 17 | 1
  221. rad131304 | 2015-01-20 01:25:37.581251+00 | 43 | 1
  222. YouCanCallMeAl | 2015-01-20 01:25:37.581251+00 | 17 | 1
  223. bugmenot | 2015-01-20 01:25:37.581251+00 | 30 | 1
  224. trithne | 2015-01-20 01:25:37.581251+00 | 67 | 1
  225. scrib | 2015-01-20 01:25:37.581251+00 | 358 | 1
  226. techAPJ | 2015-01-20 01:25:37.581251+00 | 6 | 1
  227. discoursebot | 2015-01-20 01:25:37.581251+00 | 77 | 1
  228. Magus | 2015-01-20 01:25:37.581251+00 | 591 | 1
  229. PWolff | 2015-01-20 01:25:37.581251+00 | 9 | 1
  230. ZPedro | 2015-01-20 01:25:37.581251+00 | 6 | 1
  231. darkmatter | 2015-01-20 01:25:37.581251+00 | 811 | 1
  232. Matches | 2015-01-20 01:25:37.581251+00 | 340 | 1
  233. SirZed | 2015-01-20 01:25:37.581251+00 | 8 | 1
  234. Kraiden | 2015-01-20 01:25:37.581251+00 | 13 | 1
  235. Quietust | 2015-01-20 01:25:37.581251+00 | 4 | 1
  236. kevinranks | 2015-01-20 01:25:37.581251+00 | 2 | 1
  237. lucas | 2015-01-20 01:25:37.581251+00 | 134 | 1
  238. balazs | 2015-01-20 01:25:37.581251+00 | 3 | 1
  239. random_garbage | 2015-01-20 01:25:37.581251+00 | 6 | 1
  240. cbretana | 2015-01-20 01:25:37.581251+00 | 2 | 1
  241. tharpa | 2015-01-20 01:25:37.581251+00 | 18 | 1
  242. dhromed | 2015-01-20 01:25:37.581251+00 | 219 | 1
  243. rikkit | 2015-01-20 01:25:37.581251+00 | 118 | 1
  244. redwizard | 2015-01-20 01:25:37.581251+00 | 2311 | 1
  245. cdmwebs | 2015-01-20 01:25:37.581251+00 | 2 | 1
  246. Spectre | 2015-01-20 01:25:37.581251+00 | 2 | 1
  247. John_Imrie | 2015-01-20 01:25:37.581251+00 | 8 | 1
  248. AlexMedia | 2015-01-20 01:25:37.581251+00 | 46 | 1
  249. Michel_Renaud | 2015-01-20 01:25:37.581251+00 | 3 | 1
  250. GOG | 2015-01-20 01:25:37.581251+00 | 715 | 1
  251. NedFodder | 2015-01-20 01:25:37.581251+00 | 18 | 1
  252. Gonzalob | 2015-01-20 01:25:37.581251+00 | 3 | 1
  253. Webinsane | 2015-01-20 01:25:37.581251+00 | 3 | 1
  254. EvanED | 2015-01-20 01:25:37.581251+00 | 89 | 1
  255. Ragnax | 2015-01-20 01:25:37.581251+00 | 53 | 1
  256. lcrawford | 2015-01-20 01:25:37.581251+00 | 11 | 1
  257. Planar | 2015-01-20 01:25:37.581251+00 | 8 | 1
  258. cellocgw | 2015-01-20 01:25:37.581251+00 | 12 | 1
  259. Simen | 2015-01-20 01:25:37.581251+00 | 3 | 1
  260. tar | 2015-01-20 01:25:37.581251+00 | 492 | 1
  261. foobar | 2015-01-20 01:25:37.581251+00 | 2 | 1
  262. Slapout | 2015-01-20 01:25:37.581251+00 | 12 | 1
  263. LikeBot | 2015-01-20 01:25:37.581251+00 | 434 | 1
  264. RaceProUK | 2015-01-20 01:25:37.581251+00 | 844 | 1
  265. locallunatic | 2015-01-20 01:25:37.581251+00 | 2777 | 1
  266. D3vy | 2015-01-20 01:25:37.581251+00 | 4 | 1
  267. SockAdept | 2015-01-20 01:25:37.581251+00 | 3 | 1
  268. morbiuswilters | 2015-01-20 01:25:37.581251+00 | 71 | 1
  269. anonymous234 | 2015-01-20 01:25:37.581251+00 | 590 | 1
  270. RobFreundlich | 2015-01-20 01:25:37.581251+00 | 13 | 1
  271. spenk | 2015-01-20 01:25:37.581251+00 | 3 | 1
  272. apapadimoulis | 2015-01-20 01:25:37.581251+00 | 199 | 1
  273. tin | 2015-01-20 01:25:37.581251+00 | 14 | 1
  274. lightsoff | 2015-01-20 01:25:37.581251+00 | 33 | 1
  275. GusTarballs | 2015-01-20 01:25:37.581251+00 | 17 | 1
  276. Zylon | 2015-01-20 01:25:37.581251+00 | 10 | 1
  277. michaelb958 | 2015-01-20 01:25:37.581251+00 | 29 | 1
  278. Medinoc | 2015-01-20 01:25:37.581251+00 | 164 | 1
  279. Onyx | 2015-01-20 01:25:37.581251+00 | 4642 | 1
  280. Bort | 2015-01-20 01:25:37.581251+00 | 402 | 1
  281. HardwareGeek | 2015-01-20 01:25:37.581251+00 | 5095 | 1
  282. Maciejasjmj | 2015-01-20 01:25:37.581251+00 | 262 | 1
  283. lettucemode | 2015-01-20 01:25:37.581251+00 | 2 | 1
  284. Steve_The_Cynic | 2015-01-20 01:25:37.581251+00 | 19 | 1
  285. CanuckMonkey | 2015-01-20 01:25:37.581251+00 | 24 | 1
  286. Drakkie | 2015-01-20 01:25:37.581251+00 | 2 | 1
  287. DaveK | 2015-01-20 01:25:37.581251+00 | 3 | 1
  288. lidel | 2015-01-20 01:25:37.581251+00 | 15 | 1
  289. heterodox | 2015-01-20 01:25:37.581251+00 | 15 | 1
  290. Sacr | 2015-01-20 01:25:37.581251+00 | 3 | 1
  291. DoctorJones | 2015-01-20 01:25:37.581251+00 | 3830 | 1
  292. Weng | 2015-01-20 01:25:37.581251+00 | 109 | 1
  293. NBeezy | 2015-01-20 01:25:37.581251+00 | 3 | 1
  294. Evo | 2015-01-20 01:25:37.581251+00 | 22 | 1
  295. e4tmyl33t | 2015-01-20 01:25:37.581251+00 | 13 | 1
  296. JonasKlose | 2015-01-20 01:25:37.581251+00 | 2 | 1
  297. sockbot | 2015-01-20 01:25:37.581251+00 | 6 | 1
  298. BruceW | 2015-01-20 01:25:37.581251+00 | 2 | 1
  299. zogstrip | 2015-01-20 01:25:37.581251+00 | 53 | 1
  300. BobbyTables | 2015-01-20 01:25:37.581251+00 | 4 | 1
  301. JoeCool | 2015-01-20 01:25:37.581251+00 | 39 | 1
  302. impinball | 2015-01-20 01:25:37.581251+00 | 2 | 1
  303. awesomerobot | 2015-01-20 01:25:37.581251+00 | 9 | 1
  304. antipattern | 2015-01-20 01:25:37.581251+00 | 3 | 1
  305. Husky | 2015-01-20 01:25:37.581251+00 | 3 | 1
  306. tenshino | 2015-01-20 01:25:37.581251+00 | 2 | 1
  307. lolwhat | 2015-01-20 01:25:37.581251+00 | 546 | 1
  308. PleegWat | 2015-01-20 01:25:37.581251+00 | 181 | 1
  309. vdeogmer | 2015-01-20 01:25:37.581251+00 | 11 | 1
  310. codinghorror | 2015-01-20 01:25:37.581251+00 | 1035 | 1
  311. ScholRLEA | 2015-01-20 01:25:37.581251+00 | 37 | 1
  312. mikeTheLiar | 2015-01-20 01:25:37.581251+00 | 234 | 1
  313. Nutster | 2015-01-20 01:25:37.581251+00 | 9 | 1
  314. Nagesh | 2015-01-20 01:25:37.581251+00 | 688 | 1
  315. the_dragon | 2015-01-20 01:25:37.581251+00 | 81 | 1
  316. Wukl | 2015-01-20 01:25:37.581251+00 | 36 | 1
  317. GigaBitWare | 2015-01-20 01:25:37.581251+00 | 8 | 1
  318. dtech | 2015-01-20 01:25:37.581251+00 | 29 | 1
  319. sanddorn | 2015-01-20 01:25:37.581251+00 | 141 | 1
  320. confused | 2015-01-20 01:25:37.581251+00 | 3 | 1
  321. Kian | 2015-01-20 01:25:37.581251+00 | 15 | 1
  322. StatsBot | 2015-01-20 01:25:37.581251+00 | 2 | 1
  323. Jaime | 2015-01-20 01:25:37.581251+00 | 5 | 1
  324. Lee_Ars | 2015-01-20 01:25:37.581251+00 | 5 | 1
  325. wft | 2015-01-20 01:25:37.581251+00 | 4 | 1
  326. accalia | 2015-01-20 01:25:37.581251+00 | 6434 | 1
  327. Seahen | 2015-01-20 01:25:37.581251+00 | 7 | 1
  328. Bulb | 2015-01-20 01:25:37.581251+00 | 894 | 1
  329. delfinom | 2015-01-20 01:25:37.581251+00 | 564 | 1
  330. tatsu | 2015-01-20 01:25:37.581251+00 | 5 | 1
  331. Initech | 2015-01-20 01:25:37.581251+00 | 21 | 1
  332. skotl | 2015-01-20 01:25:37.581251+00 | 138 | 1
  333. Pippo | 2015-01-20 01:25:37.581251+00 | 4 | 1
  334. LorenPechtel | 2015-01-20 01:25:37.581251+00 | 11 | 1
  335. Captain | 2015-01-20 01:25:37.581251+00 | 849 | 1
  336. Ineentho | 2015-01-20 01:25:37.581251+00 | 2 | 1
  337. lolatu | 2015-01-20 01:25:37.581251+00 | 2 | 1
  338. Boner | 2015-01-20 01:25:37.581251+00 | 24 | 1
  339. hhaamu | 2015-01-20 01:25:37.581251+00 | 3 | 1
  340. honnza | 2015-01-20 01:25:37.581251+00 | 2 | 1
  341. Russell | 2015-01-20 01:25:37.581251+00 | 2 | 1
  342. izzion | 2015-01-20 01:25:37.581251+00 | 33 | 1
  343. fwd | 2015-01-20 01:25:37.581251+00 | 4 | 1
  344. riking | 2015-01-20 01:25:37.581251+00 | 1601 | 1
  345. johnsnick | 2015-01-20 01:25:37.581251+00 | 18 | 1
  346. ChrisH | 2015-01-20 01:25:37.581251+00 | 36 | 1
  347. chubertdev | 2015-01-20 01:25:37.581251+00 | 8115 | 1
  348. brettzink | 2015-01-20 01:25:37.581251+00 | 3 | 1
  349. Martin_Piper | 2015-01-20 01:25:37.581251+00 | 3 | 1
  350. kupfernigk | 2015-01-20 01:25:37.581251+00 | 87 | 1
  351. SheriffFatman | 2015-01-20 01:25:37.581251+00 | 6 | 1
  352. SpoofedEx | 2015-01-20 01:25:37.581251+00 | 9 | 1
  353. Hanzo | 2015-01-20 01:25:37.581251+00 | 81 | 1
  354. lushr | 2015-01-20 01:25:37.581251+00 | 5 | 1
  355. jambot | 2015-01-20 01:25:37.581251+00 | 8 | 1
  356. callcopse | 2015-01-20 01:25:37.581251+00 | 12 | 1
  357. Dogsworth | 2015-01-20 01:25:37.581251+00 | 82 | 1
  358. eekysam | 2015-01-20 01:25:37.581251+00 | 2 | 1
  359. c__ | 2015-01-20 01:25:37.581251+00 | 412 | 1
  360. Mathias | 2015-01-20 01:25:37.581251+00 | 12 | 1
  361. andreas | 2015-01-20 01:25:37.581251+00 | 4 | 1
  362. Barbaz | 2015-01-20 01:25:37.581251+00 | 5 | 1
  363. Remy | 2015-01-20 01:25:37.581251+00 | 14 | 1
  364. ThisUsernameIsUnique | 2015-01-20 01:25:37.581251+00 | 4 | 1
  365. neil | 2015-01-20 01:25:37.581251+00 | 6 | 1
  366. Dreikin | 2015-01-20 01:25:37.581251+00 | 584 | 1
  367. toon | 2015-01-20 01:25:37.581251+00 | 92 | 1
  368. Minkovsky | 2015-01-20 01:25:37.581251+00 | 6 | 1
  369. algorythmics | 2015-01-20 01:25:37.581251+00 | 16 | 1
  370. The_Quiet_One | 2015-01-20 01:25:37.581251+00 | 9 | 1
  371. henke37 | 2015-01-20 01:25:37.581251+00 | 51 | 1
  372. mjmilan1 | 2015-01-20 01:25:37.581251+00 | 2 | 1
  373. antiquarian | 2015-01-20 01:25:37.581251+00 | 7497 | 1
  374. Polygeekery | 2015-01-20 01:25:37.581251+00 | 4647 | 1
  375. VaelynPhi | 2015-01-20 01:25:37.581251+00 | 1130 | 1
  376. NTAuthority | 2015-01-20 01:25:37.581251+00 | 8 | 1
  377. Eldelshell | 2015-01-20 01:25:37.581251+00 | 146 | 1
  378. Vault_Dweller | 2015-01-20 01:25:37.581251+00 | 62 | 1
  379. SignatureGuy | 2015-01-20 01:25:37.581251+00 | 2 | 1
  380. cdosrun1 | 2015-01-20 01:25:37.581251+00 | 100 | 1
  381. sam | 2015-01-20 01:25:37.581251+00 | 331 | 1
  382. jello | 2015-01-20 01:25:37.581251+00 | 89 | 1
  383. greek49 | 2015-01-20 01:25:37.581251+00 | 4 | 1
  384. Tsaukpaetra | 2015-01-20 01:25:37.581251+00 | 116 | 1
  385. jakjawagon | 2015-01-20 01:25:37.581251+00 | 54 | 1
  386. flash | 2015-01-20 01:25:37.581251+00 | 3 | 1
  387. moderator | 2015-01-20 01:25:37.581251+00 | 19 | 1
  388. ChaosTheEternal | 2015-01-20 01:25:37.581251+00 | 243 | 1
  389. faoileag | 2015-01-20 01:25:37.581251+00 | 1206 | 1
  390. jonsjava | 2015-01-20 01:25:37.581251+00 | 4 | 1
  391. scboffspring | 2015-01-20 01:25:37.581251+00 | 29 | 1
  392. VinDuv | 2015-01-20 01:25:37.581251+00 | 189 | 1
  393. zlogic | 2015-01-20 01:25:37.581251+00 | 24 | 1
  394. chouchuuchochouchou | 2015-01-20 01:25:37.581251+00 | 177 | 1
  395. Michael | 2015-01-20 01:25:37.581251+00 | 6 | 1
  396. silentd | 2015-01-20 01:25:37.581251+00 | 4 | 1
  397. CodeClown | 2015-01-20 01:25:37.581251+00 | 15 | 1
  398. nevesrorre | 2015-01-20 01:25:37.581251+00 | 22 | 1
  399. Musaran | 2015-01-20 01:25:37.581251+00 | 9 | 1
  400. peedub | 2015-01-20 01:25:37.581251+00 | 4 | 1
  401. JonW | 2015-01-20 01:25:37.581251+00 | 3 | 1
  402. nobulate | 2015-01-20 01:25:37.581251+00 | 1052 | 1
  403. Lawrence | 2015-01-20 01:25:37.581251+00 | 5 | 1
  404. urkerab | 2015-01-20 01:25:37.581251+00 | 154 | 1
  405. abarker | 2015-01-20 01:25:37.581251+00 | 3155 | 1
  406. RogerC | 2015-01-20 01:25:37.581251+00 | 4 | 1
  407. aapis | 2015-01-20 01:25:37.581251+00 | 14 | 1
  408. shmosel | 2015-01-20 01:25:37.581251+00 | 4 | 1
  409. hominid | 2015-01-20 01:25:37.581251+00 | 71 | 1
  410. nexekho | 2015-01-20 01:25:37.581251+00 | 3 | 1
  411. Nipo | 2015-01-20 01:25:37.581251+00 | 193 | 1
  412. atimson | 2015-01-20 01:25:37.581251+00 | 65 | 1
  413. EatenByAGrue | 2015-01-20 01:25:37.581251+00 | 2 | 1
  414. MrL | 2015-01-20 01:25:37.581251+00 | 10 | 1
  415. Parody | 2015-01-20 01:25:37.581251+00 | 6 | 1
  416. MathNerdCNU | 2015-01-20 01:25:37.581251+00 | 19 | 1
  417. ObiWayneKenobi | 2015-01-20 01:25:37.581251+00 | 12 | 1
  418. powerlord | 2015-01-20 01:25:37.581251+00 | 223 | 1
  419. nightware | 2015-01-20 01:25:37.581251+00 | 133 | 1
  420. MiffTheFox | 2015-01-20 01:25:37.581251+00 | 12 | 1
  421. Zainab58 | 2015-01-20 01:25:37.581251+00 | 23 | 1
  422. Gaska | 2015-01-20 01:25:37.581251+00 | 162 | 1
  423. DrakeSmith | 2015-01-20 01:25:37.581251+00 | 300 | 1
  424. reverendryan | 2015-01-20 01:25:37.581251+00 | 80 | 1
  425. David_C | 2015-01-20 01:25:37.581251+00 | 3 | 1
  426. Gurth | 2015-01-20 01:25:37.581251+00 | 3 | 1
  427. Daniel15 | 2015-01-20 01:25:37.581251+00 | 79 | 1
  428. dfcowell | 2015-01-20 01:25:37.581251+00 | 20 | 1
  429. chooks | 2015-01-20 01:25:37.581251+00 | 2 | 1
  430. Jarry | 2015-01-20 01:25:37.581251+00 | 13 | 1
  431. menugarit | 2015-01-20 01:25:37.581251+00 | 19 | 1
  432. anotherusername | 2015-01-20 01:25:37.581251+00 | 23 | 1
  433. swayde | 2015-01-20 01:25:37.581251+00 | 35 | 1
  434. ggeens | 2015-01-20 01:25:37.581251+00 | 2 | 1
  435. minuSeven | 2015-01-20 01:25:37.581251+00 | 2 | 1
  436. eviltrout | 2015-01-20 01:25:37.581251+00 | 8 | 1
  437. xi_ | 2015-01-20 01:25:37.581251+00 | 100 | 1
  438. Salamander | 2015-01-20 01:25:37.580951+00 | 300 | 4
  439. cconroy | 2015-01-20 01:25:37.580951+00 | 27 | 4
  440. hungrier | 2015-01-20 01:25:37.580951+00 | 3610 | 4
  441. marinus | 2015-01-20 01:25:37.580951+00 | 282 | 4
  442. obeselymorbid | 2015-01-20 01:25:37.580951+00 | 1262 | 4
  443. RTapeLoadingError | 2015-01-20 01:25:37.580951+00 | 261 | 4
  444. AwesomeRick | 2015-01-20 01:25:37.580951+00 | 18 | 4
  445. jaming | 2015-01-20 01:25:37.580951+00 | 365 | 4
  446. jape | 2015-01-20 01:25:37.580951+00 | 5 | 4
  447. null_loop | 2015-01-20 01:25:37.580951+00 | 125 | 4
  448. gnannann | 2015-01-20 01:25:37.580951+00 | 23 | 4
  449. martijntje | 2015-01-20 01:25:37.580951+00 | 23 | 4
  450. evandentremont | 2015-01-20 01:25:37.580951+00 | 20 | 4
  451. WernerCD | 2015-01-20 01:25:37.580951+00 | 8 | 4
  452. No_1 | 2015-01-20 01:25:37.580951+00 | 36 | 4
  453. fatbull | 2015-01-20 01:25:37.580951+00 | 78 | 4
  454. JazzyJosh | 2015-01-20 01:25:37.580951+00 | 248 | 4
  455. loopback0 | 2015-01-20 01:25:37.580951+00 | 1483 | 4
  456. Minimaul | 2015-01-20 01:25:37.580951+00 | 7 | 4
  457. FrostCat | 2015-01-20 01:25:37.580951+00 | 1001 | 4
  458. s73v3r | 2015-01-20 01:25:37.580951+00 | 6 | 4
  459. mratt | 2015-01-20 01:25:37.580951+00 | 21 | 4
  460. M_Adams | 2015-01-20 01:25:37.580951+00 | 1107 | 4
  461. presidentsdaughter | 2015-01-20 01:25:37.580951+00 | 53 | 4
  462. error | 2015-01-20 01:25:37.580951+00 | 1354 | 4
  463. Frank | 2015-01-20 01:25:37.580951+00 | 449 | 4
  464. Discourse | 2015-01-20 01:25:37.580951+00 | 6 | 4
  465. Felipe_Budinich | 2015-01-20 01:25:37.580951+00 | 18 | 4
  466. Zecc | 2015-01-20 01:25:37.580951+00 | 1112 | 4
  467. scudsucker | 2015-01-20 01:25:37.580951+00 | 11 | 4
  468. kylehutson | 2015-01-20 01:25:37.580951+00 | 5 | 4
  469. LurkerAbove | 2015-01-20 01:25:37.580951+00 | 106 | 4
  470. dahaka | 2015-01-20 01:25:37.580951+00 | 158 | 4
  471. grkvlt | 2015-01-20 01:25:37.580951+00 | 16 | 4
  472. Nprz | 2015-01-20 01:25:37.580951+00 | 36 | 4
  473. Arantor | 2015-01-20 01:25:37.580951+00 | 9583 | 4
  474. Shoreline | 2015-01-20 01:25:37.580951+00 | 260 | 4
  475. xaade | 2015-01-20 01:25:37.580951+00 | 38 | 4
  476. deadman | 2015-01-20 01:25:37.580951+00 | 7 | 4
  477. TwelveBaud | 2015-01-20 01:25:37.580951+00 | 1089 | 4
  478. DocMonster | 2015-01-20 01:25:37.580951+00 | 9 | 4
  479. foxyshadis | 2015-01-20 01:25:37.580951+00 | 27 | 4
  480. CarrieVS | 2015-01-20 01:25:37.580951+00 | 65 | 4
  481. PJH | 2015-01-20 01:25:37.580951+00 | 1247 | 4
  482. Supermathie | 2015-01-20 01:25:37.580951+00 | 5 | 4
  483. Luhmann | 2015-01-20 01:25:37.580951+00 | 2834 | 4
  484. ComputerForumUser | 2015-01-20 01:25:37.580951+00 | 5 | 4
  485. Matosawitko | 2015-01-20 01:25:37.580951+00 | 8 | 4
  486. Monarch | 2015-01-20 01:25:37.580951+00 | 377 | 4
  487. codlnghorror | 2015-01-20 01:25:37.580951+00 | 50 | 4
  488. CodingHorrorBot | 2015-01-20 01:25:37.580951+00 | 75 | 4
  489. Lorne_Kates | 2015-01-20 01:25:37.580951+00 | 15 | 4
  490. Peter_Wolff | 2015-01-20 01:25:37.580951+00 | 7 | 4
  491. LoremIpsum | 2015-01-20 01:25:37.580951+00 | 465 | 4
  492. ntqz | 2015-01-20 01:25:37.580951+00 | 6 | 4
  493. dcon | 2015-01-20 01:25:37.580951+00 | 48 | 4
  494. Watson | 2015-01-20 01:25:37.580951+00 | 7 | 4
  495. immibis_ | 2015-01-20 01:25:37.580951+00 | 47 | 4
  496. ufmace | 2015-01-20 01:25:37.580951+00 | 23 | 4
  497. Spencer | 2015-01-20 01:25:37.580951+00 | 615 | 4
  498. sjw | 2015-01-20 01:25:37.580951+00 | 5 | 4
  499. tarunik | 2015-01-20 01:25:37.580951+00 | 12833 | 4
  500. Cursorkeys | 2015-01-20 01:25:37.580951+00 | 296 | 4
  501. CreatedToDislikeThis | 2015-01-20 01:25:37.580951+00 | 99 | 4
  502. Kuro | 2015-01-20 01:25:37.580951+00 | 170 | 4
  503. Buddy | 2015-01-20 01:25:37.580951+00 | 567 | 4
  504. flwf | 2015-01-20 01:25:37.580951+00 | 49 | 4
  505. RandyHickey | 2015-01-20 01:25:37.580951+00 | 13 | 4
  506. Mikael_Svahnberg | 2015-01-20 01:25:37.580951+00 | 27 | 4
  507. Apple | 2015-01-20 01:25:37.580951+00 | 24 | 4
  508. KillaCoder | 2015-01-20 01:25:37.580951+00 | 713 | 4
  509. Jaloopa | 2015-01-20 01:25:37.580951+00 | 426 | 4
  510. oesor | 2015-01-20 01:25:37.580951+00 | 10 | 4
  511. Groaner | 2015-01-20 01:25:37.580951+00 | 116 | 4
  512. DJSpudplucker | 2015-01-20 01:25:37.580951+00 | 33 | 4
  513. CoyneTheDup | 2015-01-20 01:25:37.580951+00 | 39 | 4
  514. YellowOnline | 2015-01-20 01:25:37.580951+00 | 38 | 4
  515. ben_lubar | 2015-01-20 01:25:37.580951+00 | 4448 | 4
  516. Fellshard | 2015-01-20 01:25:37.580951+00 | 8 | 4
  517. svieira | 2015-01-20 01:25:37.580951+00 | 66 | 4
  518. jkshapiro | 2015-01-20 01:25:37.580951+00 | 10 | 4
  519. aliceif | 2015-01-20 01:25:37.580951+00 | 4422 | 4
  520. asdf | 2015-01-20 01:25:37.580951+00 | 757 | 4
  521. crazyal02 | 2015-01-20 01:25:37.580951+00 | 107 | 4
  522. Yamikuronue | 2015-01-20 01:25:37.580951+00 | 6417 | 4
  523. Zacrath | 2015-01-20 01:25:37.580951+00 | 96 | 4
  524. garaden | 2015-01-20 01:25:37.580951+00 | 9 | 4
  525. npe | 2015-01-20 01:25:37.580951+00 | 34 | 4
  526. Squiggle | 2015-01-20 01:25:37.580951+00 | 24 | 4
  527. bp_ | 2015-01-20 01:25:37.580951+00 | 134 | 4
  528. ijij | 2015-01-20 01:25:37.580951+00 | 381 | 4
  529. JBert | 2015-01-20 01:25:37.580951+00 | 6253 | 4
  530. some_damn_yank | 2015-01-20 01:25:37.580951+00 | 29 | 4
  531. WTF | 2015-01-20 01:25:37.580951+00 | 17 | 4
  532. Cyxxon | 2015-01-20 01:25:37.580951+00 | 15 | 4
  533. Rhywden | 2015-01-20 01:25:37.580951+00 | 14 | 4
  534. The_Bytemaster | 2015-01-20 01:25:37.580951+00 | 6 | 4
  535. ChestRockwell | 2015-01-20 01:25:37.580951+00 | 28 | 4
  536. flabdablet | 2015-01-20 01:25:37.580951+00 | 179 | 4
  537. Deadfast | 2015-01-20 01:25:37.580951+00 | 987 | 4
  538. dkf | 2015-01-20 01:25:37.580951+00 | 6273 | 4
  539. agbeladem | 2015-01-20 01:25:37.580951+00 | 98 | 4
  540. stillwater | 2015-01-20 01:25:37.580951+00 | 33 | 4
  541. royal_poet | 2015-01-20 01:25:37.580951+00 | 393 | 4
  542. DarthVader | 2015-01-20 01:25:37.580951+00 | 5 | 4
  543. another_sam | 2015-01-20 01:25:37.580951+00 | 445 | 4
  544. mott555 | 2015-01-20 01:25:37.580951+00 | 4420 | 4
  545. OffByOne | 2015-01-20 01:25:37.580951+00 | 887 | 4
  546. cartman82 | 2015-01-20 01:25:37.580951+00 | 3332 | 4
  547. Dragnslcr | 2015-01-20 01:25:37.580951+00 | 6 | 4
  548. tufty | 2015-01-20 01:25:37.580951+00 | 315 | 4
  549. Zemm | 2015-01-20 01:25:37.580951+00 | 7 | 4
  550. TheIrritainer | 2015-01-20 01:25:37.580951+00 | 6 | 4
  551. sloosecannon | 2015-01-20 01:25:37.580951+00 | 21 | 4
  552. boomzilla | 2015-01-20 01:25:37.580951+00 | 6534 | 4
  553. GettinSadda | 2015-01-20 01:25:37.580951+00 | 6 | 4
  554. devmonkey | 2015-01-20 01:25:37.580951+00 | 5 | 4
  555. subscript_error | 2015-01-20 01:25:37.580951+00 | 42 | 4
  556. penprog | 2015-01-20 01:25:37.580951+00 | 33 | 4
  557. Keith | 2015-01-20 01:25:37.580951+00 | 1852 | 4
  558. FuckOffBob | 2015-01-20 01:25:37.580951+00 | 31 | 4
  559. kmeixner | 2015-01-20 01:25:37.580951+00 | 8 | 4
  560. thegoryone | 2015-01-20 01:25:37.580951+00 | 23 | 4
  561. smallshellscript | 2015-01-20 01:25:37.580951+00 | 235 | 4
  562. monkeyArms | 2015-01-20 01:25:37.580951+00 | 53 | 4
  563. nullptr | 2015-01-20 01:25:37.580951+00 | 35 | 4
  564. Mo6eB | 2015-01-20 01:25:37.580951+00 | 46 | 4
  565. ofcource | 2015-01-20 01:25:37.580951+00 | 17 | 4
  566. Scarlet_Manuka | 2015-01-20 01:25:37.580951+00 | 11 | 4
  567. ender | 2015-01-20 01:25:37.580951+00 | 36 | 4
  568. coldandtired | 2015-01-20 01:25:37.580951+00 | 13 | 4
  569. mark_bowytz | 2015-01-20 01:25:37.580951+00 | 194 | 4
  570. Anonymous | 2015-01-20 01:25:37.580951+00 | 15 | 4
  571. TGV | 2015-01-20 01:25:37.580951+00 | 76 | 4
  572. cvi | 2015-01-20 01:25:37.580951+00 | 605 | 4
  573. Mason_Wheeler | 2015-01-20 01:25:37.580951+00 | 6 | 4
  574. lyptt | 2015-01-20 01:25:37.580951+00 | 17 | 4
  575. rad131304 | 2015-01-20 01:25:37.580951+00 | 43 | 4
  576. YouCanCallMeAl | 2015-01-20 01:25:37.580951+00 | 17 | 4
  577. bugmenot | 2015-01-20 01:25:37.580951+00 | 30 | 4
  578. trithne | 2015-01-20 01:25:37.580951+00 | 67 | 4
  579. scrib | 2015-01-20 01:25:37.580951+00 | 358 | 4
  580. techAPJ | 2015-01-20 01:25:37.580951+00 | 6 | 4
  581. discoursebot | 2015-01-20 01:25:37.580951+00 | 77 | 4
  582. Magus | 2015-01-20 01:25:37.580951+00 | 591 | 4
  583. PWolff | 2015-01-20 01:25:37.580951+00 | 9 | 4
  584. ZPedro | 2015-01-20 01:25:37.580951+00 | 6 | 4
  585. darkmatter | 2015-01-20 01:25:37.580951+00 | 811 | 4
  586. Matches | 2015-01-20 01:25:37.580951+00 | 340 | 4
  587. SirZed | 2015-01-20 01:25:37.580951+00 | 8 | 4
  588. Kraiden | 2015-01-20 01:25:37.580951+00 | 13 | 4
  589. lucas | 2015-01-20 01:25:37.580951+00 | 134 | 4
  590. random_garbage | 2015-01-20 01:25:37.580951+00 | 6 | 4
  591. tharpa | 2015-01-20 01:25:37.580951+00 | 18 | 4
  592. dhromed | 2015-01-20 01:25:37.580951+00 | 219 | 4
  593. rikkit | 2015-01-20 01:25:37.580951+00 | 118 | 4
  594. redwizard | 2015-01-20 01:25:37.580951+00 | 2311 | 4
  595. John_Imrie | 2015-01-20 01:25:37.580951+00 | 8 | 4
  596. AlexMedia | 2015-01-20 01:25:37.580951+00 | 46 | 4
  597. GOG | 2015-01-20 01:25:37.580951+00 | 715 | 4
  598. NedFodder | 2015-01-20 01:25:37.580951+00 | 18 | 4
  599. EvanED | 2015-01-20 01:25:37.580951+00 | 89 | 4
  600. Ragnax | 2015-01-20 01:25:37.580951+00 | 53 | 4
  601. lcrawford | 2015-01-20 01:25:37.580951+00 | 11 | 4
  602. Planar | 2015-01-20 01:25:37.580951+00 | 8 | 4
  603. cellocgw | 2015-01-20 01:25:37.580951+00 | 12 | 4
  604. tar | 2015-01-20 01:25:37.580951+00 | 492 | 4
  605. Slapout | 2015-01-20 01:25:37.580951+00 | 12 | 4
  606. LikeBot | 2015-01-20 01:25:37.580951+00 | 434 | 4
  607. RaceProUK | 2015-01-20 01:25:37.580951+00 | 844 | 4
  608. locallunatic | 2015-01-20 01:25:37.580951+00 | 2777 | 4
  609. morbiuswilters | 2015-01-20 01:25:37.580951+00 | 71 | 4
  610. anonymous234 | 2015-01-20 01:25:37.580951+00 | 590 | 4
  611. RobFreundlich | 2015-01-20 01:25:37.580951+00 | 13 | 4
  612. apapadimoulis | 2015-01-20 01:25:37.580951+00 | 199 | 4
  613. tin | 2015-01-20 01:25:37.580951+00 | 14 | 4
  614. lightsoff | 2015-01-20 01:25:37.580951+00 | 33 | 4
  615. GusTarballs | 2015-01-20 01:25:37.580951+00 | 17 | 4
  616. Zylon | 2015-01-20 01:25:37.580951+00 | 10 | 4
  617. michaelb958 | 2015-01-20 01:25:37.580951+00 | 29 | 4
  618. Medinoc | 2015-01-20 01:25:37.580951+00 | 164 | 4
  619. Onyx | 2015-01-20 01:25:37.580951+00 | 4642 | 4
  620. Bort | 2015-01-20 01:25:37.580951+00 | 402 | 4
  621. HardwareGeek | 2015-01-20 01:25:37.580951+00 | 5095 | 4
  622. Maciejasjmj | 2015-01-20 01:25:37.580951+00 | 262 | 4
  623. Steve_The_Cynic | 2015-01-20 01:25:37.580951+00 | 19 | 4
  624. CanuckMonkey | 2015-01-20 01:25:37.580951+00 | 24 | 4
  625. lidel | 2015-01-20 01:25:37.580951+00 | 15 | 4
  626. heterodox | 2015-01-20 01:25:37.580951+00 | 15 | 4
  627. DoctorJones | 2015-01-20 01:25:37.580951+00 | 3830 | 4
  628. Weng | 2015-01-20 01:25:37.580951+00 | 109 | 4
  629. Evo | 2015-01-20 01:25:37.580951+00 | 22 | 4
  630. e4tmyl33t | 2015-01-20 01:25:37.580951+00 | 13 | 4
  631. sockbot | 2015-01-20 01:25:37.580951+00 | 6 | 4
  632. zogstrip | 2015-01-20 01:25:37.580951+00 | 53 | 4
  633. JoeCool | 2015-01-20 01:25:37.580951+00 | 39 | 4
  634. awesomerobot | 2015-01-20 01:25:37.580951+00 | 9 | 4
  635. lolwhat | 2015-01-20 01:25:37.580951+00 | 546 | 4
  636. PleegWat | 2015-01-20 01:25:37.580951+00 | 181 | 4
  637. vdeogmer | 2015-01-20 01:25:37.580951+00 | 11 | 4
  638. codinghorror | 2015-01-20 01:25:37.580951+00 | 1035 | 4
  639. ScholRLEA | 2015-01-20 01:25:37.580951+00 | 37 | 4
  640. mikeTheLiar | 2015-01-20 01:25:37.580951+00 | 234 | 4
  641. Nutster | 2015-01-20 01:25:37.580951+00 | 9 | 4
  642. Nagesh | 2015-01-20 01:25:37.580951+00 | 688 | 4
  643. the_dragon | 2015-01-20 01:25:37.580951+00 | 81 | 4
  644. Wukl | 2015-01-20 01:25:37.580951+00 | 36 | 4
  645. GigaBitWare | 2015-01-20 01:25:37.580951+00 | 8 | 4
  646. dtech | 2015-01-20 01:25:37.580951+00 | 29 | 4
  647. sanddorn | 2015-01-20 01:25:37.580951+00 | 141 | 4
  648. Kian | 2015-01-20 01:25:37.580951+00 | 15 | 4
  649. Jaime | 2015-01-20 01:25:37.580951+00 | 5 | 4
  650. Lee_Ars | 2015-01-20 01:25:37.580951+00 | 5 | 4
  651. accalia | 2015-01-20 01:25:37.580951+00 | 6434 | 4
  652. Seahen | 2015-01-20 01:25:37.580951+00 | 7 | 4
  653. Bulb | 2015-01-20 01:25:37.580951+00 | 894 | 4
  654. delfinom | 2015-01-20 01:25:37.580951+00 | 564 | 4
  655. tatsu | 2015-01-20 01:25:37.580951+00 | 5 | 4
  656. Initech | 2015-01-20 01:25:37.580951+00 | 21 | 4
  657. skotl | 2015-01-20 01:25:37.580951+00 | 138 | 4
  658. LorenPechtel | 2015-01-20 01:25:37.580951+00 | 11 | 4
  659. Captain | 2015-01-20 01:25:37.580951+00 | 849 | 4
  660. Boner | 2015-01-20 01:25:37.580951+00 | 24 | 4
  661. izzion | 2015-01-20 01:25:37.580951+00 | 33 | 4
  662. riking | 2015-01-20 01:25:37.580951+00 | 1601 | 4
  663. johnsnick | 2015-01-20 01:25:37.580951+00 | 18 | 4
  664. ChrisH | 2015-01-20 01:25:37.580951+00 | 36 | 4
  665. chubertdev | 2015-01-20 01:25:37.580951+00 | 8115 | 4
  666. kupfernigk | 2015-01-20 01:25:37.580951+00 | 87 | 4
  667. SheriffFatman | 2015-01-20 01:25:37.580951+00 | 6 | 4
  668. SpoofedEx | 2015-01-20 01:25:37.580951+00 | 9 | 4
  669. Hanzo | 2015-01-20 01:25:37.580951+00 | 81 | 4
  670. lushr | 2015-01-20 01:25:37.580951+00 | 5 | 4
  671. jambot | 2015-01-20 01:25:37.580951+00 | 8 | 4
  672. callcopse | 2015-01-20 01:25:37.580951+00 | 12 | 4
  673. Dogsworth | 2015-01-20 01:25:37.580951+00 | 82 | 4
  674. c__ | 2015-01-20 01:25:37.580951+00 | 412 | 4
  675. Mathias | 2015-01-20 01:25:37.580951+00 | 12 | 4
  676. Barbaz | 2015-01-20 01:25:37.580951+00 | 5 | 4
  677. Remy | 2015-01-20 01:25:37.580951+00 | 14 | 4
  678. neil | 2015-01-20 01:25:37.580951+00 | 6 | 4
  679. Dreikin | 2015-01-20 01:25:37.580951+00 | 584 | 4
  680. toon | 2015-01-20 01:25:37.580951+00 | 92 | 4
  681. Minkovsky | 2015-01-20 01:25:37.580951+00 | 6 | 4
  682. algorythmics | 2015-01-20 01:25:37.580951+00 | 16 | 4
  683. The_Quiet_One | 2015-01-20 01:25:37.580951+00 | 9 | 4
  684. henke37 | 2015-01-20 01:25:37.580951+00 | 51 | 4
  685. antiquarian | 2015-01-20 01:25:37.580951+00 | 7497 | 4
  686. Polygeekery | 2015-01-20 01:25:37.580951+00 | 4647 | 4
  687. VaelynPhi | 2015-01-20 01:25:37.580951+00 | 1130 | 4
  688. NTAuthority | 2015-01-20 01:25:37.580951+00 | 8 | 4
  689. Eldelshell | 2015-01-20 01:25:37.580951+00 | 146 | 4
  690. Vault_Dweller | 2015-01-20 01:25:37.580951+00 | 62 | 4
  691. cdosrun1 | 2015-01-20 01:25:37.580951+00 | 100 | 4
  692. sam | 2015-01-20 01:25:37.580951+00 | 331 | 4
  693. jello | 2015-01-20 01:25:37.580951+00 | 89 | 4
  694. Tsaukpaetra | 2015-01-20 01:25:37.580951+00 | 116 | 4
  695. jakjawagon | 2015-01-20 01:25:37.580951+00 | 54 | 4
  696. moderator | 2015-01-20 01:25:37.580951+00 | 19 | 4
  697. ChaosTheEternal | 2015-01-20 01:25:37.580951+00 | 243 | 4
  698. faoileag | 2015-01-20 01:25:37.580951+00 | 1206 | 4
  699. scboffspring | 2015-01-20 01:25:37.580951+00 | 29 | 4
  700. VinDuv | 2015-01-20 01:25:37.580951+00 | 189 | 4
  701. zlogic | 2015-01-20 01:25:37.580951+00 | 24 | 4
  702. chouchuuchochouchou | 2015-01-20 01:25:37.580951+00 | 177 | 4
  703. Michael | 2015-01-20 01:25:37.580951+00 | 6 | 4
  704. CodeClown | 2015-01-20 01:25:37.580951+00 | 15 | 4
  705. nevesrorre | 2015-01-20 01:25:37.580951+00 | 22 | 4
  706. Musaran | 2015-01-20 01:25:37.580951+00 | 9 | 4
  707. nobulate | 2015-01-20 01:25:37.580951+00 | 1052 | 4
  708. Lawrence | 2015-01-20 01:25:37.580951+00 | 5 | 4
  709. urkerab | 2015-01-20 01:25:37.580951+00 | 154 | 4
  710. abarker | 2015-01-20 01:25:37.580951+00 | 3155 | 4
  711. aapis | 2015-01-20 01:25:37.580951+00 | 14 | 4
  712. hominid | 2015-01-20 01:25:37.580951+00 | 71 | 4
  713. Nipo | 2015-01-20 01:25:37.580951+00 | 193 | 4
  714. atimson | 2015-01-20 01:25:37.580951+00 | 65 | 4
  715. MrL | 2015-01-20 01:25:37.580951+00 | 10 | 4
  716. Parody | 2015-01-20 01:25:37.580951+00 | 6 | 4
  717. MathNerdCNU | 2015-01-20 01:25:37.580951+00 | 19 | 4
  718. ObiWayneKenobi | 2015-01-20 01:25:37.580951+00 | 12 | 4
  719. powerlord | 2015-01-20 01:25:37.580951+00 | 223 | 4
  720. nightware | 2015-01-20 01:25:37.580951+00 | 133 | 4
  721. MiffTheFox | 2015-01-20 01:25:37.580951+00 | 12 | 4
  722. Zainab58 | 2015-01-20 01:25:37.580951+00 | 23 | 4
  723. Gaska | 2015-01-20 01:25:37.580951+00 | 162 | 4
  724. DrakeSmith | 2015-01-20 01:25:37.580951+00 | 300 | 4
  725. reverendryan | 2015-01-20 01:25:37.580951+00 | 80 | 4
  726. Daniel15 | 2015-01-20 01:25:37.580951+00 | 79 | 4
  727. dfcowell | 2015-01-20 01:25:37.580951+00 | 20 | 4
  728. Jarry | 2015-01-20 01:25:37.580951+00 | 13 | 4
  729. menugarit | 2015-01-20 01:25:37.580951+00 | 19 | 4
  730. anotherusername | 2015-01-20 01:25:37.580951+00 | 23 | 4
  731. swayde | 2015-01-20 01:25:37.580951+00 | 35 | 4
  732. eviltrout | 2015-01-20 01:25:37.580951+00 | 8 | 4
  733. xi_ | 2015-01-20 01:25:37.580951+00 | 100 | 4
  734. Salamander | 2015-01-20 01:25:37.579751+00 | 300 | 16
  735. cconroy | 2015-01-20 01:25:37.579751+00 | 27 | 16
  736. hungrier | 2015-01-20 01:25:37.579751+00 | 3610 | 16
  737. marinus | 2015-01-20 01:25:37.579751+00 | 282 | 16
  738. obeselymorbid | 2015-01-20 01:25:37.579751+00 | 1262 | 16
  739. RTapeLoadingError | 2015-01-20 01:25:37.579751+00 | 261 | 16
  740. AwesomeRick | 2015-01-20 01:25:37.579751+00 | 18 | 16
  741. jaming | 2015-01-20 01:25:37.579751+00 | 365 | 16
  742. null_loop | 2015-01-20 01:25:37.579751+00 | 125 | 16
  743. gnannann | 2015-01-20 01:25:37.579751+00 | 23 | 16
  744. martijntje | 2015-01-20 01:25:37.579751+00 | 23 | 16
  745. evandentremont | 2015-01-20 01:25:37.579751+00 | 20 | 16
  746. No_1 | 2015-01-20 01:25:37.579751+00 | 36 | 16
  747. fatbull | 2015-01-20 01:25:37.579751+00 | 78 | 16
  748. JazzyJosh | 2015-01-20 01:25:37.579751+00 | 248 | 16
  749. loopback0 | 2015-01-20 01:25:37.579751+00 | 1483 | 16
  750. FrostCat | 2015-01-20 01:25:37.579751+00 | 1001 | 16
  751. mratt | 2015-01-20 01:25:37.579751+00 | 21 | 16
  752. M_Adams | 2015-01-20 01:25:37.579751+00 | 1107 | 16
  753. presidentsdaughter | 2015-01-20 01:25:37.579751+00 | 53 | 16
  754. error | 2015-01-20 01:25:37.579751+00 | 1354 | 16
  755. Frank | 2015-01-20 01:25:37.579751+00 | 449 | 16
  756. Felipe_Budinich | 2015-01-20 01:25:37.579751+00 | 18 | 16
  757. Zecc | 2015-01-20 01:25:37.579751+00 | 1112 | 16
  758. LurkerAbove | 2015-01-20 01:25:37.579751+00 | 106 | 16
  759. dahaka | 2015-01-20 01:25:37.579751+00 | 158 | 16
  760. Nprz | 2015-01-20 01:25:37.579751+00 | 36 | 16
  761. Arantor | 2015-01-20 01:25:37.579751+00 | 9583 | 16
  762. Shoreline | 2015-01-20 01:25:37.579751+00 | 260 | 16
  763. xaade | 2015-01-20 01:25:37.579751+00 | 38 | 16
  764. TwelveBaud | 2015-01-20 01:25:37.579751+00 | 1089 | 16
  765. foxyshadis | 2015-01-20 01:25:37.579751+00 | 27 | 16
  766. CarrieVS | 2015-01-20 01:25:37.579751+00 | 65 | 16
  767. PJH | 2015-01-20 01:25:37.579751+00 | 1247 | 16
  768. Luhmann | 2015-01-20 01:25:37.579751+00 | 2834 | 16
  769. Monarch | 2015-01-20 01:25:37.579751+00 | 377 | 16
  770. codlnghorror | 2015-01-20 01:25:37.579751+00 | 50 | 16
  771. CodingHorrorBot | 2015-01-20 01:25:37.579751+00 | 75 | 16
  772. LoremIpsum | 2015-01-20 01:25:37.579751+00 | 465 | 16
  773. dcon | 2015-01-20 01:25:37.579751+00 | 48 | 16
  774. immibis_ | 2015-01-20 01:25:37.579751+00 | 47 | 16
  775. ufmace | 2015-01-20 01:25:37.579751+00 | 23 | 16
  776. Spencer | 2015-01-20 01:25:37.579751+00 | 615 | 16
  777. tarunik | 2015-01-20 01:25:37.579751+00 | 12833 | 16
  778. Cursorkeys | 2015-01-20 01:25:37.579751+00 | 296 | 16
  779. CreatedToDislikeThis | 2015-01-20 01:25:37.579751+00 | 99 | 16
  780. Kuro | 2015-01-20 01:25:37.579751+00 | 170 | 16
  781. Buddy | 2015-01-20 01:25:37.579751+00 | 567 | 16
  782. flwf | 2015-01-20 01:25:37.579751+00 | 49 | 16
  783. Mikael_Svahnberg | 2015-01-20 01:25:37.579751+00 | 27 | 16
  784. Apple | 2015-01-20 01:25:37.579751+00 | 24 | 16
  785. KillaCoder | 2015-01-20 01:25:37.579751+00 | 713 | 16
  786. Jaloopa | 2015-01-20 01:25:37.579751+00 | 426 | 16
  787. Groaner | 2015-01-20 01:25:37.579751+00 | 116 | 16
  788. DJSpudplucker | 2015-01-20 01:25:37.579751+00 | 33 | 16
  789. CoyneTheDup | 2015-01-20 01:25:37.579751+00 | 39 | 16
  790. YellowOnline | 2015-01-20 01:25:37.579751+00 | 38 | 16
  791. ben_lubar | 2015-01-20 01:25:37.579751+00 | 4448 | 16
  792. svieira | 2015-01-20 01:25:37.579751+00 | 66 | 16
  793. aliceif | 2015-01-20 01:25:37.579751+00 | 4422 | 16
  794. asdf | 2015-01-20 01:25:37.579751+00 | 757 | 16
  795. crazyal02 | 2015-01-20 01:25:37.579751+00 | 107 | 16
  796. Yamikuronue | 2015-01-20 01:25:37.579751+00 | 6417 | 16
  797. Zacrath | 2015-01-20 01:25:37.579751+00 | 96 | 16
  798. npe | 2015-01-20 01:25:37.579751+00 | 34 | 16
  799. Squiggle | 2015-01-20 01:25:37.579751+00 | 24 | 16
  800. bp_ | 2015-01-20 01:25:37.579751+00 | 134 | 16
  801. ijij | 2015-01-20 01:25:37.579751+00 | 381 | 16
  802. JBert | 2015-01-20 01:25:37.579751+00 | 6253 | 16
  803. some_damn_yank | 2015-01-20 01:25:37.579751+00 | 29 | 16
  804. WTF | 2015-01-20 01:25:37.579751+00 | 17 | 16
  805. ChestRockwell | 2015-01-20 01:25:37.579751+00 | 28 | 16
  806. flabdablet | 2015-01-20 01:25:37.579751+00 | 179 | 16
  807. Deadfast | 2015-01-20 01:25:37.579751+00 | 987 | 16
  808. dkf | 2015-01-20 01:25:37.579751+00 | 6273 | 16
  809. agbeladem | 2015-01-20 01:25:37.579751+00 | 98 | 16
  810. stillwater | 2015-01-20 01:25:37.579751+00 | 33 | 16
  811. royal_poet | 2015-01-20 01:25:37.579751+00 | 393 | 16
  812. another_sam | 2015-01-20 01:25:37.579751+00 | 445 | 16
  813. mott555 | 2015-01-20 01:25:37.579751+00 | 4420 | 16
  814. OffByOne | 2015-01-20 01:25:37.579751+00 | 887 | 16
  815. cartman82 | 2015-01-20 01:25:37.579751+00 | 3332 | 16
  816. tufty | 2015-01-20 01:25:37.579751+00 | 315 | 16
  817. sloosecannon | 2015-01-20 01:25:37.579751+00 | 21 | 16
  818. boomzilla | 2015-01-20 01:25:37.579751+00 | 6534 | 16
  819. subscript_error | 2015-01-20 01:25:37.579751+00 | 42 | 16
  820. penprog | 2015-01-20 01:25:37.579751+00 | 33 | 16
  821. Keith | 2015-01-20 01:25:37.579751+00 | 1852 | 16
  822. FuckOffBob | 2015-01-20 01:25:37.579751+00 | 31 | 16
  823. thegoryone | 2015-01-20 01:25:37.579751+00 | 23 | 16
  824. smallshellscript | 2015-01-20 01:25:37.579751+00 | 235 | 16
  825. monkeyArms | 2015-01-20 01:25:37.579751+00 | 53 | 16
  826. nullptr | 2015-01-20 01:25:37.579751+00 | 35 | 16
  827. Mo6eB | 2015-01-20 01:25:37.579751+00 | 46 | 16
  828. ofcource | 2015-01-20 01:25:37.579751+00 | 17 | 16
  829. ender | 2015-01-20 01:25:37.579751+00 | 36 | 16
  830. mark_bowytz | 2015-01-20 01:25:37.579751+00 | 194 | 16
  831. TGV | 2015-01-20 01:25:37.579751+00 | 76 | 16
  832. cvi | 2015-01-20 01:25:37.579751+00 | 605 | 16
  833. lyptt | 2015-01-20 01:25:37.579751+00 | 17 | 16
  834. rad131304 | 2015-01-20 01:25:37.579751+00 | 43 | 16
  835. YouCanCallMeAl | 2015-01-20 01:25:37.579751+00 | 17 | 16
  836. bugmenot | 2015-01-20 01:25:37.579751+00 | 30 | 16
  837. trithne | 2015-01-20 01:25:37.579751+00 | 67 | 16
  838. scrib | 2015-01-20 01:25:37.579751+00 | 358 | 16
  839. discoursebot | 2015-01-20 01:25:37.579751+00 | 77 | 16
  840. Magus | 2015-01-20 01:25:37.579751+00 | 591 | 16
  841. darkmatter | 2015-01-20 01:25:37.579751+00 | 811 | 16
  842. Matches | 2015-01-20 01:25:37.579751+00 | 340 | 16
  843. lucas | 2015-01-20 01:25:37.579751+00 | 134 | 16
  844. tharpa | 2015-01-20 01:25:37.579751+00 | 18 | 16
  845. dhromed | 2015-01-20 01:25:37.579751+00 | 219 | 16
  846. rikkit | 2015-01-20 01:25:37.579751+00 | 118 | 16
  847. redwizard | 2015-01-20 01:25:37.579751+00 | 2311 | 16
  848. AlexMedia | 2015-01-20 01:25:37.579751+00 | 46 | 16
  849. GOG | 2015-01-20 01:25:37.579751+00 | 715 | 16
  850. NedFodder | 2015-01-20 01:25:37.579751+00 | 18 | 16
  851. EvanED | 2015-01-20 01:25:37.579751+00 | 89 | 16
  852. Ragnax | 2015-01-20 01:25:37.579751+00 | 53 | 16
  853. tar | 2015-01-20 01:25:37.579751+00 | 492 | 16
  854. LikeBot | 2015-01-20 01:25:37.579751+00 | 434 | 16
  855. RaceProUK | 2015-01-20 01:25:37.579751+00 | 844 | 16
  856. locallunatic | 2015-01-20 01:25:37.579751+00 | 2777 | 16
  857. morbiuswilters | 2015-01-20 01:25:37.579751+00 | 71 | 16
  858. anonymous234 | 2015-01-20 01:25:37.579751+00 | 590 | 16
  859. apapadimoulis | 2015-01-20 01:25:37.579751+00 | 199 | 16
  860. lightsoff | 2015-01-20 01:25:37.579751+00 | 33 | 16
  861. GusTarballs | 2015-01-20 01:25:37.579751+00 | 17 | 16
  862. michaelb958 | 2015-01-20 01:25:37.579751+00 | 29 | 16
  863. Medinoc | 2015-01-20 01:25:37.579751+00 | 164 | 16
  864. Onyx | 2015-01-20 01:25:37.579751+00 | 4642 | 16
  865. Bort | 2015-01-20 01:25:37.579751+00 | 402 | 16
  866. HardwareGeek | 2015-01-20 01:25:37.579751+00 | 5095 | 16
  867. Maciejasjmj | 2015-01-20 01:25:37.579751+00 | 262 | 16
  868. Steve_The_Cynic | 2015-01-20 01:25:37.579751+00 | 19 | 16
  869. CanuckMonkey | 2015-01-20 01:25:37.579751+00 | 24 | 16
  870. DoctorJones | 2015-01-20 01:25:37.579751+00 | 3830 | 16
  871. Weng | 2015-01-20 01:25:37.579751+00 | 109 | 16
  872. Evo | 2015-01-20 01:25:37.579751+00 | 22 | 16
  873. zogstrip | 2015-01-20 01:25:37.579751+00 | 53 | 16
  874. JoeCool | 2015-01-20 01:25:37.579751+00 | 39 | 16
  875. lolwhat | 2015-01-20 01:25:37.579751+00 | 546 | 16
  876. PleegWat | 2015-01-20 01:25:37.579751+00 | 181 | 16
  877. codinghorror | 2015-01-20 01:25:37.579751+00 | 1035 | 16
  878. ScholRLEA | 2015-01-20 01:25:37.579751+00 | 37 | 16
  879. mikeTheLiar | 2015-01-20 01:25:37.579751+00 | 234 | 16
  880. Nagesh | 2015-01-20 01:25:37.579751+00 | 688 | 16
  881. the_dragon | 2015-01-20 01:25:37.579751+00 | 81 | 16
  882. Wukl | 2015-01-20 01:25:37.579751+00 | 36 | 16
  883. dtech | 2015-01-20 01:25:37.579751+00 | 29 | 16
  884. sanddorn | 2015-01-20 01:25:37.579751+00 | 141 | 16
  885. accalia | 2015-01-20 01:25:37.579751+00 | 6434 | 16
  886. Bulb | 2015-01-20 01:25:37.579751+00 | 894 | 16
  887. delfinom | 2015-01-20 01:25:37.579751+00 | 564 | 16
  888. Initech | 2015-01-20 01:25:37.579751+00 | 21 | 16
  889. skotl | 2015-01-20 01:25:37.579751+00 | 138 | 16
  890. Captain | 2015-01-20 01:25:37.579751+00 | 849 | 16
  891. Boner | 2015-01-20 01:25:37.579751+00 | 24 | 16
  892. izzion | 2015-01-20 01:25:37.579751+00 | 33 | 16
  893. riking | 2015-01-20 01:25:37.579751+00 | 1601 | 16
  894. johnsnick | 2015-01-20 01:25:37.579751+00 | 18 | 16
  895. ChrisH | 2015-01-20 01:25:37.579751+00 | 36 | 16
  896. chubertdev | 2015-01-20 01:25:37.579751+00 | 8115 | 16
  897. kupfernigk | 2015-01-20 01:25:37.579751+00 | 87 | 16
  898. Hanzo | 2015-01-20 01:25:37.579751+00 | 81 | 16
  899. Dogsworth | 2015-01-20 01:25:37.579751+00 | 82 | 16
  900. c__ | 2015-01-20 01:25:37.579751+00 | 412 | 16
  901. Dreikin | 2015-01-20 01:25:37.579751+00 | 584 | 16
  902. toon | 2015-01-20 01:25:37.579751+00 | 92 | 16
  903. henke37 | 2015-01-20 01:25:37.579751+00 | 51 | 16
  904. antiquarian | 2015-01-20 01:25:37.579751+00 | 7497 | 16
  905. Polygeekery | 2015-01-20 01:25:37.579751+00 | 4647 | 16
  906. VaelynPhi | 2015-01-20 01:25:37.579751+00 | 1130 | 16
  907. Eldelshell | 2015-01-20 01:25:37.579751+00 | 146 | 16
  908. Vault_Dweller | 2015-01-20 01:25:37.579751+00 | 62 | 16
  909. cdosrun1 | 2015-01-20 01:25:37.579751+00 | 100 | 16
  910. sam | 2015-01-20 01:25:37.579751+00 | 331 | 16
  911. jello | 2015-01-20 01:25:37.579751+00 | 89 | 16
  912. Tsaukpaetra | 2015-01-20 01:25:37.579751+00 | 116 | 16
  913. jakjawagon | 2015-01-20 01:25:37.579751+00 | 54 | 16
  914. moderator | 2015-01-20 01:25:37.579751+00 | 19 | 16
  915. ChaosTheEternal | 2015-01-20 01:25:37.579751+00 | 243 | 16
  916. faoileag | 2015-01-20 01:25:37.579751+00 | 1206 | 16
  917. scboffspring | 2015-01-20 01:25:37.579751+00 | 29 | 16
  918. VinDuv | 2015-01-20 01:25:37.579751+00 | 189 | 16
  919. zlogic | 2015-01-20 01:25:37.579751+00 | 24 | 16
  920. chouchuuchochouchou | 2015-01-20 01:25:37.579751+00 | 177 | 16
  921. nevesrorre | 2015-01-20 01:25:37.579751+00 | 22 | 16
  922. nobulate | 2015-01-20 01:25:37.579751+00 | 1052 | 16
  923. urkerab | 2015-01-20 01:25:37.579751+00 | 154 | 16
  924. abarker | 2015-01-20 01:25:37.579751+00 | 3155 | 16
  925. hominid | 2015-01-20 01:25:37.579751+00 | 71 | 16
  926. Nipo | 2015-01-20 01:25:37.579751+00 | 193 | 16
  927. atimson | 2015-01-20 01:25:37.579751+00 | 65 | 16
  928. MathNerdCNU | 2015-01-20 01:25:37.579751+00 | 19 | 16
  929. powerlord | 2015-01-20 01:25:37.579751+00 | 223 | 16
  930. nightware | 2015-01-20 01:25:37.579751+00 | 133 | 16
  931. Zainab58 | 2015-01-20 01:25:37.579751+00 | 23 | 16
  932. Gaska | 2015-01-20 01:25:37.579751+00 | 162 | 16
  933. DrakeSmith | 2015-01-20 01:25:37.579751+00 | 300 | 16
  934. reverendryan | 2015-01-20 01:25:37.579751+00 | 80 | 16
  935. Daniel15 | 2015-01-20 01:25:37.579751+00 | 79 | 16
  936. dfcowell | 2015-01-20 01:25:37.579751+00 | 20 | 16
  937. menugarit | 2015-01-20 01:25:37.579751+00 | 19 | 16
  938. anotherusername | 2015-01-20 01:25:37.579751+00 | 23 | 16
  939. swayde | 2015-01-20 01:25:37.579751+00 | 35 | 16
  940. xi_ | 2015-01-20 01:25:37.579751+00 | 100 | 16
  941. Salamander | 2015-01-20 01:25:37.574951+00 | 300 | 64
  942. hungrier | 2015-01-20 01:25:37.574951+00 | 3610 | 64
  943. marinus | 2015-01-20 01:25:37.574951+00 | 282 | 64
  944. obeselymorbid | 2015-01-20 01:25:37.574951+00 | 1262 | 64
  945. RTapeLoadingError | 2015-01-20 01:25:37.574951+00 | 261 | 64
  946. jaming | 2015-01-20 01:25:37.574951+00 | 365 | 64
  947. null_loop | 2015-01-20 01:25:37.574951+00 | 125 | 64
  948. fatbull | 2015-01-20 01:25:37.574951+00 | 78 | 64
  949. JazzyJosh | 2015-01-20 01:25:37.574951+00 | 248 | 64
  950. loopback0 | 2015-01-20 01:25:37.574951+00 | 1483 | 64
  951. FrostCat | 2015-01-20 01:25:37.574951+00 | 1001 | 64
  952. M_Adams | 2015-01-20 01:25:37.574951+00 | 1107 | 64
  953. error | 2015-01-20 01:25:37.574951+00 | 1354 | 64
  954. Frank | 2015-01-20 01:25:37.574951+00 | 449 | 64
  955. Zecc | 2015-01-20 01:25:37.574951+00 | 1112 | 64
  956. LurkerAbove | 2015-01-20 01:25:37.574951+00 | 106 | 64
  957. dahaka | 2015-01-20 01:25:37.574951+00 | 158 | 64
  958. Arantor | 2015-01-20 01:25:37.574951+00 | 9583 | 64
  959. Shoreline | 2015-01-20 01:25:37.574951+00 | 260 | 64
  960. TwelveBaud | 2015-01-20 01:25:37.574951+00 | 1089 | 64
  961. CarrieVS | 2015-01-20 01:25:37.574951+00 | 65 | 64
  962. PJH | 2015-01-20 01:25:37.574951+00 | 1247 | 64
  963. Luhmann | 2015-01-20 01:25:37.574951+00 | 2834 | 64
  964. Monarch | 2015-01-20 01:25:37.574951+00 | 377 | 64
  965. CodingHorrorBot | 2015-01-20 01:25:37.574951+00 | 75 | 64
  966. LoremIpsum | 2015-01-20 01:25:37.574951+00 | 465 | 64
  967. Spencer | 2015-01-20 01:25:37.574951+00 | 615 | 64
  968. tarunik | 2015-01-20 01:25:37.574951+00 | 12833 | 64
  969. Cursorkeys | 2015-01-20 01:25:37.574951+00 | 296 | 64
  970. CreatedToDislikeThis | 2015-01-20 01:25:37.574951+00 | 99 | 64
  971. Kuro | 2015-01-20 01:25:37.574951+00 | 170 | 64
  972. Buddy | 2015-01-20 01:25:37.574951+00 | 567 | 64
  973. KillaCoder | 2015-01-20 01:25:37.574951+00 | 713 | 64
  974. Jaloopa | 2015-01-20 01:25:37.574951+00 | 426 | 64
  975. Groaner | 2015-01-20 01:25:37.574951+00 | 116 | 64
  976. ben_lubar | 2015-01-20 01:25:37.574951+00 | 4448 | 64
  977. svieira | 2015-01-20 01:25:37.574951+00 | 66 | 64
  978. aliceif | 2015-01-20 01:25:37.574951+00 | 4422 | 64
  979. asdf | 2015-01-20 01:25:37.574951+00 | 757 | 64
  980. crazyal02 | 2015-01-20 01:25:37.574951+00 | 107 | 64
  981. Yamikuronue | 2015-01-20 01:25:37.574951+00 | 6417 | 64
  982. Zacrath | 2015-01-20 01:25:37.574951+00 | 96 | 64
  983. bp_ | 2015-01-20 01:25:37.574951+00 | 134 | 64
  984. ijij | 2015-01-20 01:25:37.574951+00 | 381 | 64
  985. JBert | 2015-01-20 01:25:37.574951+00 | 6253 | 64
  986. flabdablet | 2015-01-20 01:25:37.574951+00 | 179 | 64
  987. Deadfast | 2015-01-20 01:25:37.574951+00 | 987 | 64
  988. dkf | 2015-01-20 01:25:37.574951+00 | 6273 | 64
  989. agbeladem | 2015-01-20 01:25:37.574951+00 | 98 | 64
  990. royal_poet | 2015-01-20 01:25:37.574951+00 | 393 | 64
  991. another_sam | 2015-01-20 01:25:37.574951+00 | 445 | 64
  992. mott555 | 2015-01-20 01:25:37.574951+00 | 4420 | 64
  993. OffByOne | 2015-01-20 01:25:37.574951+00 | 887 | 64
  994. cartman82 | 2015-01-20 01:25:37.574951+00 | 3332 | 64
  995. tufty | 2015-01-20 01:25:37.574951+00 | 315 | 64
  996. boomzilla | 2015-01-20 01:25:37.574951+00 | 6534 | 64
  997. Keith | 2015-01-20 01:25:37.574951+00 | 1852 | 64
  998. smallshellscript | 2015-01-20 01:25:37.574951+00 | 235 | 64
  999. mark_bowytz | 2015-01-20 01:25:37.574951+00 | 194 | 64
  1000. TGV | 2015-01-20 01:25:37.574951+00 | 76 | 64
  1001. cvi | 2015-01-20 01:25:37.574951+00 | 605 | 64
  1002. trithne | 2015-01-20 01:25:37.574951+00 | 67 | 64
  1003. scrib | 2015-01-20 01:25:37.574951+00 | 358 | 64
  1004. discoursebot | 2015-01-20 01:25:37.574951+00 | 77 | 64
  1005. Magus | 2015-01-20 01:25:37.574951+00 | 591 | 64
  1006. darkmatter | 2015-01-20 01:25:37.574951+00 | 811 | 64
  1007. Matches | 2015-01-20 01:25:37.574951+00 | 340 | 64
  1008. lucas | 2015-01-20 01:25:37.574951+00 | 134 | 64
  1009. dhromed | 2015-01-20 01:25:37.574951+00 | 219 | 64
  1010. rikkit | 2015-01-20 01:25:37.574951+00 | 118 | 64
  1011. redwizard | 2015-01-20 01:25:37.574951+00 | 2311 | 64
  1012. GOG | 2015-01-20 01:25:37.574951+00 | 715 | 64
  1013. EvanED | 2015-01-20 01:25:37.574951+00 | 89 | 64
  1014. tar | 2015-01-20 01:25:37.574951+00 | 492 | 64
  1015. LikeBot | 2015-01-20 01:25:37.574951+00 | 434 | 64
  1016. RaceProUK | 2015-01-20 01:25:37.574951+00 | 844 | 64
  1017. locallunatic | 2015-01-20 01:25:37.574951+00 | 2777 | 64
  1018. morbiuswilters | 2015-01-20 01:25:37.574951+00 | 71 | 64
  1019. anonymous234 | 2015-01-20 01:25:37.574951+00 | 590 | 64
  1020. apapadimoulis | 2015-01-20 01:25:37.574951+00 | 199 | 64
  1021. Medinoc | 2015-01-20 01:25:37.574951+00 | 164 | 64
  1022. Onyx | 2015-01-20 01:25:37.574951+00 | 4642 | 64
  1023. Bort | 2015-01-20 01:25:37.574951+00 | 402 | 64
  1024. HardwareGeek | 2015-01-20 01:25:37.574951+00 | 5095 | 64
  1025. Maciejasjmj | 2015-01-20 01:25:37.574951+00 | 262 | 64
  1026. DoctorJones | 2015-01-20 01:25:37.574951+00 | 3830 | 64
  1027. Weng | 2015-01-20 01:25:37.574951+00 | 109 | 64
  1028. lolwhat | 2015-01-20 01:25:37.574951+00 | 546 | 64
  1029. PleegWat | 2015-01-20 01:25:37.574951+00 | 181 | 64
  1030. codinghorror | 2015-01-20 01:25:37.574951+00 | 1035 | 64
  1031. mikeTheLiar | 2015-01-20 01:25:37.574951+00 | 234 | 64
  1032. Nagesh | 2015-01-20 01:25:37.574951+00 | 688 | 64
  1033. the_dragon | 2015-01-20 01:25:37.574951+00 | 81 | 64
  1034. sanddorn | 2015-01-20 01:25:37.574951+00 | 141 | 64
  1035. accalia | 2015-01-20 01:25:37.574951+00 | 6434 | 64
  1036. Bulb | 2015-01-20 01:25:37.574951+00 | 894 | 64
  1037. delfinom | 2015-01-20 01:25:37.574951+00 | 564 | 64
  1038. skotl | 2015-01-20 01:25:37.574951+00 | 138 | 64
  1039. Captain | 2015-01-20 01:25:37.574951+00 | 849 | 64
  1040. riking | 2015-01-20 01:25:37.574951+00 | 1601 | 64
  1041. chubertdev | 2015-01-20 01:25:37.574951+00 | 8115 | 64
  1042. kupfernigk | 2015-01-20 01:25:37.574951+00 | 87 | 64
  1043. Hanzo | 2015-01-20 01:25:37.574951+00 | 81 | 64
  1044. Dogsworth | 2015-01-20 01:25:37.574951+00 | 82 | 64
  1045. c__ | 2015-01-20 01:25:37.574951+00 | 412 | 64
  1046. Dreikin | 2015-01-20 01:25:37.574951+00 | 584 | 64
  1047. toon | 2015-01-20 01:25:37.574951+00 | 92 | 64
  1048. antiquarian | 2015-01-20 01:25:37.574951+00 | 7497 | 64
  1049. Polygeekery | 2015-01-20 01:25:37.574951+00 | 4647 | 64
  1050. VaelynPhi | 2015-01-20 01:25:37.574951+00 | 1130 | 64
  1051. Eldelshell | 2015-01-20 01:25:37.574951+00 | 146 | 64
  1052. cdosrun1 | 2015-01-20 01:25:37.574951+00 | 100 | 64
  1053. sam | 2015-01-20 01:25:37.574951+00 | 331 | 64
  1054. jello | 2015-01-20 01:25:37.574951+00 | 89 | 64
  1055. Tsaukpaetra | 2015-01-20 01:25:37.574951+00 | 116 | 64
  1056. ChaosTheEternal | 2015-01-20 01:25:37.574951+00 | 243 | 64
  1057. faoileag | 2015-01-20 01:25:37.574951+00 | 1206 | 64
  1058. VinDuv | 2015-01-20 01:25:37.574951+00 | 189 | 64
  1059. chouchuuchochouchou | 2015-01-20 01:25:37.574951+00 | 177 | 64
  1060. nobulate | 2015-01-20 01:25:37.574951+00 | 1052 | 64
  1061. urkerab | 2015-01-20 01:25:37.574951+00 | 154 | 64
  1062. abarker | 2015-01-20 01:25:37.574951+00 | 3155 | 64
  1063. hominid | 2015-01-20 01:25:37.574951+00 | 71 | 64
  1064. Nipo | 2015-01-20 01:25:37.574951+00 | 193 | 64
  1065. atimson | 2015-01-20 01:25:37.574951+00 | 65 | 64
  1066. powerlord | 2015-01-20 01:25:37.574951+00 | 223 | 64
  1067. nightware | 2015-01-20 01:25:37.574951+00 | 133 | 64
  1068. Gaska | 2015-01-20 01:25:37.574951+00 | 162 | 64
  1069. DrakeSmith | 2015-01-20 01:25:37.574951+00 | 300 | 64
  1070. reverendryan | 2015-01-20 01:25:37.574951+00 | 80 | 64
  1071. Daniel15 | 2015-01-20 01:25:37.574951+00 | 79 | 64
  1072. xi_ | 2015-01-20 01:25:37.574951+00 | 100 | 64
  1073. Salamander | 2015-01-20 01:25:37.555751+00 | 300 | 256
  1074. hungrier | 2015-01-20 01:25:37.555751+00 | 3610 | 256
  1075. marinus | 2015-01-20 01:25:37.555751+00 | 282 | 256
  1076. obeselymorbid | 2015-01-20 01:25:37.555751+00 | 1262 | 256
  1077. RTapeLoadingError | 2015-01-20 01:25:37.555751+00 | 261 | 256
  1078. jaming | 2015-01-20 01:25:37.555751+00 | 365 | 256
  1079. loopback0 | 2015-01-20 01:25:37.555751+00 | 1483 | 256
  1080. FrostCat | 2015-01-20 01:25:37.555751+00 | 1001 | 256
  1081. M_Adams | 2015-01-20 01:25:37.555751+00 | 1107 | 256
  1082. error | 2015-01-20 01:25:37.555751+00 | 1354 | 256
  1083. Frank | 2015-01-20 01:25:37.555751+00 | 449 | 256
  1084. Zecc | 2015-01-20 01:25:37.555751+00 | 1112 | 256
  1085. Arantor | 2015-01-20 01:25:37.555751+00 | 9583 | 256
  1086. Shoreline | 2015-01-20 01:25:37.555751+00 | 260 | 256
  1087. TwelveBaud | 2015-01-20 01:25:37.555751+00 | 1089 | 256
  1088. PJH | 2015-01-20 01:25:37.555751+00 | 1247 | 256
  1089. Luhmann | 2015-01-20 01:25:37.555751+00 | 2834 | 256
  1090. Monarch | 2015-01-20 01:25:37.555751+00 | 377 | 256
  1091. LoremIpsum | 2015-01-20 01:25:37.555751+00 | 465 | 256
  1092. Spencer | 2015-01-20 01:25:37.555751+00 | 615 | 256
  1093. tarunik | 2015-01-20 01:25:37.555751+00 | 12833 | 256
  1094. Cursorkeys | 2015-01-20 01:25:37.555751+00 | 296 | 256
  1095. Buddy | 2015-01-20 01:25:37.555751+00 | 567 | 256
  1096. KillaCoder | 2015-01-20 01:25:37.555751+00 | 713 | 256
  1097. Jaloopa | 2015-01-20 01:25:37.555751+00 | 426 | 256
  1098. ben_lubar | 2015-01-20 01:25:37.555751+00 | 4448 | 256
  1099. aliceif | 2015-01-20 01:25:37.555751+00 | 4422 | 256
  1100. asdf | 2015-01-20 01:25:37.555751+00 | 757 | 256
  1101. Yamikuronue | 2015-01-20 01:25:37.555751+00 | 6417 | 256
  1102. ijij | 2015-01-20 01:25:37.555751+00 | 381 | 256
  1103. JBert | 2015-01-20 01:25:37.555751+00 | 6253 | 256
  1104. Deadfast | 2015-01-20 01:25:37.555751+00 | 987 | 256
  1105. dkf | 2015-01-20 01:25:37.555751+00 | 6273 | 256
  1106. royal_poet | 2015-01-20 01:25:37.555751+00 | 393 | 256
  1107. another_sam | 2015-01-20 01:25:37.555751+00 | 445 | 256
  1108. mott555 | 2015-01-20 01:25:37.555751+00 | 4420 | 256
  1109. OffByOne | 2015-01-20 01:25:37.555751+00 | 887 | 256
  1110. cartman82 | 2015-01-20 01:25:37.555751+00 | 3332 | 256
  1111. tufty | 2015-01-20 01:25:37.555751+00 | 315 | 256
  1112. boomzilla | 2015-01-20 01:25:37.555751+00 | 6534 | 256
  1113. Keith | 2015-01-20 01:25:37.555751+00 | 1852 | 256
  1114. cvi | 2015-01-20 01:25:37.555751+00 | 605 | 256
  1115. scrib | 2015-01-20 01:25:37.555751+00 | 358 | 256
  1116. Magus | 2015-01-20 01:25:37.555751+00 | 591 | 256
  1117. darkmatter | 2015-01-20 01:25:37.555751+00 | 811 | 256
  1118. Matches | 2015-01-20 01:25:37.555751+00 | 340 | 256
  1119. redwizard | 2015-01-20 01:25:37.555751+00 | 2311 | 256
  1120. GOG | 2015-01-20 01:25:37.555751+00 | 715 | 256
  1121. tar | 2015-01-20 01:25:37.555751+00 | 492 | 256
  1122. LikeBot | 2015-01-20 01:25:37.555751+00 | 434 | 256
  1123. RaceProUK | 2015-01-20 01:25:37.555751+00 | 844 | 256
  1124. locallunatic | 2015-01-20 01:25:37.555751+00 | 2777 | 256
  1125. anonymous234 | 2015-01-20 01:25:37.555751+00 | 590 | 256
  1126. Onyx | 2015-01-20 01:25:37.555751+00 | 4642 | 256
  1127. Bort | 2015-01-20 01:25:37.555751+00 | 402 | 256
  1128. HardwareGeek | 2015-01-20 01:25:37.555751+00 | 5095 | 256
  1129. Maciejasjmj | 2015-01-20 01:25:37.555751+00 | 262 | 256
  1130. DoctorJones | 2015-01-20 01:25:37.555751+00 | 3830 | 256
  1131. lolwhat | 2015-01-20 01:25:37.555751+00 | 546 | 256
  1132. codinghorror | 2015-01-20 01:25:37.555751+00 | 1035 | 256
  1133. Nagesh | 2015-01-20 01:25:37.555751+00 | 688 | 256
  1134. accalia | 2015-01-20 01:25:37.555751+00 | 6434 | 256
  1135. Bulb | 2015-01-20 01:25:37.555751+00 | 894 | 256
  1136. delfinom | 2015-01-20 01:25:37.555751+00 | 564 | 256
  1137. Captain | 2015-01-20 01:25:37.555751+00 | 849 | 256
  1138. riking | 2015-01-20 01:25:37.555751+00 | 1601 | 256
  1139. chubertdev | 2015-01-20 01:25:37.555751+00 | 8115 | 256
  1140. c__ | 2015-01-20 01:25:37.555751+00 | 412 | 256
  1141. Dreikin | 2015-01-20 01:25:37.555751+00 | 584 | 256
  1142. antiquarian | 2015-01-20 01:25:37.555751+00 | 7497 | 256
  1143. Polygeekery | 2015-01-20 01:25:37.555751+00 | 4647 | 256
  1144. VaelynPhi | 2015-01-20 01:25:37.555751+00 | 1130 | 256
  1145. sam | 2015-01-20 01:25:37.555751+00 | 331 | 256
  1146. faoileag | 2015-01-20 01:25:37.555751+00 | 1206 | 256
  1147. nobulate | 2015-01-20 01:25:37.555751+00 | 1052 | 256
  1148. abarker | 2015-01-20 01:25:37.555751+00 | 3155 | 256
  1149. DrakeSmith | 2015-01-20 01:25:37.555751+00 | 300 | 256
  1150. hungrier | 2015-01-20 01:25:37.478951+00 | 3610 | 1024
  1151. obeselymorbid | 2015-01-20 01:25:37.478951+00 | 1262 | 1024
  1152. loopback0 | 2015-01-20 01:25:37.478951+00 | 1483 | 1024
  1153. M_Adams | 2015-01-20 01:25:37.478951+00 | 1107 | 1024
  1154. error | 2015-01-20 01:25:37.478951+00 | 1354 | 1024
  1155. Zecc | 2015-01-20 01:25:37.478951+00 | 1112 | 1024
  1156. Arantor | 2015-01-20 01:25:37.478951+00 | 9583 | 1024
  1157. TwelveBaud | 2015-01-20 01:25:37.478951+00 | 1089 | 1024
  1158. PJH | 2015-01-20 01:25:37.478951+00 | 1247 | 1024
  1159. Luhmann | 2015-01-20 01:25:37.478951+00 | 2834 | 1024
  1160. tarunik | 2015-01-20 01:25:37.478951+00 | 12833 | 1024
  1161. ben_lubar | 2015-01-20 01:25:37.478951+00 | 4448 | 1024
  1162. aliceif | 2015-01-20 01:25:37.478951+00 | 4422 | 1024
  1163. Yamikuronue | 2015-01-20 01:25:37.478951+00 | 6417 | 1024
  1164. JBert | 2015-01-20 01:25:37.478951+00 | 6253 | 1024
  1165. dkf | 2015-01-20 01:25:37.478951+00 | 6273 | 1024
  1166. mott555 | 2015-01-20 01:25:37.478951+00 | 4420 | 1024
  1167. cartman82 | 2015-01-20 01:25:37.478951+00 | 3332 | 1024
  1168. boomzilla | 2015-01-20 01:25:37.478951+00 | 6534 | 1024
  1169. Keith | 2015-01-20 01:25:37.478951+00 | 1852 | 1024
  1170. redwizard | 2015-01-20 01:25:37.478951+00 | 2311 | 1024
  1171. locallunatic | 2015-01-20 01:25:37.478951+00 | 2777 | 1024
  1172. Onyx | 2015-01-20 01:25:37.478951+00 | 4642 | 1024
  1173. HardwareGeek | 2015-01-20 01:25:37.478951+00 | 5095 | 1024
  1174. DoctorJones | 2015-01-20 01:25:37.478951+00 | 3830 | 1024
  1175. codinghorror | 2015-01-20 01:25:37.478951+00 | 1035 | 1024
  1176. accalia | 2015-01-20 01:25:37.478951+00 | 6434 | 1024
  1177. riking | 2015-01-20 01:25:37.478951+00 | 1601 | 1024
  1178. chubertdev | 2015-01-20 01:25:37.478951+00 | 8115 | 1024
  1179. antiquarian | 2015-01-20 01:25:37.478951+00 | 7497 | 1024
  1180. Polygeekery | 2015-01-20 01:25:37.478951+00 | 4647 | 1024
  1181. VaelynPhi | 2015-01-20 01:25:37.478951+00 | 1130 | 1024
  1182. faoileag | 2015-01-20 01:25:37.478951+00 | 1206 | 1024
  1183. nobulate | 2015-01-20 01:25:37.478951+00 | 1052 | 1024
  1184. abarker | 2015-01-20 01:25:37.478951+00 | 3155 | 1024
  1185. Arantor | 2015-01-20 01:25:37.171751+00 | 9583 | 4096
  1186. tarunik | 2015-01-20 01:25:37.171751+00 | 12833 | 4096
  1187. ben_lubar | 2015-01-20 01:25:37.171751+00 | 4448 | 4096
  1188. aliceif | 2015-01-20 01:25:37.171751+00 | 4422 | 4096
  1189. Yamikuronue | 2015-01-20 01:25:37.171751+00 | 6417 | 4096
  1190. JBert | 2015-01-20 01:25:37.171751+00 | 6253 | 4096
  1191. dkf | 2015-01-20 01:25:37.171751+00 | 6273 | 4096
  1192. mott555 | 2015-01-20 01:25:37.171751+00 | 4420 | 4096
  1193. boomzilla | 2015-01-20 01:25:37.171751+00 | 6534 | 4096
  1194. Onyx | 2015-01-20 01:25:37.171751+00 | 4642 | 4096
  1195. HardwareGeek | 2015-01-20 01:25:37.171751+00 | 5095 | 4096
  1196. accalia | 2015-01-20 01:25:37.171751+00 | 6434 | 4096
  1197. chubertdev | 2015-01-20 01:25:37.171751+00 | 8115 | 4096
  1198. antiquarian | 2015-01-20 01:25:37.171751+00 | 7497 | 4096
  1199. Polygeekery | 2015-01-20 01:25:37.171751+00 | 4647 | 4096
  1200. (1172 rows)
  1201.  
  1202. Elapsed: 1.639s
  1203. Backup taken: 2015-01-19 03:56:06.53156
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement