Advertisement
Al3x0wn5

Pekanbarucyberteam.net - Database

Oct 9th, 2011
320
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 87.51 KB | None | 0 0
  1. CREATE TABLE `pctusers` (
  2. `uid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  3. `username` varchar(120) NOT NULL DEFAULT '',
  4. `password` varchar(120) NOT NULL DEFAULT '',
  5. `salt` varchar(10) NOT NULL DEFAULT '',
  6. `loginkey` varchar(50) NOT NULL DEFAULT '',
  7. `email` varchar(220) NOT NULL DEFAULT '',
  8. `postnum` int(10) NOT NULL DEFAULT '0',
  9. `avatar` varchar(200) NOT NULL DEFAULT '',
  10. `avatardimensions` varchar(10) NOT NULL DEFAULT '',
  11. `avatartype` varchar(10) NOT NULL DEFAULT '0',
  12. `usergroup` smallint(5) unsigned NOT NULL DEFAULT '0',
  13. `additionalgroups` varchar(200) NOT NULL DEFAULT '',
  14. `displaygroup` smallint(5) unsigned NOT NULL DEFAULT '0',
  15. `usertitle` varchar(250) NOT NULL DEFAULT '',
  16. `regdate` bigint(30) NOT NULL DEFAULT '0',
  17. `lastactive` bigint(30) NOT NULL DEFAULT '0',
  18. `lastvisit` bigint(30) NOT NULL DEFAULT '0',
  19. `lastpost` bigint(30) NOT NULL DEFAULT '0',
  20. `website` varchar(200) NOT NULL DEFAULT '',
  21. `icq` varchar(10) NOT NULL DEFAULT '',
  22. `aim` varchar(50) NOT NULL DEFAULT '',
  23. `yahoo` varchar(50) NOT NULL DEFAULT '',
  24. `msn` varchar(75) NOT NULL DEFAULT '',
  25. `birthday` varchar(15) NOT NULL DEFAULT '',
  26. `birthdayprivacy` varchar(4) NOT NULL DEFAULT 'all',
  27. `signature` text NOT NULL,
  28. `allownotices` int(1) NOT NULL DEFAULT '0',
  29. `hideemail` int(1) NOT NULL DEFAULT '0',
  30. `subscriptionmethod` int(1) NOT NULL DEFAULT '0',
  31. `invisible` int(1) NOT NULL DEFAULT '0',
  32. `receivepms` int(1) NOT NULL DEFAULT '0',
  33. `receivefrombuddy` int(1) NOT NULL DEFAULT '0',
  34. `pmnotice` int(1) NOT NULL DEFAULT '0',
  35. `pmnotify` int(1) NOT NULL DEFAULT '0',
  36. `threadmode` varchar(8) NOT NULL DEFAULT '',
  37. `showsigs` int(1) NOT NULL DEFAULT '0',
  38. `showavatars` int(1) NOT NULL DEFAULT '0',
  39. `showquickreply` int(1) NOT NULL DEFAULT '0',
  40. `showredirect` int(1) NOT NULL DEFAULT '0',
  41. `ppp` smallint(6) NOT NULL DEFAULT '0',
  42. `tpp` smallint(6) NOT NULL DEFAULT '0',
  43. `daysprune` smallint(6) NOT NULL DEFAULT '0',
  44. `dateformat` varchar(4) NOT NULL DEFAULT '',
  45. `timeformat` varchar(4) NOT NULL DEFAULT '',
  46. `timezone` varchar(4) NOT NULL DEFAULT '',
  47. `dst` int(1) NOT NULL DEFAULT '0',
  48. `dstcorrection` int(1) NOT NULL DEFAULT '0',
  49. `buddylist` text NOT NULL,
  50. `ignorelist` text NOT NULL,
  51. `style` smallint(5) unsigned NOT NULL DEFAULT '0',
  52. `away` int(1) NOT NULL DEFAULT '0',
  53. `awaydate` int(10) unsigned NOT NULL DEFAULT '0',
  54. `returndate` varchar(15) NOT NULL DEFAULT '',
  55. `awayreason` varchar(200) NOT NULL DEFAULT '',
  56. `pmfolders` text NOT NULL,
  57. `notepad` text NOT NULL,
  58. `referrer` int(10) unsigned NOT NULL DEFAULT '0',
  59. `referrals` int(10) unsigned NOT NULL DEFAULT '0',
  60. `reputation` bigint(30) NOT NULL DEFAULT '0',
  61. `regip` varchar(50) NOT NULL DEFAULT '',
  62. `lastip` varchar(50) NOT NULL DEFAULT '',
  63. `longregip` int(11) NOT NULL DEFAULT '0',
  64. `longlastip` int(11) NOT NULL DEFAULT '0',
  65. `language` varchar(50) NOT NULL DEFAULT '',
  66. `timeonline` bigint(30) NOT NULL DEFAULT '0',
  67. `showcodebuttons` int(1) NOT NULL DEFAULT '1',
  68. `totalpms` int(10) NOT NULL DEFAULT '0',
  69. `unreadpms` int(10) NOT NULL DEFAULT '0',
  70. `warningpoints` int(3) NOT NULL DEFAULT '0',
  71. `moderateposts` int(1) NOT NULL DEFAULT '0',
  72. `moderationtime` bigint(30) NOT NULL DEFAULT '0',
  73. `suspendposting` int(1) NOT NULL DEFAULT '0',
  74. `suspensiontime` bigint(30) NOT NULL DEFAULT '0',
  75. `suspendsignature` int(1) NOT NULL DEFAULT '0',
  76. `suspendsigtime` bigint(30) NOT NULL DEFAULT '0',
  77. `coppauser` int(1) NOT NULL DEFAULT '0',
  78. `classicpostbit` int(1) NOT NULL DEFAULT '0',
  79. `loginattempts` tinyint(2) NOT NULL DEFAULT '1',
  80. `failedlogin` bigint(30) NOT NULL DEFAULT '0',
  81. `usernotes` text NOT NULL,
  82. `akismetstopped` int(11) NOT NULL DEFAULT '0',
  83. `mysb_banned` smallint(1) NOT NULL DEFAULT '0',
  84. `mysb_banned_reason` varchar(255) NOT NULL DEFAULT '',
  85. PRIMARY KEY (`uid`),
  86. UNIQUE KEY `username` (`username`),
  87. KEY `usergroup` (`usergroup`),
  88. KEY `birthday` (`birthday`),
  89. KEY `longregip` (`longregip`),
  90. KEY `longlastip` (`longlastip`)
  91. ) ENGINE=MyISAM AUTO_INCREMENT=52 DEFAULT CHARSET=utf8;
  92. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('1','pctmania','bf4a023f39ed18a12a1bd6e19b34725c','xgqSX28d','bHsCTfZ2Aq9FxHlfLdLwddbGslsGv3a5FNL61jYfmUOJ8GsBeV','admin@pekanbarucyberteam.net','5','images/avatars/clear_avatar.gif?dateline=1294789758','1|1','gallery','4','','0','','1294726020','1311059945','1311059945','1294970652','','0','','','','','all','','1','0','0','0','1','0','1','1','linear','1','1','1','1','0','0','0','0','0','0','0','2','','','0','0','0','','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','202.154.40.12','113.212.125.15','2147483647','1909751055','','29677','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  93. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('4','drie88','2a50e5eac4c64e85f6c2a2bf8829ff3a','wzYCbgYQ','AdLWz6yHI9L2h7lIDrhtpiOjCZjzPrpzxvsUDogYG9gCfRVVAR','drie_doankz@yahoo.com','10','http://profile.ak.fbcdn.net/hprofile-ak-snc4/hs476.snc4/49951_100000238300276_3220042_q.jpg?dateline=1294843878','50|50','remote','4','','4','Yang paling keren se - PCT','1294794915','1312484316','1312356064','1312206622','http://drie88.tk','0','','drie_doankz','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','0','0','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','1','0','202.154.40.12','114.79.48.59','-895866868','1917792315','','28270','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  94. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('3','PrOReBeLL','ae228c82d0037f2d3950f54d8584ac4e','GCzHPzeC','UvQfZEg2XUDR33vhanj6yVXsMoeVRKO7yeDtEwpdeByzXvzYCY','prorebell@bismillah.com','26','images/avatars/suckxp.gif?dateline=1294900188','60|85','gallery','4','','4','','1294792385','1312484316','1312385678','1312484184','http://prorebell.blogspot.com/','0','','prorebel_aries','','25-3-1992','none','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','0','0','0','0','2','40','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','3','1','','124.81.213.100','0','2085737828','','61980','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  95. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('5','teardrop','ad3aa36fa8b45af53c909ecebca415f0','OAOVOKt8','KemfSRjgCPZGT8ApqFB1tikC8rFum65RDKOqEYxD7ruhDhptkx','teardrop_31337@bismillah.com','5','images/avatars/invalid_url.gif?dateline=1294844715','84|84','gallery','4','','4','Hamba Allah','1294842764','1311872763','1311251706','1311250729','http://teardrop.isgreat.org','0','','t34rdr0p','','5-11-1981','all','','1','0','2','1','1','0','1','1','linear','1','1','1','1','0','0','0','0','0','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','3','0','0','118.97.164.212','118.97.164.212','1986110676','1986110676','english','4072','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  96. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('10','rhido','5e1f6df75f91d8e611e02f426f3d7e99','3PYpvXsS','iLSZRBE1qSaxkq1uI2tcTJ8q4qQ1CevbzE9V2o4hYo59mDyNDy','devil_died07@yahoo.com','0','','','','2','','0','','1294918360','1294918900','1294918900','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.136.255.252','110.136.255.252','1854472188','1854472188','','540','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  97. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('6','BagoesAK47','32feae3a98a473c5c3ee8f609c708fd4','9eyN7xnP','2tzqVe5jneewFXu7lvM6ui9y37LAMPNFvgkbpwqHTvUD1Y3XEt','bagoesadikurniady@gmail.com','0','','','','2','','0','','1294843193','1294843256','1294843256','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.76.201','110.137.76.201','1854491849','1854491849','','63','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  98. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('7','Kasmali Kas','2408c0683e306f1c668dfe8acaeff831','ekO4xwqz','yMZQQAguiv8IQyLzrQ3ZHYaeIXySd9Pm8ypBemvgIPWdjLYDKL','kasmali.kas@gmail.com','11','images/avatars/supertux.gif?dateline=1294848425','120|102','gallery','2','','0','I\'m not Special,I\'m just Limited Edition','1294848116','1311259090','1295147497','1295145156','http://Kasmali-Kas.co.cc','0','','','','8-5-1990','all','[align=justify][color=#0000CD]I\'m not Special, I\'m just Limited Edition[/color][/align]\r\n','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','111.67.71.60','111.67.65.42','1866680124','1866678570','','19726','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  99. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('8','orang_awam','35ceb8ef6f7009474d76a1e5385ff410','m15BYnvU','AhfR9xKD9WcLpSJLVVR4ThSEHa2lcY9dm4C5B77IJdStUYHEpy','dede_extreme@yahoo.com','2','','','','2','','0','','1294850630','1294851486','1294850630','1294851412','','0','','','','','all','','1','0','0','0','1','0','1','1','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','4','0','0','118.97.80.59','118.97.80.59','1986089019','1986089019','','856','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  100. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('9','nomzhoppus','415d27538552ad19e8b51c3c9950ea99','iFrDHRMF','tvrT72NtCi7ieEWjdHoNnn8QpsNaznOdMmtFgPKrlzPSLKFbwf','unomz@yahoo.com','1','','','','2','','0','','1294899237','1294899672','1294899237','1294899666','','0','','','','','all','','1','1','0','0','1','0','1','1','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','124.81.213.21','124.81.213.21','2085737749','2085737749','english','435','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  101. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('11','alisahidin','27794c005e98a72459d8d22aadb44691','IInsGTKE','H6zdYcQd8HZnyM27gybmJF7dEKQ3bCcsDxKm9juQuHVHBdSJZL','deden1064@yahoo.co.id','0','','','','2','','0','','1294918533','1294918797','1294918533','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','202.93.37.81','202.93.37.81','-899865263','-899865263','','264','1','0','0','0','0','0','0','0','0','0','0','0','9','0','','0','0','');
  102. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('12','kUcingRad33N','74871966a38c3dcb5f3fec82c9964f48','tCaGEbBm','IIe8dCJOsOZUWitXMhPXYLtV5XIgE3A4yS1jxv2jaEsXa5ixIj','kucingeliter@yahoo.com','0','','','','2','','0','','1294918763','1295004992','1294988283','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','125.162.71.197','125.162.71.197','2107787205','2107787205','','244','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  103. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('13','satria__','da7328ee7315d0e544d0a99f24308acf','xYrsUdg2','2SMPvov12jqWKkB49YYu21rF8UEl5bgvgDIYgewa75WV2aS4rI','betterfury@yahoo.com','7','http://s44.ucoz.net/a/_6/08.gif?dateline=1294919862','64|64','remote','2','','0','','1294918976','1311247280','1311247280','1311247185','','0','','','','','all','glowing white','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','125.162.71.78','125.162.71.78','2107787086','2107787086','','4587','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  104. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('14','dastio','3a7d1187abe733f41c2d7afab66db69e','LERDPEqL','HhALVajIWVlAknFmtKv93FeWXJwKP3yooy3GDoFjF5DDkwEGHU','tio_jr67@yahoo.com','0','','','','2','','0','','1294922001','1294922990','1294922990','0','','0','','','','','all','','1','1','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','180.241.241.11','180.241.241.11','-1259212533','-1259212533','','989','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  105. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('15','hvm70','eac621b37960992ba5d828ed9523afc2','Hb57hr8G','rfhAHfyvg1kGPJ5Ar7bArf2W2q8UbZ4Kx3HlQtYoJ4CKa5mkfE','habibi.mark@gmail.com','1','','','','2','','0','','1294980926','1294981532','1294980926','1294981532','','0','','','','','all','','1','1','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','118.96.207.4','118.96.207.4','1986055940','1986055940','','606','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  106. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('16','linuxer46','e8a825f8f47aeb95cfa3e5d6da3e3a79','X6B6qjAh','YtYfuDcbOj2HNqldGtSYjVKybQz6NDQK4TRJvWnpT8gqlE4ZRv','linuxer46@yahoo.com','1','','','','2','','0','','1294988268','1294988509','1294988268','1294988459','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.128.233','110.137.128.233','1854505193','1854505193','','241','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  107. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('17','./evil','cc0e4ba0ee1e31f943d5f64c58226d8c','mJR2NvSg','ye8MYhGpAYFGM1Ed8PH6OLbdbLHfvsneuLlEwIKOt5ZGpeQ5IM','evil@small-saint.net','0','','','','2','','0','','1294991707','1294991890','1294991890','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','180.241.132.167','180.241.132.167','-1259240281','-1259240281','','183','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  108. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('18','wansatriaandanu','15675c6337fe0db4c77178fb96365aea','RujWg8ah','9yFThctLpCSxnMKMm1ZnvMC2uDluJtHzH4LrQQS1EzxneOa6Ln','wansatriaandanu@yahoo.com','0','','','','2','','0','','1294993776','1294994163','1294994163','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','125.162.71.78','125.162.71.78','2107787086','2107787086','','387','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  109. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('19','ricky1001','55d781343746eb8ca5a3e2754612d0a7','Izmq3gYp','pCwdXhz5DpCJX1Nc7qpXbv4wtW93dMDqBqRWEpVR4889FQRrzq','spider007rickysantosa@gmail.com','2','','','','2','','0','','1295002589','1312267445','1312210616','1295071472','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','3','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','110.137.79.203','110.137.79.203','1854492619','1854492619','english','6223','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  110. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('20','bLaCk ID','c3593f434d9bf32e13e2697b45ecc606','ZXcGJgyl','SFlAyMCIGz1eda5bXy8nkuaswrBvMaQbBzVe58oB7SriNT5V7v','as.black19@gmail.com','0','./uploads/avatars/avatar_20.jpg?dateline=1295018139','100|91','upload','2','','0','','1295017920','1295109976','1295020070','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','1,3,4,7,19','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','110.137.81.254','110.137.81.254','1854493182','1854493182','','2796','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  111. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('21','mbah_dudutz','0049fd87a5ae158fcdb1704d9e42ee17','JjMzbM7N','5mPZuawkKhfgr8ZuTJ7FCBMkqEflQVJRngG6a94JBEyvajIaYS','devatacrew@gmail.com','1','','','','2','','0','','1295061648','1295062148','1295062148','1295062031','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','203.153.217.122','203.153.217.122','-879109766','-879109766','','500','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  112. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('22','ajie','c98144f84db2c4ef54afab2fed8369dd','LmVhPBnd','X9di7JzYOOzb4xNGCzHxiTMmSNal7ssTJAZl2YGQTgpqtJXRJW','ajieloker@yahoo.com','1','','','','2','','0','','1295062621','1295064035','1295062670','1295063883','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.49.149','110.137.49.149','1854484885','1854484885','','1414','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  113. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('23','vanderta','16c54964986edd09e440381cb5c976ef','mt9HLWSV','jR4ylTHbKKvjpYeaVJDR8Lu9l5xw3ilZyeSfl3WvthyzqVOxwc','vanderta@yahoo.com','1','','','','2','','0','','1295070297','1295070441','1295070441','1295070423','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.83.213','110.137.83.213','1854493653','1854493653','','144','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  114. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('24','kahfiehudson','5f2d3a466ca6dc779016c120b331d30d','A4BfBxbu','UbUKHBcNY3PwfjWxAi2RCP4vyBCH1BUoPA6ZRi3XyyJu8ZXhTp','kahfiehudson@ipal.com','0','','','','2','','0','','1295072007','1295072120','1295072007','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.216.4','110.137.216.4','1854527492','1854527492','','113','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  115. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('25','tjah-angon','ff5abfdf4fec0062ad7578df320d3f5a','eydO8HJO','bs7QPFM6lOyMNVP6NFHQ5vHDVBwVyrGDDeabxpukWCk9T1Ws5i','fuadha@gmail.com','0','','','','2','','0','','1295072126','1295081875','1295072126','0','','0','','','','','all','','1','1','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','118.96.187.201','114.79.20.191','1986051017','1917785279','','998','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  116. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('26','heromestipelaq','bb9c699e85d1d6719c7e688eb70832e1','JAYrskYu','EsPoJitvmLWDrfdN74BGSuSIO8oqGGU5TsYRuIaWAAPzMF9xhs','hero_mesti_pelaq@yahoo.co.uk','0','','','','2','','0','','1295076775','1295077083','1295076775','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','118.101.104.179','118.101.104.179','1986357427','1986357427','english','308','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  117. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('27','bl4ck4ng3l','6253cad1cfaac3542f4e4dc44c009b11','mZ34J4tP','AJIEdWE1YjDNXeM2YR9hQbMqd9exl374Xzwsr7Hdi6OAUzwkoC','kim_wutzke@yahoo.com','0','','','','2','','0','','1295079348','1295079372','1295079348','0','','0','','','','','all','','1','1','0','1','1','0','1','1','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','125.162.35.78','125.162.35.78','2107777870','2107777870','','24','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  118. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('28','dhana','a02d0c8b0f210668578b7df434a87370','b9oQlYBs','YhvXhkiPXo5rFjuObj7a5hzR8fjG1TP6KDWR9WyPMh4gFpyp6e','danaadjah@ymail.com','0','','','','2','','0','','1295081322','1295081474','1295081474','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.52.109','110.137.52.109','1854485613','1854485613','','152','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  119. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('29','./blacknotes','eb96c811b44c443c76f1e8c3fd1f29fa','XbjnuLDO','NDVSzSVy9CBjGuDB8DY3WSyHcfeYUNMLTIZuE2EFDDaHqd2KWh','me_blacknotes@yahoo.com','0','','','','2','','2','','1295097294','1295155145','1295097294','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','0','0','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.108.97','110.137.108.97','1854499937','1854499937','','62','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  120. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('30','belajar','1ffc8a9aa978103f0f3603a5f232ebf0','TXrU1FRH','IInjT6COJkVeYSdZASoegwpQJumsl4qZvvBd7v1gGc2sh4QWsh','driedoankz@ymail.com','0','','','','2','','0','','1311033807','1311071739','1311061539','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','114.79.51.173','114.79.49.84','1917793197','1917792596','','9072','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  121. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('31','Nami Chwan','59182d6d6c934979f0a74dfc74e8039c','JVKhfq9X','r7jCxRoJWza8DEJHzv71XEwi3ECMeVvLrxOB6dHrdksZ3TwmIi','sy4_ms@live.com','0','','','','2','','0','','1311040247','1311040374','1311040247','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.85.77','110.137.85.77','1854494029','1854494029','','127','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  122. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('32','./mbah kompet','1a180a849572395f4f7ed760634fabb2','aOYryi49','76XPe3SDs6ObkWPZ4wWJbFWMX9od4PABIaqsYiSmLc5u1wVjQO','jonrambo137@hotmail.com','1','','','','2','','0','','1311040452','1312478796','1312475535','1312478790','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','202.152.243.217','180.241.149.59','-895945767','-1259236037','','1953','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  123. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('33','HVM99','fac66bce367ead3931364f8e99ba31b5','Cu9YQlK8','9WaqPy7487Z5jEtLLlV4Q2WMUVNW33nZIqaVPpeowdXgeAuBjQ','ary_gitar@yahoo.co.id','3','','','','2','','0','','1311044401','1312482126','1312482122','1312480452','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','2','0','110.137.99.157','125.165.98.167','1854497693','2107990695','','4205','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  124. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('34','HansipNakaL','6c814a174be817accd410a3517cc4919','AdhIYYNa','EidFgjQ3M4kQSRo4xRkiVroU1FHVpWmPoK44DnvYHUiI9u2Chd','abhe_link@ymail.com','0','','','','9','','9','','1311055571','1311072740','1311068758','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','0','0','7','0','2','','','0','0','0','0','','','','33','0','0','180.241.248.248','180.241.248.248','-1259210504','-1259210504','','14620','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  125. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('35','artupas','6c94c033e6eaf016dabc0c2f79c2f321','uT7pPmZd','37FIQxznDJsPJJPNcamOAW4koiD7P7coJ44yeXwBB7HgzYJcQL','tupas@agendosa.com','0','','','','2','','0','','1311061006','1311064454','1311064452','0','','0','','','','','all','','0','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','203.153.217.178','203.153.217.178','-879109710','-879109710','','3481','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  126. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('36','[+]Kresek_Data[+]','5b25428cf1f6883433d753b648de2a19','zdvQIzCc','2WV5jcXZ5ot2dgCBlfoks8obfsyZWEIrJswux28tfVqfLXshrD','ridelwolstenholm@rocketmail.com','1','./uploads/avatars/avatar_36.jpg?dateline=1311076190','59|100','upload','2','','0','','1311067500','1311082649','1311082646','1311068374','','0','','','','','all','W[/font]illing to learn...','1','1','0','0','1','0','1','1','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','110.137.79.78','110.137.79.78','1854492494','1854492494','','15149','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  127. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('37','ChiboobJC','abfa5d71d901f754bc14340e84185937','5u7ZZdpS','aPvTOCtqXnt1aeTRqc7cP3r3ZudAwmPXvhnW8kJpXhQBg3i7pa','chiboob.jatimcreew@yahoo.com','7','http://vocland.com/image.php?u=5&dateline=1308582887?dateline=1312233592','80|80','remote','6','','6','Tukang Sunat','1311144223','1312484315','1312367807','1312478347','http://www.chiboob.us/','0','','roby_loemot16','','26-9-1992','all','[align=center][b][size=xx-large][color=#FF0000]-=[Chiboob-JC]=-[/color][/size][/b][/align]\r\n[align=center][b][size=xx-large][color=#32CD32][>]_[url=http://www.chiboob.us/]Was Here[/url]_[<][/color][/size][/b][/align]','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','0','0','7','0','2','4,3,5,34,33','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','202.152.243.86','67.23.249.220','-895945898','1125644764','','22415','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  128. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('38','newbie-herbet','491dd336922dc3d4cf431e5e707d5b92','Ks4vPnvK','pX9P4fZjjjsJyqPYo9TBQvw3MdUB5HkG7N8yoUjPfUgK3rEeMM','herbet@herbet.us','1','','','','2','','0','','1311158878','1311395732','1311161850','1311159012','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','182.10.182.88','182.14.54.64','-1240811944','-1240582592','','3514','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  129. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('39','thenexthero','74ed12e6cabf77bc4f470ed42602db40','cOSOp78C','qOYB3BSD1SwbIK5iOvHJdPbJSyhFw8rSVv9LvICLusfvYQYhfb','thenexthero@situstarget.com','1','','','','2','','0','','1311175804','1311176018','1311176018','1311175996','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','180.241.253.29','180.241.253.29','-1259209443','-1259209443','','214','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  130. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('40','R353G','2cacb71684222f228522f20f61e47204','vT1OjBGn','tdSyq61cMXSSpu3xsNO6Hx8yT4dZYDKCCZ5wniUOT9wamecJc9','reseg.fahri@gmail.com','36','images/avatars/stimpy.gif?dateline=1311261782','64|64','gallery','2','6','6','̿̿̿̿̿̿̿’̿̿̿̿̿’\\̵͇̿̿\\=(•̪●)=/̵͇̿̿/’̿̿ ','1311259518','1312484316','1312463135','1312483354','','0','','R353G@yahoo.com','','16-2-1989','age','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','0','0','7','0','2','3,1,4,5,13,14,15,16,17,20,21,38,37,36,35,34,32,31,33,29,30,28,27,26,41,42','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','3','0','2','113.212.125.15','124.81.213.100','1909751055','2085737828','','118931','1','1','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  131. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('41','dj4ko','10409da8662cb72d25e89aaccd2283e8','NHbnx2xG','qaVeLDBNw1iYToIMTJlfYjaZUt8VJD3WHbFyjccoN2f3Rz1VND','akbar771@hotmail.com','0','','','','2','','0','','1311281482','1311283920','1311281482','0','','0','','','','','all','','1','0','0','0','1','0','2','0','linear','1','1','1','1','0','0','0','','','7','1','2','','','0','0','0','0','','','','3','0','0','110.139.172.25','110.139.172.25','1854647321','1854647321','','2438','1','1','1','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  132. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('42','Try_it','7976c8272feda5e0bba0df7b9c52c8de','ep2DwbnG','XZzjUSZqg12iUX5AqxfHMPVmWGRi9GU5QyTIXz2zQfW6PTLzK9','sahari.efendi@yahoo.com','0','','','','2','','0','','1311436182','1311436324','1311436182','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','114.4.32.97','114.4.32.97','1912873057','1912873057','','147','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  133. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('43','monika_b66A70C','6211d0fe4ad2bcb228e5967990e6f875','xlzVQNrO','n3Cjc2IR6yBSeNVSKTPnIzSilf1i1lrOSK7UgSpdiEggAdQdgN','monikab66@hotmail.de','0','./uploads/avatars/avatar_43.jpg?dateline=1311873112','64|64','upload','2','','0','','1311787198','1311873112','1311843312','0','http://www.telefonanleitungen.com/','0','','','monikab66@hotmail.de','6-11-1966','all','Ehrlichkeit währt am längsten!','1','1','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','0','0','0','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','184.154.139.217','184.154.139.233','-1197831207','-1197831191','','11','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  134. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('44','hvm90','664d285d6d94c4bbb25fffe7c5989539','kMx7E396','AQa4HdDpOCMbzWtXfpOeiOtehE86JIuOEekMI46GzGCEjUk3AI','sky.angkasa@gmail.com','0','','','','2','','0','','1311789591','1311791269','1311789591','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','33','0','0','27.121.87.219','27.121.87.219','460937179','460937179','','1678','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  135. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('45','troubteteoPs','30f4ff10cfb07dae7512212fa8a4f9c3','yjTbcZFA','BJ3nmrj9Y9qljEztE1pZA5AHUZ2Q4jIBrGQiua2xVOOUAaU6zA','marciniak.kosztynski@gmail.com','1','','','','7','','0','troubteteoPs','1311841732','1312135482','1312023084','1312129456','http://www.plistr.pl','2216625724','','','','1-8-1989','all','','1','1','0','0','1','0','1','1','linear','1','1','1','1','0','0','0','','','-3','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','0','217.114.218.98','85.17.122.3','-646784414','1427208707','','6396','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  136. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('46','HAX.R00T','18e3b9699bce501198a38f0024a3ad50','e7fX488R','UpHE66dBCa2tWyTeyqTv8mx2dQHnUz6ILUNdiOYrkR6va7wOCV','dj_warrior@ymail.com','0','','','','2','','0','','1311870094','1311870621','1311870094','0','','0','','','','','all','','1','1','0','1','1','0','1','1','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','180.178.183.169','180.178.183.169','-1263355991','-1263355991','','527','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  137. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('47','anak bangsa','acb75381d22e5ea06b4301fecdee6991','8Uh9QhNK','RIpeYVXKfOuOtSDRQzVCd6EtRf2vecd4B1stgGy3A9jUiJR3U2','anak_baru70@yahoo.com','0','','','','2','','0','','1311916223','1312308703','1312308703','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','183.91.74.253','103.10.169.253','-1218753795','1728752125','','2071','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  138. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('48','troubteteoPb','d4af5fb7d279c2d62881df7a667ccbce','4L2AQ6Zo','gLMhTisaWfWvbwLpynL2WOU91CrGZpxtCBktDZOn4jMev8xbFI','marciniak.koszt.ynski@gmail.com','6','','','','7','','0','troubteteoPb','1312000068','1312161577','1312000074','1312161336','http://www.plistr.pl','1716625724','','','','1-8-1989','all','','1','1','0','0','1','0','1','1','linear','1','1','1','1','0','0','0','','','-1','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','-2','217.114.218.98','85.17.121.212','-646784414','1427208660','','5182','1','0','0','12','0','0','0','0','0','0','0','0','1','0','','0','0','');
  139. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('49','sohai','a249d4ee91b66694f56483b407043a7e','Ru1iyUkG','i78x3sS2MSCA7NWwXre5lbooWaGPzc7S4W9eQCH7ZQphmFp7Id','sohaihacker@gmail.com','0','','','','2','','0','','1312367288','1312379659','1312367288','0','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','','','0','0','0','110.137.213.128','125.160.236.190','1854526848','2107698366','','12373','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  140. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('50','yuz0k4','400759bfc1bae6c51a07b347f3eda080','NQu3Ce59','upTEtlONIUWqbYNCNEm7UTIpeouHNK9vYJlxswHMfILHIZtsit','emailku008@gmail.com','11','images/avatars/supertux.gif?dateline=1312481060','120|102','gallery','2','','0','','1312478050','1312484314','1312478050','1312482945','','0','','','','','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','1','182.14.87.174','182.14.87.174','-1240574034','-1240574034','','6365','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  141. INSERT INTO pctusers (`uid`,`username`,`password`,`salt`,`loginkey`,`email`,`postnum`,`avatar`,`avatardimensions`,`avatartype`,`usergroup`,`additionalgroups`,`displaygroup`,`usertitle`,`regdate`,`lastactive`,`lastvisit`,`lastpost`,`website`,`icq`,`aim`,`yahoo`,`msn`,`birthday`,`birthdayprivacy`,`signature`,`allownotices`,`hideemail`,`subscriptionmethod`,`invisible`,`receivepms`,`receivefrombuddy`,`pmnotice`,`pmnotify`,`threadmode`,`showsigs`,`showavatars`,`showquickreply`,`showredirect`,`ppp`,`tpp`,`daysprune`,`dateformat`,`timeformat`,`timezone`,`dst`,`dstcorrection`,`buddylist`,`ignorelist`,`style`,`away`,`awaydate`,`returndate`,`awayreason`,`pmfolders`,`notepad`,`referrer`,`referrals`,`reputation`,`regip`,`lastip`,`longregip`,`longlastip`,`language`,`timeonline`,`showcodebuttons`,`totalpms`,`unreadpms`,`warningpoints`,`moderateposts`,`moderationtime`,`suspendposting`,`suspensiontime`,`suspendsignature`,`suspendsigtime`,`coppauser`,`classicpostbit`,`loginattempts`,`failedlogin`,`usernotes`,`akismetstopped`,`mysb_banned`,`mysb_banned_reason`) VALUES ('51','black_kids66','c368458178927e3cab7c5ec6836752b8','s5IVypic','nlSPM8NUb6RBBJAD4YrHtEnPXLkqAuZDkzqhMmK7eAzh3TEgph','black_kids66@yahoo.com','5','./uploads/avatars/avatar_51.jpg?dateline=1312482619','67|100','upload','2','','0','','1312479193','1312484316','1312480014','1312483450','http://blac','0','','black_kids66','','27-4-1990','all','','1','0','0','0','1','0','1','0','linear','1','1','1','1','0','0','0','','','7','0','2','4,3,40,50','','0','0','0','0','','1**Inbox$%%$2**Sent Items$%%$3**Drafts$%%$4**Trash Can','','0','0','1','110.137.49.188','110.137.49.188','1854484924','1854484924','','5170','1','0','0','0','0','0','0','0','0','0','0','0','1','0','','0','0','');
  142. CREATE TABLE `pctusertitles` (
  143. `utid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  144. `posts` int(10) unsigned NOT NULL DEFAULT '0',
  145. `title` varchar(250) NOT NULL DEFAULT '',
  146. `stars` smallint(4) NOT NULL DEFAULT '0',
  147. `starimage` varchar(120) NOT NULL DEFAULT '',
  148. PRIMARY KEY (`utid`)
  149. ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8;
  150. INSERT INTO pctusertitles (`utid`,`posts`,`title`,`stars`,`starimage`) VALUES ('1','0','Registered','1','');
  151. INSERT INTO pctusertitles (`utid`,`posts`,`title`,`stars`,`starimage`) VALUES ('2','10','Neo Member','2','');
  152. INSERT INTO pctusertitles (`utid`,`posts`,`title`,`stars`,`starimage`) VALUES ('3','50','Member','3','');
  153. INSERT INTO pctusertitles (`utid`,`posts`,`title`,`stars`,`starimage`) VALUES ('4','250','Active Member','4','');
  154. INSERT INTO pctusertitles (`utid`,`posts`,`title`,`stars`,`starimage`) VALUES ('5','750','PCT Legend','5','');
  155. INSERT INTO pctusertitles (`utid`,`posts`,`title`,`stars`,`starimage`) VALUES ('6','1000','Dedengkot PCT','6','{theme}/star.gif');
  156. CREATE TABLE `pctwarninglevels` (
  157. `lid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  158. `percentage` int(3) NOT NULL DEFAULT '0',
  159. `action` text NOT NULL,
  160. PRIMARY KEY (`lid`)
  161. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  162. CREATE TABLE `pctwarnings` (
  163. `wid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  164. `uid` int(10) unsigned NOT NULL DEFAULT '0',
  165. `tid` int(10) unsigned NOT NULL DEFAULT '0',
  166. `pid` int(10) unsigned NOT NULL DEFAULT '0',
  167. `title` varchar(120) NOT NULL DEFAULT '',
  168. `points` int(10) unsigned NOT NULL DEFAULT '0',
  169. `dateline` bigint(30) NOT NULL DEFAULT '0',
  170. `issuedby` int(10) unsigned NOT NULL DEFAULT '0',
  171. `expires` bigint(30) NOT NULL DEFAULT '0',
  172. `expired` int(1) NOT NULL DEFAULT '0',
  173. `daterevoked` bigint(30) NOT NULL DEFAULT '0',
  174. `revokedby` int(10) unsigned NOT NULL DEFAULT '0',
  175. `revokereason` text NOT NULL,
  176. `notes` text NOT NULL,
  177. PRIMARY KEY (`wid`)
  178. ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
  179. INSERT INTO pctwarnings (`wid`,`uid`,`tid`,`pid`,`title`,`points`,`dateline`,`issuedby`,`expires`,`expired`,`daterevoked`,`revokedby`,`revokereason`,`notes`) VALUES ('2','48','0','84','Banned','2','1312205621','3','0','0','0','0','','Dont Spamming !!');
  180. INSERT INTO pctwarnings (`wid`,`uid`,`tid`,`pid`,`title`,`points`,`dateline`,`issuedby`,`expires`,`expired`,`daterevoked`,`revokedby`,`revokereason`,`notes`) VALUES ('3','48','0','87','Spamming','10','1312205718','3','0','0','0','0','','Spamming');
  181. CREATE TABLE `pctwarningtypes` (
  182. `tid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  183. `title` varchar(120) NOT NULL DEFAULT '',
  184. `points` int(10) unsigned NOT NULL DEFAULT '0',
  185. `expirationtime` bigint(30) NOT NULL DEFAULT '0',
  186. PRIMARY KEY (`tid`)
  187. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  188.  
  189. ===
  190. download here lol
  191. ===
  192. http://pekanbarucyberteam.net//admin/backups/backup_758c23211bWbwUrkE3hDxuuKKI8tIj1sgVx9XzEyvfj1j5iv7o7Gj72FGMgPOI5L.sql.gz
  193. http://pekanbarucyberteam.net//admin/backups/backup_e31b1919cfkDse4nOhRtxfGSByXIEMi9z8MTxdD9ZmIS4GJ5GGrLHYiREjN1Ia3b.sql.gz
  194.  
  195. bY Al3x 0wn5
  196.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement