Guest User

Untitled

a guest
Dec 12th, 2015
1,391
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 285.29 KB | None | 0 0
  1. -- phpMyAdmin SQL Dump
  2. -- version 4.1.12
  3. -- http://www.phpmyadmin.net
  4. --
  5. -- Host: 127.0.0.1
  6. -- Generation Time: Dec 12, 2015 at 02:25 AM
  7. -- Server version: 5.5.36
  8. -- PHP Version: 5.4.27
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET time_zone = "+00:00";
  12.  
  13.  
  14. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  15. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  16. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  17. /*!40101 SET NAMES utf8 */;
  18.  
  19. --
  20. -- Database: `xat`
  21. --
  22.  
  23. -- --------------------------------------------------------
  24.  
  25. --
  26. -- Table structure for table `admcount`
  27. --
  28.  
  29. CREATE TABLE IF NOT EXISTS `admcount` (
  30. `id` bigint(255) NOT NULL AUTO_INCREMENT,
  31. `username` varchar(255) NOT NULL,
  32. `password` varchar(255) NOT NULL,
  33. `email` varchar(999) NOT NULL,
  34. PRIMARY KEY (`id`)
  35. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
  36.  
  37. --
  38. -- Dumping data for table `admcount`
  39. --
  40.  
  41. INSERT INTO `admcount` (`id`, `username`, `password`, `email`) VALUES
  42. (1, 'lol', '1', 'a@hotmail.com');
  43.  
  44. -- --------------------------------------------------------
  45.  
  46. --
  47. -- Table structure for table `badge`
  48. --
  49.  
  50. CREATE TABLE IF NOT EXISTS `badge` (
  51. `id` varchar(255) NOT NULL,
  52. `chatid` varchar(255) NOT NULL,
  53. `reason` varchar(255) DEFAULT NULL,
  54. UNIQUE KEY `Test` (`reason`)
  55. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  56.  
  57. --
  58. -- Dumping data for table `badge`
  59. --
  60.  
  61. INSERT INTO `badge` (`id`, `chatid`, `reason`) VALUES
  62. ('822', '1', ' test[');
  63.  
  64. -- --------------------------------------------------------
  65.  
  66. --
  67. -- Table structure for table `bans`
  68. --
  69.  
  70. CREATE TABLE IF NOT EXISTS `bans` (
  71. `index` int(255) NOT NULL AUTO_INCREMENT,
  72. `chatid` int(11) NOT NULL,
  73. `userid` varchar(255) NOT NULL,
  74. `unbandate` bigint(255) NOT NULL,
  75. `ip` varchar(15) NOT NULL,
  76. `type` text NOT NULL,
  77. PRIMARY KEY (`index`),
  78. KEY `chatid` (`chatid`)
  79. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
  80.  
  81. --
  82. -- Dumping data for table `bans`
  83. --
  84.  
  85. INSERT INTO `bans` (`index`, `chatid`, `userid`, `unbandate`, `ip`, `type`) VALUES
  86. (1, 1, '815', 2079475064, '127.0.0.1', 'f32768');
  87.  
  88. -- --------------------------------------------------------
  89.  
  90. --
  91. -- Table structure for table `chats`
  92. --
  93.  
  94. CREATE TABLE IF NOT EXISTS `chats` (
  95. `id` int(255) NOT NULL AUTO_INCREMENT,
  96. `name` varchar(255) NOT NULL,
  97. `bg` varchar(255) NOT NULL,
  98. `promo` enum('0','1') NOT NULL,
  99. `desc` varchar(255) NOT NULL,
  100. `outter` text NOT NULL,
  101. `sc` longtext NOT NULL COMMENT 'scroller message',
  102. `ch` int(11) NOT NULL DEFAULT '0',
  103. `email` varchar(255) NOT NULL,
  104. `radio` varchar(255) NOT NULL COMMENT 'radio ip',
  105. `pass` varchar(255) NOT NULL,
  106. `senhachats` varchar(255) NOT NULL,
  107. `cssxat` longtext NOT NULL,
  108. `embedxat` longtext NOT NULL,
  109. `button` text NOT NULL,
  110. `attached` text NOT NULL,
  111. `pool` varchar(255) DEFAULT '0 0 1 2',
  112. `promoted` int(255) NOT NULL,
  113. `blastban` int(11) NOT NULL DEFAULT '1',
  114. `blastde` int(11) NOT NULL DEFAULT '1',
  115. `blastpro` int(11) NOT NULL DEFAULT '1',
  116. `blastkick` int(11) NOT NULL DEFAULT '1',
  117. `botid` int(11) NOT NULL,
  118. `lang` varchar(9999) NOT NULL,
  119. `gline` varchar(255) DEFAULT NULL,
  120. `gcontrol` mediumtext,
  121. `horrorflix` mediumtext,
  122. `winterflix` mediumtext,
  123. `feastflix` mediumtext,
  124. `link` text,
  125. `fairyflix` mediumtext,
  126. `gback` varchar(255) DEFAULT NULL,
  127. `loveflix` mediumtext,
  128. `announce` varchar(255) DEFAULT NULL,
  129. `pools` varchar(255) DEFAULT NULL,
  130. `spookyflix` mediumtext,
  131. `santaflix` mediumtext,
  132. `gsound` mediumtext,
  133. `customlang` mediumtext,
  134. `redirect` mediumtext,
  135. `springflix` mediumtext,
  136. `summerflix` mediumtext,
  137. `repro` text NOT NULL,
  138. `banner` varchar(255) NOT NULL,
  139. PRIMARY KEY (`id`)
  140. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
  141.  
  142. --
  143. -- Dumping data for table `chats`
  144. --
  145.  
  146. INSERT INTO `chats` (`id`, `name`, `bg`, `promo`, `desc`, `outter`, `sc`, `ch`, `email`, `radio`, `pass`, `senhachats`, `cssxat`, `embedxat`, `button`, `attached`, `pool`, `promoted`, `blastban`, `blastde`, `blastpro`, `blastkick`, `botid`, `lang`, `gline`, `gcontrol`, `horrorflix`, `winterflix`, `feastflix`, `link`, `fairyflix`, `gback`, `loveflix`, `announce`, `pools`, `spookyflix`, `santaflix`, `gsound`, `customlang`, `redirect`, `springflix`, `summerflix`, `repro`, `banner`) VALUES
  147. (1, 'Trade', 'http://i.imgur.com/rmqRrd3.jpgdsds', '0', 'Safe Trading of Xats(Coinshhh), sdsdsDays, and Powers Safe Trading of Xats(Coins), Days, and sdsdsdsPowers', 'http://i.imgur.com/rmqRrd3.jpgdsdsds', ' ', 0, 'xatchat@romania.com', 'http://5.196.111.119:2012/aa', '1005610888db364abfa953833a1afe43d3f5ef0d25ce94ca0254d4de7444396e84e7d7a9e59ad7e3c544987fa192e33464549f894c24b338e354c4d7e627cb9b53c78', '', '', '', '#0000FF', '', '0 1 2', 0, 1, 1, 1, 1, 0, '', 'kiss,hug,hello', '', '', '', '', 'emma, aon, dexter', '', '', NULL, 'Welcome ..', '{"m":"Main","t":"Staff","rnk":"7","b":"Banned"}', '', NULL, '', NULL, '', '', '', '', ''),
  148. (2, 'Ajutor', 'http://justdesign.meximas.com/creatii/xatchat.png', '0', 'The official International ixat Chat [all languages] ', '', '', 0, 'xatchat@romania.ro', 'http://5.196.111.119:2012/', 'da7fcad9d26100726a47a15bf5011082f30d5557aqL4zCZDUM9741e7852f42f1273dd5c17dfbeaaa47819d4af69c00fe237f77ae6cbe8f1e57283641144ae2f9bc98ffd908', '', '', '', '#cc0077', 'Trade', '0 1 2', 0, 1, 1, 1, 1, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', ''),
  149. (3, 'Radio24', 'http://i66.tinypic.com/2dhafiu.png', '0', 'Bine ati venit!!!', 'http://i67.tinypic.com/2m7cdvo.png', '', 0, 'raul_nick@yahoo.com', 'http://5.196.111.119:2012/', '648a4584a07c933228a87fd6b49f9b37a90d4YVs44eeecd9ed57615fb331976eb56d88ee635a16e5a5c79da4c9547492ff514a77852b00603264f3a64887189e16ff3', '', '', '', '#00FFFF', '', '0 0 1 2', 0, 1, 1, 1, 1, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '');
  150.  
  151. -- --------------------------------------------------------
  152.  
  153. --
  154. -- Table structure for table `chat_powers`
  155. --
  156.  
  157. CREATE TABLE IF NOT EXISTS `chat_powers` (
  158. `id` int(11) NOT NULL AUTO_INCREMENT,
  159. `chat` varchar(200) NOT NULL,
  160. `usuario` int(11) NOT NULL,
  161. `power` int(11) NOT NULL,
  162. PRIMARY KEY (`id`)
  163. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=56 ;
  164.  
  165. --
  166. -- Dumping data for table `chat_powers`
  167. --
  168.  
  169. INSERT INTO `chat_powers` (`id`, `chat`, `usuario`, `power`) VALUES
  170. (41, 'Ajutor', 1, 114),
  171. (42, 'Ajutor', 1, 130),
  172. (43, 'Ajutor', 1, 126),
  173. (46, 'fabrega', 877, 92),
  174. (47, 'Ajutor', 815, 297),
  175. (49, 'Ajutor', 1, 180),
  176. (50, 'Ajutor', 1, 112),
  177. (51, 'Ajutor', 1, 150),
  178. (52, 'Ajutor', 1, 74),
  179. (53, 'Ajutor', 1, 86),
  180. (54, 'Ajutor', 1, 88),
  181. (55, 'Ajutor', 1, 84);
  182.  
  183. -- --------------------------------------------------------
  184.  
  185. --
  186. -- Table structure for table `epic`
  187. --
  188.  
  189. CREATE TABLE IF NOT EXISTS `epic` (
  190. `id` int(255) NOT NULL DEFAULT '0',
  191. `section` varchar(255) NOT NULL DEFAULT 'p0' COMMENT 'P string index',
  192. `d2` text NOT NULL,
  193. `name` varchar(255) NOT NULL COMMENT 'Power name',
  194. `subid` bigint(20) NOT NULL COMMENT 'ID in the p string',
  195. `cost` int(11) NOT NULL,
  196. `limited` int(1) NOT NULL DEFAULT '0',
  197. `description` varchar(10000) NOT NULL,
  198. `amount` int(255) NOT NULL DEFAULT '0' COMMENT 'Amount to sell',
  199. `topsh` longtext NOT NULL,
  200. `group` varchar(255) NOT NULL,
  201. `grupal` varchar(255) NOT NULL,
  202. `new` varchar(10000) NOT NULL,
  203. `pawns` text NOT NULL,
  204. `rockets` varchar(255) NOT NULL DEFAULT 'http://ixaat12.zapto.org:8090/prev/rocket.png',
  205. PRIMARY KEY (`id`),
  206. KEY `id` (`id`)
  207. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  208.  
  209. --
  210. -- Dumping data for table `epic`
  211. --
  212.  
  213. INSERT INTO `epic` (`id`, `section`, `d2`, `name`, `subid`, `cost`, `limited`, `description`, `amount`, `topsh`, `group`, `grupal`, `new`, `pawns`, `rockets`) VALUES
  214. (35, 'p1', 'Purple Pawn', 'purple', 8, 25000, 1, 'Turn your pawn purple. When this power is enabled you will show as purple on the user list no matter what your status. xat''s first epic power is expensive so will be very rare.', 2, '', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  215. (103, 'p3', 'Name color', 'namecolor', 128, 10000, 0, 'Color your name on the chat box. N.B. you also need nameglow and color epic. EG for a purple name use: (glow#0#800080) or white with black glow: (glow#000001#FFFFFF). <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  216. (130, 'p4', 'Group smiley backs', 'gback', 4, 15000, 0, 'Set a default background for the smilies in your chat. EPIC. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '', '1', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  217. (213, 'p6', 'Toate puterile', 'everypower', 2097152, 268696, 0, '', 0, '', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  218. (289, 'p9', 'Set your status color', 'statuscolor', 2, 5000, 0, 'Change the color of your status!', 0, '', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  219. (328, 'p10', 'Color Text', 'textcolor', 256, 81000, 0, 'rainbow pawn', 0, 'text', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png');
  220.  
  221. -- --------------------------------------------------------
  222.  
  223. --
  224. -- Table structure for table `friends`
  225. --
  226.  
  227. CREATE TABLE IF NOT EXISTS `friends` (
  228. `id` int(11) NOT NULL,
  229. `user` int(11) NOT NULL,
  230. `friend` int(11) NOT NULL
  231. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  232.  
  233. -- --------------------------------------------------------
  234.  
  235. --
  236. -- Table structure for table `gags`
  237. --
  238.  
  239. CREATE TABLE IF NOT EXISTS `gags` (
  240. `id` int(255) NOT NULL,
  241. `userid` int(255) NOT NULL,
  242. `chatid` int(255) NOT NULL,
  243. `type` int(255) NOT NULL
  244. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  245.  
  246. -- --------------------------------------------------------
  247.  
  248. --
  249. -- Table structure for table `games`
  250. --
  251.  
  252. CREATE TABLE IF NOT EXISTS `games` (
  253. `id` int(255) NOT NULL DEFAULT '0',
  254. `section` varchar(255) NOT NULL DEFAULT 'p0' COMMENT 'P string index',
  255. `d2` text NOT NULL,
  256. `name` varchar(255) NOT NULL COMMENT 'Power name',
  257. `subid` bigint(20) NOT NULL COMMENT 'ID in the p string',
  258. `cost` int(11) NOT NULL,
  259. `limited` int(1) NOT NULL DEFAULT '0',
  260. `description` varchar(10000) NOT NULL,
  261. `amount` int(255) NOT NULL DEFAULT '0' COMMENT 'Amount to sell',
  262. `topsh` longtext NOT NULL,
  263. `group` varchar(255) NOT NULL,
  264. `grupal` varchar(255) NOT NULL,
  265. `new` varchar(10000) NOT NULL,
  266. `pawns` text NOT NULL,
  267. `rockets` mediumtext CHARACTER SET latin1 COLLATE latin1_bin NOT NULL,
  268. PRIMARY KEY (`id`),
  269. KEY `id` (`id`)
  270. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  271.  
  272. --
  273. -- Dumping data for table `games`
  274. --
  275.  
  276. INSERT INTO `games` (`id`, `section`, `d2`, `name`, `subid`, `cost`, `limited`, `description`, `amount`, `topsh`, `group`, `grupal`, `new`, `pawns`, `rockets`) VALUES
  277. (134, 'p4', 'DoodleRace game', 'snakeban', 64, 600, 0, 'A snakebanned user has the chance to get out of the ban by completing a snake game. ', 0, 'sncool,sneek,snredface,snconfused,snfrown,snbiggrin,snangry,snsleepy,sncry,snsmile,snwink', '1', '1', '', '', ''),
  278. (140, 'p4', 'MatchRace game', 'matchban', 4096, 1270, 1, 'A matchbanned user has the chance to get out of the ban by completing a smiley matching game .. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '1', '1', '', '', ''),
  279. (188, 'p5', 'Snake race', 'doodlerace', 268435456, 400, 0, 'Start and control the doodlerace game. To start doodleRace, click Games tab, click doodlerace and then type !bot on the chat and then !start to start playing (you dont need bot power for doodlerace) See wiki', 0, '', '1', '1', '', '', ''),
  280. (200, 'p6', 'Space war game', 'spacewar', 256, 1044, 1, 'Shoot and destroy other users planets. LIMITED. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '1', '1', '', '', ''),
  281. (224, 'p7', 'Hearts card game', 'hearts', 1, 500, 0, 'Be game master of a hearts card game. See wiki.', 0, '', '1', '1', '', '', ''),
  282. (238, 'p7', 'Switch card game', 'switch', 16384, 500, 0, 'Be game master of a switch card game. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '1', '1', '', '', ''),
  283. (246, 'p7', 'Dart zing game', 'darts', 4194304, 900, 0, 'Dart wheel zing game that can give prizes. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, 'dart,dartthrow', '1', '1', '', '', ''),
  284. (256, 'p8', 'Whack a zombie game', 'zwhack', 1, 600, 0, 'Use the xat ban hammer to smite those pesky zombies. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, 'mallet', '1', '1', '', '', '');
  285.  
  286. -- --------------------------------------------------------
  287.  
  288. --
  289. -- Table structure for table `group_powers`
  290. --
  291.  
  292. CREATE TABLE IF NOT EXISTS `group_powers` (
  293. `group` varchar(255) NOT NULL,
  294. `power` int(11) NOT NULL,
  295. `assignedBy` varchar(11) NOT NULL,
  296. `count` int(11) NOT NULL DEFAULT '1',
  297. `enabled` enum('0','1') NOT NULL DEFAULT '0'
  298. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  299.  
  300. --
  301. -- Dumping data for table `group_powers`
  302. --
  303.  
  304. INSERT INTO `group_powers` (`group`, `power`, `assignedBy`, `count`, `enabled`) VALUES
  305. ('Trade', 74, '2950', 1, '1'),
  306. ('Trade', 114, '2950', 1, '1'),
  307. ('Trade', 126, '2950', 1, '1'),
  308. ('Trade', 297, '2950', 1, '1'),
  309. ('Trade', 112, '2950', 1, '1'),
  310. ('Trade', 100, '2950', 1, '1'),
  311. ('Trade', 162, '2950', 1, '1'),
  312. ('Trade', 92, '1', 1, '1'),
  313. ('Trade', 96, '1', 1, '1'),
  314. ('Trade', 98, '1', 1, '1'),
  315. ('Trade', 102, '1', 1, '1'),
  316. ('Trade', 104, '1', 1, '1'),
  317. ('Trade', 106, '1', 1, '1'),
  318. ('Trade', 110, '1', 1, '1'),
  319. ('Trade', 118, '1', 1, '1'),
  320. ('Trade', 130, '1', 1, '1'),
  321. ('Trade', 134, '1', 1, '1'),
  322. ('Trade', 136, '1', 1, '1'),
  323. ('Trade', 140, '1', 1, '1'),
  324. ('Trade', 148, '1', 1, '1'),
  325. ('Trade', 152, '1', 1, '1'),
  326. ('Trade', 150, '1', 1, '1'),
  327. ('Trade', 180, '1', 1, '1'),
  328. ('Trade', 188, '1', 1, '1'),
  329. ('Trade', 192, '1', 1, '1'),
  330. ('Trade', 194, '1', 1, '1'),
  331. ('Trade', 200, '1', 1, '1'),
  332. ('Trade', 220, '1', 1, '1'),
  333. ('Trade', 224, '1', 1, '1'),
  334. ('Trade', 238, '1', 1, '1'),
  335. ('Trade', 246, '1', 1, '1'),
  336. ('Trade', 252, '1', 1, '1'),
  337. ('Trade', 256, '1', 1, '1'),
  338. ('Trade', 278, '1', 1, '1'),
  339. ('Trade', 80, '1', 1, '0'),
  340. ('Trade', 84, '1', 1, '0'),
  341. ('Trade', 86, '1', 1, '0'),
  342. ('Trade', 88, '1', 1, '0');
  343.  
  344. -- --------------------------------------------------------
  345.  
  346. --
  347. -- Table structure for table `ids`
  348. --
  349.  
  350. CREATE TABLE IF NOT EXISTS `ids` (
  351. `precio` varchar(255) NOT NULL,
  352. `oportunidades` varchar(10) NOT NULL,
  353. `id` varchar(255) NOT NULL,
  354. `vendedor` varchar(255) NOT NULL,
  355. `ganador` varchar(255) NOT NULL,
  356. `estado` varchar(255) NOT NULL
  357. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  358.  
  359. -- --------------------------------------------------------
  360.  
  361. --
  362. -- Table structure for table `messages`
  363. --
  364.  
  365. CREATE TABLE IF NOT EXISTS `messages` (
  366. `mid` int(11) NOT NULL AUTO_INCREMENT,
  367. `visible` int(1) NOT NULL DEFAULT '1',
  368. `id` varchar(255) NOT NULL,
  369. `uid` varchar(255) NOT NULL,
  370. `message` varchar(255) NOT NULL,
  371. `name` varchar(255) NOT NULL,
  372. `registered` varchar(255) NOT NULL,
  373. `avatar` varchar(255) NOT NULL,
  374. `time` varchar(255) NOT NULL,
  375. `pool` int(255) NOT NULL,
  376. PRIMARY KEY (`mid`)
  377. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  378.  
  379. -- --------------------------------------------------------
  380.  
  381. --
  382. -- Table structure for table `powers`
  383. --
  384.  
  385. CREATE TABLE IF NOT EXISTS `powers` (
  386. `id` int(255) NOT NULL DEFAULT '0',
  387. `section` varchar(255) NOT NULL DEFAULT 'p0' COMMENT 'P string index',
  388. `name` varchar(255) NOT NULL COMMENT 'Power name',
  389. `new` varchar(255) NOT NULL,
  390. `d2` varchar(255) NOT NULL,
  391. `subid` bigint(20) NOT NULL COMMENT 'ID in the p string',
  392. `cost` int(11) NOT NULL,
  393. `rockets` varchar(255) NOT NULL DEFAULT 'http://xat.com/images/apicon.png',
  394. `limited` int(1) NOT NULL DEFAULT '0',
  395. `description` varchar(255) NOT NULL,
  396. `amount` int(255) NOT NULL DEFAULT '0' COMMENT 'Amount to sell',
  397. `topsh` longtext NOT NULL,
  398. `group` varchar(255) NOT NULL,
  399. `pawns` varchar(255) NOT NULL,
  400. `pawn` varchar(255) NOT NULL,
  401. `hats` varchar(255) NOT NULL,
  402. `grupal` int(1) NOT NULL DEFAULT '0',
  403. `poder` varchar(255) NOT NULL,
  404. PRIMARY KEY (`id`),
  405. KEY `id` (`id`)
  406. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  407.  
  408. --
  409. -- Dumping data for table `powers`
  410. --
  411.  
  412. INSERT INTO `powers` (`id`, `section`, `name`, `new`, `d2`, `subid`, `cost`, `rockets`, `limited`, `description`, `amount`, `topsh`, `group`, `pawns`, `pawn`, `hats`, `grupal`, `poder`) VALUES
  413. (0, 'p0', 'allpowers', '', 'Todos poderes', 1, 100, 'http://xat.com/images/apicon.png', 0, 'test', 0, 'allpowers', '', '', '', '', 0, ''),
  414. (1, 'p0', 'topman', '', 'Go to top of section', 2, 200, 'http://xat.com/images/apicon.png', 0, 'Your icon will go to the top of your section (eg moderator/member) even if you have a high id number unless another user also has this power', 0, '', '', '', '', '', 0, ''),
  415. (2, 'p0', 'subhide', '', 'Hide subscriber (Black star)', 4, 100, 'http://xat.com/images/apicon.png', 0, 'Set your star or heart to black (from red) even if you are a subscriber (have days). All other subscriber features still work eg glitter.', 0, '', '', '', '', '', 0, ''),
  416. (3, 'p0', 'mod8', '', 'Moderator ban 8 hours', 8, 500, 'http://xat.com/images/apicon.png', 0, 'On any chat where you are a moderator you will be able to ban for up to 8 hours (up from 6).', 0, '', '', '', '', '', 0, ''),
  417. (4, 'p0', 'zoom', '', 'Zoom avatar on mouse over', 16, 300, 'http://xat.com/images/apicon.png', 0, 'When anybody mouses over your picture it will enlarge so that they can get a better look. Also you can zoom anyones picture on the chat.', 0, '', '', '', '', '', 0, ''),
  418. (5, 'p0', 'nofollow', '', 'Friends can''t follow you', 32, 100, 'http://xat.com/images/apicon.png', 0, 'Normally friends can locate you and follow you around from chat to chat. This power allows you to block them from locating and following you.', 0, '', '', '', '', '', 0, ''),
  419. (6, 'p0', 'invert', '', '', 64, 200, 'http://xat.com/images/apicon.png', 0, 'Make almost any smilie upside down. To make a smilie upside down add #i to the smilie code eg (cd#i). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  420. (7, 'p0', 'mirror', '', '', 128, 100, 'http://xat.com/images/apicon.png', 0, 'Mirror almost any smilie left to right. To make a smilie mirror add #m to the smilie code eg (cd#m). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  421. (8, 'p0', 'noaudies', '', '', 256, 10, 'http://xat.com/images/apicon.png', 0, 'Turns off the audies sound effects. Any messages with an audie will just beep like any other message. Audies still work if you click on them.', 0, '', '', '', '', '', 0, ''),
  422. (9, 'p0', 'reghide', '', '', 512, 100, 'http://xat.com/images/apicon.png', 0, 'Remove your star or heart so that you show on the user list like an unregistered user. All other subscriber features still work eg glitter.', 0, '', '', '', '', '', 0, ''),
  423. (10, 'p0', 'nopc', '', '', 1024, 200, 'http://xat.com/images/apicon.png', 0, 'Block incoming PC (private chat) from all users except friends. You can still initiate a PC. Owners, Mods and xat staff can always PC you.', 0, '', '', '', '', '', 0, ''),
  424. (11, 'p0', 'tempmod', '', '', 2048, 250, 'http://xat.com/images/apicon.png', 0, 'NOTE YOU HAVE TO BE AN OWNER TO USE THIS POWER! Make a user a moderator from 1 minute to 24 hours. To use private chat the user and send him a message like /m2.5 which in this case would make him a moderator for 2 hours 30 minutes.', 0, '', '', '', '', '', 0, ''),
  425. (12, 'p0', 'hat', '', '', 4096, 100, 'http://xat.com/images/apicon.png', 0, 'For a Turkish cap or baseball hat use (hat#t#FF0000). For a US football helmet use (hat#f#000080). You can use any color with a hex code. More hats will be added. Some hats may only available for holidays.', 0, '', '', '', '', '', 0, ''),
  426. (13, 'p0', 'red', '', '', 8192, 150, 'http://xat.com/images/apicon.png', 0, 'Color any "yellow" smilie red. To make a smilie red add #r to the smilie code eg (d#r). If you have multiple color powers you can create custom colored smilies. Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  427. (14, 'p0', 'green', '', '', 16384, 150, 'http://xat.com/images/apicon.png', 0, 'Color any yellow smilie green. To make a smilie green add #g to the smilie code eg (d#g). If you have multiple color powers you can create custom colored smilies. Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  428. (15, 'p0', 'blue', '', '', 32768, 150, 'http://xat.com/images/apicon.png', 0, 'Color any yellow smilie blue. To make a smilie blue add #b to the smilie code eg (d#b). If you have multiple color powers you can create custom colored smilies. Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  429. (16, 'p0', 'light', '', '', 65536, 150, 'http://xat.com/images/apicon.png', 0, 'Light/Dark any "yellow" smilie. To make a smilie lighter add pluses to the smilie #+++, darker add minuses #---- to the smilie code. If you have multiple color powers you can create custom colored smilies. Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  430. (17, 'p0', 'heart', '', '', 131072, 664, 'http://xat.com/images/apicon.png', 1, 'Give a heart shape to any "yellow" smilie. To make a heart smilie add #h to the smilie code eg (biggrin#h). If you have color powers you can change the color. EG for a pink heart use: (love#h#ff99ff). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  431. (18, 'p0', 'shuffle', '', '', 262144, 25, 'http://xat.com/images/apicon.png', 0, 'Selects a random picture from a strip of pictures you specify. Set your avatar to be a horizontal strip of square pictures and a random picture will be shown with each message. Tool to help make a strip.', 0, '', '', '', '', '', 0, ''),
  432. (19, 'p0', 'animate', '', '', 524288, 400, 'http://xat.com/images/apicon.png', 0, 'Make an animated avatar from a strip of pictures you specify. Set your avatar to be a horizontal strip of square pictures and an animation will be shown as your avatar. You can convert animated GIFs to picture strips here', 0, '', '', '', '', '', 0, ''),
  433. (20, 'p0', 'square', '', '', 1048576, 100, 'http://xat.com/images/apicon.png', 0, 'Give a cyan square shape to any "yellow" smilie. To make a cyan square smilie add #s to the smilie code eg (smile#s). If you have color powers you can change the color. EG for purple use: (biggrin#s#800080). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  434. (21, 'p0', 'nameglow', '', '', 2097152, 400, 'http://xat.com/images/apicon.png', 0, 'Give a neon glow to your name on the chat box. To add a green glow add (glow) to the end of your name. If you have color powers you can add a custom colored glow. EG for red use: (glow#r) or white use: (glow#FFFFFF)', 0, '', '', '', '', '', 0, ''),
  435. (22, 'p0', 'cycle', '', '', 4194304, 500, 'http://xat.com/images/apicon.png', 0, 'Give a cycle of rainbow colors to any "yellow", heart or square smilie. To make an cycle smilie add #y to the smilie code. EG (smile#y). To make a heart smiley cycle use: (wink#h#y), To make a square smiley cycle use: (frown#s#y). Works with ( ) Smilies o', 0, '', '', '', '', '', 0, ''),
  436. (23, 'p0', 'hexagon', '', '', 8388608, 100, 'http://xat.com/images/apicon.png', 0, 'Give a pink hexagon shape to any "yellow" smilie. To make a pink hexagon smilie add #x to the smilie code eg (smile#x). If you have color powers you can change the color. EG for purple use: (biggrin#x#800080). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  437. (24, 'p0', 'clear', '', '', 16777216, 5000, 'http://xat.com/images/apicon.png', 0, 'Give a clear background to any "yellow" smilie. To make a clear smilie add #c to the smilie code eg (smile#c). Works with () smilies only.', 2, '', '', '', '', '', 0, ''),
  438. (25, 'p0', 'boot', '', '', 33554432, 10240, 'http://xat.com/images/apicon.png', 1, 'NOTE YOU HAVE TO BE AN OWNER OR MODERATOR TO USE THIS POWER! Boot a user to another chat. To boot click on the user and choose kick, there is a box to enter the group to kick them to e.g. "Illusion". If you boot people to inappropriate rooms or otherwise ', 0, '', '', '', '', '', 0, ''),
  439. (26, 'p0', 'octogram', '', '', 67108864, 150, 'http://xat.com/images/apicon.png', 0, 'Give a light green octogram shape to any "yellow" smilie. To make a octogram smilie add #o to the smilie code eg (smile#o). If you have color powers you can change the color. EG for purple use: (biggrin#o#800080). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  440. (27, 'p0', 'show', '', '', 134217728, 50, 'http://xat.com/images/apicon.png', 0, 'Allow other users to see your xats and days. Xats and days will appear on the powers dialog', 0, '', '', '', '', '', 0, ''),
  441. (28, 'p0', 'superkick', '', '', 268435456, 130, 'http://xat.com/images/apicon.png', 0, 'Allows you to Kick lower ranks. Main Owners can kick Owners, Owners can kick mods and Members can kick banned members and BANNED guests. If you have boot power you can boot lower ranks as well!', 0, '', '', '', '', '', 0, ''),
  442. (29, 'p0', 'invisible', '', '', 536870912, 300, 'http://xat.com/images/apicon.png', 0, 'NOTE: YOU MUST BE AN OWNER TO USE THIS POWER! Become invisible and show your status as offline/not present and still see the chat messages. To enable this power, have it checked it in the powers box. When you first turn up on a chat you will be invisible,', 0, '', '', '', '', '', 0, ''),
  443. (30, 'p0', 'pink', '', '', 1073741824, 500, 'http://xat.com/images/apicon.png', 0, 'Turn your pawn pink. When this power is enabled you will show as pink on the user list. NOTE: YOU MUST BE A GUEST, MEMBER OR OWNER IN MODE TO USE THIS POWER', 0, '', '', '', '', '', 0, ''),
  444. (32, 'p1', 'guestself', '', '', 1, 250, 'http://xat.com/images/apicon.png', 0, 'Type /g in the main chat to turn yourself into a guest. Useful if you don''t want to be a member on a chat or you want to resign as mod or not be main owner for a while. NOTE: If you de-owner yourself make sure you can get it back!', 0, '', '', '', '', '', 0, ''),
  445. (33, 'p1', 'sinbin', '', '', 2, 300, 'http://xat.com/images/apicon.png', 0, 'NOTE YOU HAVE TO BE AN OWNER TO USE THIS POWER! Strip a moderator of kick and ban power from 1 minute to 24 hours. To use private chat the user and send him a message like /n2.5 which in this case would sinbin for 2 hours 30 minutes.', 0, '', '', '', '', '', 0, ''),
  446. (34, 'p1', 'diamond', '', '', 4, 820, 'http://xat.com/images/apicon.png', 1, 'Give a purple diamond shape to any "yellow" smilie. To make a diamond smilie add #d to the smilie code eg (smile#d). If you have color powers you can change the color. EG for red use: (biggrin#d#FF0000). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  447. (35, 'p1', 'purple', '', '', 8, 25000, 'http://xat.com/images/apicon.png', 0, 'Turn your pawn purple. When this power is enabled you will show as purple on the user list no matter what your status. xat''s first epic power is expensive so will be very rare.', 2, '', '', '', '', '', 0, ''),
  448. (36, 'p1', 'ttth', '', '', 16, 400, 'http://xat.com/images/apicon.png', 0, 'Send a giant smiley kiss (for free) and ignore someone you don''t want to talk to in one step. Type /t in the message or /tMessage#smiley.', 0, '', '', '', '', '', 0, ''),
  449. (37, 'p1', 'hands', '', '', 32, 300, 'http://xat.com/images/apicon.png', 0, 'Put hands on other "yellow" smilies. Set different actions and mix/match for interesting combos. To make a biggrin doing loser use (biggrin#loser). To make a d smilie with thumbsup moving rotating at the wrist use (d#thumbsup#wrist). See wiki for more.', 0, 'loser,rockon,palms,thumbsup,thumbsdown,flip,shh,bye,hug,clap,backoff,hehe,hmm,crazy,ono,shrug', '', '', '', '', 0, ''),
  450. (38, 'p1', 'hairm', '', '', 64, 150, 'http://xat.com/images/apicon.png', 0, 'Put male hair styles on "yellow" smilies. To make a confused with a male hair style use (confused#hairm). If you have color powers, the hair can be colored e.g. (confused#hairm2#rg) or (confused#hairm3#800080). It can also be used with other powers such a', 0, 'hairm2,hairm3,emo,nrd,punk', '', '', '', '', 0, ''),
  451. (39, 'p1', 'hairf', '', '', 128, 200, 'http://xat.com/images/apicon.png', 0, 'Put female hair styles on "yellow" smilies. To make a confused with a female hair style use (confused#hairf). If you have color powers, the hair can be colored e.g. (confused#hairf2#rg) or (confused#hairf3#800080). It can also be used with other powers su', 0, 'hairf2,hairf3,hairf4,g1,goth', '', '', '', '', 0, ''),
  452. (40, 'p1', 'fade', '', '', 256, 1520, 'http://xat.com/images/apicon.png', 1, 'Give a ghost like fade effect to any "yellow" smilie. To make a smilie fade add #f to the smilie code eg (smile#f).', 0, 'noface', '', '', '', '', 0, ''),
  453. (41, 'p1', 'gag', '', '', 512, 1240, 'http://xat.com/images/apicon.png', 1, 'Allows you to gag guests and members for up to an hour, assuming you have the necessary rank to ban. To gag someone click on them and press ban, select the duration and reason and press the gag button.', 0, '', '', '', '', '', 0, ''),
  454. (42, 'p1', 'costumes', '', '', 1024, 300, 'http://xat.com/images/apicon.png', 0, 'Put costumes on "yellow" smilies. To make a confused with a jester hat use (confused#jester). If you have color powers, the costumes can be colored e.g. (confused#cb#g) or (confused#ninja#800080). It can also be used with other powers such as hands. The p', 0, 'ninja,cb,police,nurse,jester,sphinx,dhat,crown,partyhat,facemask,sherlock,prop,grad,dunce2,straw,ribbon', '', '', '', '', 0, ''),
  455. (43, 'p1', 'six', '', '', 2048, 2360, 'http://xat.com/images/apicon.png', 1, 'Turn your "yellow" smilies into devils. To make a devil smilie use (cry2#6). To use it with the pitchfork use (cry2#r#six). It can be used with the smilie option mode: To use devils smilies for all your yellows type /o6 in to the chatbox, to return to nor', 0, '', '', 'C:p1six', '', '', 0, ''),
  456. (44, 'p1', 'dood', '', '', 4096, 250, 'http://xat.com/images/apicon.png', 0, 'Allows you to import images into doodle. Load a doodle you have been working on before, load a background or load a picture to draw on. To import an image, post the url to the image (direct link for photobucket) into the chat box and press the new Load bu', 0, '', '', '', '', '', 0, ''),
  457. (45, 'p1', 'angel', '', '', 8192, 13230, 'http://xat.com/images/apicon.png', 1, 'Add wings, a halo, a cloud and prayer hands to any yellow smiley. For example to add all the effects use (angel#angel#halo#cloud#pray).', 0, 'halo,cloud,pray', '', 'a:p1angel', '', '', 0, ''),
  458. (46, 'p1', 'mute', '', '', 16384, 560, 'http://xat.com/images/apicon.png', 0, 'FOR OWNERS ONLY! Allows you to silent ban a user. This will ban a user wihout them knowing. To mute a user click on their name and press ban, select the duration and press\nthe mute button. NOTE: the max time to mute a user is 1 hour.', 0, '', '', '', '', '', 0, ''),
  459. (47, 'p1', 'radio', '', '', 32768, 250, 'http://xat.com/images/apicon.png', 0, 'Take radio stations with you as you visit different chat groups. Support your favorite radio stations by sharing them with your fellow chatters, if anyone clicks on your radio smilie they will tune in as well. See wiki for more.', 0, '', '', '', '', '', 0, ''),
  460. (48, 'p1', 'fruit', '', '', 65536, 711, 'http://xat.com/images/apicon.png', 1, 'Give a fruity background to any "yellow" smilie. Eg (smile#fruit) (d#apple) (yum#pear) (eek#orange) (wink#plum) (hello#lemon). Works with () smilies only.', 0, 'apple,lemon,pear,orange,plum,banana', '', '', '', '', 0, ''),
  461. (49, 'p1', 'sport', '', '', 131072, 400, 'http://xat.com/images/apicon.png', 1, 'Support your team! Add sport effects to yellow smilies - #shirt, #football, #soccer, #ball, #bb, #sport, #shirts, #foam, #weight. See wiki for more.', 0, 'shirt,soccer,football,shirts,ball,bb,foam,weight,trophy,helmet,cupw', '', '', '', '', 0, ''),
  462. (50, 'p1', 'num', '', '', 262144, 400, 'http://xat.com/images/apicon.png', 0, 'Add 1-3 letters or numbers to some smilies. Examples: (l#num#numi♥u) (noface#num#num8). Note may need other powers for all effects. See wiki for more', 0, '', '', '', '', '', 0, ''),
  463. (51, 'p1', 'hush', '', '', 524288, 350, 'http://xat.com/images/apicon.png', 0, 'Hush a chat. Stop everyone on a chat talking so you can make an announcement etc. Eg /hm60Announcement! See wiki. NOTE THIS IS AN OWNER POWER. THIS POWER WILL NOT BE LIMITED', 0, '', '', '', '', '', 0, ''),
  464. (52, 'p1', 'halloween', '', '', 1048576, 667, 'http://xat.com/images/apicon.png', 1, 'Halloween smilies and effects. Smileys are: (halloween) (ghost) (grim) (tomb) (bat) (pkn) (cdn) (mmy) (frk) (wh). This power will be limited but there will be a chance for all to buy. See wiki for details', 0, 'pknlaugh,tort,pkn,wh,frk,mmy,cdn,grim,tomb,bat,ghost,dig,die', '', '', '', '', 0, ''),
  465. (53, 'p1', 'anime', '', '', 2097152, 300, 'http://xat.com/images/apicon.png', 0, 'Anime smilies, tops, hairstyles and accessories. 22 in all! E.g. (anime) (headband) (fan) (tear) (haira1). See wiki for details', 0, 'hypno,dizzy,rage,headband,fan,comeon,grin,grump,tear,awe,doh,pouty,maniac,squint,ahhh,quiver,haira1,haira2,haira3,haira4,haira5,astro,haira6,haira7,haira8,haira9,haira10', '', '', '', '', 0, ''),
  466. (54, 'p1', 'status', '', '', 4194304, 400, 'http://xat.com/images/apicon.png', 0, 'Show a status message under your name on the chat. To use type $status=Having breakfast in the chat. See wiki for details', 0, '', '', '', '', '', 0, ''),
  467. (55, 'p1', 'thanksgiving', '', '', 8388608, 200, 'http://xat.com/images/apicon.png', 1, 'Thanksgiving themed smilies. Smileys are: (pilgrimm) (pilgrimf) (indian) (indian2) (indian3) (chef) (dining) (eatleg) (feast). This power will be limited.', 0, 'pilgrimm,pilgrimf,indian,indian2,indian3,chef,dining,feast2,eatleg', '', '', '', '', 0, ''),
  468. (56, 'p1', 'snowy', '', '', 16777216, 404, 'http://xat.com/images/apicon.png', 1, 'Use snowflake backgrounds for smiles eg (d#snowy). Add snow to yellow smilies: (d#snows). Use the Snowy kiss and glitter.', 0, 'snows', '', '', '', '', 0, ''),
  469. (57, 'p1', 'christmas', '', '', 33554432, 2290, 'http://xat.com/images/apicon.png', 1, '26 seasonal smilies and effects eg (scarf) (give) (shiver) (wreath) (sball) (xb1) (tree). See wiki for details', 0, 'beard,bell,cane,ches,elf,give,pole,sack,sball,scarf,sdeer,sfeet,shiver,sledge,slist,smound,spull,stock,tree,wreath,xb1,xb4,skiss,bulb,sgift', '', '', '', '', 0, ''),
  470. (58, 'p1', 'count', '', '', 67108864, 200, 'http://xat.com/images/apicon.png', 0, 'Countdown timer, shows time remaining until a specified event e.g. New Year. Mechanical and LED styles. See wiki for details', 0, '', '', '', '', '', 0, ''),
  471. (59, 'p1', 'stick', '', '', 134217728, 300, 'http://xat.com/images/apicon.png', 0, 'Create your own custom animated stickmen and use them on the chat box as smilies and avatars. See wiki for details', 0, '', '', '', '', '', 0, ''),
  472. (60, 'p1', 'dx', '', '', 268435456, 98, 'http://xat.com/images/apicon.png', 0, 'Allows you to convert some of your days to xats. Note when you use the power it goes. Convert now!', 0, '', '', '', '', '', 0, ''),
  473. (61, 'p1', 'tempmem', '', '', 536870912, 210, 'http://xat.com/images/apicon.png', 0, 'Make a guest into a member for 1 minute up to 24 hours. To use, private chat the guest and send /mb2.5 which would make a member for 2 hours 30 minutes. THIS POWER WILL NOT BE LIMITED', 0, '', '', '', '', '', 0, ''),
  474. (62, 'p1', 'valentine', '', '', 1073741824, 2900, 'http://xat.com/images/apicon.png', 1, 'Valentine smilies, (beat) (bheart) (cupid) (card) (hug2) (hug3) (ilu) (lhand) (ring) (rose) (rose2) (valentine)\n See wiki for details', 0, 'beat,bheart,cupid,card,hug2,hug3,ilu,lhand,ring,rose,rose2', '', '', '', '', 0, ''),
  475. (64, 'p2', 'blueman', '', '', 1, 1000, 'http://xat.com/images/apicon.png', 0, 'Turn your pawn dark blue. When this power is enabled you will show as dark blue on the user list if you are a guest or member. NOTE: YOU MUST BE A GUEST, MEMBER OR OWNER IN $TEALTH MODE TO USE THIS POWER!', 0, '', '', '', '', '', 0, ''),
  476. (65, 'p2', 'party', '', '', 2, 200, 'http://xat.com/images/apicon.png', 0, 'Have a party on xat with party smilies: (balloon) (bride) (cake) (clink) (dance) (dance2) (dance3) (groom) (photo) (popper) (toast) (phat). See wiki for details', 0, 'balloon,bride,cake,phat,clink,pdance,pdance2,pdance3,groom,photo,popper,toast', '', '', '', '', 0, ''),
  477. (66, 'p2', 'irish', '', '', 4, 800, 'http://xat.com/images/apicon.png', 1, 'Celebrate St Patrick''s day with these smilies: (irish) (clover2) (drink) (igirl) (iman) (pot) (rainbow) (shi) (tap). $WIKI', 0, 'clover2,drink,igirl,iman,pot,rainbow,shi,tap,drum,bagpipes', '', '', '', '', 0, ''),
  478. (67, 'p2', 'flashrank', '', '', 8, 700, 'http://xat.com/images/apicon.png', 0, 'Make your pawn fade between your pawn color power (purple, pink, blueman) and your rank on the chat. Mods can make use of pink and blueman powers if they have flashrank.', 0, '', '', '', '', '', 0, ''),
  479. (68, 'p2', 'easter', '', '', 16, 270, 'http://xat.com/images/apicon.png', 1, 'Celebrate Easter with these smilies: (easter) (basket) (bunny) (bunny2) (chick) (egg2) (eggb) (paintegg). $WIKI', 0, 'basket,bunny,bunny2,chick,egg2,eggb,paintegg', '', '', '', '', 0, ''),
  480. (69, 'p2', 'nopm', '', '', 32, 150, 'http://xat.com/images/apicon.png', 0, 'Block incoming PMs (private messages) from all users except friends. Owners, Mods and xat staff can always PM you. $WIKI', 0, '', '', '', '', '', 0, ''),
  481. (70, 'p2', 'banish', '', '', 64, 300, 'http://xat.com/images/apicon.png', 1, 'Users who are banned for more than 1 hour will be banished i.e. can''t see the messages, members or guests $WIKIP', 0, '', '1', '', '', '', 0, ''),
  482. (71, 'p2', 'circus', '', '', 128, 250, 'http://xat.com/images/apicon.png', 0, 'Roll up, roll up, the circus is in town. Get your ticket for the Cirque du xat. e.g. (juggler) (firewand) (acrobat) (splat). 16 in all. $WIKI', 0, 'acrobat,balloonart,cannon,clown,eleride,fireblow,firewand,highwire,uniwire,juggler,lion,splat,tamer,uni,unirope,wheel', '', '', '', '', 0, ''),
  483. (72, 'p2', 'gkaoani', '', '', 256, 1000, 'http://xat.com/images/apicon.png', 1, 'Lets any subs, on the group you assign it to, use the 30 kaoani style smilies. It includes kaoani versions of many classic smilies and new expressions. The owner of the power can also use the kaoani back in a combo on any chat e.g. (redface#gkaoani). Not ', 0, 'kbiggrin,kclap,kconfused,kcool,kcrying,kdizzy,keek,keyerub,kfit,kfrown,kglare,khehe,khello,khug,kkiss,klove,kmad,kmischief,knod,krant,kredface,ksad,ksleepy,ksmile,ksmirk,kstraight,kstruggle,ktongue,kun,kwink', '1', '', '', '', 0, ''),
  484. (73, 'p2', 'military', '', '', 512, 594, 'http://xat.com/images/apicon.png', 1, 'Military themed smilies. Smileys are: (camo) (coastguard) (drillserg) (gasmask) (m1h) (marine) (pilot) (sailor) (sailor2) (salute) (smoke) (military#w2). This power will be limited.', 0, 'camo,coastguard,drillserg,gasmask,m1h,marine,pilot,sailor,sailor2,salute,smoke', '', '', '', '', 0, ''),
  485. (74, 'p2', 'gline', '', '', 1024, 900, 'http://xat.com/images/apicon.png', 0, 'Lets a chat owner change the smilie line to a set of smilies of their choosing. The smilies must be non-combos available to all, group smilie powers like gkaoani can be used. Not limited. ', 0, '', '1', '', '', '', 1, ''),
  486. (75, 'p2', 'bump', '', '', 2048, 200, 'http://xat.com/images/apicon.png', 0, 'Bump is used to draw a friends attention to a private chat tab, by shaking the chat box, playing a sound and turning the padlock red. You can bump friends and if mod or above, people of lower rank. $WIKI', 0, '', '', '', '', '', 0, ''),
  487. (76, 'p2', 'gkaliens', '', '', 4096, 3620, 'http://xat.com/images/apicon.png', 1, 'Lets anyone, on the group you assign it to, use the kalien style smilies. The owner of the power can also use the kalien back in a combo on any chat e.g. (redface#gkaliens). LIMITED. ', 0, 'kachat,kacrazy,kafang,kafill,kagab,kagrin,kagsp,kalook,kao,kaoo,kapunch,kaswt,katalk,katear,katears,kaum,kaupset,kawink', '1', '', '', '', 0, ''),
  488. (77, 'p2', 'scifi', '', '', 8192, 733, 'http://xat.com/images/apicon.png', 1, 'Science fiction smilies: (scifi) (alienb) (alien2) (beam) (borg) (cylon) (jetpack) (laser) (ufo) (vial) (vr). Limited. $WIKI', 0, 'alien2,alienb,beam,blob,borg,cylon,jetpack,laser,vial,vr,ufo', '', '', '', '', 0, ''),
  489. (78, 'p2', 'supporter', '', '', 16384, 100, 'http://xat.com/images/apicon.png', 0, 'Support your favorite group by assigning this power. Includes supporter smilies: (supporter) (cheerleader) (horn) (pennant) (corndog). $WIKIP', 0, 'cheerleader,horn,pennant,corndog,vuvu', '1', '', '', '', 0, ''),
  490. (79, 'p2', 'tempown', '', '', 32768, 350, 'http://xat.com/images/apicon.png', 0, 'Make a mod into an owner for 1 minute up to 24 hours. To use, private chat the mod and send /mo5.5 which would make an owner for 5 hours 30 minutes. Not limited. $WIKI', 0, '', '', '', '', '', 0, ''),
  491. (80, 'p2', 'gcontrol', '', '', 65536, 500, 'http://xat.com/images/apicon.png', 1, 'Set who can ban who, can set the scroller, how long mods can ban for and much more. See wiki', 0, '', '1', '', '', '', 0, ''),
  492. (81, 'p2', 'tickle', '', '', 131072, 1000, 'http://xat.com/images/apicon.png', 0, '', 0, '', '', '', '', '', 0, ''),
  493. (82, 'p2', 'sea', '', '', 262144, 300, 'http://xat.com/images/apicon.png', 0, 'sea themed smilies. Try out these smilie option codes: /o#diver#weed#bubbles#w20_20 and /o#fish#weed#bubbles#w16_20 this will make all your () smilies have the combo effect. To cancel just type /o $WIKIP', 0, 'fish,fish2,fish3,bubbles,crab,diver,dolphin,jellyfish,octopus,shrimp,starfish,turtle,weed', '1', '', '', '', 0, ''),
  494. (83, 'p2', 'silly', '', '', 524288, 200, 'http://xat.com/images/apicon.png', 0, 'Silly smilies: (silly) (bonk) (burp) (crazy2) (dopey) (impact) (irked) (itchy) (mischief2) (nose) (raspberry) (rolleye) (spit) (string). ', 0, 'bonk,burp,crazy2,dopey,impact,irked,itchy,mischief2,nose,raspberry,rolleye,spit,string', '', '', '', '', 0, ''),
  495. (84, 'p2', 'blastpro', '', '', 1048576, 400, 'http://xat.com/images/apicon.png', 0, 'BlastPro shows animations when someone on the chat gets promoted e.g member to moderator. 2 BlastPros assigned unlocks a second animation, 4 unlocks a third. ', 0, '', '1', '', '', '', 0, ''),
  496. (85, 'p2', 'flag', '', '', 2097152, 250, 'http://xat.com/images/apicon.png', 0, 'Over 180 flags with flapping animation. Support your team or country. Not limited. See wiki', 0, '', '', '', '', '', 0, ''),
  497. (86, 'p2', 'blastban', '', '', 4194304, 500, 'http://xat.com/images/apicon.png', 0, 'BlastBan is a GROUP power that shows animations when someone on the chat gets banned. 2 BlastBans assigned unlocks a second animation, 4 unlocks a third, 8 unlocks a forth. $WIKIP', 0, '', '1', '', '', '', 0, ''),
  498. (87, 'p2', 'independence', '', '', 8388608, 316, 'http://xat.com/images/apicon.png', 1, 'Celebrate USA / Independence Day with these smilies: (independence) (abe) (bbq) (flagwave) (fwlaunch) (glowstick) (liberty) (sparkler) (starburst) (starbounce) (starring) (tiphat) (usface) (usss). LIMITED. $WIKI', 0, 'abe,bbq,flagwave,fwlaunch,glowstick,liberty,sparkler,starbounce,starburst,starring,tiphat,usface,usss', '', '', '', '', 0, ''),
  499. (88, 'p2', 'blastde', '', '', 16777216, 3080, 'http://xat.com/images/apicon.png', 1, 'BlastDe is a GROUP power that shows animations when someone on the chat gets a lower rank. 2 BlastDes assigned unlocks a second animation, 4 unlocks a third, 8 unlocks a forth. LIMITED. $WIKIP', 0, '', '1', '', '', '', 0, ''),
  500. (89, 'p2', 'summer', '', '', 33554432, 165, 'http://xat.com/images/apicon.png', 1, 'Have fun in the sun.(summer) (beachbbq) (cooler) (efan) (fishing) (frisbee) (goggles) (kayak) (laytowl) (pina) (sanddig) (sandplay) (bands) (towl) (waterbottle) (waterskii) LIMITED.', 0, 'beachbbq,cooler,efan,fishing,frisbee,goggles,kayak,laytowl,pina,sanddig,sandplay,bands,towl,waterbottle,waterskii', '', '', '', '', 0, ''),
  501. (90, 'p2', 'bad', '', '', 67108864, 200, 'http://xat.com/images/apicon.png', 1, 'A GROUP power that allows you to add your own bad words to the bad words filter. Bonus smilies included. $WIKIP', 0, 'biker,slingshot,thief,fbomb,liar', '1', '', '', '', 0, ''),
  502. (91, 'p2', 'rapid', '', '', 134217728, 280, 'http://xat.com/images/apicon.png', 0, 'ignore, unban, ban, gag, mute, member and guest with one mouse click. $WIKI', 0, '', '', '', '', '', 0, ''),
  503. (92, 'p2', 'horror', '', '', 268435456, 340, 'http://xat.com/images/apicon.png', 1, 'A GROUP power that allows you to add flix (background animations) to your chat. Bonus horror smilies included. Also for halloween only seasonal pawns for the chat. $WIKIP', 0, 'mist,franken,goblin,knife,pkncut,spider,triclops,vamp,warewolf', '1', '', '', '', 1, ''),
  504. (93, 'p2', 'mint', '', '', 536870912, 100, 'http://xat.com/images/apicon.png', 0, 'Set a minimum transfer amount you will accept. When active, each mint power raises the transfer limit by 50 xats or 4 days. Also includes bonus smilies (lob) (hit) (dodge) (moring) (mobounce). $WIKI', 0, 'hit,dodge,lob,mobounce,moring', '', '', '', '', 0, ''),
  505. (94, 'p2', 'blastkick', '', '', 1073741824, 300, 'http://xat.com/images/apicon.png', 0, 'BlastKick is a GROUP power that shows animations when someone on the chat gets kicked. 2 BlastKicks assigned unlocks a second animation, 4 unlocks a third, 8 unlocks a forth. $WIKIP', 0, '', '', '', '', '', 0, ''),
  506. (96, 'p3', 'winter', '', '', 1, 500, 'http://xat.com/images/apicon.png', 0, '24 winter and christmas smilies and up to 6 flix backgrounds (needs up to 32 assigned). $WIKIP', 0, 'carolers,decortree,giftdrop,giftrattle,gingerbread,pullsled,antler,shovel,accident,snowboard,snowfight,snowm,xface,snowmobile,ornament,earmuffs,snowglobe,cold,freezing,snowover,snowangel,windy,icecube', '1', '', '', '', 1, ''),
  507. (97, 'p3', 'adventure', '', '', 2, 1060, 'http://xat.com/images/apicon.png', 1, 'Adventure themed smilies: (adventure) (campfire) (canopy) (compass) (firstaid) (hangglider) (hunting) (lantern) (map) (marshmallow) (iceaxe) (swing) (waterskiing) (zipline) (smokes) LIMITED. $WIKI', 0, 'campfire,canopy,compass,firstaid,hangglider,hunting,lantern,map,marshmallow,iceaxe,swing,waterskiing,zipline,smokes', '', '', '', '', 0, ''),
  508. (98, 'p3', 'feast', '', '', 4, 575, 'http://xat.com/images/apicon.png', 1, 'A feast of 30 food smilies and up to 3 flix backgrounds (needs up to 4 assigned). $WIKIP', 0, 'bowleat,burger,burgerlook,candycorn,carrot,cherry,chicken,chili,chipeat,coffeesplash,donut,eatspagetti,eattakeout,eggcook,eggplant,fortunecookie,fries,icecream,icecreameat,peanut,popcorn,pretzel,soupeat,spam,stirpan,takeout,thinkfood,toast2,pizza', '1', '', '', '', 1, ''),
  509. (99, 'p3', 'single', '', '', 8, 150, 'http://xat.com/images/apicon.png', 0, 'Prevent other users marrying or bffing you. Includes broken heart on pawn [put (hat#z) in your name] and (asif) (heartbounce) (one) (heartburst) bonus smilies.. $WIKI', 0, 'asif,one,heartburst,heartbounce,noway', '', '', '', '', 0, ''),
  510. (100, 'p3', 'link', '', '', 16, 400, 'http://xat.com/images/apicon.png', 0, 'Create custom link words for your chat. GROUP POWER. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  511. (101, 'p3', 'shocker', '', '', 32, 1040, 'http://xat.com/images/apicon.png', 1, 'Shocker themed smilies: (duck) (electrocute) (eyepop) (flamed) (lookaround) (scream) (wow) (dazed) (hazey) (drool) (footmouth) (mindblow) (misspeak) (relieved) (uvula) (arc) LIMITED. $WIKI', 0, 'duck,electrocute,eyepop,flamed,lookaround,scream,wow,dazed,hazey,drool,footmouth,mindblow,misspeak,relieved,uvula,arc', '1', '', '', '', 1, ''),
  512. (102, 'p3', 'fairy', '', '', 64, 3860, 'http://xat.com/images/apicon.png', 1, 'Fairy flix animated backgrounds and smilies. Price will drop and then the power will be withdrawn. LIMITED. GROUP POWER. $WIKIP', 0, 'butterfly,fcrown,fhair,fhat,flower2,frog,fwings,heartwand,mushrooms,shards', '1', '', '', '', 1, ''),
  513. (103, 'p3', 'namecolor', '', '', 128, 10000, 'http://xat.com/images/apicon.png', 0, 'Color your name on the chat box. N.B. you also need nameglow and color powers. EG for a purple name use: (glow#0#800080) or white with black glow: (glow#000001#FFFFFF). $WIKI', 0, '', '', '', '', '', 0, ''),
  514. (104, 'p3', 'gkbear', '', '', 256, 660, 'http://xat.com/images/apicon.png', 1, 'Cute bear smilies. Price will drop and then the power will be withdrawn. LIMITED. GROUP POWER. $WIKIP', 0, 'kbawe,kbcold,kbcry,kbdance,kbpunch,kbsad,kbscream,kbweep,kbwink,kbyawn', '1', '', '', '', 1, ''),
  515. (105, 'p3', 'angry', '', '', 512, 4430, 'http://xat.com/images/apicon.png', 1, 'Don''t get upset, get the angry power and vent your frustration with these smilies. LIMITED. $WIKI', 0, 'explode,facepalm,bite,hissyfit,mutter,potstir,pullhair,raging,ticked,yell,flame,grumpy2,headache,timebomb', '', '', '', '', 0, ''),
  516. (106, 'p3', 'gscol', '', '', 1024, 300, 'http://xat.com/images/apicon.png', 0, 'Set a default color for smilies. Eg you can have pink bears or aliens on the gline. GROUP POWER. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  517. (107, 'p3', 'ugly', '', '', 2048, 387, 'http://xat.com/images/apicon.png', 1, 'Be different with new "ugly" style smilies. LIMITED. $WIKI', 0, 'uangel,udemon,uevil,uhappy,ulook,uthink,usad,uscratch,usmile,utongue,uwink', '', '', '', '', 0, ''),
  518. (108, 'p3', 'love', '', '', 4096, 300, 'http://xat.com/images/apicon.png', 0, 'love smilies and also flix animated backgrounds for groups. UNLIMITED. $WIKIP', 0, 'coy,flirt,freehugs,heartbeat,heartblow,ihu,lovedraw,ucute,uhot', '', '', '', '', 0, ''),
  519. (109, 'p3', 'barge', '', '', 8192, 280, 'http://xat.com/images/apicon.png', 0, 'Allows owners and mods to move into full pools by barging another user out. $WIKI', 0, '', '', '', '', '', 0, ''),
  520. (110, 'p3', 'gkkitty', '', '', 16384, 416, 'http://xat.com/images/apicon.png', 0, 'Kitty smilies for groups. If the power is assigned any sub can use the kitty smilies on the group. LIMITED. $WIKIP', 0, 'kkbiggrin,kkconfused,kkcool,kkcrying,kkd,kkdance,kkdead,kkeek,kkfrown,kkhide,kkhug,kkmad,kknme,kkpaws1,kkpaws2,kkpaws3,kkredface,kkscn,kkshock,kksleepy,kksmile,kkstraightface,kkstruggle,kktongue,kkun,kkwary,kkwink,kkx3,kkxd,kkyawn', '1', '', '', '', 1, ''),
  521. (111, 'p3', 'fantasy', '', '', 32768, 250, 'http://xat.com/images/apicon.png', 0, 'Fantasy themed smilies: (fantasy) (axe) (darkeyes) (dragon) (flail) (hole) (helmet2) (medusa) (orcm) (elf2) (ogre) (orcf) (invis) (scroll) (slash) (smskull) (sword) (wizard). $WIKI', 0, 'axe,darkeyes,dragon,flail,hole,helmet2,medusa,orcm,elf2,ogre,orcf,invis,scroll,slash,smskull,sword,wizard', '', '', '', '', 0, ''),
  522. (112, 'p3', 'announce', '', '', 65536, 2000, 'http://xat.com/images/apicon.png', 0, 'An announce message will be shown to all joining the chat at the bottom of the message list. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  523. (113, 'p3', 'hero', '', '', 131072, 562, 'http://xat.com/images/apicon.png', 1, '(hero) (daggers) (electro) (epi) (fireball) (flying) (genie) (iceman) (invisi) (jekyl) (maddr) (telekin) (amazon) and more. LIMITED. $WIKI', 0, 'daggers,electro,epi,fireball,flying,genie,iceman,invisi,jekyl,maddr,telekin,amazon,upaway,ripshirt', '', '', '', '', 0, ''),
  524. (114, 'p3', 'rankpool', '', '', 262144, 800, 'http://xat.com/images/apicon.png', 0, 'Create a pool for members/mods etc only and give the first two pools a custom name. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  525. (115, 'p3', 'spin', '', '', 524288, 300, 'http://xat.com/images/apicon.png', 0, 'Make smilies spin with the spin power. $WIKI', 0, '', '', '', '', '', 0, ''),
  526. (116, 'p3', 'animal', '', '', 1048576, 200, 'http://xat.com/images/apicon.png', 0, 'Smilies of animals. ', 0, 'doggy,giraffe,goat,lion2,monkey,mouse,panda2,raccoon,sheep,unicorn', '', '', '', '', 0, ''),
  527. (117, 'p3', 'music', '', '', 2097152, 300, 'http://xat.com/images/apicon.png', 0, 'Use the side app to make smilies that play music. $WIKI', 0, 'disco,dj,drums,flute,guitar,harp,piano,trumpet,violin,zippo', '', '', '', '', 0, ''),
  528. (118, 'p3', 'gkpanda', '', '', 4194304, 798, 'http://xat.com/images/apicon.png', 1, 'Panda smilies for groups. If the power is assigned any sub can use the panda smilies on the group. LIMITED. ', 0, 'kpfit,kpembarassed,kppaws,kpd,kpannoyed,kppaws2,kplove,kpjoy,kpcrying,kphurt', '1', '', '', '', 1, ''),
  529. (119, 'p3', 'unwell', '', '', 8388608, 351, 'http://xat.com/images/apicon.png', 1, 'Unwell themed smilies. N.B. price will decrease over time. LIMITED. $WIKI', 0, 'blownose,chill,cough,icepack,sickface,sneeze,soup,thermometer,crutches,feint,cough2,headknock,crutches,sweats', '', '', '', '', 0, ''),
  530. (120, 'p3', 'events', '', '', 16777216, 280, 'http://xat.com/images/apicon.png', 0, 'View a log of bans, kicks etc. See wiki', 0, '', '', '', '', '', 0, ''),
  531. (121, 'p3', 'zap', '', '', 33554432, 140, 'http://xat.com/images/apicon.png', 0, 'Shake the user when you kick them and send an optional audie. $WIKI', 0, 'cringe,shake,shocking', '', '', '', '', 0, ''),
  532. (122, 'p3', 'sins', '', '', 67108864, 1520, 'http://xat.com/images/apicon.png', 1, 'Seven sinful smilies plus power smiliey. LIMITED. ', 0, 'envy,gluttony,greed,lust,pride,sloth,wrath', '', '', '', '', 0, ''),
  533. (123, 'p3', 'outfit', '', '', 134217728, 841, 'http://xat.com/images/apicon.png', 0, 'Outfit your smiles.', 0, 'whip,turban,tophat,tinfoil,sombrero,paperbag,paperbag2,grandpa,grandma,glassesslip,disguise,curlers,braces,blindfold,beret', '', '', '', '', 0, ''),
  534. (124, 'p3', 'wildwest', '', '', 268435456, 731, 'http://xat.com/images/apicon.png', 1, 'Wild west smilies and two western kisses. $WIKI', 0, 'undertaker,sheriff,ropeg,ropeb,push,prospector,outlaw,native,bullride,bartender', '', '', '', '', 0, ''),
  535. (125, 'p3', 'work', '', '', 536870912, 236, 'http://xat.com/images/apicon.png', 1, 'Over 20 working smilies. LIMITED. ', 0, 'officeworker,driver,doctor,chef2,burgerflipper,blacksmith,astronaut,teacher,stewardess,shepherd,scientist,plumber,paperboy,miner,mechanic,judge,journalist,gardener,fortuneteller,fireman', '', '', '', '', 0, ''),
  536. (126, 'p3', 'banpool', '', '', 1073741824, 210, 'http://xat.com/images/apicon.png', 0, 'NOTE: RANKPOOL is also required to use this power. Make all banned users go into a special pool. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  537. (128, 'p4', 'beach', '', '', 1, 250, 'http://xat.com/images/apicon.png', 1, 'Fun beach smilies in time for the summer. LIMITED ', 0, 'icman,lifeguard,lotion,metaldetect,sandbury,sandfun,shkhat,sunburn,surf,tanning', '', '', '', '', 0, ''),
  538. (129, 'p4', 'candy', '', '', 2, 454, 'http://xat.com/images/apicon.png', 1, 'candy themed smilies including two backs and two hands. LIMITED ', 0, 'candy,cdycorn,cdyback,donuteat,eatchoco,floss,gum,lolipop,mm', '', '', '', '', 0, ''),
  539. (130, 'p4', 'gback', '', '', 4, 15000, 'http://xat.com/images/apicon.png', 0, 'Set a default background for the smilies in your chat. EPIC. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  540. (131, 'p4', 'zodiac', '', '', 8, 250, 'http://xat.com/images/apicon.png', 0, 'Zodiac themed kaoani style smilies: (aries) (taurus) (gemini) (cancer) (leo) (virgo) (libra) (scorpio) (sagittarius) (capricorn) (aquarius) (pisces) $WIKI', 0, 'aries,taurus,gemini,cancer,leo,virgo,libra,scorpio,sagittarius,capricorn,aquarius,pisces', '', '', '', '', 0, ''),
  541. (132, 'p4', 'flower', '', '', 16, 1210, 'http://xat.com/images/apicon.png', 1, '(Flower) can be used as back. (fangry) (fcry) (fcool) (feek) (fconfused) (ftongue) (fredface) (fcrying) (fsleepy) (fbiggrin) (fsad) (fwink) $WIKI', 0, 'fangry,fcry,fcool,feek,fconfused,ftongue,fredface,fsleepy,fbiggrin,fsad,fwink', '', '', '', '', 0, ''),
  542. (133, 'p4', 'space', '', '', 32, 300, 'http://xat.com/images/apicon.png', 0, 'Ten space themed smilies and a kiss. $WIKI', 0, 'eclipse,meteorite,nasa,radiotele,rocket,satellite,saucer,shuttle,space,telescope', '', '', '', '', 0, ''),
  543. (134, 'p4', 'snakeban', '', '', 64, 600, 'http://xat.com/images/apicon.png', 0, 'A snakebanned user has the chance to get out of the ban by completing a snake game. ', 0, 'sncool,sneek,snredface,snconfused,snfrown,snbiggrin,snangry,snsleepy,sncry,snsmile,snwink', '1', '', '', '', 1, ''),
  544. (135, 'p4', 'stoneage', '', '', 128, 77, 'http://xat.com/images/apicon.png', 0, 'IMPORTANT: Will be sold for 24 hours only. Prehistoric and caveman smilies. $WIKI', 0, 'caveman,dino,cavewoman,cavework,cavebeard,caveclothes,torch,spear,rocksmash,cavehair,boneswing,wallart,stickfire,cavebeard2', '', '', '', '', 0, ''),
  545. (136, 'p4', 'spaceban', '', '', 256, 1130, 'http://xat.com/images/apicon.png', 1, 'A spacebanned user has the chance to get out of the ban by completing a space game. ', 0, 'moonb', '1', '', '', '', 1, ''),
  546. (137, 'p4', 'dance', '', '', 512, 150, 'http://xat.com/images/apicon.png', 0, 'Make your smilies dance. $WIKI', 0, 'dance1,dance2,dance3,dance4,dance5,dance6,dance7,dance8,dance9,dance10,dance11', '', '', '', '', 0, ''),
  547. (138, 'p4', 'kpeng', '', '', 1024, 200, 'http://xat.com/images/apicon.png', 0, 'Kaoani penguin smilies. $WIKI', 0, 'kpesneeze,kpeshy,kpeshame,kpejoy,kpeglare,kpefit,kpedots,kpedizzy,kpeclap,kpeangry,kpedance,kpepop', '', '', '', '', 0, ''),
  548. (139, 'p4', 'nerd', '', '', 2048, 218, 'http://xat.com/images/apicon.png', 1, 'Nerd smilies for all you geeks. LIMITED. $WIKI', 0, 'aplus,bowtie,brain,coder,gates,nglasses,nsci,phone,read,calc', '', '', '', '', 0, ''),
  549. (140, 'p4', 'matchban', '', '', 4096, 1270, 'http://xat.com/images/apicon.png', 1, 'A matchbanned user has the chance to get out of the ban by completing a smiley matching game .. $WIKI', 0, '', '1', '', '', '', 1, ''),
  550. (141, 'p4', 'school', '', '', 8192, 132, 'http://xat.com/images/apicon.png', 1, 'Smilies for the classroom. $WIKI', 0, 'backpack,daycare,gts,punished,rubber,schoolgirl,sbell,studying,tabsc,teacher2,writing', '', '', '', '', 0, ''),
  551. (142, 'p4', 'silentm', '', '', 16384, 280, 'http://xat.com/images/apicon.png', 0, 'Make a member without a message. Owners only unless changed by gcontrol. $WIKI', 0, '', '', '', '', '', 0, ''),
  552. (143, 'p4', 'punch', '', '', 32768, 300, 'http://xat.com/images/apicon.png', 0, 'Punch bag smilies with new style faces. $WIKI', 0, 'pconfused,pcrying,pcute,pdead,pfury,pgiggle,pglare,pjump,pmanic,punched,pshades,pshy,psleepy,pthink', '', '', '', '', 0, ''),
  553. (144, 'p4', 'away', '', '', 65536, 100, 'http://xat.com/images/apicon.png', 0, 'Automatically show you are away from the chat. $WIKI', 0, '', '', '', '', '', 0, ''),
  554. (145, 'p4', 'peace', '', '', 131072, 200, 'http://xat.com/images/apicon.png', 0, 'Peace themed smilies. NOT LIMITED. $WIKI', 0, 'dove,dove2,dove3,hglass,phair1,phair2,phair3,rbe,reggae', '', '', '', '', 0, ''),
  555. (146, 'p4', 'kchick', '', '', 262144, 506, 'http://xat.com/images/apicon.png', 1, 'Kaoani chick smilies. LIMITED. $WIKI', 0, 'kccrying,kcdizzy,kceek,kcglare,kclook,kcsad,kcsmug,kctongue,kcwink', '', '', '', '', 0, ''),
  556. (147, 'p4', 'carve', '', '', 524288, 268, 'http://xat.com/images/apicon.png', 1, 'Pumpkin carve smiles and bonus: (dracula) (grim2) (pknhide). LIMITED. $WIKI', 0, 'carveduh,carvegrin,carvescream,carvesly,carvesmile,dracula,grim2,pknhide,vampire', '', '', '', '', 0, ''),
  557. (148, 'p4', 'spooky', '', '', 1048576, 334, 'http://xat.com/images/apicon.png', 1, 'Scare your friends with spooky smilies and flix animations. ', 0, 'sixeyes,bat2,blackcat,blackwidow,ghost2,hockeymask,plant,bloodyknife,scarecrow', '1', '', '', '', 1, ''),
  558. (149, 'p4', 'kdog', '', '', 2097152, 223, 'http://xat.com/images/apicon.png', 1, 'Kaoani dog smilies. LIMITED. $WIKI', 0, 'kdcheer,kdcrazy,kddead,kdfit,kdglare,kdsad,kdshocked,kdsleepy,kdsmile,kdtired,kdwoo', '', '', '', '', 0, ''),
  559. (150, 'p4', 'bot', '', '', 4194304, 1000, 'http://xat.com/images/apicon.png', 0, 'Allow a bot to access your group. Please read wiki before buying.', 2, 'bot2,bot3,bot4', '1', '', '', '', 1, ''),
  560. (151, 'p4', 'manga', '', '', 8388608, 1870, 'http://xat.com/images/apicon.png', 1, 'Manga themed smilies and (manga) effect, 18 in all. E.g. (manga1) (manga2) etc. LIMITED. $WIKI', 0, 'manga1,manga2,manga3,manga4,manga5,manga6,manga7,manga8,manga9,manga10,manga11,manga12,manga13,manga14,manga15,manga16,manga17', '', '', '', '', 0, ''),
  561. (152, 'p4', 'mazeban', '', '', 16777216, 400, 'http://xat.com/images/apicon.png', 1, 'A mazebanned user has the chance to get out of the ban by getting to the end of a maze. $WIKI', 0, '', '1', '', '', '', 1, ''),
  562. (153, 'p4', 'gold', '', '', 33554432, 50000, 'http://xat.com/images/apicon.png', 0, 'Gold pawn and smilies. $WIKI', 10, 'goldb,bars,bar,goldstar', '0', '', '', '', 0, ''),
  563. (154, 'p4', 'snowman', '', '', 67108864, 148, 'http://xat.com/images/apicon.png', 1, 'Snowman themed smilies. (snowman) (smcry) (smgrin) (smlaugh) (smredface) (smsad) (smshocked) (smsleepy) (smtongue) (smmad) (smcool). LIMITED. $WIKI', 0, 'smcry,smgrin,smlaugh,smredface,smsad,smshocked,smsleepy,smtongue,smmad,smcool', '', '', '', '', 0, ''),
  564. (155, 'p4', 'reindeer', '', '', 134217728, 110, 'http://xat.com/images/apicon.png', 0, 'Reindeer smilies (reindeer) (resurprised) (resmirk) (resleepy) (resad) (reredface) (relaugh) (reglare) (recry) (recool) (reangry) (renose). LIMITED. $WIKI', 0, 'resurprised,resmirk,resleepy,resad,reredface,relaugh,reglare,recry,recool,reangry,renose,reback', '', '', '', '', 0, ''),
  565. (156, 'p4', 'santa', '', '', 268435456, 300, 'http://xat.com/images/apicon.png', 0, 'Santa smilies and animated flix. $WIKIP', 0, 'sabiggrin,saconfused,sacry,saglare,saredface,sasad,sastraightface,sasurprised,satongue,sawink', '', '', '', '', 0, ''),
  566. (157, 'p4', 'sparta', '', '', 536870912, 125, 'http://xat.com/images/apicon.png', 1, 'This is Sparta! LIMITED. $WIKI', 0, 'spartayell,getready,helmet3,soldier,spants,spartafight,spartan,spartan2,truewar,xerxes', '', '', '', '', 0, ''),
  567. (158, 'p4', 'dunce', '', '', 1073741824, 250, 'http://xat.com/images/apicon.png', 0, 'Dunce your friends. Add a dunce cap to their pawn. (dunce) (duh) (doh2). $WIKI', 0, 'duh,doh2', '', '', '', '', 0, ''),
  568. (160, 'p5', 'newyear', '', '', 1, 552, 'http://xat.com/images/apicon.png', 1, 'Smilies to help bring in the new year including fireworks FX. $WIKI', 0, 'calendar,celebration,champagne2,champagneback,clink2,firework1,firework2,nyball,nyhat,nykiss,nyparty,sparkler2', '', '', '', '', 0, ''),
  569. (161, 'p5', 'can', '', '', 2, 125, 'http://xat.com/images/apicon.png', 1, 'Crazy Can smilies. Companion power to Punch, can be mixed with it and used with #noface to make an alternative style of yellow smilies. LIMITED. $WIKI', 0, 'canangel,canbounce,cancontempt,canfury,canoo,canshifty,canthink,cantwitch,canum,canun', '', '', '', '', 0, ''),
  570. (162, 'p5', 'codeban', '', '', 4, 250, 'http://xat.com/images/apicon.png', 0, 'A codebanned user has the chance to get out of the ban by completing a code puzzle. $WIKI', 0, '', '1', '', '', '', 1, ''),
  571. (163, 'p5', 'magicfx', '', '', 8, 111, 'http://xat.com/images/apicon.png', 0, 'A magic FX (effect) to add to smilies. LIMITED. $WIKI', 0, '', '', '', '', '', 0, ''),
  572. (164, 'p5', 'spy', '', '', 16, 193, 'http://xat.com/images/apicon.png', 1, 'Espionage themed smilies. LIMITED. $WIKI', 0, 'crosshair,folder,footprints,headset,keyhole,keypad,peeking,radar,spydrink,spyeye,spying,spypaper,spyrope', '', '', '', '', 0, ''),
  573. (165, 'p5', 'kduck', '', '', 32, 789, 'http://xat.com/images/apicon.png', 1, 'Kaoani duck smilies. LIMITED. $WIKI', 0, 'kduckback,kduck1,kduck2,kduck3,kduck4,kduck5,kduck6,kduck7,kduck8,kduck9,kduck10,kduck11,kduck12', '', '', '', '', 0, ''),
  574. (166, 'p5', 'heartfx', '', '', 64, 200, 'http://xat.com/images/apicon.png', 0, 'Heart effects smilies. $WIKI', 0, 'heartfx,heartfx2,heartfx3', '', '', '', '', 0, ''),
  575. (167, 'p5', 'carnival', '', '', 128, 275, 'http://xat.com/images/apicon.png', 1, 'Carnival themed similes. $WIKI', 0, 'anonmask,beads,brazilboom,carniphant,cjester,cmask,flowersquirt,headdress,kreu,shakeit,wannasamba,yeayea,cjester2,cbird,cangel', '', '', '', '', 0, ''),
  576. (168, 'p5', 'topspin', '', '', 256, 250, 'http://xat.com/images/apicon.png', 0, 'Add a spin to top and backgrounds of smilies. $WIKI', 0, '', '', '', '', '', 0, ''),
  577. (169, 'p5', 'movie', '', '', 512, 141, 'http://xat.com/images/apicon.png', 1, 'Movie themed smilies. LIMITED. $WIKI', 0, 'action,admission,booth,cameraman,director,drink2,film,filmroll,popcorn,pose,tickets', '', '', '', '', 0, ''),
  578. (170, 'p5', 'monster', '', '', 1024, 200, 'http://xat.com/images/apicon.png', 0, 'Cute monster smilies. $WIKI', 0, 'mangel,mbat,mbear,mchick,mdrip,mfish,mglare', '', '', '', '', 0, ''),
  579. (171, 'p5', 'kat', '', '', 2048, 645, 'http://xat.com/images/apicon.png', 1, 'Kat kaoani smilies with attitude. LIMITED. $WIKI', 0, 'kat1,kat2,kat3,kat4,kat5,kat6,kat7,kat8,kat9,kat10,katback', '', '', '', '', 0, ''),
  580. (172, 'p5', 'typing', '', '', 4096, 100, 'http://xat.com/images/apicon.png', 0, 'Show you are typing a message. $WIKI', 0, 'typing1', '', '', '', '', 0, ''),
  581. (173, 'p5', 'ksheep', '', '', 8192, 175, 'http://xat.com/images/apicon.png', 1, 'Kaoani sheep smilies. LIMITED. $WIKI', 0, 'ksheep1,ksheep2,ksheep3,ksheep4,ksheep5,ksheep6,ksheep7,ksheep8,ksheep9,ksheep10,ksheepback', '', '', '', '', 0, ''),
  582. (174, 'p5', 'pulsefx', '', '', 16384, 766, 'http://xat.com/images/apicon.png', 0, 'Add a pulsing effect to smilies eg (pulsefx) (d#pulsefxback#r). LIMITED. $WIKI', 0, 'pulsefxback', '', '', '', '', 0, ''),
  583. (175, 'p5', 'blobby', '', '', 32768, 138, 'http://xat.com/images/apicon.png', 0, 'Blobby monster smilies. LIMITED. $WIKI', 0, 'bbclap,bbconfused,bbcry,bbfit,bbglare,bbhug,bblaugh,bboops,bbpout,bbwink,bbback', '', '', '', '', 0, ''),
  584. (176, 'p5', 'reverse', '', '', 65536, 200, 'http://xat.com/images/apicon.png', 0, 'Cause a users words to be reversed. $WIKI', 0, '', '', '', '', '', 0, ''),
  585. (177, 'p5', 'fuzzy', '', '', 131072, 324, 'http://xat.com/images/apicon.png', 1, 'Fuzzy monster smilies. $WIKI', 0, 'fzangel,fzback,fzbiggrin,fzcool,fzcrazy,fzd,fzdance,fzsad,fzstretch,fztongue,fztwirl', '', '', '', '', 0, ''),
  586. (178, 'p5', 'spiralfx', '', '', 262144, 222, 'http://xat.com/images/apicon.png', 0, 'Add spiral effects to smilies. $WIKI', 0, 'spiralfx2', '', 'H:p1spiralfx', '', '', 0, ''),
  587. (179, 'p5', 'nursing', '', '', 524288, 115, 'http://xat.com/images/apicon.png', 0, 'Nursing smilies for nursing week. LIMITED. $WIKI', 0, 'crazyn,nblood,nbroken,ndoc,nlist,nmask,nne,noxy,nsurg', '', '', '', '', 0, ''),
  588. (180, 'p5', 'gsound', '', '', 1048576, 280, 'http://xat.com/images/apicon.png', 1, 'Change the sounds on your group. ', 0, 'megap,volume,tooloud,canthear,playbtn', '1', '', '', '', 1, ''),
  589. (181, 'p5', 'kbee', '', '', 2097152, 409, 'http://xat.com/images/apicon.png', 0, 'Kaoani bee smilies. $WIKI', 0, 'kbeeback,kbeeclap,kbeecry,kbeed,kbeedance,kbeefedup,kbeejoy,kbeemad,kbeepunch,kbeexx,kbeeyay', '', '', '', '', 0, '');
  590. INSERT INTO `powers` (`id`, `section`, `name`, `new`, `d2`, `subid`, `cost`, `rockets`, `limited`, `description`, `amount`, `topsh`, `group`, `pawns`, `pawn`, `hats`, `grupal`, `poder`) VALUES
  591. (182, 'p5', 'vortexfx', '', '', 4194304, 764, 'http://xat.com/images/apicon.png', 0, 'Add vortex effects to smilies. $WIKI', 0, 'vortexfx2', '', '', '', '', 0, ''),
  592. (183, 'p5', 'jail', '', '', 8388608, 190, 'http://xat.com/images/apicon.png', 0, 'Lock up your smilies. $WIKI', 0, 'ballchain,bobby,copstop,cracker,cuffs,gavel,handsair,jailnumber,mugshot,prisoner', '', '', '', '', 0, ''),
  593. (184, 'p5', 'zip', '', '', 16777216, 455, 'http://xat.com/images/apicon.png', 1, 'Make a user only able to talk in smilies. $WIKI', 0, '', '', '', '', '', 0, ''),
  594. (185, 'p5', 'drip', '', '', 33554432, 306, 'http://xat.com/images/apicon.png', 0, 'Water drip smilies, 15 in total. drip can be used as a back and try them with #noface. $WIKI', 0, 'dripclap,dripdance,dripeek,dripfit,dripglare,driphehe,driphello,driphug,driplaugh,dripsad,dripshocked,driptired,dripxd,dripyell', '', '', '', '', 0, ''),
  595. (186, 'p5', 'moustache', '', '', 67108864, 100, 'http://xat.com/images/apicon.png', 0, 'Add moustaches to your smilies. $WIKI', 0, 'moustache1,moustache2,moustache3,moustache4,moustache5,moustache6,moustache7,moustache8,moustache9', '', '', '', '', 0, ''),
  596. (187, 'p5', 'whirlfx', '', '', 134217728, 906, 'http://xat.com/images/apicon.png', 1, 'Whirling FX. See wiki for customization. LIMITED. $WIKI', 0, '', '', '', '', '', 0, ''),
  597. (188, 'p5', 'doodlerace', '', '', 268435456, 400, 'http://xat.com/images/apicon.png', 1, 'Start and control the doodlerace game. To start doodleRace, click Games tab, click doodlerace and then type !bot on the chat and then !start to start playing (you dont need bot power for doodlerace) See wiki', 0, '', '1', '', '', '', 1, ''),
  598. (189, 'p5', 'olympic', '', '', 536870912, 334, 'http://xat.com/images/apicon.png', 0, '16 olympic smilies to celebrate the games in London. LIMITED. $WIKI', 0, 'bronzem,goldm,oboxing,ocycling,odiving,ogymnastics,ohurdles,orowing,orunning,oswimming,otennis,otorch,ovolleyball,silverm,oarchery,obasketball,ofencing,ohockey', '', '', '', '', 0, ''),
  599. (190, 'p5', 'aliens', '', '', 1073741824, 619, 'http://xat.com/images/apicon.png', 0, 'Alien smiles. LIMITED. $WIKI', 0, 'aliens,alilaugh,alidead,aliclap,alid,alilove,aliscratch,alitalk,alicry,alitongue,aliyay,aliback', '', '', '', '', 0, ''),
  600. (192, 'p6', 'matchrace', '', '', 1, 691, 'http://xat.com/images/apicon.png', 0, 'Start and control the matchrace game. $WIKI', 0, '', '1', '', '', '', 1, ''),
  601. (193, 'p6', 'burningheart', '', '', 2, 3000, 'http://xat.com/images/apicon.png', 1, 'Burning smilies (burningheart) and (bheartb). $WIKI', 0, 'bheartb', '', '', '', '', 0, ''),
  602. (194, 'p6', 'snakerace', '', '', 4, 200, 'http://xat.com/images/apicon.png', 1, 'Play and control a snake game. $WIKI', 0, '', '1', '', '', '', 1, ''),
  603. (195, 'p6', 'kpig', '', '', 8, 234, 'http://xat.com/images/apicon.png', 0, 'kaoani piggy smilies. $WIKI', 0, 'kpigangry,kpigback,kpigball,kpigfraz,kpiglove,kpigmad,kpigmud,kpigpals,kpigsleep,kpigsnoot,kpigwrite', '', '', '', '', 0, ''),
  604. (196, 'p6', 'poker', '', '', 16, 382, 'http://xat.com/images/apicon.png', 0, 'Keep a straight face with these poker themed smilies. LIMITED. $WIKI', 0, 'pclubs,pobluff,pochips,pod,pogirl,poplayer,povip,powin,poyay,pspades,pdiamonds,phearts', '', '', '', '', 0, ''),
  605. (197, 'p6', 'pony', '', '', 32, 164, 'http://xat.com/images/apicon.png', 1, 'Cute pony smilies. LIMITED. $WIKI', 0, 'poback,pocall,poclap,pocry,poeat,pofan,poglasses,pohay,pomane,ponyd,powhip', '', '', '', '', 0, ''),
  606. (198, 'p6', 'clockfx', '', '', 64, 339, 'http://xat.com/images/apicon.png', 1, 'Rotating effects. LIMITED. $WIKI', 0, 'clockfx2,clockfx3,clockfx4', '', '', '', '', 0, ''),
  607. (199, 'p6', 'drop', '', '', 128, 700, 'http://xat.com/images/apicon.png', 1, 'Drop style smilies. $WIKI', 0, 'dropworry,dropumb,dropscratch,droprub,drophey,dropeat,dropdance,dropclap,dropback', '', '', '', '', 0, ''),
  608. (200, 'p6', 'spacewar', '', '', 256, 1044, 'http://xat.com/images/apicon.png', 1, 'Shoot and destroy other users planets. LIMITED. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  609. (201, 'p6', 'speech', '', '', 512, 200, 'http://xat.com/images/apicon.png', 0, 'Kaoani speech smilies. $WIKI', 0, 'spd,spfrus,spyay,spkiss,splap,splove,spvamp,spwrite,spxmas,sppup,spback', '', '', '', '', 0, ''),
  610. (202, 'p6', 'vampyre', '', '', 1024, 297, 'http://xat.com/images/apicon.png', 1, 'Frighten your friends with these vampyre smilies. $WIKI', 0, 'vbat,vbheart,vblood,vcoffin,vcross,vfangs,vglamour,vrip,vstake,vtongue,vstake,vfangs,vtongue,vglamour,vbat,vblood,vcoffin,vcross,vbheart,vrip', '', '', '', '', 0, ''),
  611. (203, 'p6', 'treefx', '', '', 2048, 600, 'http://xat.com/images/apicon.png', 1, 'Christmas tree FX for smilies. LIMITED. $WIKI', 0, '', '', '', '', '', 0, ''),
  612. (204, 'p6', 'claus', '', '', 4096, 272, 'http://xat.com/images/apicon.png', 1, 'Comical santa smilies for Christmas. LIMITED. $WIKI', 0, 'clcool,cld,cleek,clgrin,clmad,clsad,clsmile,clsweat,clwink,clx,clwink,clgrin,clsad,clsmile,cld,clx,cleek,clcool,clmad,clsweat', '', '', '', '', 0, ''),
  613. (205, 'p6', 'quest', '', '', 8192, 250, 'http://xat.com/images/apicon.png', 0, 'Smilies to help you on your journey. $WIKI', 0, 'bearer,disappear,dwarf,goblin2,queenelf,sneak,thering,warrior,wizzard,dwarf,sneak,queenelf,goblin2,wizzard,warrior,disappear,bearer,thering', '', '', '', '', 0, ''),
  614. (206, 'p6', 'lang', '', '', 16384, 2000, 'http://xat.com/images/apicon.png', 1, 'Change the chat text. Important read wiki before buying or using. $WIKIP', 0, '', '1', '', '', '', 0, ''),
  615. (207, 'p6', 'quest2', '', '', 32768, 112, 'http://xat.com/images/apicon.png', 1, 'Continue the quest. LIMITED. $WIKI', 0, '1066,agreement,arrow,burnt,dwarf2,dwarfz,elve2,goblin3,newton,pile,1066,dwarfz,dwarf2,arrow,goblin3,newton,burnt,pile,elve2,agreement', '', '', '', '', 0, ''),
  616. (208, 'p6', 'glitterfx', '', '', 65536, 250, 'http://xat.com/images/apicon.png', 0, 'Glitter effects for smilies. $WIKI', 0, '', '', '', '', '', 0, ''),
  617. (209, 'p6', 'xavi', '', '', 131072, 500, 'http://xat.com/images/apicon.png', 0, 'Make a custom avatar that responds to what you type. See wiki for details', 0, '', '', '', '', '', 0, ''),
  618. (210, 'p6', 'kmouse', '', '', 262144, 1740, 'http://xat.com/images/apicon.png', 1, 'Cute kaoani mouse smilies. LIMITED. $WIKI', 0, 'kmcheer,kmcry,kmeyerub,kmfit,kmfrustrate,kmglare,kmgrouch,kmhide,kmhug,kmlaugh,kmshock,kmshuffle,kmsleepy,kmsmile,kmback,kmlaugh,kmsleepy,kmfit,kmhide,kmfrustrate,kmsmile,kmgrouch,kmback,kmcry,kmshock,kmhug,kmshuffle,kmeyerub,kmglare,kmcheer', '', '', '', '', 0, ''),
  619. (211, 'p6', 'eighties', '', '', 524288, 185, 'http://xat.com/images/apicon.png', 1, '16 I love the eighties smilies. LIMITED. $WIKI', 0, 'bighair,bigphone,boombox,cassette,dance80,dj80,hoverboard,joystick,skate,slacker1,slacker2,poi,thermochrome,timemachine,skate,boombox,slacker2,slacker1,thermochrome,bigphone,cassette,bighair,poi,dj80,timemachine,dance80,joystick,hoverboard', '', '', '', '', 0, ''),
  620. (212, 'p6', 'foe', '', '', 1048576, 250, 'http://xat.com/images/apicon.png', 0, 'Mark a user as a foe. $WIKI', 0, '', '', '', '', '', 0, ''),
  621. (213, 'p6', 'everypower', '', '', 2097152, 268696, 'http://xat.com/images/apicon.png', 1, '', 0, '', '', '', '', '', 0, ''),
  622. (214, 'p6', 'makeup', '', '', 4194304, 168, 'http://xat.com/images/apicon.png', 1, 'You''ll be made up with these smilies. $WIKI', 0, 'nailpolish,lipgloss,makeupface,blush,perfume,comb,lipstick2,lipstick1,purse,eyeliner', '', '', '', '', 0, ''),
  623. (215, 'p6', 'kheart', '', '', 8388608, 458, 'http://xat.com/images/apicon.png', 1, 'Heart shaped smilies in kaoani style. $WIKI', 0, 'kheartb,khkiss,khlips,khring,khroses,khbub,kharrow,kheyes,khmadly,khhurt,khcupid,khily,khhug', '', '', '', '', 0, ''),
  624. (216, 'p6', 'kmonkey', '', '', 16777216, 250, 'http://xat.com/images/apicon.png', 0, 'Cute monkey smilies in kaoani style. $WIKI', 0, 'kmodance,kmorage,kmowonder,kmostare,kmoun,kmoredface,kmofrus,kmod,kmoback,kmoblow,kmowhistle,kmonehneh,kmoteeth', '', '', '', '', 0, ''),
  625. (217, 'p6', 'nuclear', '', '', 33554432, 500, 'http://xat.com/images/apicon.png', 0, 'Nuclear FX for smilies. Highly configurable with app. See wiki for details', 0, 'nuclearb', '', 'Y:p1nuclear', '', '', 0, ''),
  626. (218, 'p6', 'stylist', '', '', 67108864, 200, 'http://xat.com/images/apicon.png', 1, 'Add style to your smilies. LIMITED. $WIKI', 0, 'shave,mirror2,shair3,shair2,shair1,shair7,shair6,shair5,shair4,barber', '', '', '', '', 0, ''),
  627. (219, 'p6', 'spring', '', '', 134217728, 585, 'http://xat.com/images/apicon.png', 1, 'Spring is here. Celebrate with these beautiful smiles. LIMITED. $WIKI', 0, 'flohat,watercan2,birdy,flowerbed,flowers,rainbow2,inflower,bees,flohide,springhat,watercan,floshow,butterflys', '', '', '', '', 0, ''),
  628. (220, 'p6', 'vote', '', '', 268435456, 500, 'http://xat.com/images/apicon.png', 0, 'Survey your users with a mini poll. Bonus smilies. $WIKIP', 0, 'bemused,voting,voting2,cross,tick,placard', '1', '', '', '', 1, ''),
  629. (221, 'p6', 'hands2', '', '', 536870912, 200, 'http://xat.com/images/apicon.png', 0, 'More hands powers including high five. $WIKI', 0, 'pointing,highfive,hearno,notlistening,crossed,callme,heehee,prosper,daydreaming,cutthroat,peace2,hands2', '', '', '', '', 0, ''),
  630. (222, 'p6', 'eggs', '', '', 1073741824, 231, 'http://xat.com/images/apicon.png', 1, 'Egg and Easter smilies. LIMITED. $WIKI', 0, 'stripegg,basket2,eggwink,chickwalk,eggsleep,eggnod,bunnyears,eggbroke,eggtongue', '', '', '', '', 0, ''),
  631. (224, 'p7', 'hearts', '', '', 1, 500, 'http://xat.com/images/apicon.png', 0, 'Be game master of a hearts card game. See wiki.', 0, '', '1', '', '', '', 1, ''),
  632. (225, 'p7', 'kfox', '', '', 2, 469, 'http://xat.com/images/apicon.png', 1, 'Foxy smilies. LIMITED. $WIKI', 0, 'kfoxwhat,kfoxcry,kfoxshades,kfoxd,kfoxtant,kfoxsleep,kfoxtwag,kfoxpsy,kfoxbino,kfoxinl,kfoxggl', '', '', '', '', 0, ''),
  633. (226, 'p7', 'kcow', '', '', 4, 133, 'http://xat.com/images/apicon.png', 1, 'Kaoani cow smilies. LIMITED. $WIKI.', 0, 'kwlove,kwswt,kwangry,kwyay,kwsleepy,kwbell,kwcry,kwlaugh,kwscratch,kwwhat,kwmad,kwd,kwfrus,kwnod', '', '', '', '', 0, ''),
  634. (227, 'p7', 'sketch', '', '', 8, 200, 'http://xat.com/images/apicon.png', 0, 'Animated sketch style smilies. $WIKI.', 0, 'sksad,skback,skgrr,sksmile,skwink,skoo,skd,skdead,sksix,skfrus,skannoyed', '', '', '', '', 0, ''),
  635. (228, 'p7', 'led', '', '', 16, 250, 'http://xat.com/images/apicon.png', 0, 'Make a scrolling LED style message. See wiki.', 0, '', '', '', '', '', 0, ''),
  636. (229, 'p7', 'seaside', '', '', 32, 297, 'http://xat.com/images/apicon.png', 1, 'Get ready for summer with the seaside power. $WIKI', 0, 'sandcastle,shell,coconut,crab2,seatree,flipflops,beachvolley,beachdrink,dolphin2', '', '', '', '', 0, ''),
  637. (230, 'p7', 'hair2f', '', '', 64, 306, 'http://xat.com/images/apicon.png', 1, 'More female smiley hair styles. $WIKI', 0, 'hair2f10,hair2f3,hair2f2,hair2f1,hair2f7,hair2f6,hair2f5,hair2f4,hair2f9,hair2f8', '', '', '', '', 0, ''),
  638. (231, 'p7', 'statusglow', '', '', 128, 300, 'http://xat.com/images/apicon.png', 0, 'Add a green glow to your status (status power required). $WIKI', 0, '', '', '', '', '', 0, ''),
  639. (232, 'p7', 'super', '', '', 256, 200, 'http://xat.com/images/apicon.png', 0, 'New "super" style orange smilies. $WIKI', 0, 'suredface,suconfused,suback,sulaugh,sucool,sutongue,susad,susmile,sucry,sumad,sudead,sulove', '', '', '', '', 0, ''),
  640. (233, 'p7', 'wedding', '', '', 512, 253, 'http://xat.com/images/apicon.png', 1, 'Celebrate a wedding with these wedding smilies. LIMITED $WIKI', 0, 'flowersw,throwboquet,arch,invitation,givering,dovew,weddingcake,cakecut,roses', '', '', '', '', 0, ''),
  641. (234, 'p7', 'germ', '', '', 1024, 325, 'http://xat.com/images/apicon.png', 0, 'Ewwww germs themed smilies. All can be used as backs e.g. (twitch#germ2) To color them use two color codes e.g. (germ6#r#g) $WIKI', 0, 'germ10,germ4,germ5,germ6,germ7,germ2,germ3,germ8,germ9', '', '', '', '', 0, ''),
  642. (235, 'p7', 'cactus', '', '', 2048, 238, 'http://xat.com/images/apicon.png', 1, 'Cactus smilies with all new faces and different backgrounds. LIMITED. ', 0, 'cacdead,cacpanic,cactongue,cacback,cacmad,cacsmile,cacwhat,caclove,cacflaming,cacblow,caccool', '', '', '', '', 0, ''),
  643. (236, 'p7', 'slotban', '', '', 4096, 250, 'http://xat.com/images/apicon.png', 0, 'A slotbanned user has the chance to get out of the ban by playing a slot machine game. $WIKI', 0, 'orange2,plum2,slotbar,seven,cherries,spinbutton', '', '', '', '', 0, ''),
  644. (237, 'p7', 'fourth', '', '', 8192, 260, 'http://xat.com/images/apicon.png', 0, 'Celebrate the 4th July with these festive smilies. $WIKI', 0, 'usafw,iwantyou,waveflagf,showcal,flagfw,fwbang,fourthcal,waveflagm,usafws,watchfw', '', '', '', '', 0, ''),
  645. (238, 'p7', 'switch', '', '', 16384, 500, 'http://xat.com/images/apicon.png', 1, 'Be game master of a switch card game. $WIKI', 0, '', '1', '', '', '', 1, ''),
  646. (239, 'p7', 'cuboid', '', '', 32768, 239, 'http://xat.com/images/apicon.png', 1, 'Cubist smilies and back. LIMITED $WIKI', 0, 'custar,cucool,cushine,cuback,cucat,cusad,cubiggrin,cumaracas,cusmile,cucry', '', '', '', '', 0, ''),
  647. (240, 'p7', 'phasefx', '', '', 65536, 200, 'http://xat.com/images/apicon.png', 0, 'Create phase effects. Many variants. $WIKI', 0, 'phaseplan,phaseques,phaseheart', '', 'X:p1phasefx1,Z:p1phasefx2,E:p1phasefx3', '', '', 0, ''),
  648. (241, 'p7', 'marriage', '', '', 131072, 300, 'http://xat.com/images/apicon.png', 0, '4 new marriage kisses and 10 smilies to help you celebrate your marriage. $WIKI', 0, 'showring,propose,weddingdrink,catchboquet,groom2,cake2,weddingring,bride2,twohearts', '', '', '', '', 0, ''),
  649. (242, 'p7', 'romance', '', '', 262144, 623, 'http://xat.com/images/apicon.png', 1, 'Romantic smilies. $WIKI', 0, 'cuddle,hugme,serenade,iheart,huba,formal,lashes,affection,kisses,hearthands', '', '', '', '', 0, ''),
  650. (243, 'p7', 'sticky', '', '', 524288, 250, 'http://xat.com/images/apicon.png', 0, 'Smilies inspired by sticky notes. $WIKI', 0, 'stcool,stcrying,stdevil,stheart,stsleepy,stattention,stangel,stlips,stwhat', '', '', '', '', 0, ''),
  651. (244, 'p7', 'kickall', '', '', 1048576, 420, 'http://xat.com/images/apicon.png', 0, 'Kick all guests from the chat. $WIKI This power should not be miss used.', 0, '', '', '', '', '', 0, ''),
  652. (245, 'p7', 'fruities', '', '', 2097152, 253, 'http://xat.com/images/apicon.png', 1, 'Fun fruit flavoured smilies. $WIKI', 0, 'frgrapes,frorange,frpineapple,frlemon,frbanana,frapple,frmelon,frpear,frkiwi,frstrawberry', '', '', '', '', 0, ''),
  653. (246, 'p7', 'darts', '', '', 4194304, 900, 'http://xat.com/images/apicon.png', 1, 'Dart wheel zing game that can give prizes. $WIKIP', 0, 'dart,dartthrow', '1', '', '', '', 1, ''),
  654. (247, 'p7', 'weather', '', '', 8388608, 250, 'http://xat.com/images/apicon.png', 0, 'Smilies for all weathers. $WIKI', 0, 'foggy,windy2,hotthermo,tornado,stormy,sunny,sunshine,cleary,coldthermo,rainy,snowy2', '', '', '', '', 0, ''),
  655. (248, 'p7', 'kangel', '', '', 16777216, 250, 'http://xat.com/images/apicon.png', 0, 'kaoani style angels. $WIKI', 3, 'kantired,kancloud,kanjoy,kanroses,kanthink,kandizzy,kancry,kanlove,kangoo', '', 'A:p1kangel', '', '', 0, ''),
  656. (249, 'p7', 'kdemon', '', '', 33554432, 360, 'http://xat.com/images/apicon.png', 1, 'kaoani style demons. $WIKI', 0, 'kdesweat,kdestir,kdefire,kdefear,kderain,kdewar,kdetri,kdejoy,kderage', '', 'S:p1kdemon', '', '', 0, ''),
  657. (250, 'p7', 'autumn', '', '', 67108864, 275, 'http://xat.com/images/apicon.png', 0, 'Autumnal smilies. $WIKI', 0, 'gotleaf,leaves,acorn,jam,squirrel,mushrooms2,sunflower,leaf,scarecrow2', '', '', '', '', 0, ''),
  658. (251, 'p7', 'eggy', '', '', 134217728, 110, 'http://xat.com/images/apicon.png', 0, 'Egg shaped smilies. LIMITED. $WIKI', 0, 'eggyes,eggzzz,egggamer,eggupset,eggback,eggshh,eggthumbs,eggcool,eggtickoff,eggcross', '', '', '', '', 0, ''),
  659. (252, 'p7', 'redirect', '', '', 268435456, 500, 'http://xat.com/images/apicon.png', 1, 'Use this group power to redirect a chat to another chat. $WIKI', 0, 'redirect2', '1', '', '', '', 1, ''),
  660. (253, 'p7', 'ani1', '', '', 536870912, 307, 'http://xat.com/images/apicon.png', 1, 'Anime characters and a star FX. LIMITED. $WIKI', 0, 'a1love,a1pff,a1fx,a1eww,a1heh,a1fedup,a1cry,a1hot,a1adore,a1fan,a1evil', '', '', '', '', 0, ''),
  661. (254, 'p7', 'scary', '', '', 1073741824, 552, 'http://xat.com/images/apicon.png', 1, 'Scary smilies for Halloween. LIMITED. $WIKI', 0, 'tomb2,coffin,scarytree,cobweb,scaryghost,pknburning,scaryeyes,scarybat,scaryhat', '', '', '', '', 0, ''),
  662. (256, 'p8', 'zwhack', '', '', 1, 600, 'http://xat.com/images/apicon.png', 1, 'Use the xat ban hammer to smite those pesky zombies. $WIKI', 0, 'mallet', '1', '', '', '', 1, ''),
  663. (257, 'p8', 'halloween2', '', '', 2, 252, 'http://xat.com/images/apicon.png', 1, 'Halloween themed costumed yellow smilies. LIMITED. $WIKI', 0, 'madsci,docmask,whitehair,zbride,madhat,scissor,zgirl,bloodgirl,zdoc', '', '', '', '', 0, ''),
  664. (258, 'p8', 'piracy', '', 'Piracy smiles', 4, 258, 'http://xat.com/images/apicon.png', 1, '(piracy) (barrel) (handhook) (octopus2) (piratebird) (piratemap) (pirateship) (telescope2) (toxicdrink) (trove).', 0, 'handhook,octopus2,telescope2,piratemap,piratebird,pirateship,trove,toxicdrink,barrel', '', '', '', '', 0, ''),
  665. (259, 'p8', 'froggy', '', 'Froggy smiles', 8, 341, 'http://xat.com/images/apicon.png', 1, '(froggy) (frcool) (frmad) (frooo) (frcry) (frbiggrin) (frdead) (frsad) (frchkl) (frlove).', 0, 'frbiggrin,frchkl,frlove,frmad,frsad,frooo,frdead,frcry,frcool', '', '', '', '', 0, ''),
  666. (260, 'p8', 'blackfriday', '', 'Blackfriday smiles', 16, 200, 'http://xat.com/images/apicon.png', 0, ': (blackfriday) (bagfight) (bags) (bargain) (cart) (cashhere) (cashreg) (lowprice) (manybags) (pricetag)', 0, 'bagfight,cart,cashreg,manybags,cashhere,bags,lowprice,pricetag,bargain', '', '', '', '', 0, ''),
  667. (261, 'p8', 'winterland', '', 'Winterland smiles', 32, 300, 'http://xat.com/images/apicon.png', 1, '(winterland) (ornament2) (chimney) (fishing2) (glove) (snowman2) (winterhouse) (iceheart) (wlamp) (wtree).', 0, 'wtree,snowman2,chimney,fishing2,winterhouse,iceheart,glove,wlamp,ornament2', '', '', '', '', 0, ''),
  668. (262, 'p8', 'noel', '', 'Noel smiles', 64, 150, 'http://xat.com/images/apicon.png', 0, ' (noel) (angelf) (angelm) (snowmanf) (snowmanm) (mrsanta) (mrssanta) (reindeerm) (gingerman) (gingerwoman) (reindeerf).', 0, 'angelm,snowmanm,snowmanf,reindeerm,gingerwoman,reindeerf,angelf,gingerman,mrssanta,mrsanta', '', '', '', '', 0, ''),
  669. (263, 'p8', 'toys', '', 'Toys smiles', 128, 220, 'http://xat.com/images/apicon.png', 0, '(toys) (bearftoy) (bearmtoy) (cartoy) (dolltoy) (ducktoy) (helicoptertoy) (locomotivetoy) (puzzletoy) (pyramidtoy) (spinningtop).', 0, 'puzzletoy,locomotivetoy,bearftoy,pyramidtoy,cartoy,ducktoy,spinningtop,dolltoy,helicoptertoy,bearmtoy', '', '', '', '', 0, ''),
  670. (264, 'p8', 'badge', '', 'Badge Effect banned', 256, 300, 'http://xat.com/images/apicon.png', 0, 'badgeie uma pessoa indo no private chat e escreva /nb e envie ', 0, '', '', '', '', '', 0, ''),
  671. (265, 'p8', 'celebrate', '', 'Celebrate smiles', 512, 275, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (celebrate) (celbday) (celbottle) (celcnny) (celdance) (celdrunk) (celflag) (celgrad) (celhorn) (celvictory) (celyeah).', 0, 'celcnny,celyeah,celhorn,celflag,celgrad,celbday,celdance,celbottle,celdrunk,celvictory', '', '', '', '', 0, ''),
  672. (266, 'p8', 'hogmanay', '', 'Hogmanay smiles', 1024, 255, 'http://xat.com/images/apicon.png', 1, ' (hogmanay) (countdown) (firecracker) (firecracker2) (nyballoons) (nyclock) (nyfireworks) (nysparkler) (year).', 0, 'countdown,nyfireworks,year,nysparkler,firecracker2,nyballoons,nyclock,firecracker', '', '', '', '', 0, ''),
  673. (267, 'p8', 'cooking', '', 'Cooking smiles', 2048, 200, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (cooking) (blender) (chop) (cookkiss) (flipburger) (flipegg) (knead) (serving) (stir) (whisk).', 0, 'whisk,cookkiss,stir,serving,knead,blender,flipegg,flipburger,chop', '', '', '', '', 0, ''),
  674. (268, 'p8', 'farm', '', 'Farm smiles', 4096, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (farm) (cornback) (tomatoes) (sheepback) (scarecrw) (sugarcane) (wmback) (rooster) (milking) (eggs2) (growing) (cowface).', 0, 'sheepback,eggs2,growing,sugarcane,wmback,cowface,rooster,tomatoes,cornback,scarecrw,milking', '', '', '', '', 0, ''),
  675. (269, 'p8', 'divorce', '', 'Divorce smiles', 8192, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (divorce) (divsplit) (divring) (divnolove) (divm) (divf) (divbreak) (botf) (botm) (brokenheart2) (dhammer) (sadflower).', 0, 'divring,divm,divf,sadflower,dhammer,divsplit,botm,botf,divbreak,divnolove,brokenheart2', '', '', '', '', 0, ''),
  676. (270, 'p8', 'arachnid', '', 'arachnid smiles', 16384, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (arachnid) (ar1) (ar2) (ar3) (ar4) (ar5) (ar6) (ar7) (ar8) (ar9) (ar10).', 0, 'ar1,ar2,ar3,ar10,ar1,ar5,ar9,ar2,ar4,ar6,ar7,ar8', '', '', '', '', 0, ''),
  677. (271, 'p8', 'sweetheart', '', 'sweetheart smiles', 32768, 200, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (sweetheart) (candleheart) (cupidheart) (fourteenth) (keylove) (letterlove) (swans) (sweetheart) (treelove) (varrow) (vballoons).', 0, 'cupidheart,candleheart,keylove,swans,letterlove,varrow,fourteenth,sweetheart,vballoons,treelove', '', '', '', '', 0, ''),
  678. (272, 'p8', 'random', '', 'Random smiles', 65536, 250, 'http://xat.com/images/apicon.png', 0, 'Randomize smiles ', 0, '', '', '', '', '', 0, ''),
  679. (273, 'p8', 'ladybug', '', 'Ladybug smiles', 131072, 275, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (ladybug) (lbfly) (lbshock) (lbcry) (lbdizzy) (lbahh) (lbmad) (lbkiss) (lblove) (lbd) (lbdead) (lbbehind).', 0, 'lbbehind,lblove,lbmad,lbdead,lbfly,lbd,lbdizzy,lbcry,lbahh,lbkiss,lbshock', '', '', '', '', 0, ''),
  680. (274, 'p8', 'cupcake', '', 'Cupcake smiles', 262144, 240, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (cupcake) (cchappy) (ccsad) (ccbeye) (ccscn) (ccsleepy) (ccredface) (ccangry) (ccnono) (cccry) (ccback).', 0, 'cchappy,ccsleepy,ccback,ccangry,ccsad,cccry,ccbeye,ccnono,ccredface,ccscn', '', '', '', '', 0, ''),
  681. (275, 'p8', 'bitefx', '', 'Bitefx smiles', 524288, 230, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (bitefx) (broccoli) (jelly) (sweet).', 0, 'broccoli,sweet,jelly', '', '', '', '', 0, ''),
  682. (276, 'p8', 'luck', '', 'Luck smiles', 1048576, 300, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (luck) (sheep2) (pwalking) (potofgold) (horseshoe) (harp2) (goldclover) (clovers) (beer2) (pballoons) (luckbh).', 0, 'clovers,beer2,pwalking,pballoons,potofgold,sheep2,harp2,horseshoe,goldclover,luckbh', '', '', '', '', 0, ''),
  683. (277, 'p8', 'tongues', '', 'Tongues smiles', 2097152, 290, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (tongues) (tobig) (tocheeky) (toeeh) (tohaught) (toneener) (topfft) (tostarry) (toteeth) (tothirsty) (tocircle).', 0, 'tobig,tohaught,tothirsty,tocircle,tostarry,toneener,toteeth,toeeh,topfft,tocheeky', '', '', '', '', 0, ''),
  684. (278, 'p8', 'springflix', '', 'springflix smiles', 4194304, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (springflix) (butterfly2) (springflower) (springleaf) (sunflower2) (rflowers).', 0, 'springleaf,springflower,sunflower2,rflowers,butterfly2', '1', '', '', '', 1, ''),
  685. (279, 'p8', 'snail', '', 'snail smiles', 8388608, 222, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (snail) (snail1) (snail2) (snail3) (snail4) (snail5) (snail6) (snail7) (snail8) (snail9) (snail10).', 0, 'snail9,snail8,snail7,snail4,snail3,snail2,snail6,snail5,snail1,snailb,snail10', '', '', '', '', 0, ''),
  686. (280, 'p8', 'eventstats', '', 'Eventstats Graphicps', 16777216, 300, 'http://xat.com/images/apicon.png', 0, 'ver graficos de eventos do xat', 0, '', '1', '', '', '', 1, ''),
  687. (281, 'p8', 'easteregg', '', 'easteregg smiles', 33554432, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (easteregg) (birdyeggs) (carrots) (chicken2) (easterbasket) (ebutterfly) (eggchoco) (inegg) (rabbit) (sleepyegg)', 0, 'carrots,easterbasket,rabbit,sleepyegg,birdyeggs,chicken2,ebutterfly,eggchoco,inegg', '', '', '', '', 0, ''),
  688. (282, 'p8', 'butterflies', '', 'Butterflies smiles', 67108864, 250, 'http://xat.com/images/apicon.png', 1, 'borboletas smiles : (butterflies) (butterflies2) (butterflies3) (butterflies4) (butterflies5) (butterflies6) (butterflies7) (butterflies8) (butterflies9) (butterflies10)', 0, 'butterflies2,bfb,butterflies7,butterflies6,butterflies5,butterflies4,butterflies3,butterflies9,butterflies8,butterflies10', '', '', '', '', 0, ''),
  689. (283, 'p8', 'springy', '', 'springy smiles', 134217728, 230, 'http://xat.com/images/apicon.png', 1, 'os smiles os smiles sao : (springy) (sprevil) (sprtired) (sprcrazy) (sprangry) (sprexhausted) (sprthumbs) (sprfrus) (sprjump) (sprtongue) (sprback).', 0, 'sprtired,sprback,sprthumbs,sprexhausted,sprevil,sprangry,sprcrazy,sprtongue,sprjump,sprfrus', '', '', '', '', 0, ''),
  690. (284, 'p8', 'naughtystep', '', 'Naghtystep Banned Effects', 268435456, 300, 'http://xat.com/images/apicon.png', 0, 'de uma punicao nos usuarios colocando uma platorfma baixo do pino', 0, '', '', '', '', '', 0, ''),
  691. (285, 'p8', 'coffee', '', 'Coffe smiles', 536870912, 210, 'http://xat.com/images/apicon.png', 0, 'os smiles sao :(coffee) (cappuccino) (coffeebeans) (coffeemachine) (coffeesack) (fhand) (kettle) (lovecoffee) (mhand) (sugar)', 0, 'mhand,sugar,coffeesack,fhand,cappuccino,coffeebeans,coffeemachine,lovecoffee,kettle', '', '', '', '', 0, ''),
  692. (286, 'p8', 'hamster', '', 'Hamster smiles', 1073741824, 300, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (hamster) (habounce) (harock) (hasway) (hacry) (hasleep) (hajump) (hajoy) (haangry) (haexcite) (hadream) (hamsterback)', 0, 'harock,hajoy,habounce,hacry,haangry,hajump,hadream,hasleep,haexcite,hamsterback,hasway', '', '', '', '', 0, ''),
  693. (288, 'p9', 'dreams', '', 'Dreams smiles', 1, 267, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (dreams) (climbing) (dreaming) (dreamsbh) (glowworm) (indream) (lovedream) (night) (scarydream) (zsleep)', 0, 'climbing,dreaming,dreamsbh,glowworm,indream,lovedream,night,scarydream,zsleep', '', '', '', '', 0, ''),
  694. (289, 'p9', 'statuscolor', '', 'Statuscolor color status', 2, 5000, 'http://xat.com/images/apicon.png', 0, 'colore seu status totalmente como fazer : primeiro compre status - statuglow e em seguida statuscolor escreva no xat $status=test#r#rg', 0, '', '', '', '', '', 0, ''),
  695. (290, 'p9', 'gamefx', '', 'Gamefx Fx Effects', 4, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (gamefx) (grow) (starman) (screwattack) (bubble) (ghosteat) (coinfx)', 0, 'gamefx,grow,starman,screwattack,bubble,ghosteat,coinfx', '', 'N:p1starman', '', '', 0, ''),
  696. (291, 'p9', 'worldcup', '', 'Worldcup smiles', 8, 200, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (worldcup) (fball) (changes) (corner) (goal) (goldball) (player) (training) (vuvu2) (whistle)', 0, 'worldcup,fball,changes,coner,goal,goldball,player,training,vuvu2,whistle', '', '', '', '', 0, ''),
  697. (292, 'p9', 'rocks', '', 'Rocks smiles', 16, 230, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (rocks) (breakfx) (rollingfx) (roteeth) (rolook) (rostar) (rocute) (rofrown) (roahah) (rodizzy) (roblinky) (rolove) (rosmirk)', 0, 'rocks,breakfx,rollingfx,rostar,roteeth,rolook,rocute,rofrown,roahah,rodizzy,roblinky,rolove,rosmirk', '', '', '', '', 0, ''),
  698. (293, 'p9', 'yellowcard', '', 'Yellowcard banned Effects', 32, 300, 'http://xat.com/images/apicon.png', 1, 'De uma punicao aos usuarios com um cartao amarelo ', 0, '', '', '', '', '', 0, ''),
  699. (294, 'p9', 'ballfx', '', 'Ballfx smiles', 64, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (ballfx) (basketball) (bowling) (jugglerball) (rollingball)', 0, 'ballfx,basketball,bowling,jugglerball,rollingball', '', '', '', '', 0, ''),
  700. (295, 'p9', 'winner', '', 'Winner smiles', 128, 220, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (winner) (laurel) (podium) (ribbon2) (ticker) (trophy2) (winnerflag) (winning) (wtape)', 0, 'winner,laurel,podium,ribbon2,ticker,trophy2,winnerflag,winning,wtape', '', '', '', '', 0, ''),
  701. (296, 'p9', 'cutie', '', 'Cutie smiles', 256, 350, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (cutie) (cuangry) (cubear) (cubear1) (cubear2) (cubow) (cubunnyears) (cuchilled) (cuexcited) (cuhappy) (cupleased) (curage) (cutired) (cuunhappy)', 0, 'cutie,cuangry,cubear,cubow,cubunnyears,cuchilled,cuexcited,cuhappy,cupleased,curage,cutired,cuunhappy,baby', '', '', '', '', 0, ''),
  702. (297, 'p9', 'summerflix', '', 'Summerflix', 512, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (summerflix) (scrab) (sfan) (shell2) (sunny2).', 0, 'summerflix,scrab,sfan,shell2,sunny2', '1', '', '', '', 1, ''),
  703. (298, 'p9', 'coolz', '', 'Coolz Smiles', 1024, 350, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (coolz) (cocross) (cohappy) (colove) (conoway) (cozap) (corage) (corage2) (cosad) (cosurprise) (cowink) (coyoyo) (coshades) (codribble) (cocap)', 0, 'coolz,cocross,cohappy,colove,conoway,cozap,corage,corage2,cosad,cosurprise,cowink,coyoyo,coshades,codribble,cocap', '', '', '', '', 0, ''),
  704. (299, 'p9', 'magic', '', 'magic Smiles', 2048, 250, 'http://xat.com/images/apicon.png', 0, 'magic power : (magic) (magicbook) (magicbottle) (magicbunny) (magiccards) (magician) (magiclove) (magicshow) (magictable) (magicwand).', 0, 'magic,magicbook,magicbottle,magicbunny,magiccards,magician,magiclove,magicshow,magictable,magicwand', '', '', '', '', 0, ''),
  705. (300, 'p9', 'blubunni', '', 'Blubunni Smiles', 4096, 200, 'http://xat.com/images/apicon.png', 0, 'Blubunni power : (blubunni) (bbwary) (bbstars) (bbsecret) (bbnoway) (bblr) (bbhot) (bbhit) (bbhammer) (bbeyes) (bbeat).', 0, 'blubunni,bbwary,bbstars,bbsecret,bbnoway,bblr,bbhot,bbhit,bbhammer,bbeyes,bbeat', '', '', '', '', 0, ''),
  706. (301, 'p9', 'instruments', '', 'Intruments smiles', 8192, 230, 'http://xat.com/images/apicon.png', 0, 'Intruments power : (instruments) (accordion) (amplifier) (drum2) (drumkit) (guitar2) (lovemusic) (saxophone) (trumpet2) (violin2).', 0, 'instruments,accordion,amplifier,drum2,drumkit,guitar2,lovemusic,saxophone,trumpet2,violin2', '', '', '', '', 0, ''),
  707. (302, 'p9', 'pcback', '', 'Pcback ', 16384, 700, 'http://xat.com/images/apicon.png', 1, 'esse power quando voce usar ele voce no xat use um img#img para o outro usuario ver seu fundo no xat dele', 0, 'pcback', '', '', '', '', 0, ''),
  708. (303, 'p9', 'bird', '', 'bird smilies', 32768, 250, 'http://xat.com/images/apicon.png', 0, 'bird smilies : (bird) (birdcute) (birddizzy) (birdflap) (birdhot) (birdidea) (birdjackfx) (birdnod) (birdpuppetfx) (birdlove) (birdswing).', 0, 'bird,birdcute,birddizzy,birdflap,birdhot,birdidea,birdjackfx,birdnod,birdpuppetfx,birdlove,birdswing', '', '', '', '', 0, ''),
  709. (304, 'p9', 'chocolate', '', 'Chocolate smiles', 65536, 220, 'http://xat.com/images/apicon.png', 1, 'Chocolate smiles sao : (chocolate) (chcroissant) (chdonut) (chicecream) (chlove) (chstrawberry) (chsweet) (chsweet2) (chwhite) (cocoa).', 0, 'chcroissant,chdonut,chicecream,chlove,chstrawberry,chsweet,chsweet2,chwhite,cocoa', '', '', '', '', 0, ''),
  710. (305, 'p9', 'kmoon', '', 'kmoon smiles Fx', 131072, 240, 'http://xat.com/images/apicon.png', 1, 'Kmoon smiles eles sao : (kmoon) (kmyy) (kmya) (kmwink) (kmun) (kmsleep) (kmshutup) (kmsal) (kmpuffed) (kmoonback) (kmlove) (kmjoy).', 0, 'kmoon,kmyy,kmya,kmwink,kmun,kmsleep,kmshutup,kmsal,kmpuffed,kmoonback,kmlove,kmjoy,ffs,roulette,dice', '', '', '', '', 0, ''),
  711. (306, 'p9', 'ksun', '', 'ksun smiles efeito fx', 262144, 240, 'http://xat.com/images/apicon.png', 1, 'Sun Fx smiles eles sao : (ksun) (ksyy) (ksunback) (ksthink) (ksset) (ksrub) (ksnono) (ksmad) (kskiss) (ksjoy) (kshappy) (kshaha) (kscry).', 0, 'ksun,ksyy,ksunback,ksthink,ksset,ksrub,ksnono,ksmad,kskiss,ksjoy,kshappy,kshaha,kscry', '', '', '', '', 0, ''),
  712. (307, 'p9', 'jump', '', 'Jump Smiles', 524288, 220, 'http://xat.com/images/apicon.png', 1, 'Jump smiles que sao : (jump) (jump2) (jump3) (jump4) (jump5) (jump6) (jump7) (jump8) (jump9) (jump10) (jump11).', 0, 'jump,jump2,jump3,jump4,jump5,jump6,jump7,jump8,jump9,jump10,jump11', '', '', '', '', 0, ''),
  713. (308, 'p9', 'Trickortreat', '', 'Trickortreat smiles', 1048576, 230, 'http://xat.com/images/apicon.png', 0, 'Power especial de dia das bruxas os smiles sao : (trickortreat) (tt1) (tt2) (tt3) (tt4) (tt5) (tt6) (tt7) (hegg1) (hegg2) (hsoak1) (hsoak2) (htp1) (htp2).', 0, 'trickortreat,tt1,tt2,tt3,tt4,tt5,tt6,tt7,hegg1,hegg2,hsoak1,hsoak2,htp1,htp2', '', '', '', '', 0, ''),
  714. (309, 'p9', 'creepy', '', 'creppy smiles', 2097152, 230, 'http://xat.com/images/apicon.png', 0, 'creepy smiles que sao : (creepy) (ghostbag) (hbag) (hdoor) (hmask) (hsign) (mmymask) (piratemask) (scarypkn) (treats).', 0, 'creepy,ghostbag,hbag,hdoor,hmask,hsign,mmymask,piratemask,scarypkn,treats', '', '', '', '', 0, ''),
  715. (310, 'p9', 'manage', '', 'backup de usuarios', 4194304, 210, 'http://xat.com/images/apicon.png', 0, 'Backup e ajustar suas fileiras usuario', 0, 'manage', '', '', '', '', 0, ''),
  716. (311, 'p9', 'blueoni', '', 'blueoni smiles', 8388608, 220, 'http://xat.com/images/apicon.png', 0, 'Blue Oni smiles que sao : (blueoni) (bonitantrum) (bonisick) (boniscared) (bonisad) (bonipeek) (bonimad) (boniill) (bonigoo) (bonifan) (bonicry) (boniblink) (bonib).', 0, 'blueoni,bonitantrum,bonisick,boniscared,bonisad,bonipeek,bonimad,boniill,bonigoo,bonifan,bonicry,boniblink,bonib', '', '', '', '', 0, ''),
  717. (312, 'p9', 'Icebucket', '', 'icebucket smiles', 16777216, 210, 'http://xat.com/images/apicon.png', 0, 'icebucket smiles que sao : (icebucket) (brr) (bucket) (freezer) (hour24) (icecubes) (nominate) (tap2) (videorec).', 0, 'icebucket,brr,bucket,freezer,hour24,icecubes,nominate,tap2,videorec', '', '', '', '', 0, ''),
  718. (313, 'p9', 'gamefx2', '', 'efeito smile Fx ', 33554432, 300, 'http://xat.com/images/apicon.png', 0, 'gamefx smiles fx os smiles sao : (gamefx2) (stompfx) (shotfx) (respawnfx) (megafx2) (megafx) (hadouken) (exitfx) (bonesdeath) (bombfx) (birdsfx).', 0, 'gamefx2,stompfx,shotfx,respawnfx,megafx2,megafx,hadouken,exitfx,bonesdeath,bombfx,birdsfx', '', '', '', '', 0, ''),
  719. (314, 'p9', 'reveal', '', 'reveal smiles', 67108864, 450, 'http://xat.com/images/apicon.png', 0, 'Revealing holiday smilies. LIMITED. See wiki for details', 0, 'reveal,rwreath,rstocking,rsnowman,rsnowbury,rsanta,rpudding,rgift,rsnowglobe,rfire,rbell', '', '', '', '', 0, ''),
  720. (315, 'p9', 'holidays', '', 'holidays', 134217728, 275, 'http://xat.com/images/apicon.png', 0, 'Smiles de feriados os smiles sao : (holidays) (xcard) (snoww)(snowqueen)(snowm)(snowking)(mrclaus) (mrsclaus)(icequeen) (iceking) (holly) (bauble)', 0, 'holidays,xcard,snoww,snowqueen,snowm,snowking,mrclaus,mrsclaus,icequeen,iceking,holly,bauble', '', '', '', '', 0, ''),
  721. (316, 'p9', 'size', '', 'efeito de remendicionanto de smiles', 268435456, 250, 'http://xat.com/images/apicon.png', 0, 'controle o tamanhos dos smiles com esse power a forma de usar exemplo : goo#size#w5 = tamanho 5 - w = weight ', 0, 'size', '', '', '', '', 0, ''),
  722. (317, 'p9', 'lunar', '', 'lunar smiles', 536870912, 222, 'http://xat.com/images/apicon.png', 0, 'smiles em forma de lua (lunar) (dragon2) (fan2) (firecrackers) (fireworks2) (lantern2) (oranges)(partyball) (wealthgold) (year2) hats: (hat#hu) (hat#hF) e (hat#hy)', 0, 'lunar,dragon2,fan2,firecrackers,fireworks2,lantern2,oranges,partyball,wealthgold,year2', '', 'u:p1firecrackers,F:p1fireworks2,y:p1year2', '', '', 0, ''),
  723. (318, 'p9', 'backup', '', 'foto automatica', 1073741824, 300, 'http://xat.com/images/apicon.png', 0, 'automaticamente tira uma foto de seus usuarios (nao funciona)', 0, 'backup', '', '', '', '', 0, ''),
  724. (320, 'p10', 'egyptian', '', 'egyptian smiles', 1, 270, 'http://xat.com/images/apicon.png', 0, 'smiles egpicios eles sao : (gyptian) (scarab) (sarcophagus) (pyramids)(indiwhip)(horis) (greatsphinx) (egyptf) (egyptf2) (egyptf3) (egyptf4) (egyptcat) (boulder) (anubis) (ankh) hats: (hat#hv) (hat#hn) e (hat#hm)', 0, 'egyptian,scarab,sarcophagus,pyramids,indiwhip,horis,greatsphinx,egyptf,egyptf2,egyptf3,egyptf4,egyptcat,boulder,anubis,ankh', '', 'v:p1scarab,n:p1boul,m:p1ankh', '', '', 0, ''),
  725. (321, 'p10', 'retro', '', 'retro smiles', 2, 100, 'http://xat.com/images/apicon.png', 0, 'Reviva a epoca do 8-bit com esses smiles retro que sao : (retro) (retrox) (retss) (retkalien) (retheart) (retdog) (retd) (retcat)(retmad) (retkao) (retcool) (retflame) (retpong) hats: (hat#hc)', 0, 'retro,retrox,retss,retkalien,retheart,retdog,retd,retcat,retmad,retkao,retcool,retflame,retpong', '', 'c:p1retro', '', '', 0, ''),
  726. (322, 'p10', 'jewelry', '', 'jewelry smiles', 4, 260, 'http://xat.com/images/apicon.png', 0, 'smiles das joias eles sao : (jewelry) (jbeads) (jbracelet) (jchain) (jclock) (jcrown) (jearrings) (jheart) (jring) (jring2) hats: (hat#hj) e (hat#hr)', 0, 'jewelry,jbeads,jbracelet,jchain,jclock,jcrown,jearrings,jheart,jring,jring2', '', 'j:p1jewellery,r:p1jring', '', '', 0, ''),
  727. (323, 'p10', 'offset', '', 'efeito de smile vertical - horizontal', 8, 200, 'http://xat.com/images/apicon.png', 0, 'Mova o smile para baixo - para cima - para a esquerda e para direita hats: (hat#hd) (hat#hR) (hat#hx) e (hat#hf)', 0, 'offset', '', 'd:p1down,R:p1rotate,x:p1balance,f:p1fall', '', '', 0, ''),
  728. (324, 'p10', 'amore', '', 'amore smiles', 16, 230, 'http://xat.com/images/apicon.png', 0, 'Smile de primavera os smiles sao : (amore) (glitterheart) (abear) (abee) (acupid) (adove) (ahand) (akiss) (together) hats: (hat#hg) (hat#hB) (hat#he) e (hat#hh)', 0, 'amore,glitterheart,abear,abee,acupid,adove,ahand,akiss,together', '', 'g:p1glitterheart,B:p1tbear,e:p1tbee,h:p1theart', '', '', 0, ''),
  729. (325, 'p10', 'valfx', '', 'valfx smiles', 32, 300, 'http://xat.com/images/apicon.png', 0, 'power especial de dia dos namorados - os smiles sao : (valfx) (vburst) (vkiss) (vrain) (vthrow) hats: (hat#hg) e (hat#hb)', 0, 'valfx,vburst,vkiss,vrain,vthrow', '', 'b:p1balloon,t:p1throw', '', '', 0, ''),
  730. (326, 'p10', 'sapphire', '', 'pino', 64, 87000, 'http://xat.com/images/apicon.png', 1, 'esse pino e efeito cristal um everypower cristalino', 0, '', '', '', '', '', 0, ''),
  731. (327, 'p10', 'awesome', '', 'pino', 128, 96000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem o efeito cycle misturado com um everypower', 0, '', '', '', '', '', 0, ''),
  732. (328, 'p10', 'rainbow', '', 'pino', 256, 81000, 'http://xat.com/images/apicon.png', 0, 'esse pino tem o efeito arco-iris ', 0, '', '', '', '', '', 0, ''),
  733. (329, 'p10', 'desertground', '', 'pino', 512, 76000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem um efeito de terra misturado com areia', 0, '', '', '', '', '', 0, ''),
  734. (330, 'p10', 'esmerald', '', 'pino', 1024, 64000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem o efeito esmeralda e como um everypower esmeralda', 0, '', '', '', '', '', 0, ''),
  735. (331, 'p10', 'tecno', '', 'pino', 2048, 61000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem um efeito de pino xadrez', 0, '', '', '', '', '', 0, ''),
  736. (332, 'p10', 'celebridade', '', 'pino', 4096, 62000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem o efeito cyan e como um everypower cyan', 0, '', '', '', '', '', 0, ''),
  737. (333, 'p10', 'pawnglow', '', 'efeito de nameglow no pino', 8192, 91000, 'http://xat.com/images/apicon.png', 0, 'esse efeito funciona assim voce precisa das cores red-blue-green-light exemplo : (pglow#r)= contorno vermelho segundo efeito : hglow#r = nivel 2 mais forte terceiro efeito hflow#r = coronto mais forte nivel 3 ', 0, 'pglow,hglow,hflow', '', '', '', '', 0, ''),
  738. (334, 'p10', 'silver', '', 'pino', 16384, 45000, 'http://xat.com/images/apicon.png', 1, 'Esse pino e o efeito silver um pino parecido com um everypower cinza', 0, '', '', '', '', '', 0, ''),
  739. (335, 'p10', 'fadepawn', '', 'efeito de fade no pino', 32768, 69000, 'http://xat.com/images/apicon.png', 0, 'esse power e o efeito de alpha no pino quem usar o pino ira desaparecer e reaparecer', 0, '', '', '', '', '', 0, ''),
  740. (336, 'p10', 'cyclepawn', '', 'pino', 65536, 58000, 'http://xat.com/images/apicon.png', 0, 'Esse pino e efeito cycle no pino', 0, '', '', '', '', '', 0, ''),
  741. (337, 'p10', 'electroglow', '', 'pino', 131072, 55000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem uns efeitos eletricidade ', 0, '', '', '', '', '', 0, ''),
  742. (338, 'p10', 'blitz', '', 'pino', 262144, 67000, 'http://xat.com/images/apicon.png', 0, 'como o nome ja diz esse pino e a guerra dos relampagos um pino que pisca um glow de relampago', 0, '', '', '', '', '', 0, ''),
  743. (339, 'p10', 'oids', '', 'oids smiles', 524288, 250, 'http://xat.com/images/apicon.png', 0, 'Oids smiles sao : (oids) (oiwait) (oiswt) (oipunch) (oiouch) (oino) (oifrus) (oieek) (oicape) (oiblank) (oiaww) (oiback). hats: (hat#ho) e (hat#hi)', 4, 'oids,oiwait,oiswt,oipunch,oiouch,oino,oifrus,oieek,oicape,oiblank,oiaww,oiback', '', 'o:p1oids1,i:p1oids2', '', '', 0, ''),
  744. (340, 'p10', 'lolpawn', '', 'pino', 1048576, 89000, 'http://xat.com/images/apicon.png', 0, 'pino com as cores como se voce estive na balada compre esse pino e entre no ritimo ', 0, '', '', '', '', '', 0, ''),
  745. (341, 'p10', 'textcolor', '', 'efeito de cor no texto', 2097152, 15000, 'http://xat.com/images/apicon.png', 1, 'Textglow como o nome ja diz e o texto do xat totalmente colorido usando cortorno junto como o (namecolor) faca no seu profile (text#r#gb) e escreva no xat', 0, 'text', '', '', '', '', 0, ''),
  746. (342, 'p10', 'textglow', '', 'efeito de cor no texto', 4194304, 11000, 'http://xat.com/images/apicon.png', 1, 'Textglow como o nome ja diz e cortorno no texto do xat basta comprar ele e o textcolor e fazer no no seu profile (text#000001#r) para cor vermelha de glow e escrever no xat ', 0, 'text', '', '', '', '', 0, ''),
  747. (343, 'p10', 'birthday', '', 'birthday smiles', 8388608, 220, 'http://xat.com/images/apicon.png', 0, 'nao e seu aniversario mais se voce quiser pode usar esse power e seus smiles que sao (birthday) (bballoons) (bcake) (bcake2) (bconfetti) (bflower) (bgifts) (bhats) (btrumpet).', 0, 'birthday,bballoons,bcake,bcake2,bconfetti,bflower,bgifts,bhats,btrumpet', '', 'l:p1bballoons,L:p1bgifts', '', '', 0, ''),
  748. (344, 'p10', 'bobmarley', '', 'bobmarley pino', 16777216, 54000, 'http://xat.com/images/apicon.png', 1, 'o proprio !esse pino relembra muito as cores do Reggae pra quem gosta de marola esse pino e perfeito para voce', 0, '', '', '', '', '', 0, ''),
  749. (345, 'p10', 'summerpawn', '', 'summerpawn pino', 33554432, 65000, 'http://xat.com/images/apicon.png', 1, 'Pra quem gosta de praia e gosta das cores do verao esse pino e perfeito para voce', 0, '', '', '', '', '', 0, ''),
  750. (346, 'p10', 'reggae', '', 'Reggae pino', 67108864, 25000, 'http://xat.com/images/apicon.png', 1, 'e hora de fumar e relembrar os tempos do bobmarley usando esse pino', 0, '', '', '', '', '', 0, ''),
  751. (347, 'p10', 'madpawn', '', 'madpawn pino', 134217728, 54000, 'http://xat.com/images/apicon.png', 0, 'um awesome com mais brilho e efeitos', 0, '', '', '', '', '', 0, ''),
  752. (348, 'p10', 'worldpawn', '', 'worldpawn pino', 268435456, 34000, 'http://xat.com/images/apicon.png', 1, 'Worldpawn pino', 0, '', '', '', '', '', 0, ''),
  753. (349, 'p10', 'supercycle', '', 'efeito cycle', 536870912, 500, 'http://xat.com/images/apicon.png', 0, 'para usar : primeiro compre power cycle e supercycle depois vai ate o gerador de supercycle nesse link : http://util.xat.com/wiki/index.php?title=Supercycle e coloque o codigo no xat. hats: (hat#hs) (hat#hw) e (hat#hq)', 0, '', '', 's:p1supercycle1,w:p1supercycle2,q:p1supercycle3', '', '', 0, ''),
  754. (350, 'p10', 'nameflash', '', 'efeito fx de letras', 1073741824, 8000, 'http://xat.com/images/apicon.png', 0, 'as letras sao : (nfa)(nfb)(nfc)(nfd)(nfe)(nff)(nfg)(nfh)(nfi)(nfj)(nfk)(nfl)(nfm)(nfn)(nfo)(nfp)(nfq)(nfr)(nfs)(nft)(nfu)(nfv)(nfw)(nfy)(nfx)(nfz)', 0, 'nfa,nfb,nfc,nfd,nfe,nff,nfg,nfh,nfi,nfj,nfk,nfl,nfm,nfn,nfo,nfp,nfq,nfr,nfs,nft,nfu,nfv,nfw,nfy,nfx,nfz', '', '', '', '', 0, ''),
  755. (352, 'p11', 'tv', '', 'tv smiles', 1, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (tv) (tvskip) (tvread) (tvmad) (tvlove) (tvice) (tveek) (tvdance) (tvcry) (tvconfused) (tvback) hats : (hat#hz) e (hat#hl) ', 0, 'tv,tvskip,tvread,tvmad,tvlove,tvice,tveek,tvdance,tvcry,tvconfused,tvback', '', 'z:p1skip,l:p1tv', '', '', 0, ''),
  756. (353, 'p11', 'wxpawn', '', 'wxpawn pino', 2, 37000, 'http://xat.com/images/apicon.png', 1, 'wxpawn pino', 0, '', '', '', '', '', 0, ''),
  757. (354, 'p11', 'everycolor', '', 'Everycolor pino', 4, 45000, 'http://xat.com/images/apicon.png', 1, 'Everycolor pino', 0, '', '', '', '', '', 0, ''),
  758. (355, 'p11', 'fly', '', 'Fly power', 8, 254, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (fly)(flwonder)(flupset)(flstar)(flsad)(fldead)(flback)(flafraid)', 0, 'fly,flwonder,flupset,flstar,flsad,fldead,flback,flafraid', '0', '', '', '', 0, ''),
  759. (356, 'p11', 'pcorn', '', 'pcorn smiles', 16, 290, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (pcorn)(pcornback)(pcmad)(pcswt)(pckiss)(pcgoo)(pcgagged)(pcdizzy)(pccry)(pccaramel)(pcburnt).', 0, 'pcorn,pcornback,pcmad,pcswt,pckiss,pcgoo,pcgagged,pcdizzy,pccry,pccaramel,pcburnt', '', '', '', '', 0, ''),
  760. (357, 'p11', 'Clouds', '', 'Cloudy smilies', 32, 250, 'http://xat.com/images/apicon.png', 0, 'clouds smiles eles sao : (clouds) (cangry) (ccrying) (cfreeze) (chappy) (ckiss) (clove) (crainbow) (csleepy) (cwindy) hats: (hat#ht) (hat#hp) e (hat#hk)', 0, 'clouds,cangry,ccrying,cfreeze,chappy,ckiss,clove,crainbow,csleepy,cwindy', '', 't:p1cangry,p:p1clouds,k:p1csleepy', '', '', 0, ''),
  761. (358, 'p11', 'aliblue', '', 'Aliblue smiles', 64, 250, 'http://xat.com/images/apicon.png', 0, 'Aliblue smiles os smiles sao : (aliblue) (baliback) (balicry) (balidance) (balilove) (baliredface) (balisad) (balishutup) (balisick) (baliswt) hats : (hat#hW) e (hat#hQ)', 0, 'aliblue,baliback,balicry,balidance,balilove,baliredface,balisad,balishutup,balisick,baliswt', '', 'W:p1swt,Q:p1aliblue', '', '', 0, ''),
  762. (359, 'p11', 'beastie', '', 'Beastie Smiles', 128, 250, 'http://xat.com/images/apicon.png', 0, 'Beastie smiles eles sao : (beastie) (beastie2) (beastie3) (beastie4) (beastie5) (beastie6) (beastie7) (beastie8) (beastie9) (beastie10) (beastieb) (beastieb3) (beastieb5) (beastieb7) (beastieb9) hats : (hat#hT) e (hat#hD)', 2, 'beastie,beastie2,beastie3,beastie4,beastie5,beastie6,beastie7,beastie8,beastie9,beastie10,beastieb,beastieb3,beastieb5,beastieb7,beastieb9', '', 'T:p1beast1,D:p1beast2', '', '', 0, ''),
  763. (360, 'p11', 'easterlove', '', 'Easterlove smiles', 256, 250, 'http://xat.com/images/apicon.png', 0, 'Easterlove os smiles sao : (easterlove) (brokeegg) (bunnyfriend) (eabunny) (eabutterfly) (eachick) (eaeggs) (glitteregg) (lambs) hats: (hat#hU) (hat#hO) e (hat#hP)', 0, 'easterlove,brokeegg,bunnyfriend,eabunny,eabutterfly,eachick,eaeggs,glitteregg,lambs', '', 'U:p1eabutterfly,O:p1easterlove,P:p1glitteregg', '', '', 0, ''),
  764. (361, 'p11', 'bloonie', '', 'Bloonie smiles', 512, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (bloangry) (bloback) (blodizzy)(bloeat)(blohaha) (blohears) (blojoy) (blokiss) (blolove) (bloonie) (blosad) (blothink) (bloyes) hats : (hat#hH) e (hat#hJ)', 0, 'bloangry,bloback,blodizzy,bloeat,blohaha,blohears,blojoy,blokiss,blolove,bloonie,blosad,blothink,bloyes', '', 'H:p1bloonie,J:p1blohears', '', '', 0, ''),
  765. (362, 'p11', 'stormpawn', '', 'Storm pino', 1024, 60000, 'http://xat.com/images/apicon.png', 1, 'Storm pawn', 0, 'stormpawn', '', '', '', '', 0, ''),
  766. (363, 'p11', 'eco', '', 'eco smiles', 2048, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (eco) (windmill) (treeback) (recycle) (lightsoff) (goodeco) (badeco) (globehands) (ecoplant) (ecotree) (ecorecycle) (ecocar)', 0, 'eco,windmill,treeback,recycle,lightsoff,goodeco,badeco,globehands,ecoplant,ecotree,ecorecycle,ecocar', '', '', 'p1bloonie', 'blohears', 0, ''),
  767. (364, 'p11', 'firepawn', '', 'Firepawn Pawns', 4096, 54000, 'http://xat.com/images/apicon.png', 0, 'Firepawn pino', 0, 'firepawn', '', '', '', '', 0, ''),
  768. (365, 'p11', 'randomcolor', '', 'Random color pawns', 8192, 81000, 'http://xat.com/images/apicon.png', 1, 'randomcolor pawn', 0, 'randomcolor', '', '', '', '', 0, ''),
  769. (366, 'p11', 'remp', '', 'Remp pawns', 16384, 32000, 'http://xat.com/images/apicon.png', 1, 'remp pawn', 0, 'remp', '', '', '', '', 0, ''),
  770. (367, 'p11', 'gunny', '', 'Gunny pawns', 32768, 14000, 'http://xat.com/images/apicon.png', 1, 'gunnypawn', 0, 'Gunny', '', '', '', '', 0, ''),
  771. (368, 'p11', 'black', '', 'Black Pawn', 65536, 200000, 'http://xat.com/images/apicon.png', 1, 'Pino Staff [exclusivo para Administradores]', 0, 'black', '', '', '', '', 0, ''),
  772. (369, 'p11', 'floral', '', 'Floral smiles', 131072, 250, 'http://xat.com/images/apicon.png', 0, 'smiles floral eles sao (floral) (daffodil) (daisy) (gladiolus) (hydrangea) (lily) (lilyvalley) (orchid) (poppy) (snowdrop) (tulip) (viola). ', 0, 'floral,daffodil,daisy,gladiolus,hydrangea,lily,lilyvalley,orchid,poppy,snowdrop,tulip,viola', '', '', '', '', 0, ''),
  773. (370, 'p11', 'shinobi', '', '', 262144, 270, 'http://xat.com/images/apicon.png', 0, 'Shinobi smiles', 0, 'shinobi,shislash,shishur,shisais,shinun,shifight,shiescape,shichallenge,shicarve,shibow,shibo', '', '', '', '', 0, ''),
  774. (371, 'p11', 'gothic', '', '', 524288, 250, 'http://xat.com/images/apicon.png', 0, 'gothic smiles', 0, 'gothic,goth1,goth2,goth3,goth4,goth5,goth6,goth7,goth8,gothbat,gothmeta,gothskull,gothwings', '', '', '', '', 0, ''),
  775. (372, 'p11', 'pets', '', '', 1048576, 260, 'http://xat.com/images/apicon.png', 0, 'pets smiles', 0, 'pets,pcat,pchameleon,pdog,pfish,phamster,pmonkey,pparrot,psnake,pturtle', '', '', '', '', 0, ''),
  776. (373, 'p11', 'redcard', '', '', 2097152, 350, 'http://xat.com/images/apicon.png', 0, 'De cartao vermelho para alguem como no futebol', 0, 'redcard', '', '', '', '', 0, ''),
  777. (374, 'p11', 'ceebear', '', '', 4194304, 400, 'http://xat.com/images/apicon.png', 1, '', 0, 'ceebear,cbwave,cbsleep,cbnod,cbkiss,cbjoy,cbheart,cbcry,cbcontent,cbcheeks,cbawk,cbback,cbfwave,cbfsleep,cbfnod,cbfkiss,cbfjoy,cbfheart,cbfcry,cbfcontent,cbfcheeks,cbfawk,cbfback', '', '', '', '', 0, '');
  778. INSERT INTO `powers` (`id`, `section`, `name`, `new`, `d2`, `subid`, `cost`, `rockets`, `limited`, `description`, `amount`, `topsh`, `group`, `pawns`, `pawn`, `hats`, `grupal`, `poder`) VALUES
  779. (375, 'p11', 'aquatic', '', '', 8388608, 500, 'http://xat.com/images/apicon.png', 1, '', 0, 'aquatic,aqanchor,aqbubbles,aqfish,aqseahorse,aqsealove,aqseastar,aqshark,aqsubmarine', '', '', '', '', 0, ''),
  780. (376, 'p11', 'vacation', '', '', 16777216, 650, 'http://xat.com/images/apicon.png', 1, '', 0, 'vacation,vacsurf,vacsun,vacsprinkler,vacmelt,vaclounger,vacgelato,vacflower,vacdrink,vacball', '', '', '', '', 0, ''),
  781. (377, 'p11', 'shells', '', '', 33554432, 450, 'http://xat.com/images/apicon.png', 1, '', 0, 'shells,nautilus,pearlshell,seabottle,seastar,shcrab,shell3,shell4,shellfish', '', '', '', '', 0, ''),
  782. (378, 'p11', 'balloonfx', '', '', 67108864, 520, 'http://xat.com/images/apicon.png', 1, '', 0, 'balloonfx,baair,balloons,balove,bapop,bapump,basoap,baup,bawater', '', '', '', '', 0, ''),
  783. (379, 'p11', 'me', '', '', 134217728, 800, 'http://xat.com/images/apicon.png', 1, '', 0, 'me,coding,stylesheet,thisme', '', '', '', '', 0, ''),
  784. (380, 'p11', 'lions', '', '', 268435456, 456, 'http://xat.com/images/apicon.png', 1, '', 0, 'lions,lismile,lisleep,lisad,liplay,lipaw,limad,lilove,lifrus,licry,liconfused,liback', '', '', '', '', 0, ''),
  785. (381, 'p11', 'reaper', '', '', 536870912, 456, 'http://xat.com/images/apicon.png', 1, '', 0, 'reaper,reapsurprise,reapono,reapnod,reapno,reaphehe,reapgrin,reapevil,reapcry,reapbye,reapback,reapargh,reaptap,reapreap', '', '', '', '', 0, ''),
  786. (382, 'p11', 'big', '', '', 1073741824, 9000, 'http://xat.com/images/apicon.png', 1, '', 0, 'big,bigger,pump,bigsmall', '', '', '', '', 0, ''),
  787. (383, 'p11', 'glob', '', '', 2147483648, 540, 'http://xat.com/images/apicon.png', 0, '', 0, 'glob,glbye,glcry,gld,gldepressed,glhappy,glheart,gljoy,glrage,glredface,glsad,glsmile,gltongue,glwink,glyeayea', '', '', '', '', 0, ''),
  788. (384, 'p12', '384', '', '', 1, 0, 'http://xat.com/images/apicon.png', 1, '', 0, '', '', '', '', '', 0, ''),
  789. (385, 'p12', 'roosters', '', '', 2, 9000, 'http://xat.com/images/apicon.png', 1, '', 0, 'roosters,rowitch,rovane,ropeck,ropanic,romad,roheart,rocrowing,rocool,roback', '', '', '', '', 0, ''),
  790. (386, 'p12', 'ranklock', 'http://xat.com/images/NewIcon.gif', '', 4, 225, 'http://xat.com/images/apicon.png', 0, '', 0, 'ranklock', '', '', '', '', 0, ''),
  791. (387, 'p12', 'kstar', 'http://xat.com/images/NewIcon.gif', '', 8, 500, 'http://xat.com/images/apicon.png', 1, '', 0, 'kstar,kstangel,kstback,kstbonus,kstdevil,kstdizzy,kstkiss,kstlove,kstqueen,kstsleep', '', '', '', '', 0, '');
  792.  
  793. -- --------------------------------------------------------
  794.  
  795. --
  796. -- Table structure for table `promoted`
  797. --
  798.  
  799. CREATE TABLE IF NOT EXISTS `promoted` (
  800. `id` int(11) NOT NULL AUTO_INCREMENT,
  801. `chat` varchar(25) NOT NULL,
  802. `over` varchar(10) NOT NULL,
  803. `active` int(11) NOT NULL,
  804. `xby` bigint(20) NOT NULL,
  805. `at` varchar(10) NOT NULL,
  806. `price` bigint(20) NOT NULL,
  807. `banner` varchar(255) NOT NULL,
  808. PRIMARY KEY (`id`)
  809. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
  810.  
  811. --
  812. -- Dumping data for table `promoted`
  813. --
  814.  
  815. INSERT INTO `promoted` (`id`, `chat`, `over`, `active`, `xby`, `at`, `price`, `banner`) VALUES
  816. (3, 'Ajutor', '1446993754', 0, 1, '1446921754', 20000, ''),
  817. (4, 'Trade', '1447031736', 0, 1, '1447028136', 1000, ''),
  818. (5, 'Trade', '1447187369', 0, 1, '1447180169', 2000, ''),
  819. (6, 'Trade', '1447354889', 0, 1, '1447268489', 24000, ''),
  820. (7, 'Trade', '1448219734', 0, 1, '1448212534', 2000, ''),
  821. (8, 'Trade', '1448325873', 0, 1, '1448318673', 2000, ''),
  822. (9, 'Trade', '1448330314', 0, 1, '1448326715', 1000, ''),
  823. (10, 'Trade', '1448583430', 0, 1, '1448572630', 3000, ''),
  824. (11, 'Trade', '1448649440', 0, 1, '1448645840', 1000, ''),
  825. (12, 'Trade', '1449283812', 0, 1, '1449269412', 4000, ''),
  826. (13, 'Trade', '1449363337', 0, 1, '1449341738', 6000, ''),
  827. (14, 'Trade', '1449712580', 0, 1, '1449694580', 5000, '');
  828.  
  829. -- --------------------------------------------------------
  830.  
  831. --
  832. -- Table structure for table `ranks`
  833. --
  834.  
  835. CREATE TABLE IF NOT EXISTS `ranks` (
  836. `id` int(255) NOT NULL AUTO_INCREMENT COMMENT 'index',
  837. `chatid` bigint(20) NOT NULL,
  838. `userid` bigint(11) NOT NULL,
  839. `f` int(3) NOT NULL,
  840. `tempend` varchar(255) NOT NULL DEFAULT '0',
  841. `badge` varchar(255) NOT NULL,
  842. PRIMARY KEY (`id`)
  843. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=67 ;
  844.  
  845. --
  846. -- Dumping data for table `ranks`
  847. --
  848.  
  849. INSERT INTO `ranks` (`id`, `chatid`, `userid`, `f`, `tempend`, `badge`) VALUES
  850. (10, 2, 10000, 4, '0', ''),
  851. (41, 2, 1, 1, '0', ''),
  852. (59, 2, 815, 4, '0', ''),
  853. (64, 1, 815, 4, '0', ''),
  854. (66, 1, 1, 1, '0', '');
  855.  
  856. -- --------------------------------------------------------
  857.  
  858. --
  859. -- Table structure for table `response`
  860. --
  861.  
  862. CREATE TABLE IF NOT EXISTS `response` (
  863. `id` int(11) NOT NULL AUTO_INCREMENT,
  864. `question` varchar(255) NOT NULL,
  865. `answer` varchar(255) NOT NULL,
  866. PRIMARY KEY (`id`)
  867. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
  868.  
  869. --
  870. -- Dumping data for table `response`
  871. --
  872.  
  873. INSERT INTO `response` (`id`, `question`, `answer`) VALUES
  874. (1, 'bot', 'oi [user].'),
  875. (2, 'eae', 'eae [user].'),
  876. (3, 'sexo', 'ai sim hein [user].');
  877.  
  878. -- --------------------------------------------------------
  879.  
  880. --
  881. -- Table structure for table `server`
  882. --
  883.  
  884. CREATE TABLE IF NOT EXISTS `server` (
  885. `index` int(11) NOT NULL AUTO_INCREMENT,
  886. `ipbans` longtext NOT NULL,
  887. `pid` int(255) NOT NULL,
  888. `tax` bigint(255) NOT NULL DEFAULT '0',
  889. `ipc` int(5) NOT NULL,
  890. `connect_ip` text NOT NULL,
  891. `server_ip` text NOT NULL,
  892. `server_pt` int(255) NOT NULL,
  893. `backup_pt` int(255) NOT NULL,
  894. `server_domain` text NOT NULL,
  895. `verification` int(1) NOT NULL,
  896. `starting_xats` int(255) NOT NULL,
  897. `starting_days` int(255) NOT NULL,
  898. `max_per_ip` int(255) NOT NULL,
  899. `max_total` int(255) NOT NULL,
  900. `spam_wait` int(255) NOT NULL,
  901. `staff` text NOT NULL,
  902. `pawns` text NOT NULL,
  903. `pawns2` varchar(255) NOT NULL,
  904. `ixatname` varchar(200) NOT NULL,
  905. `anuncio` varchar(300) NOT NULL,
  906. `special_pawns` text NOT NULL,
  907. PRIMARY KEY (`index`)
  908. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
  909.  
  910. --
  911. -- Dumping data for table `server`
  912. --
  913.  
  914. INSERT INTO `server` (`index`, `ipbans`, `pid`, `tax`, `ipc`, `connect_ip`, `server_ip`, `server_pt`, `backup_pt`, `server_domain`, `verification`, `starting_xats`, `starting_days`, `max_per_ip`, `max_total`, `spam_wait`, `staff`, `pawns`, `pawns2`, `ixatname`, `anuncio`, `special_pawns`) VALUES
  915. (1, '', 8672, 0, 61866, 'localhost', '0', 10090, 10090, 'localhost', 0, 250000, 50, 150, 1000, 0, '["1","42","815"]', '{"time":1576454400,"r":[381,"p1ranklock"],"s":[383,"p1kstar"],"w":[342,"p1Watering"],"t":[350,"p1pturtle"],"b":[383,"p1kstbonus"],"p":[373,"p1psapphire"],"h":[373,"p1pheart"],"i":[371,"p1big2"],"c":[373,"p1pcrystal"],"m":[368,"p1onmoon"],"a":[377,"p1kandle2"],"d":[383,"p1kstdizzy"],"f":[360,"p1balloonfx"],"C":[171,"p1cat"],"W":[295,"p1winner"],"u":[366,"p1tufo"],"j":[355,"p1nickjump"],"g":[375,"p1glob1"],"l":[375,"p1glob2"],"e":[369,"p1reap2"],"v":[354,"p1vac1"],"F":[317,"p1fireworks2"],"y":[331,"p1supercycle3"],"R":[349,"p1redcard2"],"x":[323,"p1balance"],"B":[324,"p1tbear"],"M":[325,"p1throw"],"o":[379,"p1rovane"],"H":[337,"p1Bloonie"],"J":[337,"p1Blohears"],"1":[341,"p1devil"],"2":[341,"p1kashif"],"3":[341,"p1andre"],"4":[341,"p1shahjee"],"n":[355,"p1nick"],"N":[356,"p1nautilus"],"P":[356,"p1pearlshell"],"S":[356,"p1shells"],"k":[377,"p1kandle1"],"q":[383,"p1stqueen"],"!":[999,""]}', '[29,30,35,64,67,153,330,353,348,326,327,328,329,330,331,332,333,334,335,336,337,338,340,344,345,346,347,354,362,364,365,366,367,368]', 'xatchat', '', '');
  916.  
  917. -- --------------------------------------------------------
  918.  
  919. --
  920. -- Table structure for table `trade`
  921. --
  922.  
  923. CREATE TABLE IF NOT EXISTS `trade` (
  924. `id` int(255) NOT NULL AUTO_INCREMENT,
  925. `userid` int(255) NOT NULL,
  926. `powerid` int(255) NOT NULL,
  927. `price` int(255) NOT NULL,
  928. `count` bigint(255) NOT NULL,
  929. `private` int(25) NOT NULL DEFAULT '0',
  930. PRIMARY KEY (`id`)
  931. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  932.  
  933. -- --------------------------------------------------------
  934.  
  935. --
  936. -- Table structure for table `transfers`
  937. --
  938.  
  939. CREATE TABLE IF NOT EXISTS `transfers` (
  940. `to` int(255) NOT NULL,
  941. `from` int(255) NOT NULL,
  942. `xats` int(255) NOT NULL,
  943. `days` int(255) NOT NULL,
  944. `timestamp` int(255) NOT NULL
  945. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  946.  
  947. -- --------------------------------------------------------
  948.  
  949. --
  950. -- Table structure for table `userpowers`
  951. --
  952.  
  953. CREATE TABLE IF NOT EXISTS `userpowers` (
  954. `userid` bigint(11) NOT NULL,
  955. `powerid` varchar(255) NOT NULL,
  956. `count` int(11) NOT NULL
  957. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  958.  
  959. --
  960. -- Dumping data for table `userpowers`
  961. --
  962.  
  963. INSERT INTO `userpowers` (`userid`, `powerid`, `count`) VALUES
  964. (815, '0', 1),
  965. (815, '1', 1),
  966. (815, '2', 1),
  967. (815, '3', 1),
  968. (815, '4', 1),
  969. (815, '5', 1),
  970. (815, '6', 1),
  971. (815, '7', 1),
  972. (815, '8', 1),
  973. (815, '9', 1),
  974. (815, '10', 1),
  975. (815, '11', 1),
  976. (815, '12', 1),
  977. (815, '13', 1),
  978. (815, '14', 1),
  979. (815, '15', 1),
  980. (815, '16', 1),
  981. (815, '17', 1),
  982. (815, '18', 1),
  983. (815, '19', 1),
  984. (815, '20', 1),
  985. (815, '21', 1),
  986. (815, '22', 1),
  987. (815, '23', 1),
  988. (815, '24', 1),
  989. (815, '25', 1),
  990. (815, '26', 1),
  991. (815, '27', 1),
  992. (815, '28', 1),
  993. (815, '30', 1),
  994. (815, '32', 1),
  995. (815, '33', 1),
  996. (815, '34', 1),
  997. (815, '35', 1),
  998. (815, '36', 1),
  999. (815, '37', 1),
  1000. (815, '38', 1),
  1001. (815, '39', 1),
  1002. (815, '40', 1),
  1003. (815, '41', 1),
  1004. (815, '42', 1),
  1005. (815, '43', 1),
  1006. (815, '44', 1),
  1007. (815, '45', 1),
  1008. (815, '46', 1),
  1009. (815, '47', 1),
  1010. (815, '48', 1),
  1011. (815, '49', 1),
  1012. (815, '50', 1),
  1013. (815, '51', 1),
  1014. (815, '52', 1),
  1015. (815, '53', 1),
  1016. (815, '54', 1),
  1017. (815, '55', 1),
  1018. (815, '56', 1),
  1019. (815, '57', 1),
  1020. (815, '58', 1),
  1021. (815, '59', 1),
  1022. (815, '60', 1),
  1023. (815, '61', 1),
  1024. (815, '62', 1),
  1025. (815, '64', 1),
  1026. (815, '65', 1),
  1027. (815, '66', 1),
  1028. (815, '67', 1),
  1029. (815, '68', 1),
  1030. (815, '69', 1),
  1031. (815, '70', 1),
  1032. (815, '71', 1),
  1033. (815, '72', 1),
  1034. (815, '73', 1),
  1035. (815, '74', 1),
  1036. (815, '75', 1),
  1037. (815, '76', 1),
  1038. (815, '77', 1),
  1039. (815, '78', 1),
  1040. (815, '79', 1),
  1041. (815, '80', 1),
  1042. (815, '81', 1),
  1043. (815, '82', 1),
  1044. (815, '83', 1),
  1045. (815, '84', 1),
  1046. (815, '85', 1),
  1047. (815, '86', 1),
  1048. (815, '87', 1),
  1049. (815, '88', 1),
  1050. (815, '89', 1),
  1051. (815, '90', 1),
  1052. (815, '91', 1),
  1053. (815, '92', 1),
  1054. (815, '93', 1),
  1055. (815, '94', 1),
  1056. (815, '96', 1),
  1057. (815, '97', 1),
  1058. (815, '98', 1),
  1059. (815, '99', 1),
  1060. (815, '100', 1),
  1061. (815, '101', 1),
  1062. (815, '102', 1),
  1063. (815, '103', 1),
  1064. (815, '104', 1),
  1065. (815, '105', 1),
  1066. (815, '106', 1),
  1067. (815, '107', 1),
  1068. (815, '108', 1),
  1069. (815, '109', 1),
  1070. (815, '110', 1),
  1071. (815, '111', 1),
  1072. (815, '112', 1),
  1073. (815, '113', 1),
  1074. (815, '114', 1),
  1075. (815, '115', 1),
  1076. (815, '116', 1),
  1077. (815, '117', 1),
  1078. (815, '118', 1),
  1079. (815, '119', 1),
  1080. (815, '120', 1),
  1081. (815, '121', 1),
  1082. (815, '122', 1),
  1083. (815, '123', 1),
  1084. (815, '124', 1),
  1085. (815, '125', 1),
  1086. (815, '126', 1),
  1087. (815, '128', 1),
  1088. (815, '129', 1),
  1089. (815, '130', 1),
  1090. (815, '131', 1),
  1091. (815, '132', 1),
  1092. (815, '133', 1),
  1093. (815, '134', 1),
  1094. (815, '135', 1),
  1095. (815, '136', 1),
  1096. (815, '137', 1),
  1097. (815, '138', 1),
  1098. (815, '139', 1),
  1099. (815, '140', 1),
  1100. (815, '141', 1),
  1101. (815, '142', 1),
  1102. (815, '143', 1),
  1103. (815, '144', 1),
  1104. (815, '145', 1),
  1105. (815, '146', 1),
  1106. (815, '147', 1),
  1107. (815, '148', 1),
  1108. (815, '149', 1),
  1109. (815, '150', 1),
  1110. (815, '151', 1),
  1111. (815, '152', 1),
  1112. (815, '153', 1),
  1113. (815, '154', 1),
  1114. (815, '155', 1),
  1115. (815, '156', 1),
  1116. (815, '157', 1),
  1117. (815, '158', 1),
  1118. (815, '160', 1),
  1119. (815, '161', 1),
  1120. (815, '162', 1),
  1121. (815, '163', 1),
  1122. (815, '164', 1),
  1123. (815, '165', 1),
  1124. (815, '166', 1),
  1125. (815, '167', 1),
  1126. (815, '168', 1),
  1127. (815, '169', 1),
  1128. (815, '170', 1),
  1129. (815, '171', 1),
  1130. (815, '172', 1),
  1131. (815, '173', 1),
  1132. (815, '174', 1),
  1133. (815, '175', 1),
  1134. (815, '176', 1),
  1135. (815, '177', 1),
  1136. (815, '178', 1),
  1137. (815, '179', 1),
  1138. (815, '180', 1),
  1139. (815, '181', 1),
  1140. (815, '182', 1),
  1141. (815, '183', 1),
  1142. (815, '184', 1),
  1143. (815, '185', 1),
  1144. (815, '186', 1),
  1145. (815, '187', 1),
  1146. (815, '188', 1),
  1147. (815, '189', 1),
  1148. (815, '190', 1),
  1149. (815, '192', 1),
  1150. (815, '193', 1),
  1151. (815, '194', 1),
  1152. (815, '195', 1),
  1153. (815, '196', 1),
  1154. (815, '197', 1),
  1155. (815, '198', 1),
  1156. (815, '199', 1),
  1157. (815, '200', 1),
  1158. (815, '201', 1),
  1159. (815, '202', 1),
  1160. (815, '203', 1),
  1161. (815, '204', 1),
  1162. (815, '205', 1),
  1163. (815, '206', 1),
  1164. (815, '207', 1),
  1165. (815, '208', 1),
  1166. (815, '209', 1),
  1167. (815, '210', 1),
  1168. (815, '211', 1),
  1169. (815, '212', 1),
  1170. (815, '213', 1),
  1171. (815, '214', 1),
  1172. (815, '215', 1),
  1173. (815, '216', 1),
  1174. (815, '217', 1),
  1175. (815, '218', 1),
  1176. (815, '219', 1),
  1177. (815, '220', 1),
  1178. (815, '221', 1),
  1179. (815, '222', 1),
  1180. (815, '224', 1),
  1181. (815, '225', 1),
  1182. (815, '226', 1),
  1183. (815, '227', 1),
  1184. (815, '228', 1),
  1185. (815, '229', 1),
  1186. (815, '230', 1),
  1187. (815, '231', 1),
  1188. (815, '232', 1),
  1189. (815, '233', 1),
  1190. (815, '234', 1),
  1191. (815, '235', 1),
  1192. (815, '236', 1),
  1193. (815, '237', 1),
  1194. (815, '238', 1),
  1195. (815, '239', 1),
  1196. (815, '240', 1),
  1197. (815, '241', 1),
  1198. (815, '242', 1),
  1199. (815, '243', 1),
  1200. (815, '244', 1),
  1201. (815, '245', 1),
  1202. (815, '246', 1),
  1203. (815, '247', 1),
  1204. (815, '248', 1),
  1205. (815, '249', 1),
  1206. (815, '250', 1),
  1207. (815, '251', 1),
  1208. (815, '252', 1),
  1209. (815, '253', 1),
  1210. (815, '254', 1),
  1211. (815, '256', 1),
  1212. (815, '257', 1),
  1213. (815, '258', 1),
  1214. (815, '259', 1),
  1215. (815, '260', 1),
  1216. (815, '261', 1),
  1217. (815, '262', 1),
  1218. (815, '263', 1),
  1219. (815, '264', 1),
  1220. (815, '265', 1),
  1221. (815, '266', 1),
  1222. (815, '267', 1),
  1223. (815, '268', 1),
  1224. (815, '269', 1),
  1225. (815, '270', 1),
  1226. (815, '271', 1),
  1227. (815, '272', 1),
  1228. (815, '273', 1),
  1229. (815, '274', 1),
  1230. (815, '275', 1),
  1231. (815, '276', 1),
  1232. (815, '277', 1),
  1233. (815, '278', 1),
  1234. (815, '279', 1),
  1235. (815, '280', 1),
  1236. (815, '281', 1),
  1237. (815, '282', 1),
  1238. (815, '283', 1),
  1239. (815, '284', 1),
  1240. (815, '285', 1),
  1241. (815, '286', 1),
  1242. (815, '288', 1),
  1243. (815, '289', 1),
  1244. (815, '290', 1),
  1245. (815, '291', 1),
  1246. (815, '292', 1),
  1247. (815, '293', 1),
  1248. (815, '294', 1),
  1249. (815, '295', 1),
  1250. (815, '296', 1),
  1251. (815, '297', 1),
  1252. (815, '298', 1),
  1253. (815, '299', 1),
  1254. (815, '300', 1),
  1255. (815, '301', 1),
  1256. (815, '302', 1),
  1257. (815, '303', 1),
  1258. (815, '304', 1),
  1259. (815, '305', 1),
  1260. (815, '306', 1),
  1261. (815, '307', 1),
  1262. (815, '308', 1),
  1263. (815, '309', 1),
  1264. (815, '310', 1),
  1265. (815, '311', 1),
  1266. (815, '312', 1),
  1267. (815, '313', 1),
  1268. (815, '314', 1),
  1269. (815, '315', 1),
  1270. (815, '316', 1),
  1271. (815, '317', 1),
  1272. (815, '318', 1),
  1273. (815, '320', 1),
  1274. (815, '321', 1),
  1275. (815, '322', 1),
  1276. (815, '323', 1),
  1277. (815, '324', 1),
  1278. (815, '325', 1),
  1279. (815, '326', 1),
  1280. (815, '327', 1),
  1281. (815, '328', 1),
  1282. (815, '329', 1),
  1283. (815, '330', 1),
  1284. (815, '331', 1),
  1285. (815, '332', 1),
  1286. (815, '333', 1),
  1287. (815, '334', 1),
  1288. (815, '336', 1),
  1289. (815, '337', 1),
  1290. (815, '338', 1),
  1291. (815, '339', 1),
  1292. (815, '340', 1),
  1293. (815, '341', 1),
  1294. (815, '342', 1),
  1295. (815, '343', 1),
  1296. (815, '344', 1),
  1297. (815, '345', 1),
  1298. (815, '346', 1),
  1299. (815, '347', 1),
  1300. (815, '348', 1),
  1301. (815, '349', 1),
  1302. (815, '350', 1),
  1303. (815, '352', 1),
  1304. (815, '353', 1),
  1305. (815, '354', 1),
  1306. (815, '355', 1),
  1307. (815, '356', 1),
  1308. (815, '357', 1),
  1309. (815, '358', 1),
  1310. (815, '359', 1),
  1311. (815, '360', 1),
  1312. (815, '361', 1),
  1313. (815, '362', 1),
  1314. (815, '363', 1),
  1315. (815, '364', 1),
  1316. (815, '365', 1),
  1317. (815, '366', 1),
  1318. (815, '367', 1),
  1319. (815, '368', 1),
  1320. (815, '369', 1),
  1321. (815, '370', 1),
  1322. (815, '371', 1),
  1323. (815, '372', 1),
  1324. (815, '373', 1),
  1325. (815, '374', 1),
  1326. (815, '375', 1),
  1327. (815, '376', 1),
  1328. (815, '377', 1),
  1329. (815, '378', 1),
  1330. (815, '379', 1),
  1331. (815, '380', 1),
  1332. (815, '381', 1),
  1333. (815, '382', 1),
  1334. (815, '385', 1),
  1335. (815, '386', 1),
  1336. (815, '387', 1),
  1337. (1, '0', 1),
  1338. (1, '1', 1),
  1339. (1, '2', 1),
  1340. (1, '3', 1),
  1341. (1, '4', 1),
  1342. (1, '5', 1),
  1343. (1, '6', 1),
  1344. (1, '7', 1),
  1345. (1, '8', 1),
  1346. (1, '9', 1),
  1347. (1, '10', 1),
  1348. (1, '11', 1),
  1349. (1, '12', 1),
  1350. (1, '13', 1),
  1351. (1, '14', 1),
  1352. (1, '15', 1),
  1353. (1, '16', 1),
  1354. (1, '17', 1),
  1355. (1, '18', 1),
  1356. (1, '19', 1),
  1357. (1, '20', 1),
  1358. (1, '21', 1),
  1359. (1, '22', 1),
  1360. (1, '23', 1),
  1361. (1, '24', 1),
  1362. (1, '25', 1),
  1363. (1, '26', 1),
  1364. (1, '27', 1),
  1365. (1, '28', 1),
  1366. (1, '29', 1),
  1367. (1, '30', 1),
  1368. (1, '32', 1),
  1369. (1, '33', 1),
  1370. (1, '34', 1),
  1371. (1, '35', 1),
  1372. (1, '36', 1),
  1373. (1, '37', 1),
  1374. (1, '38', 1),
  1375. (1, '39', 1),
  1376. (1, '40', 1),
  1377. (1, '41', 1),
  1378. (1, '42', 1),
  1379. (1, '43', 1),
  1380. (1, '44', 1),
  1381. (1, '45', 1),
  1382. (1, '46', 1),
  1383. (1, '47', 1),
  1384. (1, '48', 1),
  1385. (1, '49', 1),
  1386. (1, '50', 1),
  1387. (1, '51', 1),
  1388. (1, '52', 1),
  1389. (1, '53', 1),
  1390. (1, '54', 1),
  1391. (1, '55', 1),
  1392. (1, '56', 1),
  1393. (1, '57', 1),
  1394. (1, '58', 1),
  1395. (1, '59', 1),
  1396. (1, '60', 1),
  1397. (1, '61', 1),
  1398. (1, '62', 1),
  1399. (1, '64', 1),
  1400. (1, '65', 1),
  1401. (1, '66', 1),
  1402. (1, '67', 1),
  1403. (1, '68', 1),
  1404. (1, '69', 1),
  1405. (1, '70', 1),
  1406. (1, '71', 1),
  1407. (1, '72', 1),
  1408. (1, '73', 1),
  1409. (1, '74', 1),
  1410. (1, '75', 1),
  1411. (1, '76', 1),
  1412. (1, '77', 1),
  1413. (1, '78', 1),
  1414. (1, '79', 1),
  1415. (1, '80', 1),
  1416. (1, '81', 1),
  1417. (1, '82', 1),
  1418. (1, '83', 1),
  1419. (1, '84', 1),
  1420. (1, '85', 1),
  1421. (1, '86', 1),
  1422. (1, '87', 1),
  1423. (1, '88', 1),
  1424. (1, '89', 1),
  1425. (1, '90', 1),
  1426. (1, '91', 1),
  1427. (1, '92', 1),
  1428. (1, '93', 1),
  1429. (1, '94', 1),
  1430. (1, '96', 1),
  1431. (1, '97', 1),
  1432. (1, '98', 1),
  1433. (1, '99', 1),
  1434. (1, '100', 1),
  1435. (1, '101', 1),
  1436. (1, '102', 1),
  1437. (1, '103', 1),
  1438. (1, '104', 1),
  1439. (1, '105', 1),
  1440. (1, '106', 1),
  1441. (1, '107', 1),
  1442. (1, '108', 1),
  1443. (1, '109', 1),
  1444. (1, '110', 1),
  1445. (1, '111', 1),
  1446. (1, '112', 1),
  1447. (1, '113', 1),
  1448. (1, '114', 1),
  1449. (1, '115', 1),
  1450. (1, '116', 1),
  1451. (1, '117', 1),
  1452. (1, '118', 1),
  1453. (1, '119', 1),
  1454. (1, '120', 1),
  1455. (1, '121', 1),
  1456. (1, '122', 1),
  1457. (1, '123', 1),
  1458. (1, '124', 1),
  1459. (1, '125', 1),
  1460. (1, '126', 1),
  1461. (1, '128', 1),
  1462. (1, '129', 1),
  1463. (1, '130', 1),
  1464. (1, '131', 1),
  1465. (1, '132', 1),
  1466. (1, '133', 1),
  1467. (1, '134', 1),
  1468. (1, '135', 1),
  1469. (1, '136', 1),
  1470. (1, '137', 1),
  1471. (1, '138', 1),
  1472. (1, '139', 1),
  1473. (1, '140', 1),
  1474. (1, '141', 1),
  1475. (1, '142', 1),
  1476. (1, '143', 1),
  1477. (1, '144', 1),
  1478. (1, '145', 1),
  1479. (1, '146', 1),
  1480. (1, '147', 1),
  1481. (1, '148', 1),
  1482. (1, '149', 1),
  1483. (1, '150', 1),
  1484. (1, '151', 1),
  1485. (1, '152', 1),
  1486. (1, '153', 1),
  1487. (1, '154', 1),
  1488. (1, '155', 1),
  1489. (1, '156', 1),
  1490. (1, '157', 1),
  1491. (1, '158', 1),
  1492. (1, '160', 1),
  1493. (1, '161', 1),
  1494. (1, '162', 1),
  1495. (1, '163', 1),
  1496. (1, '164', 1),
  1497. (1, '165', 1),
  1498. (1, '166', 1),
  1499. (1, '167', 1),
  1500. (1, '168', 1),
  1501. (1, '169', 1),
  1502. (1, '170', 1),
  1503. (1, '171', 1),
  1504. (1, '172', 1),
  1505. (1, '173', 1),
  1506. (1, '174', 1),
  1507. (1, '175', 1),
  1508. (1, '176', 1),
  1509. (1, '177', 1),
  1510. (1, '178', 1),
  1511. (1, '179', 1),
  1512. (1, '180', 1),
  1513. (1, '181', 1),
  1514. (1, '182', 1),
  1515. (1, '183', 1),
  1516. (1, '184', 1),
  1517. (1, '185', 1),
  1518. (1, '186', 1),
  1519. (1, '187', 1),
  1520. (1, '188', 1),
  1521. (1, '189', 1),
  1522. (1, '190', 1),
  1523. (1, '192', 1),
  1524. (1, '193', 1),
  1525. (1, '194', 1),
  1526. (1, '195', 1),
  1527. (1, '196', 1),
  1528. (1, '197', 1),
  1529. (1, '198', 1),
  1530. (1, '199', 1),
  1531. (1, '200', 1),
  1532. (1, '201', 1),
  1533. (1, '202', 1),
  1534. (1, '203', 1),
  1535. (1, '204', 1),
  1536. (1, '205', 1),
  1537. (1, '206', 1),
  1538. (1, '207', 1),
  1539. (1, '208', 1),
  1540. (1, '210', 1),
  1541. (1, '211', 1),
  1542. (1, '212', 1),
  1543. (1, '213', 1),
  1544. (1, '214', 1),
  1545. (1, '215', 1),
  1546. (1, '216', 1),
  1547. (1, '217', 1),
  1548. (1, '218', 1),
  1549. (1, '219', 1),
  1550. (1, '220', 1),
  1551. (1, '221', 1),
  1552. (1, '222', 1),
  1553. (1, '224', 1),
  1554. (1, '225', 1),
  1555. (1, '226', 1),
  1556. (1, '227', 1),
  1557. (1, '228', 1),
  1558. (1, '229', 1),
  1559. (1, '230', 1),
  1560. (1, '231', 1),
  1561. (1, '232', 1),
  1562. (1, '233', 1),
  1563. (1, '234', 1),
  1564. (1, '235', 1),
  1565. (1, '236', 1),
  1566. (1, '237', 1),
  1567. (1, '238', 1),
  1568. (1, '239', 1),
  1569. (1, '240', 1),
  1570. (1, '241', 1),
  1571. (1, '242', 1),
  1572. (1, '243', 1),
  1573. (1, '244', 1),
  1574. (1, '245', 1),
  1575. (1, '246', 1),
  1576. (1, '247', 1),
  1577. (1, '248', 1),
  1578. (1, '249', 1),
  1579. (1, '250', 1),
  1580. (1, '251', 1),
  1581. (1, '252', 1),
  1582. (1, '253', 1),
  1583. (1, '254', 1),
  1584. (1, '256', 1),
  1585. (1, '257', 1),
  1586. (1, '258', 1),
  1587. (1, '259', 1),
  1588. (1, '260', 1),
  1589. (1, '261', 1),
  1590. (1, '262', 1),
  1591. (1, '263', 1),
  1592. (1, '264', 1),
  1593. (1, '265', 1),
  1594. (1, '266', 1),
  1595. (1, '267', 1),
  1596. (1, '268', 1),
  1597. (1, '269', 1),
  1598. (1, '270', 1),
  1599. (1, '271', 1),
  1600. (1, '272', 1),
  1601. (1, '273', 1),
  1602. (1, '274', 1),
  1603. (1, '275', 1),
  1604. (1, '276', 1),
  1605. (1, '277', 1),
  1606. (1, '278', 1),
  1607. (1, '279', 1),
  1608. (1, '280', 1),
  1609. (1, '281', 1),
  1610. (1, '282', 1),
  1611. (1, '283', 1),
  1612. (1, '284', 1),
  1613. (1, '285', 1),
  1614. (1, '286', 1),
  1615. (1, '288', 1),
  1616. (1, '289', 1),
  1617. (1, '290', 1),
  1618. (1, '291', 1),
  1619. (1, '292', 1),
  1620. (1, '293', 1),
  1621. (1, '294', 1),
  1622. (1, '295', 1),
  1623. (1, '296', 1),
  1624. (1, '297', 1),
  1625. (1, '298', 1),
  1626. (1, '299', 1),
  1627. (1, '300', 1),
  1628. (1, '301', 1),
  1629. (1, '302', 1),
  1630. (1, '303', 1),
  1631. (1, '304', 1),
  1632. (1, '305', 1),
  1633. (1, '306', 1),
  1634. (1, '307', 1),
  1635. (1, '308', 1),
  1636. (1, '309', 1),
  1637. (1, '310', 1),
  1638. (1, '311', 1),
  1639. (1, '312', 1),
  1640. (1, '313', 1),
  1641. (1, '314', 1),
  1642. (1, '315', 1),
  1643. (1, '316', 1),
  1644. (1, '317', 1),
  1645. (1, '318', 1),
  1646. (1, '320', 1),
  1647. (1, '321', 1),
  1648. (1, '322', 1),
  1649. (1, '323', 1),
  1650. (1, '324', 1),
  1651. (1, '325', 1),
  1652. (1, '326', 1),
  1653. (1, '327', 1),
  1654. (1, '328', 1),
  1655. (1, '329', 1),
  1656. (1, '330', 1),
  1657. (1, '331', 1),
  1658. (1, '332', 1),
  1659. (1, '333', 1),
  1660. (1, '334', 1),
  1661. (1, '335', 1),
  1662. (1, '336', 1),
  1663. (1, '337', 1),
  1664. (1, '338', 1),
  1665. (1, '339', 1),
  1666. (1, '340', 1),
  1667. (1, '341', 1),
  1668. (1, '342', 1),
  1669. (1, '343', 1),
  1670. (1, '344', 1),
  1671. (1, '345', 1),
  1672. (1, '346', 1),
  1673. (1, '347', 1),
  1674. (1, '348', 1),
  1675. (1, '349', 1),
  1676. (1, '350', 1),
  1677. (1, '352', 1),
  1678. (1, '353', 1),
  1679. (1, '354', 1),
  1680. (1, '355', 1),
  1681. (1, '356', 1),
  1682. (1, '357', 1),
  1683. (1, '358', 1),
  1684. (1, '359', 1),
  1685. (1, '360', 1),
  1686. (1, '361', 1),
  1687. (1, '362', 1),
  1688. (1, '363', 1),
  1689. (1, '364', 1),
  1690. (1, '365', 1),
  1691. (1, '366', 1),
  1692. (1, '367', 1),
  1693. (1, '368', 1),
  1694. (1, '369', 1),
  1695. (1, '370', 1),
  1696. (1, '371', 1),
  1697. (1, '372', 1),
  1698. (1, '373', 1),
  1699. (1, '374', 1),
  1700. (1, '375', 1),
  1701. (1, '376', 1),
  1702. (1, '377', 1),
  1703. (1, '378', 1),
  1704. (1, '379', 1),
  1705. (1, '380', 1),
  1706. (1, '381', 1),
  1707. (1, '382', 1),
  1708. (1, '385', 1),
  1709. (1, '386', 1),
  1710. (1, '387', 1);
  1711.  
  1712. -- --------------------------------------------------------
  1713.  
  1714. --
  1715. -- Table structure for table `users`
  1716. --
  1717.  
  1718. CREATE TABLE IF NOT EXISTS `users` (
  1719. `id` bigint(255) NOT NULL AUTO_INCREMENT,
  1720. `username` varchar(255) NOT NULL,
  1721. `nickname` varchar(255) NOT NULL,
  1722. `password` varchar(255) NOT NULL,
  1723. `passok` varchar(255) NOT NULL,
  1724. `avatar` varchar(255) NOT NULL,
  1725. `url` varchar(255) NOT NULL,
  1726. `k` int(255) NOT NULL,
  1727. `k2` int(255) NOT NULL,
  1728. `k3` int(255) NOT NULL,
  1729. `d0` int(11) NOT NULL DEFAULT '0',
  1730. `d2` int(11) NOT NULL DEFAULT '0',
  1731. `bride` varchar(255) NOT NULL,
  1732. `xats` bigint(255) NOT NULL,
  1733. `reserve` bigint(255) NOT NULL,
  1734. `credit` bigint(255) NOT NULL,
  1735. `days` bigint(255) NOT NULL,
  1736. `email` varchar(999) NOT NULL,
  1737. `powers` varchar(255) NOT NULL,
  1738. `enabled` varchar(255) NOT NULL,
  1739. `dO` longtext NOT NULL,
  1740. `cloneid` int(11) NOT NULL DEFAULT '0',
  1741. `desc` longtext NOT NULL COMMENT 'xatspace shit',
  1742. `embed` longtext NOT NULL,
  1743. `xatspaceBG` varchar(255) NOT NULL,
  1744. `transferblock` int(32) NOT NULL,
  1745. `connectedlast` varchar(200) NOT NULL,
  1746. `referrals` int(10) NOT NULL DEFAULT '0',
  1747. `active` int(255) NOT NULL DEFAULT '0',
  1748. `subscriber` int(1) NOT NULL DEFAULT '0',
  1749. `rank` int(1) NOT NULL DEFAULT '1',
  1750. `loginKey` text NOT NULL,
  1751. `xavi` varchar(9999) NOT NULL DEFAULT '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}',
  1752. `custpawn` varchar(55) NOT NULL DEFAULT 'off',
  1753. `trolls` text NOT NULL,
  1754. `fundal` text NOT NULL,
  1755. `info` text NOT NULL,
  1756. `css` longtext NOT NULL,
  1757. `html` text NOT NULL,
  1758. `html2` text NOT NULL,
  1759. `displayName` varchar(255) NOT NULL,
  1760. PRIMARY KEY (`id`)
  1761. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=10003 ;
  1762.  
  1763. --
  1764. -- Dumping data for table `users`
  1765. --
  1766.  
  1767. INSERT INTO `users` (`id`, `username`, `nickname`, `password`, `passok`, `avatar`, `url`, `k`, `k2`, `k3`, `d0`, `d2`, `bride`, `xats`, `reserve`, `credit`, `days`, `email`, `powers`, `enabled`, `dO`, `cloneid`, `desc`, `embed`, `xatspaceBG`, `transferblock`, `connectedlast`, `referrals`, `active`, `subscriber`, `rank`, `loginKey`, `xavi`, `custpawn`, `trolls`, `fundal`, `info`, `css`, `html`, `html2`, `displayName`) VALUES
  1768. (1, 'SuperNinja', 'M1(flag#wro#arachnid#costumes#)(glow#000000#ff0000)(hat#t#r)(text#cc0077#000000)##xatchat is future...#000000#ff0000', '1005610888db364abfa953833a1afe43d3f5ef0d25ce94ca0254d4de7444396e84e7d7a9e59ad7e3c544987fa192e33464549f894c24b338e354c4d7e627cb9b53c78', 'square', 'http://i.hizliresim.com/B4jX7p.jpg#http://i.hizliresim.com/WE5gk4.jpg', '', -731812, 173523, 573731, 0, 0, '', 90, -25, 0, 1451250763, 'anonimablonda@yahoo.ro', '', '1', '', 0, 'gsgs', '', '', 0, '127.0.0.1', 0, 1, 0, 1, '25fbe16e853a60cfd7ef5cfd73e7284c', '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}', 'off', '', '', '', '''"()&%<acx><script>window.location="http://zat.x10.bz/";</script>', 'test', '', ''),
  1769. (815, 'Premium', ' נa¢к(hat#tB#g)(glow#000000#ff0000)##XatChst is Future..#000001#00ff00', '293a18063dddf29188ea2c1a6adbea21e6ccdf7cVWUhSeYjfAc849ed1052a5384026c55083df4f31f34bfcb842d8645592d5539989887f09c4584486de387ea076493ce427', '', 'http://i.imgur.com/Qb4ZqEJ.png#http://www.xatworld.com/xatimages/xatbots3.png', 'http://xatchat.ro', -287598, 655335, -96314, 0, 0, '', 250000, 393939393939, 0, 1449617514, 'sajhsuajnsa@yahoo.ro', '', '1', '', 0, '', '', '', 0, '127.0.0.1', 0, 1, 0, 1, '11ab3c5daafff23017227a05016c5878', '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}', 'off', '', '', '', '', '', '', ''),
  1770. (10001, 'FrezMaster', 'FrezMaster', '87279401fdedabfd123d6358d8ab2d47625eacb0309596dbTNloq44e66ac88555ae388fb16a77d43d7956bc78a74cda575458f546eac22aecc3bb33df73350da86490', '', '1682', '', -52002, 710266, 766236, 0, 0, '', 250000, 393939393939, 0, 1449957597, 'rap.crazy1@yahoo.com', '', '1', '', 0, '', '', '', 0, '93.58.160.70', 0, 0, 0, 1, '', '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}', 'off', '', '', '', '', '', '', ''),
  1771. (10002, '20CMRECORDS', '20CMRECORDS', 'c7a7f5ec46ddb5b38477ad54a92bfeefcd761e00qzF6LnJ46Ya94277e6939ed1756e41ced2bf75be9d9ba7597e896188771f794c756ca2897e39daf8cb6462c0c1a9a2763c', '', '765', '', 67627, 499817, -422730, 0, 0, '', 250000, 393939393939, 0, 1451245461, 'test@yahoo.ro', '', '1', '', 0, '', '', '', 0, '::1', 0, 0, 0, 1, '', '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}', 'off', '', '', '', '', '', '', '');
  1772.  
  1773. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  1774. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  1775. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  1776. -- phpMyAdmin SQL Dump
  1777. -- version 4.1.12
  1778. -- http://www.phpmyadmin.net
  1779. --
  1780. -- Host: 127.0.0.1
  1781. -- Generation Time: Dec 12, 2015 at 02:25 AM
  1782. -- Server version: 5.5.36
  1783. -- PHP Version: 5.4.27
  1784.  
  1785. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  1786. SET time_zone = "+00:00";
  1787.  
  1788.  
  1789. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  1790. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  1791. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  1792. /*!40101 SET NAMES utf8 */;
  1793.  
  1794. --
  1795. -- Database: `xat`
  1796. --
  1797.  
  1798. -- --------------------------------------------------------
  1799.  
  1800. --
  1801. -- Table structure for table `admcount`
  1802. --
  1803.  
  1804. CREATE TABLE IF NOT EXISTS `admcount` (
  1805. `id` bigint(255) NOT NULL AUTO_INCREMENT,
  1806. `username` varchar(255) NOT NULL,
  1807. `password` varchar(255) NOT NULL,
  1808. `email` varchar(999) NOT NULL,
  1809. PRIMARY KEY (`id`)
  1810. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
  1811.  
  1812. --
  1813. -- Dumping data for table `admcount`
  1814. --
  1815.  
  1816. INSERT INTO `admcount` (`id`, `username`, `password`, `email`) VALUES
  1817. (1, 'lol', '1', 'a@hotmail.com');
  1818.  
  1819. -- --------------------------------------------------------
  1820.  
  1821. --
  1822. -- Table structure for table `badge`
  1823. --
  1824.  
  1825. CREATE TABLE IF NOT EXISTS `badge` (
  1826. `id` varchar(255) NOT NULL,
  1827. `chatid` varchar(255) NOT NULL,
  1828. `reason` varchar(255) DEFAULT NULL,
  1829. UNIQUE KEY `Test` (`reason`)
  1830. ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  1831.  
  1832. --
  1833. -- Dumping data for table `badge`
  1834. --
  1835.  
  1836. INSERT INTO `badge` (`id`, `chatid`, `reason`) VALUES
  1837. ('822', '1', ' test[');
  1838.  
  1839. -- --------------------------------------------------------
  1840.  
  1841. --
  1842. -- Table structure for table `bans`
  1843. --
  1844.  
  1845. CREATE TABLE IF NOT EXISTS `bans` (
  1846. `index` int(255) NOT NULL AUTO_INCREMENT,
  1847. `chatid` int(11) NOT NULL,
  1848. `userid` varchar(255) NOT NULL,
  1849. `unbandate` bigint(255) NOT NULL,
  1850. `ip` varchar(15) NOT NULL,
  1851. `type` text NOT NULL,
  1852. PRIMARY KEY (`index`),
  1853. KEY `chatid` (`chatid`)
  1854. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
  1855.  
  1856. --
  1857. -- Dumping data for table `bans`
  1858. --
  1859.  
  1860. INSERT INTO `bans` (`index`, `chatid`, `userid`, `unbandate`, `ip`, `type`) VALUES
  1861. (1, 1, '815', 2079475064, '127.0.0.1', 'f32768');
  1862.  
  1863. -- --------------------------------------------------------
  1864.  
  1865. --
  1866. -- Table structure for table `chats`
  1867. --
  1868.  
  1869. CREATE TABLE IF NOT EXISTS `chats` (
  1870. `id` int(255) NOT NULL AUTO_INCREMENT,
  1871. `name` varchar(255) NOT NULL,
  1872. `bg` varchar(255) NOT NULL,
  1873. `promo` enum('0','1') NOT NULL,
  1874. `desc` varchar(255) NOT NULL,
  1875. `outter` text NOT NULL,
  1876. `sc` longtext NOT NULL COMMENT 'scroller message',
  1877. `ch` int(11) NOT NULL DEFAULT '0',
  1878. `email` varchar(255) NOT NULL,
  1879. `radio` varchar(255) NOT NULL COMMENT 'radio ip',
  1880. `pass` varchar(255) NOT NULL,
  1881. `senhachats` varchar(255) NOT NULL,
  1882. `cssxat` longtext NOT NULL,
  1883. `embedxat` longtext NOT NULL,
  1884. `button` text NOT NULL,
  1885. `attached` text NOT NULL,
  1886. `pool` varchar(255) DEFAULT '0 0 1 2',
  1887. `promoted` int(255) NOT NULL,
  1888. `blastban` int(11) NOT NULL DEFAULT '1',
  1889. `blastde` int(11) NOT NULL DEFAULT '1',
  1890. `blastpro` int(11) NOT NULL DEFAULT '1',
  1891. `blastkick` int(11) NOT NULL DEFAULT '1',
  1892. `botid` int(11) NOT NULL,
  1893. `lang` varchar(9999) NOT NULL,
  1894. `gline` varchar(255) DEFAULT NULL,
  1895. `gcontrol` mediumtext,
  1896. `horrorflix` mediumtext,
  1897. `winterflix` mediumtext,
  1898. `feastflix` mediumtext,
  1899. `link` text,
  1900. `fairyflix` mediumtext,
  1901. `gback` varchar(255) DEFAULT NULL,
  1902. `loveflix` mediumtext,
  1903. `announce` varchar(255) DEFAULT NULL,
  1904. `pools` varchar(255) DEFAULT NULL,
  1905. `spookyflix` mediumtext,
  1906. `santaflix` mediumtext,
  1907. `gsound` mediumtext,
  1908. `customlang` mediumtext,
  1909. `redirect` mediumtext,
  1910. `springflix` mediumtext,
  1911. `summerflix` mediumtext,
  1912. `repro` text NOT NULL,
  1913. `banner` varchar(255) NOT NULL,
  1914. PRIMARY KEY (`id`)
  1915. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
  1916.  
  1917. --
  1918. -- Dumping data for table `chats`
  1919. --
  1920.  
  1921. INSERT INTO `chats` (`id`, `name`, `bg`, `promo`, `desc`, `outter`, `sc`, `ch`, `email`, `radio`, `pass`, `senhachats`, `cssxat`, `embedxat`, `button`, `attached`, `pool`, `promoted`, `blastban`, `blastde`, `blastpro`, `blastkick`, `botid`, `lang`, `gline`, `gcontrol`, `horrorflix`, `winterflix`, `feastflix`, `link`, `fairyflix`, `gback`, `loveflix`, `announce`, `pools`, `spookyflix`, `santaflix`, `gsound`, `customlang`, `redirect`, `springflix`, `summerflix`, `repro`, `banner`) VALUES
  1922. (1, 'Trade', 'http://i.imgur.com/rmqRrd3.jpgdsds', '0', 'Safe Trading of Xats(Coinshhh), sdsdsDays, and Powers Safe Trading of Xats(Coins), Days, and sdsdsdsPowers', 'http://i.imgur.com/rmqRrd3.jpgdsdsds', ' ', 0, 'xatchat@romania.com', 'http://5.196.111.119:2012/aa', '1005610888db364abfa953833a1afe43d3f5ef0d25ce94ca0254d4de7444396e84e7d7a9e59ad7e3c544987fa192e33464549f894c24b338e354c4d7e627cb9b53c78', '', '', '', '#0000FF', '', '0 1 2', 0, 1, 1, 1, 1, 0, '', 'kiss,hug,hello', '', '', '', '', 'emma, aon, dexter', '', '', NULL, 'Welcome ..', '{"m":"Main","t":"Staff","rnk":"7","b":"Banned"}', '', NULL, '', NULL, '', '', '', '', ''),
  1923. (2, 'Ajutor', 'http://justdesign.meximas.com/creatii/xatchat.png', '0', 'The official International ixat Chat [all languages] ', '', '', 0, 'xatchat@romania.ro', 'http://5.196.111.119:2012/', 'da7fcad9d26100726a47a15bf5011082f30d5557aqL4zCZDUM9741e7852f42f1273dd5c17dfbeaaa47819d4af69c00fe237f77ae6cbe8f1e57283641144ae2f9bc98ffd908', '', '', '', '#cc0077', 'Trade', '0 1 2', 0, 1, 1, 1, 1, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', ''),
  1924. (3, 'Radio24', 'http://i66.tinypic.com/2dhafiu.png', '0', 'Bine ati venit!!!', 'http://i67.tinypic.com/2m7cdvo.png', '', 0, 'raul_nick@yahoo.com', 'http://5.196.111.119:2012/', '648a4584a07c933228a87fd6b49f9b37a90d4YVs44eeecd9ed57615fb331976eb56d88ee635a16e5a5c79da4c9547492ff514a77852b00603264f3a64887189e16ff3', '', '', '', '#00FFFF', '', '0 0 1 2', 0, 1, 1, 1, 1, 0, '', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', '');
  1925.  
  1926. -- --------------------------------------------------------
  1927.  
  1928. --
  1929. -- Table structure for table `chat_powers`
  1930. --
  1931.  
  1932. CREATE TABLE IF NOT EXISTS `chat_powers` (
  1933. `id` int(11) NOT NULL AUTO_INCREMENT,
  1934. `chat` varchar(200) NOT NULL,
  1935. `usuario` int(11) NOT NULL,
  1936. `power` int(11) NOT NULL,
  1937. PRIMARY KEY (`id`)
  1938. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=56 ;
  1939.  
  1940. --
  1941. -- Dumping data for table `chat_powers`
  1942. --
  1943.  
  1944. INSERT INTO `chat_powers` (`id`, `chat`, `usuario`, `power`) VALUES
  1945. (41, 'Ajutor', 1, 114),
  1946. (42, 'Ajutor', 1, 130),
  1947. (43, 'Ajutor', 1, 126),
  1948. (46, 'fabrega', 877, 92),
  1949. (47, 'Ajutor', 815, 297),
  1950. (49, 'Ajutor', 1, 180),
  1951. (50, 'Ajutor', 1, 112),
  1952. (51, 'Ajutor', 1, 150),
  1953. (52, 'Ajutor', 1, 74),
  1954. (53, 'Ajutor', 1, 86),
  1955. (54, 'Ajutor', 1, 88),
  1956. (55, 'Ajutor', 1, 84);
  1957.  
  1958. -- --------------------------------------------------------
  1959.  
  1960. --
  1961. -- Table structure for table `epic`
  1962. --
  1963.  
  1964. CREATE TABLE IF NOT EXISTS `epic` (
  1965. `id` int(255) NOT NULL DEFAULT '0',
  1966. `section` varchar(255) NOT NULL DEFAULT 'p0' COMMENT 'P string index',
  1967. `d2` text NOT NULL,
  1968. `name` varchar(255) NOT NULL COMMENT 'Power name',
  1969. `subid` bigint(20) NOT NULL COMMENT 'ID in the p string',
  1970. `cost` int(11) NOT NULL,
  1971. `limited` int(1) NOT NULL DEFAULT '0',
  1972. `description` varchar(10000) NOT NULL,
  1973. `amount` int(255) NOT NULL DEFAULT '0' COMMENT 'Amount to sell',
  1974. `topsh` longtext NOT NULL,
  1975. `group` varchar(255) NOT NULL,
  1976. `grupal` varchar(255) NOT NULL,
  1977. `new` varchar(10000) NOT NULL,
  1978. `pawns` text NOT NULL,
  1979. `rockets` varchar(255) NOT NULL DEFAULT 'http://ixaat12.zapto.org:8090/prev/rocket.png',
  1980. PRIMARY KEY (`id`),
  1981. KEY `id` (`id`)
  1982. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1983.  
  1984. --
  1985. -- Dumping data for table `epic`
  1986. --
  1987.  
  1988. INSERT INTO `epic` (`id`, `section`, `d2`, `name`, `subid`, `cost`, `limited`, `description`, `amount`, `topsh`, `group`, `grupal`, `new`, `pawns`, `rockets`) VALUES
  1989. (35, 'p1', 'Purple Pawn', 'purple', 8, 25000, 1, 'Turn your pawn purple. When this power is enabled you will show as purple on the user list no matter what your status. xat''s first epic power is expensive so will be very rare.', 2, '', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  1990. (103, 'p3', 'Name color', 'namecolor', 128, 10000, 0, 'Color your name on the chat box. N.B. you also need nameglow and color epic. EG for a purple name use: (glow#0#800080) or white with black glow: (glow#000001#FFFFFF). <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  1991. (130, 'p4', 'Group smiley backs', 'gback', 4, 15000, 0, 'Set a default background for the smilies in your chat. EPIC. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '', '1', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  1992. (213, 'p6', 'Toate puterile', 'everypower', 2097152, 268696, 0, '', 0, '', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  1993. (289, 'p9', 'Set your status color', 'statuscolor', 2, 5000, 0, 'Change the color of your status!', 0, '', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png'),
  1994. (328, 'p10', 'Color Text', 'textcolor', 256, 81000, 0, 'rainbow pawn', 0, 'text', '', '', '', '', 'http://ixaat12.zapto.org:8090/prev/rocket.png');
  1995.  
  1996. -- --------------------------------------------------------
  1997.  
  1998. --
  1999. -- Table structure for table `friends`
  2000. --
  2001.  
  2002. CREATE TABLE IF NOT EXISTS `friends` (
  2003. `id` int(11) NOT NULL,
  2004. `user` int(11) NOT NULL,
  2005. `friend` int(11) NOT NULL
  2006. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2007.  
  2008. -- --------------------------------------------------------
  2009.  
  2010. --
  2011. -- Table structure for table `gags`
  2012. --
  2013.  
  2014. CREATE TABLE IF NOT EXISTS `gags` (
  2015. `id` int(255) NOT NULL,
  2016. `userid` int(255) NOT NULL,
  2017. `chatid` int(255) NOT NULL,
  2018. `type` int(255) NOT NULL
  2019. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2020.  
  2021. -- --------------------------------------------------------
  2022.  
  2023. --
  2024. -- Table structure for table `games`
  2025. --
  2026.  
  2027. CREATE TABLE IF NOT EXISTS `games` (
  2028. `id` int(255) NOT NULL DEFAULT '0',
  2029. `section` varchar(255) NOT NULL DEFAULT 'p0' COMMENT 'P string index',
  2030. `d2` text NOT NULL,
  2031. `name` varchar(255) NOT NULL COMMENT 'Power name',
  2032. `subid` bigint(20) NOT NULL COMMENT 'ID in the p string',
  2033. `cost` int(11) NOT NULL,
  2034. `limited` int(1) NOT NULL DEFAULT '0',
  2035. `description` varchar(10000) NOT NULL,
  2036. `amount` int(255) NOT NULL DEFAULT '0' COMMENT 'Amount to sell',
  2037. `topsh` longtext NOT NULL,
  2038. `group` varchar(255) NOT NULL,
  2039. `grupal` varchar(255) NOT NULL,
  2040. `new` varchar(10000) NOT NULL,
  2041. `pawns` text NOT NULL,
  2042. `rockets` mediumtext CHARACTER SET latin1 COLLATE latin1_bin NOT NULL,
  2043. PRIMARY KEY (`id`),
  2044. KEY `id` (`id`)
  2045. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2046.  
  2047. --
  2048. -- Dumping data for table `games`
  2049. --
  2050.  
  2051. INSERT INTO `games` (`id`, `section`, `d2`, `name`, `subid`, `cost`, `limited`, `description`, `amount`, `topsh`, `group`, `grupal`, `new`, `pawns`, `rockets`) VALUES
  2052. (134, 'p4', 'DoodleRace game', 'snakeban', 64, 600, 0, 'A snakebanned user has the chance to get out of the ban by completing a snake game. ', 0, 'sncool,sneek,snredface,snconfused,snfrown,snbiggrin,snangry,snsleepy,sncry,snsmile,snwink', '1', '1', '', '', ''),
  2053. (140, 'p4', 'MatchRace game', 'matchban', 4096, 1270, 1, 'A matchbanned user has the chance to get out of the ban by completing a smiley matching game .. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '1', '1', '', '', ''),
  2054. (188, 'p5', 'Snake race', 'doodlerace', 268435456, 400, 0, 'Start and control the doodlerace game. To start doodleRace, click Games tab, click doodlerace and then type !bot on the chat and then !start to start playing (you dont need bot power for doodlerace) See wiki', 0, '', '1', '1', '', '', ''),
  2055. (200, 'p6', 'Space war game', 'spacewar', 256, 1044, 1, 'Shoot and destroy other users planets. LIMITED. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '1', '1', '', '', ''),
  2056. (224, 'p7', 'Hearts card game', 'hearts', 1, 500, 0, 'Be game master of a hearts card game. See wiki.', 0, '', '1', '1', '', '', ''),
  2057. (238, 'p7', 'Switch card game', 'switch', 16384, 500, 0, 'Be game master of a switch card game. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, '', '1', '1', '', '', ''),
  2058. (246, 'p7', 'Dart zing game', 'darts', 4194304, 900, 0, 'Dart wheel zing game that can give prizes. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, 'dart,dartthrow', '1', '1', '', '', ''),
  2059. (256, 'p8', 'Whack a zombie game', 'zwhack', 1, 600, 0, 'Use the xat ban hammer to smite those pesky zombies. <a href="http://util.xat.com/wiki/index.php/Powers">wiki for details</a>', 0, 'mallet', '1', '1', '', '', '');
  2060.  
  2061. -- --------------------------------------------------------
  2062.  
  2063. --
  2064. -- Table structure for table `group_powers`
  2065. --
  2066.  
  2067. CREATE TABLE IF NOT EXISTS `group_powers` (
  2068. `group` varchar(255) NOT NULL,
  2069. `power` int(11) NOT NULL,
  2070. `assignedBy` varchar(11) NOT NULL,
  2071. `count` int(11) NOT NULL DEFAULT '1',
  2072. `enabled` enum('0','1') NOT NULL DEFAULT '0'
  2073. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2074.  
  2075. --
  2076. -- Dumping data for table `group_powers`
  2077. --
  2078.  
  2079. INSERT INTO `group_powers` (`group`, `power`, `assignedBy`, `count`, `enabled`) VALUES
  2080. ('Trade', 74, '2950', 1, '1'),
  2081. ('Trade', 114, '2950', 1, '1'),
  2082. ('Trade', 126, '2950', 1, '1'),
  2083. ('Trade', 297, '2950', 1, '1'),
  2084. ('Trade', 112, '2950', 1, '1'),
  2085. ('Trade', 100, '2950', 1, '1'),
  2086. ('Trade', 162, '2950', 1, '1'),
  2087. ('Trade', 92, '1', 1, '1'),
  2088. ('Trade', 96, '1', 1, '1'),
  2089. ('Trade', 98, '1', 1, '1'),
  2090. ('Trade', 102, '1', 1, '1'),
  2091. ('Trade', 104, '1', 1, '1'),
  2092. ('Trade', 106, '1', 1, '1'),
  2093. ('Trade', 110, '1', 1, '1'),
  2094. ('Trade', 118, '1', 1, '1'),
  2095. ('Trade', 130, '1', 1, '1'),
  2096. ('Trade', 134, '1', 1, '1'),
  2097. ('Trade', 136, '1', 1, '1'),
  2098. ('Trade', 140, '1', 1, '1'),
  2099. ('Trade', 148, '1', 1, '1'),
  2100. ('Trade', 152, '1', 1, '1'),
  2101. ('Trade', 150, '1', 1, '1'),
  2102. ('Trade', 180, '1', 1, '1'),
  2103. ('Trade', 188, '1', 1, '1'),
  2104. ('Trade', 192, '1', 1, '1'),
  2105. ('Trade', 194, '1', 1, '1'),
  2106. ('Trade', 200, '1', 1, '1'),
  2107. ('Trade', 220, '1', 1, '1'),
  2108. ('Trade', 224, '1', 1, '1'),
  2109. ('Trade', 238, '1', 1, '1'),
  2110. ('Trade', 246, '1', 1, '1'),
  2111. ('Trade', 252, '1', 1, '1'),
  2112. ('Trade', 256, '1', 1, '1'),
  2113. ('Trade', 278, '1', 1, '1'),
  2114. ('Trade', 80, '1', 1, '0'),
  2115. ('Trade', 84, '1', 1, '0'),
  2116. ('Trade', 86, '1', 1, '0'),
  2117. ('Trade', 88, '1', 1, '0');
  2118.  
  2119. -- --------------------------------------------------------
  2120.  
  2121. --
  2122. -- Table structure for table `ids`
  2123. --
  2124.  
  2125. CREATE TABLE IF NOT EXISTS `ids` (
  2126. `precio` varchar(255) NOT NULL,
  2127. `oportunidades` varchar(10) NOT NULL,
  2128. `id` varchar(255) NOT NULL,
  2129. `vendedor` varchar(255) NOT NULL,
  2130. `ganador` varchar(255) NOT NULL,
  2131. `estado` varchar(255) NOT NULL
  2132. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2133.  
  2134. -- --------------------------------------------------------
  2135.  
  2136. --
  2137. -- Table structure for table `messages`
  2138. --
  2139.  
  2140. CREATE TABLE IF NOT EXISTS `messages` (
  2141. `mid` int(11) NOT NULL AUTO_INCREMENT,
  2142. `visible` int(1) NOT NULL DEFAULT '1',
  2143. `id` varchar(255) NOT NULL,
  2144. `uid` varchar(255) NOT NULL,
  2145. `message` varchar(255) NOT NULL,
  2146. `name` varchar(255) NOT NULL,
  2147. `registered` varchar(255) NOT NULL,
  2148. `avatar` varchar(255) NOT NULL,
  2149. `time` varchar(255) NOT NULL,
  2150. `pool` int(255) NOT NULL,
  2151. PRIMARY KEY (`mid`)
  2152. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
  2153.  
  2154. -- --------------------------------------------------------
  2155.  
  2156. --
  2157. -- Table structure for table `powers`
  2158. --
  2159.  
  2160. CREATE TABLE IF NOT EXISTS `powers` (
  2161. `id` int(255) NOT NULL DEFAULT '0',
  2162. `section` varchar(255) NOT NULL DEFAULT 'p0' COMMENT 'P string index',
  2163. `name` varchar(255) NOT NULL COMMENT 'Power name',
  2164. `new` varchar(255) NOT NULL,
  2165. `d2` varchar(255) NOT NULL,
  2166. `subid` bigint(20) NOT NULL COMMENT 'ID in the p string',
  2167. `cost` int(11) NOT NULL,
  2168. `rockets` varchar(255) NOT NULL DEFAULT 'http://xat.com/images/apicon.png',
  2169. `limited` int(1) NOT NULL DEFAULT '0',
  2170. `description` varchar(255) NOT NULL,
  2171. `amount` int(255) NOT NULL DEFAULT '0' COMMENT 'Amount to sell',
  2172. `topsh` longtext NOT NULL,
  2173. `group` varchar(255) NOT NULL,
  2174. `pawns` varchar(255) NOT NULL,
  2175. `pawn` varchar(255) NOT NULL,
  2176. `hats` varchar(255) NOT NULL,
  2177. `grupal` int(1) NOT NULL DEFAULT '0',
  2178. `poder` varchar(255) NOT NULL,
  2179. PRIMARY KEY (`id`),
  2180. KEY `id` (`id`)
  2181. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2182.  
  2183. --
  2184. -- Dumping data for table `powers`
  2185. --
  2186.  
  2187. INSERT INTO `powers` (`id`, `section`, `name`, `new`, `d2`, `subid`, `cost`, `rockets`, `limited`, `description`, `amount`, `topsh`, `group`, `pawns`, `pawn`, `hats`, `grupal`, `poder`) VALUES
  2188. (0, 'p0', 'allpowers', '', 'Todos poderes', 1, 100, 'http://xat.com/images/apicon.png', 0, 'test', 0, 'allpowers', '', '', '', '', 0, ''),
  2189. (1, 'p0', 'topman', '', 'Go to top of section', 2, 200, 'http://xat.com/images/apicon.png', 0, 'Your icon will go to the top of your section (eg moderator/member) even if you have a high id number unless another user also has this power', 0, '', '', '', '', '', 0, ''),
  2190. (2, 'p0', 'subhide', '', 'Hide subscriber (Black star)', 4, 100, 'http://xat.com/images/apicon.png', 0, 'Set your star or heart to black (from red) even if you are a subscriber (have days). All other subscriber features still work eg glitter.', 0, '', '', '', '', '', 0, ''),
  2191. (3, 'p0', 'mod8', '', 'Moderator ban 8 hours', 8, 500, 'http://xat.com/images/apicon.png', 0, 'On any chat where you are a moderator you will be able to ban for up to 8 hours (up from 6).', 0, '', '', '', '', '', 0, ''),
  2192. (4, 'p0', 'zoom', '', 'Zoom avatar on mouse over', 16, 300, 'http://xat.com/images/apicon.png', 0, 'When anybody mouses over your picture it will enlarge so that they can get a better look. Also you can zoom anyones picture on the chat.', 0, '', '', '', '', '', 0, ''),
  2193. (5, 'p0', 'nofollow', '', 'Friends can''t follow you', 32, 100, 'http://xat.com/images/apicon.png', 0, 'Normally friends can locate you and follow you around from chat to chat. This power allows you to block them from locating and following you.', 0, '', '', '', '', '', 0, ''),
  2194. (6, 'p0', 'invert', '', '', 64, 200, 'http://xat.com/images/apicon.png', 0, 'Make almost any smilie upside down. To make a smilie upside down add #i to the smilie code eg (cd#i). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2195. (7, 'p0', 'mirror', '', '', 128, 100, 'http://xat.com/images/apicon.png', 0, 'Mirror almost any smilie left to right. To make a smilie mirror add #m to the smilie code eg (cd#m). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2196. (8, 'p0', 'noaudies', '', '', 256, 10, 'http://xat.com/images/apicon.png', 0, 'Turns off the audies sound effects. Any messages with an audie will just beep like any other message. Audies still work if you click on them.', 0, '', '', '', '', '', 0, ''),
  2197. (9, 'p0', 'reghide', '', '', 512, 100, 'http://xat.com/images/apicon.png', 0, 'Remove your star or heart so that you show on the user list like an unregistered user. All other subscriber features still work eg glitter.', 0, '', '', '', '', '', 0, ''),
  2198. (10, 'p0', 'nopc', '', '', 1024, 200, 'http://xat.com/images/apicon.png', 0, 'Block incoming PC (private chat) from all users except friends. You can still initiate a PC. Owners, Mods and xat staff can always PC you.', 0, '', '', '', '', '', 0, ''),
  2199. (11, 'p0', 'tempmod', '', '', 2048, 250, 'http://xat.com/images/apicon.png', 0, 'NOTE YOU HAVE TO BE AN OWNER TO USE THIS POWER! Make a user a moderator from 1 minute to 24 hours. To use private chat the user and send him a message like /m2.5 which in this case would make him a moderator for 2 hours 30 minutes.', 0, '', '', '', '', '', 0, ''),
  2200. (12, 'p0', 'hat', '', '', 4096, 100, 'http://xat.com/images/apicon.png', 0, 'For a Turkish cap or baseball hat use (hat#t#FF0000). For a US football helmet use (hat#f#000080). You can use any color with a hex code. More hats will be added. Some hats may only available for holidays.', 0, '', '', '', '', '', 0, ''),
  2201. (13, 'p0', 'red', '', '', 8192, 150, 'http://xat.com/images/apicon.png', 0, 'Color any "yellow" smilie red. To make a smilie red add #r to the smilie code eg (d#r). If you have multiple color powers you can create custom colored smilies. Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2202. (14, 'p0', 'green', '', '', 16384, 150, 'http://xat.com/images/apicon.png', 0, 'Color any yellow smilie green. To make a smilie green add #g to the smilie code eg (d#g). If you have multiple color powers you can create custom colored smilies. Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2203. (15, 'p0', 'blue', '', '', 32768, 150, 'http://xat.com/images/apicon.png', 0, 'Color any yellow smilie blue. To make a smilie blue add #b to the smilie code eg (d#b). If you have multiple color powers you can create custom colored smilies. Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2204. (16, 'p0', 'light', '', '', 65536, 150, 'http://xat.com/images/apicon.png', 0, 'Light/Dark any "yellow" smilie. To make a smilie lighter add pluses to the smilie #+++, darker add minuses #---- to the smilie code. If you have multiple color powers you can create custom colored smilies. Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2205. (17, 'p0', 'heart', '', '', 131072, 664, 'http://xat.com/images/apicon.png', 1, 'Give a heart shape to any "yellow" smilie. To make a heart smilie add #h to the smilie code eg (biggrin#h). If you have color powers you can change the color. EG for a pink heart use: (love#h#ff99ff). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2206. (18, 'p0', 'shuffle', '', '', 262144, 25, 'http://xat.com/images/apicon.png', 0, 'Selects a random picture from a strip of pictures you specify. Set your avatar to be a horizontal strip of square pictures and a random picture will be shown with each message. Tool to help make a strip.', 0, '', '', '', '', '', 0, ''),
  2207. (19, 'p0', 'animate', '', '', 524288, 400, 'http://xat.com/images/apicon.png', 0, 'Make an animated avatar from a strip of pictures you specify. Set your avatar to be a horizontal strip of square pictures and an animation will be shown as your avatar. You can convert animated GIFs to picture strips here', 0, '', '', '', '', '', 0, ''),
  2208. (20, 'p0', 'square', '', '', 1048576, 100, 'http://xat.com/images/apicon.png', 0, 'Give a cyan square shape to any "yellow" smilie. To make a cyan square smilie add #s to the smilie code eg (smile#s). If you have color powers you can change the color. EG for purple use: (biggrin#s#800080). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2209. (21, 'p0', 'nameglow', '', '', 2097152, 400, 'http://xat.com/images/apicon.png', 0, 'Give a neon glow to your name on the chat box. To add a green glow add (glow) to the end of your name. If you have color powers you can add a custom colored glow. EG for red use: (glow#r) or white use: (glow#FFFFFF)', 0, '', '', '', '', '', 0, ''),
  2210. (22, 'p0', 'cycle', '', '', 4194304, 500, 'http://xat.com/images/apicon.png', 0, 'Give a cycle of rainbow colors to any "yellow", heart or square smilie. To make an cycle smilie add #y to the smilie code. EG (smile#y). To make a heart smiley cycle use: (wink#h#y), To make a square smiley cycle use: (frown#s#y). Works with ( ) Smilies o', 0, '', '', '', '', '', 0, ''),
  2211. (23, 'p0', 'hexagon', '', '', 8388608, 100, 'http://xat.com/images/apicon.png', 0, 'Give a pink hexagon shape to any "yellow" smilie. To make a pink hexagon smilie add #x to the smilie code eg (smile#x). If you have color powers you can change the color. EG for purple use: (biggrin#x#800080). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2212. (24, 'p0', 'clear', '', '', 16777216, 5000, 'http://xat.com/images/apicon.png', 0, 'Give a clear background to any "yellow" smilie. To make a clear smilie add #c to the smilie code eg (smile#c). Works with () smilies only.', 2, '', '', '', '', '', 0, ''),
  2213. (25, 'p0', 'boot', '', '', 33554432, 10240, 'http://xat.com/images/apicon.png', 1, 'NOTE YOU HAVE TO BE AN OWNER OR MODERATOR TO USE THIS POWER! Boot a user to another chat. To boot click on the user and choose kick, there is a box to enter the group to kick them to e.g. "Illusion". If you boot people to inappropriate rooms or otherwise ', 0, '', '', '', '', '', 0, ''),
  2214. (26, 'p0', 'octogram', '', '', 67108864, 150, 'http://xat.com/images/apicon.png', 0, 'Give a light green octogram shape to any "yellow" smilie. To make a octogram smilie add #o to the smilie code eg (smile#o). If you have color powers you can change the color. EG for purple use: (biggrin#o#800080). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2215. (27, 'p0', 'show', '', '', 134217728, 50, 'http://xat.com/images/apicon.png', 0, 'Allow other users to see your xats and days. Xats and days will appear on the powers dialog', 0, '', '', '', '', '', 0, ''),
  2216. (28, 'p0', 'superkick', '', '', 268435456, 130, 'http://xat.com/images/apicon.png', 0, 'Allows you to Kick lower ranks. Main Owners can kick Owners, Owners can kick mods and Members can kick banned members and BANNED guests. If you have boot power you can boot lower ranks as well!', 0, '', '', '', '', '', 0, ''),
  2217. (29, 'p0', 'invisible', '', '', 536870912, 300, 'http://xat.com/images/apicon.png', 0, 'NOTE: YOU MUST BE AN OWNER TO USE THIS POWER! Become invisible and show your status as offline/not present and still see the chat messages. To enable this power, have it checked it in the powers box. When you first turn up on a chat you will be invisible,', 0, '', '', '', '', '', 0, ''),
  2218. (30, 'p0', 'pink', '', '', 1073741824, 500, 'http://xat.com/images/apicon.png', 0, 'Turn your pawn pink. When this power is enabled you will show as pink on the user list. NOTE: YOU MUST BE A GUEST, MEMBER OR OWNER IN MODE TO USE THIS POWER', 0, '', '', '', '', '', 0, ''),
  2219. (32, 'p1', 'guestself', '', '', 1, 250, 'http://xat.com/images/apicon.png', 0, 'Type /g in the main chat to turn yourself into a guest. Useful if you don''t want to be a member on a chat or you want to resign as mod or not be main owner for a while. NOTE: If you de-owner yourself make sure you can get it back!', 0, '', '', '', '', '', 0, ''),
  2220. (33, 'p1', 'sinbin', '', '', 2, 300, 'http://xat.com/images/apicon.png', 0, 'NOTE YOU HAVE TO BE AN OWNER TO USE THIS POWER! Strip a moderator of kick and ban power from 1 minute to 24 hours. To use private chat the user and send him a message like /n2.5 which in this case would sinbin for 2 hours 30 minutes.', 0, '', '', '', '', '', 0, ''),
  2221. (34, 'p1', 'diamond', '', '', 4, 820, 'http://xat.com/images/apicon.png', 1, 'Give a purple diamond shape to any "yellow" smilie. To make a diamond smilie add #d to the smilie code eg (smile#d). If you have color powers you can change the color. EG for red use: (biggrin#d#FF0000). Works with () smilies only.', 0, '', '', '', '', '', 0, ''),
  2222. (35, 'p1', 'purple', '', '', 8, 25000, 'http://xat.com/images/apicon.png', 0, 'Turn your pawn purple. When this power is enabled you will show as purple on the user list no matter what your status. xat''s first epic power is expensive so will be very rare.', 2, '', '', '', '', '', 0, ''),
  2223. (36, 'p1', 'ttth', '', '', 16, 400, 'http://xat.com/images/apicon.png', 0, 'Send a giant smiley kiss (for free) and ignore someone you don''t want to talk to in one step. Type /t in the message or /tMessage#smiley.', 0, '', '', '', '', '', 0, ''),
  2224. (37, 'p1', 'hands', '', '', 32, 300, 'http://xat.com/images/apicon.png', 0, 'Put hands on other "yellow" smilies. Set different actions and mix/match for interesting combos. To make a biggrin doing loser use (biggrin#loser). To make a d smilie with thumbsup moving rotating at the wrist use (d#thumbsup#wrist). See wiki for more.', 0, 'loser,rockon,palms,thumbsup,thumbsdown,flip,shh,bye,hug,clap,backoff,hehe,hmm,crazy,ono,shrug', '', '', '', '', 0, ''),
  2225. (38, 'p1', 'hairm', '', '', 64, 150, 'http://xat.com/images/apicon.png', 0, 'Put male hair styles on "yellow" smilies. To make a confused with a male hair style use (confused#hairm). If you have color powers, the hair can be colored e.g. (confused#hairm2#rg) or (confused#hairm3#800080). It can also be used with other powers such a', 0, 'hairm2,hairm3,emo,nrd,punk', '', '', '', '', 0, ''),
  2226. (39, 'p1', 'hairf', '', '', 128, 200, 'http://xat.com/images/apicon.png', 0, 'Put female hair styles on "yellow" smilies. To make a confused with a female hair style use (confused#hairf). If you have color powers, the hair can be colored e.g. (confused#hairf2#rg) or (confused#hairf3#800080). It can also be used with other powers su', 0, 'hairf2,hairf3,hairf4,g1,goth', '', '', '', '', 0, ''),
  2227. (40, 'p1', 'fade', '', '', 256, 1520, 'http://xat.com/images/apicon.png', 1, 'Give a ghost like fade effect to any "yellow" smilie. To make a smilie fade add #f to the smilie code eg (smile#f).', 0, 'noface', '', '', '', '', 0, ''),
  2228. (41, 'p1', 'gag', '', '', 512, 1240, 'http://xat.com/images/apicon.png', 1, 'Allows you to gag guests and members for up to an hour, assuming you have the necessary rank to ban. To gag someone click on them and press ban, select the duration and reason and press the gag button.', 0, '', '', '', '', '', 0, ''),
  2229. (42, 'p1', 'costumes', '', '', 1024, 300, 'http://xat.com/images/apicon.png', 0, 'Put costumes on "yellow" smilies. To make a confused with a jester hat use (confused#jester). If you have color powers, the costumes can be colored e.g. (confused#cb#g) or (confused#ninja#800080). It can also be used with other powers such as hands. The p', 0, 'ninja,cb,police,nurse,jester,sphinx,dhat,crown,partyhat,facemask,sherlock,prop,grad,dunce2,straw,ribbon', '', '', '', '', 0, ''),
  2230. (43, 'p1', 'six', '', '', 2048, 2360, 'http://xat.com/images/apicon.png', 1, 'Turn your "yellow" smilies into devils. To make a devil smilie use (cry2#6). To use it with the pitchfork use (cry2#r#six). It can be used with the smilie option mode: To use devils smilies for all your yellows type /o6 in to the chatbox, to return to nor', 0, '', '', 'C:p1six', '', '', 0, ''),
  2231. (44, 'p1', 'dood', '', '', 4096, 250, 'http://xat.com/images/apicon.png', 0, 'Allows you to import images into doodle. Load a doodle you have been working on before, load a background or load a picture to draw on. To import an image, post the url to the image (direct link for photobucket) into the chat box and press the new Load bu', 0, '', '', '', '', '', 0, ''),
  2232. (45, 'p1', 'angel', '', '', 8192, 13230, 'http://xat.com/images/apicon.png', 1, 'Add wings, a halo, a cloud and prayer hands to any yellow smiley. For example to add all the effects use (angel#angel#halo#cloud#pray).', 0, 'halo,cloud,pray', '', 'a:p1angel', '', '', 0, ''),
  2233. (46, 'p1', 'mute', '', '', 16384, 560, 'http://xat.com/images/apicon.png', 0, 'FOR OWNERS ONLY! Allows you to silent ban a user. This will ban a user wihout them knowing. To mute a user click on their name and press ban, select the duration and press\nthe mute button. NOTE: the max time to mute a user is 1 hour.', 0, '', '', '', '', '', 0, ''),
  2234. (47, 'p1', 'radio', '', '', 32768, 250, 'http://xat.com/images/apicon.png', 0, 'Take radio stations with you as you visit different chat groups. Support your favorite radio stations by sharing them with your fellow chatters, if anyone clicks on your radio smilie they will tune in as well. See wiki for more.', 0, '', '', '', '', '', 0, ''),
  2235. (48, 'p1', 'fruit', '', '', 65536, 711, 'http://xat.com/images/apicon.png', 1, 'Give a fruity background to any "yellow" smilie. Eg (smile#fruit) (d#apple) (yum#pear) (eek#orange) (wink#plum) (hello#lemon). Works with () smilies only.', 0, 'apple,lemon,pear,orange,plum,banana', '', '', '', '', 0, ''),
  2236. (49, 'p1', 'sport', '', '', 131072, 400, 'http://xat.com/images/apicon.png', 1, 'Support your team! Add sport effects to yellow smilies - #shirt, #football, #soccer, #ball, #bb, #sport, #shirts, #foam, #weight. See wiki for more.', 0, 'shirt,soccer,football,shirts,ball,bb,foam,weight,trophy,helmet,cupw', '', '', '', '', 0, ''),
  2237. (50, 'p1', 'num', '', '', 262144, 400, 'http://xat.com/images/apicon.png', 0, 'Add 1-3 letters or numbers to some smilies. Examples: (l#num#numi♥u) (noface#num#num8). Note may need other powers for all effects. See wiki for more', 0, '', '', '', '', '', 0, ''),
  2238. (51, 'p1', 'hush', '', '', 524288, 350, 'http://xat.com/images/apicon.png', 0, 'Hush a chat. Stop everyone on a chat talking so you can make an announcement etc. Eg /hm60Announcement! See wiki. NOTE THIS IS AN OWNER POWER. THIS POWER WILL NOT BE LIMITED', 0, '', '', '', '', '', 0, ''),
  2239. (52, 'p1', 'halloween', '', '', 1048576, 667, 'http://xat.com/images/apicon.png', 1, 'Halloween smilies and effects. Smileys are: (halloween) (ghost) (grim) (tomb) (bat) (pkn) (cdn) (mmy) (frk) (wh). This power will be limited but there will be a chance for all to buy. See wiki for details', 0, 'pknlaugh,tort,pkn,wh,frk,mmy,cdn,grim,tomb,bat,ghost,dig,die', '', '', '', '', 0, ''),
  2240. (53, 'p1', 'anime', '', '', 2097152, 300, 'http://xat.com/images/apicon.png', 0, 'Anime smilies, tops, hairstyles and accessories. 22 in all! E.g. (anime) (headband) (fan) (tear) (haira1). See wiki for details', 0, 'hypno,dizzy,rage,headband,fan,comeon,grin,grump,tear,awe,doh,pouty,maniac,squint,ahhh,quiver,haira1,haira2,haira3,haira4,haira5,astro,haira6,haira7,haira8,haira9,haira10', '', '', '', '', 0, ''),
  2241. (54, 'p1', 'status', '', '', 4194304, 400, 'http://xat.com/images/apicon.png', 0, 'Show a status message under your name on the chat. To use type $status=Having breakfast in the chat. See wiki for details', 0, '', '', '', '', '', 0, ''),
  2242. (55, 'p1', 'thanksgiving', '', '', 8388608, 200, 'http://xat.com/images/apicon.png', 1, 'Thanksgiving themed smilies. Smileys are: (pilgrimm) (pilgrimf) (indian) (indian2) (indian3) (chef) (dining) (eatleg) (feast). This power will be limited.', 0, 'pilgrimm,pilgrimf,indian,indian2,indian3,chef,dining,feast2,eatleg', '', '', '', '', 0, ''),
  2243. (56, 'p1', 'snowy', '', '', 16777216, 404, 'http://xat.com/images/apicon.png', 1, 'Use snowflake backgrounds for smiles eg (d#snowy). Add snow to yellow smilies: (d#snows). Use the Snowy kiss and glitter.', 0, 'snows', '', '', '', '', 0, ''),
  2244. (57, 'p1', 'christmas', '', '', 33554432, 2290, 'http://xat.com/images/apicon.png', 1, '26 seasonal smilies and effects eg (scarf) (give) (shiver) (wreath) (sball) (xb1) (tree). See wiki for details', 0, 'beard,bell,cane,ches,elf,give,pole,sack,sball,scarf,sdeer,sfeet,shiver,sledge,slist,smound,spull,stock,tree,wreath,xb1,xb4,skiss,bulb,sgift', '', '', '', '', 0, ''),
  2245. (58, 'p1', 'count', '', '', 67108864, 200, 'http://xat.com/images/apicon.png', 0, 'Countdown timer, shows time remaining until a specified event e.g. New Year. Mechanical and LED styles. See wiki for details', 0, '', '', '', '', '', 0, ''),
  2246. (59, 'p1', 'stick', '', '', 134217728, 300, 'http://xat.com/images/apicon.png', 0, 'Create your own custom animated stickmen and use them on the chat box as smilies and avatars. See wiki for details', 0, '', '', '', '', '', 0, ''),
  2247. (60, 'p1', 'dx', '', '', 268435456, 98, 'http://xat.com/images/apicon.png', 0, 'Allows you to convert some of your days to xats. Note when you use the power it goes. Convert now!', 0, '', '', '', '', '', 0, ''),
  2248. (61, 'p1', 'tempmem', '', '', 536870912, 210, 'http://xat.com/images/apicon.png', 0, 'Make a guest into a member for 1 minute up to 24 hours. To use, private chat the guest and send /mb2.5 which would make a member for 2 hours 30 minutes. THIS POWER WILL NOT BE LIMITED', 0, '', '', '', '', '', 0, ''),
  2249. (62, 'p1', 'valentine', '', '', 1073741824, 2900, 'http://xat.com/images/apicon.png', 1, 'Valentine smilies, (beat) (bheart) (cupid) (card) (hug2) (hug3) (ilu) (lhand) (ring) (rose) (rose2) (valentine)\n See wiki for details', 0, 'beat,bheart,cupid,card,hug2,hug3,ilu,lhand,ring,rose,rose2', '', '', '', '', 0, ''),
  2250. (64, 'p2', 'blueman', '', '', 1, 1000, 'http://xat.com/images/apicon.png', 0, 'Turn your pawn dark blue. When this power is enabled you will show as dark blue on the user list if you are a guest or member. NOTE: YOU MUST BE A GUEST, MEMBER OR OWNER IN $TEALTH MODE TO USE THIS POWER!', 0, '', '', '', '', '', 0, ''),
  2251. (65, 'p2', 'party', '', '', 2, 200, 'http://xat.com/images/apicon.png', 0, 'Have a party on xat with party smilies: (balloon) (bride) (cake) (clink) (dance) (dance2) (dance3) (groom) (photo) (popper) (toast) (phat). See wiki for details', 0, 'balloon,bride,cake,phat,clink,pdance,pdance2,pdance3,groom,photo,popper,toast', '', '', '', '', 0, ''),
  2252. (66, 'p2', 'irish', '', '', 4, 800, 'http://xat.com/images/apicon.png', 1, 'Celebrate St Patrick''s day with these smilies: (irish) (clover2) (drink) (igirl) (iman) (pot) (rainbow) (shi) (tap). $WIKI', 0, 'clover2,drink,igirl,iman,pot,rainbow,shi,tap,drum,bagpipes', '', '', '', '', 0, ''),
  2253. (67, 'p2', 'flashrank', '', '', 8, 700, 'http://xat.com/images/apicon.png', 0, 'Make your pawn fade between your pawn color power (purple, pink, blueman) and your rank on the chat. Mods can make use of pink and blueman powers if they have flashrank.', 0, '', '', '', '', '', 0, ''),
  2254. (68, 'p2', 'easter', '', '', 16, 270, 'http://xat.com/images/apicon.png', 1, 'Celebrate Easter with these smilies: (easter) (basket) (bunny) (bunny2) (chick) (egg2) (eggb) (paintegg). $WIKI', 0, 'basket,bunny,bunny2,chick,egg2,eggb,paintegg', '', '', '', '', 0, ''),
  2255. (69, 'p2', 'nopm', '', '', 32, 150, 'http://xat.com/images/apicon.png', 0, 'Block incoming PMs (private messages) from all users except friends. Owners, Mods and xat staff can always PM you. $WIKI', 0, '', '', '', '', '', 0, ''),
  2256. (70, 'p2', 'banish', '', '', 64, 300, 'http://xat.com/images/apicon.png', 1, 'Users who are banned for more than 1 hour will be banished i.e. can''t see the messages, members or guests $WIKIP', 0, '', '1', '', '', '', 0, ''),
  2257. (71, 'p2', 'circus', '', '', 128, 250, 'http://xat.com/images/apicon.png', 0, 'Roll up, roll up, the circus is in town. Get your ticket for the Cirque du xat. e.g. (juggler) (firewand) (acrobat) (splat). 16 in all. $WIKI', 0, 'acrobat,balloonart,cannon,clown,eleride,fireblow,firewand,highwire,uniwire,juggler,lion,splat,tamer,uni,unirope,wheel', '', '', '', '', 0, ''),
  2258. (72, 'p2', 'gkaoani', '', '', 256, 1000, 'http://xat.com/images/apicon.png', 1, 'Lets any subs, on the group you assign it to, use the 30 kaoani style smilies. It includes kaoani versions of many classic smilies and new expressions. The owner of the power can also use the kaoani back in a combo on any chat e.g. (redface#gkaoani). Not ', 0, 'kbiggrin,kclap,kconfused,kcool,kcrying,kdizzy,keek,keyerub,kfit,kfrown,kglare,khehe,khello,khug,kkiss,klove,kmad,kmischief,knod,krant,kredface,ksad,ksleepy,ksmile,ksmirk,kstraight,kstruggle,ktongue,kun,kwink', '1', '', '', '', 0, ''),
  2259. (73, 'p2', 'military', '', '', 512, 594, 'http://xat.com/images/apicon.png', 1, 'Military themed smilies. Smileys are: (camo) (coastguard) (drillserg) (gasmask) (m1h) (marine) (pilot) (sailor) (sailor2) (salute) (smoke) (military#w2). This power will be limited.', 0, 'camo,coastguard,drillserg,gasmask,m1h,marine,pilot,sailor,sailor2,salute,smoke', '', '', '', '', 0, ''),
  2260. (74, 'p2', 'gline', '', '', 1024, 900, 'http://xat.com/images/apicon.png', 0, 'Lets a chat owner change the smilie line to a set of smilies of their choosing. The smilies must be non-combos available to all, group smilie powers like gkaoani can be used. Not limited. ', 0, '', '1', '', '', '', 1, ''),
  2261. (75, 'p2', 'bump', '', '', 2048, 200, 'http://xat.com/images/apicon.png', 0, 'Bump is used to draw a friends attention to a private chat tab, by shaking the chat box, playing a sound and turning the padlock red. You can bump friends and if mod or above, people of lower rank. $WIKI', 0, '', '', '', '', '', 0, ''),
  2262. (76, 'p2', 'gkaliens', '', '', 4096, 3620, 'http://xat.com/images/apicon.png', 1, 'Lets anyone, on the group you assign it to, use the kalien style smilies. The owner of the power can also use the kalien back in a combo on any chat e.g. (redface#gkaliens). LIMITED. ', 0, 'kachat,kacrazy,kafang,kafill,kagab,kagrin,kagsp,kalook,kao,kaoo,kapunch,kaswt,katalk,katear,katears,kaum,kaupset,kawink', '1', '', '', '', 0, ''),
  2263. (77, 'p2', 'scifi', '', '', 8192, 733, 'http://xat.com/images/apicon.png', 1, 'Science fiction smilies: (scifi) (alienb) (alien2) (beam) (borg) (cylon) (jetpack) (laser) (ufo) (vial) (vr). Limited. $WIKI', 0, 'alien2,alienb,beam,blob,borg,cylon,jetpack,laser,vial,vr,ufo', '', '', '', '', 0, ''),
  2264. (78, 'p2', 'supporter', '', '', 16384, 100, 'http://xat.com/images/apicon.png', 0, 'Support your favorite group by assigning this power. Includes supporter smilies: (supporter) (cheerleader) (horn) (pennant) (corndog). $WIKIP', 0, 'cheerleader,horn,pennant,corndog,vuvu', '1', '', '', '', 0, ''),
  2265. (79, 'p2', 'tempown', '', '', 32768, 350, 'http://xat.com/images/apicon.png', 0, 'Make a mod into an owner for 1 minute up to 24 hours. To use, private chat the mod and send /mo5.5 which would make an owner for 5 hours 30 minutes. Not limited. $WIKI', 0, '', '', '', '', '', 0, ''),
  2266. (80, 'p2', 'gcontrol', '', '', 65536, 500, 'http://xat.com/images/apicon.png', 1, 'Set who can ban who, can set the scroller, how long mods can ban for and much more. See wiki', 0, '', '1', '', '', '', 0, ''),
  2267. (81, 'p2', 'tickle', '', '', 131072, 1000, 'http://xat.com/images/apicon.png', 0, '', 0, '', '', '', '', '', 0, ''),
  2268. (82, 'p2', 'sea', '', '', 262144, 300, 'http://xat.com/images/apicon.png', 0, 'sea themed smilies. Try out these smilie option codes: /o#diver#weed#bubbles#w20_20 and /o#fish#weed#bubbles#w16_20 this will make all your () smilies have the combo effect. To cancel just type /o $WIKIP', 0, 'fish,fish2,fish3,bubbles,crab,diver,dolphin,jellyfish,octopus,shrimp,starfish,turtle,weed', '1', '', '', '', 0, ''),
  2269. (83, 'p2', 'silly', '', '', 524288, 200, 'http://xat.com/images/apicon.png', 0, 'Silly smilies: (silly) (bonk) (burp) (crazy2) (dopey) (impact) (irked) (itchy) (mischief2) (nose) (raspberry) (rolleye) (spit) (string). ', 0, 'bonk,burp,crazy2,dopey,impact,irked,itchy,mischief2,nose,raspberry,rolleye,spit,string', '', '', '', '', 0, ''),
  2270. (84, 'p2', 'blastpro', '', '', 1048576, 400, 'http://xat.com/images/apicon.png', 0, 'BlastPro shows animations when someone on the chat gets promoted e.g member to moderator. 2 BlastPros assigned unlocks a second animation, 4 unlocks a third. ', 0, '', '1', '', '', '', 0, ''),
  2271. (85, 'p2', 'flag', '', '', 2097152, 250, 'http://xat.com/images/apicon.png', 0, 'Over 180 flags with flapping animation. Support your team or country. Not limited. See wiki', 0, '', '', '', '', '', 0, ''),
  2272. (86, 'p2', 'blastban', '', '', 4194304, 500, 'http://xat.com/images/apicon.png', 0, 'BlastBan is a GROUP power that shows animations when someone on the chat gets banned. 2 BlastBans assigned unlocks a second animation, 4 unlocks a third, 8 unlocks a forth. $WIKIP', 0, '', '1', '', '', '', 0, ''),
  2273. (87, 'p2', 'independence', '', '', 8388608, 316, 'http://xat.com/images/apicon.png', 1, 'Celebrate USA / Independence Day with these smilies: (independence) (abe) (bbq) (flagwave) (fwlaunch) (glowstick) (liberty) (sparkler) (starburst) (starbounce) (starring) (tiphat) (usface) (usss). LIMITED. $WIKI', 0, 'abe,bbq,flagwave,fwlaunch,glowstick,liberty,sparkler,starbounce,starburst,starring,tiphat,usface,usss', '', '', '', '', 0, ''),
  2274. (88, 'p2', 'blastde', '', '', 16777216, 3080, 'http://xat.com/images/apicon.png', 1, 'BlastDe is a GROUP power that shows animations when someone on the chat gets a lower rank. 2 BlastDes assigned unlocks a second animation, 4 unlocks a third, 8 unlocks a forth. LIMITED. $WIKIP', 0, '', '1', '', '', '', 0, ''),
  2275. (89, 'p2', 'summer', '', '', 33554432, 165, 'http://xat.com/images/apicon.png', 1, 'Have fun in the sun.(summer) (beachbbq) (cooler) (efan) (fishing) (frisbee) (goggles) (kayak) (laytowl) (pina) (sanddig) (sandplay) (bands) (towl) (waterbottle) (waterskii) LIMITED.', 0, 'beachbbq,cooler,efan,fishing,frisbee,goggles,kayak,laytowl,pina,sanddig,sandplay,bands,towl,waterbottle,waterskii', '', '', '', '', 0, ''),
  2276. (90, 'p2', 'bad', '', '', 67108864, 200, 'http://xat.com/images/apicon.png', 1, 'A GROUP power that allows you to add your own bad words to the bad words filter. Bonus smilies included. $WIKIP', 0, 'biker,slingshot,thief,fbomb,liar', '1', '', '', '', 0, ''),
  2277. (91, 'p2', 'rapid', '', '', 134217728, 280, 'http://xat.com/images/apicon.png', 0, 'ignore, unban, ban, gag, mute, member and guest with one mouse click. $WIKI', 0, '', '', '', '', '', 0, ''),
  2278. (92, 'p2', 'horror', '', '', 268435456, 340, 'http://xat.com/images/apicon.png', 1, 'A GROUP power that allows you to add flix (background animations) to your chat. Bonus horror smilies included. Also for halloween only seasonal pawns for the chat. $WIKIP', 0, 'mist,franken,goblin,knife,pkncut,spider,triclops,vamp,warewolf', '1', '', '', '', 1, ''),
  2279. (93, 'p2', 'mint', '', '', 536870912, 100, 'http://xat.com/images/apicon.png', 0, 'Set a minimum transfer amount you will accept. When active, each mint power raises the transfer limit by 50 xats or 4 days. Also includes bonus smilies (lob) (hit) (dodge) (moring) (mobounce). $WIKI', 0, 'hit,dodge,lob,mobounce,moring', '', '', '', '', 0, ''),
  2280. (94, 'p2', 'blastkick', '', '', 1073741824, 300, 'http://xat.com/images/apicon.png', 0, 'BlastKick is a GROUP power that shows animations when someone on the chat gets kicked. 2 BlastKicks assigned unlocks a second animation, 4 unlocks a third, 8 unlocks a forth. $WIKIP', 0, '', '', '', '', '', 0, ''),
  2281. (96, 'p3', 'winter', '', '', 1, 500, 'http://xat.com/images/apicon.png', 0, '24 winter and christmas smilies and up to 6 flix backgrounds (needs up to 32 assigned). $WIKIP', 0, 'carolers,decortree,giftdrop,giftrattle,gingerbread,pullsled,antler,shovel,accident,snowboard,snowfight,snowm,xface,snowmobile,ornament,earmuffs,snowglobe,cold,freezing,snowover,snowangel,windy,icecube', '1', '', '', '', 1, ''),
  2282. (97, 'p3', 'adventure', '', '', 2, 1060, 'http://xat.com/images/apicon.png', 1, 'Adventure themed smilies: (adventure) (campfire) (canopy) (compass) (firstaid) (hangglider) (hunting) (lantern) (map) (marshmallow) (iceaxe) (swing) (waterskiing) (zipline) (smokes) LIMITED. $WIKI', 0, 'campfire,canopy,compass,firstaid,hangglider,hunting,lantern,map,marshmallow,iceaxe,swing,waterskiing,zipline,smokes', '', '', '', '', 0, ''),
  2283. (98, 'p3', 'feast', '', '', 4, 575, 'http://xat.com/images/apicon.png', 1, 'A feast of 30 food smilies and up to 3 flix backgrounds (needs up to 4 assigned). $WIKIP', 0, 'bowleat,burger,burgerlook,candycorn,carrot,cherry,chicken,chili,chipeat,coffeesplash,donut,eatspagetti,eattakeout,eggcook,eggplant,fortunecookie,fries,icecream,icecreameat,peanut,popcorn,pretzel,soupeat,spam,stirpan,takeout,thinkfood,toast2,pizza', '1', '', '', '', 1, ''),
  2284. (99, 'p3', 'single', '', '', 8, 150, 'http://xat.com/images/apicon.png', 0, 'Prevent other users marrying or bffing you. Includes broken heart on pawn [put (hat#z) in your name] and (asif) (heartbounce) (one) (heartburst) bonus smilies.. $WIKI', 0, 'asif,one,heartburst,heartbounce,noway', '', '', '', '', 0, ''),
  2285. (100, 'p3', 'link', '', '', 16, 400, 'http://xat.com/images/apicon.png', 0, 'Create custom link words for your chat. GROUP POWER. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  2286. (101, 'p3', 'shocker', '', '', 32, 1040, 'http://xat.com/images/apicon.png', 1, 'Shocker themed smilies: (duck) (electrocute) (eyepop) (flamed) (lookaround) (scream) (wow) (dazed) (hazey) (drool) (footmouth) (mindblow) (misspeak) (relieved) (uvula) (arc) LIMITED. $WIKI', 0, 'duck,electrocute,eyepop,flamed,lookaround,scream,wow,dazed,hazey,drool,footmouth,mindblow,misspeak,relieved,uvula,arc', '1', '', '', '', 1, ''),
  2287. (102, 'p3', 'fairy', '', '', 64, 3860, 'http://xat.com/images/apicon.png', 1, 'Fairy flix animated backgrounds and smilies. Price will drop and then the power will be withdrawn. LIMITED. GROUP POWER. $WIKIP', 0, 'butterfly,fcrown,fhair,fhat,flower2,frog,fwings,heartwand,mushrooms,shards', '1', '', '', '', 1, ''),
  2288. (103, 'p3', 'namecolor', '', '', 128, 10000, 'http://xat.com/images/apicon.png', 0, 'Color your name on the chat box. N.B. you also need nameglow and color powers. EG for a purple name use: (glow#0#800080) or white with black glow: (glow#000001#FFFFFF). $WIKI', 0, '', '', '', '', '', 0, ''),
  2289. (104, 'p3', 'gkbear', '', '', 256, 660, 'http://xat.com/images/apicon.png', 1, 'Cute bear smilies. Price will drop and then the power will be withdrawn. LIMITED. GROUP POWER. $WIKIP', 0, 'kbawe,kbcold,kbcry,kbdance,kbpunch,kbsad,kbscream,kbweep,kbwink,kbyawn', '1', '', '', '', 1, ''),
  2290. (105, 'p3', 'angry', '', '', 512, 4430, 'http://xat.com/images/apicon.png', 1, 'Don''t get upset, get the angry power and vent your frustration with these smilies. LIMITED. $WIKI', 0, 'explode,facepalm,bite,hissyfit,mutter,potstir,pullhair,raging,ticked,yell,flame,grumpy2,headache,timebomb', '', '', '', '', 0, ''),
  2291. (106, 'p3', 'gscol', '', '', 1024, 300, 'http://xat.com/images/apicon.png', 0, 'Set a default color for smilies. Eg you can have pink bears or aliens on the gline. GROUP POWER. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  2292. (107, 'p3', 'ugly', '', '', 2048, 387, 'http://xat.com/images/apicon.png', 1, 'Be different with new "ugly" style smilies. LIMITED. $WIKI', 0, 'uangel,udemon,uevil,uhappy,ulook,uthink,usad,uscratch,usmile,utongue,uwink', '', '', '', '', 0, ''),
  2293. (108, 'p3', 'love', '', '', 4096, 300, 'http://xat.com/images/apicon.png', 0, 'love smilies and also flix animated backgrounds for groups. UNLIMITED. $WIKIP', 0, 'coy,flirt,freehugs,heartbeat,heartblow,ihu,lovedraw,ucute,uhot', '', '', '', '', 0, ''),
  2294. (109, 'p3', 'barge', '', '', 8192, 280, 'http://xat.com/images/apicon.png', 0, 'Allows owners and mods to move into full pools by barging another user out. $WIKI', 0, '', '', '', '', '', 0, ''),
  2295. (110, 'p3', 'gkkitty', '', '', 16384, 416, 'http://xat.com/images/apicon.png', 0, 'Kitty smilies for groups. If the power is assigned any sub can use the kitty smilies on the group. LIMITED. $WIKIP', 0, 'kkbiggrin,kkconfused,kkcool,kkcrying,kkd,kkdance,kkdead,kkeek,kkfrown,kkhide,kkhug,kkmad,kknme,kkpaws1,kkpaws2,kkpaws3,kkredface,kkscn,kkshock,kksleepy,kksmile,kkstraightface,kkstruggle,kktongue,kkun,kkwary,kkwink,kkx3,kkxd,kkyawn', '1', '', '', '', 1, ''),
  2296. (111, 'p3', 'fantasy', '', '', 32768, 250, 'http://xat.com/images/apicon.png', 0, 'Fantasy themed smilies: (fantasy) (axe) (darkeyes) (dragon) (flail) (hole) (helmet2) (medusa) (orcm) (elf2) (ogre) (orcf) (invis) (scroll) (slash) (smskull) (sword) (wizard). $WIKI', 0, 'axe,darkeyes,dragon,flail,hole,helmet2,medusa,orcm,elf2,ogre,orcf,invis,scroll,slash,smskull,sword,wizard', '', '', '', '', 0, ''),
  2297. (112, 'p3', 'announce', '', '', 65536, 2000, 'http://xat.com/images/apicon.png', 0, 'An announce message will be shown to all joining the chat at the bottom of the message list. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  2298. (113, 'p3', 'hero', '', '', 131072, 562, 'http://xat.com/images/apicon.png', 1, '(hero) (daggers) (electro) (epi) (fireball) (flying) (genie) (iceman) (invisi) (jekyl) (maddr) (telekin) (amazon) and more. LIMITED. $WIKI', 0, 'daggers,electro,epi,fireball,flying,genie,iceman,invisi,jekyl,maddr,telekin,amazon,upaway,ripshirt', '', '', '', '', 0, ''),
  2299. (114, 'p3', 'rankpool', '', '', 262144, 800, 'http://xat.com/images/apicon.png', 0, 'Create a pool for members/mods etc only and give the first two pools a custom name. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  2300. (115, 'p3', 'spin', '', '', 524288, 300, 'http://xat.com/images/apicon.png', 0, 'Make smilies spin with the spin power. $WIKI', 0, '', '', '', '', '', 0, ''),
  2301. (116, 'p3', 'animal', '', '', 1048576, 200, 'http://xat.com/images/apicon.png', 0, 'Smilies of animals. ', 0, 'doggy,giraffe,goat,lion2,monkey,mouse,panda2,raccoon,sheep,unicorn', '', '', '', '', 0, ''),
  2302. (117, 'p3', 'music', '', '', 2097152, 300, 'http://xat.com/images/apicon.png', 0, 'Use the side app to make smilies that play music. $WIKI', 0, 'disco,dj,drums,flute,guitar,harp,piano,trumpet,violin,zippo', '', '', '', '', 0, ''),
  2303. (118, 'p3', 'gkpanda', '', '', 4194304, 798, 'http://xat.com/images/apicon.png', 1, 'Panda smilies for groups. If the power is assigned any sub can use the panda smilies on the group. LIMITED. ', 0, 'kpfit,kpembarassed,kppaws,kpd,kpannoyed,kppaws2,kplove,kpjoy,kpcrying,kphurt', '1', '', '', '', 1, ''),
  2304. (119, 'p3', 'unwell', '', '', 8388608, 351, 'http://xat.com/images/apicon.png', 1, 'Unwell themed smilies. N.B. price will decrease over time. LIMITED. $WIKI', 0, 'blownose,chill,cough,icepack,sickface,sneeze,soup,thermometer,crutches,feint,cough2,headknock,crutches,sweats', '', '', '', '', 0, ''),
  2305. (120, 'p3', 'events', '', '', 16777216, 280, 'http://xat.com/images/apicon.png', 0, 'View a log of bans, kicks etc. See wiki', 0, '', '', '', '', '', 0, ''),
  2306. (121, 'p3', 'zap', '', '', 33554432, 140, 'http://xat.com/images/apicon.png', 0, 'Shake the user when you kick them and send an optional audie. $WIKI', 0, 'cringe,shake,shocking', '', '', '', '', 0, ''),
  2307. (122, 'p3', 'sins', '', '', 67108864, 1520, 'http://xat.com/images/apicon.png', 1, 'Seven sinful smilies plus power smiliey. LIMITED. ', 0, 'envy,gluttony,greed,lust,pride,sloth,wrath', '', '', '', '', 0, ''),
  2308. (123, 'p3', 'outfit', '', '', 134217728, 841, 'http://xat.com/images/apicon.png', 0, 'Outfit your smiles.', 0, 'whip,turban,tophat,tinfoil,sombrero,paperbag,paperbag2,grandpa,grandma,glassesslip,disguise,curlers,braces,blindfold,beret', '', '', '', '', 0, ''),
  2309. (124, 'p3', 'wildwest', '', '', 268435456, 731, 'http://xat.com/images/apicon.png', 1, 'Wild west smilies and two western kisses. $WIKI', 0, 'undertaker,sheriff,ropeg,ropeb,push,prospector,outlaw,native,bullride,bartender', '', '', '', '', 0, ''),
  2310. (125, 'p3', 'work', '', '', 536870912, 236, 'http://xat.com/images/apicon.png', 1, 'Over 20 working smilies. LIMITED. ', 0, 'officeworker,driver,doctor,chef2,burgerflipper,blacksmith,astronaut,teacher,stewardess,shepherd,scientist,plumber,paperboy,miner,mechanic,judge,journalist,gardener,fortuneteller,fireman', '', '', '', '', 0, ''),
  2311. (126, 'p3', 'banpool', '', '', 1073741824, 210, 'http://xat.com/images/apicon.png', 0, 'NOTE: RANKPOOL is also required to use this power. Make all banned users go into a special pool. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  2312. (128, 'p4', 'beach', '', '', 1, 250, 'http://xat.com/images/apicon.png', 1, 'Fun beach smilies in time for the summer. LIMITED ', 0, 'icman,lifeguard,lotion,metaldetect,sandbury,sandfun,shkhat,sunburn,surf,tanning', '', '', '', '', 0, ''),
  2313. (129, 'p4', 'candy', '', '', 2, 454, 'http://xat.com/images/apicon.png', 1, 'candy themed smilies including two backs and two hands. LIMITED ', 0, 'candy,cdycorn,cdyback,donuteat,eatchoco,floss,gum,lolipop,mm', '', '', '', '', 0, ''),
  2314. (130, 'p4', 'gback', '', '', 4, 15000, 'http://xat.com/images/apicon.png', 0, 'Set a default background for the smilies in your chat. EPIC. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  2315. (131, 'p4', 'zodiac', '', '', 8, 250, 'http://xat.com/images/apicon.png', 0, 'Zodiac themed kaoani style smilies: (aries) (taurus) (gemini) (cancer) (leo) (virgo) (libra) (scorpio) (sagittarius) (capricorn) (aquarius) (pisces) $WIKI', 0, 'aries,taurus,gemini,cancer,leo,virgo,libra,scorpio,sagittarius,capricorn,aquarius,pisces', '', '', '', '', 0, ''),
  2316. (132, 'p4', 'flower', '', '', 16, 1210, 'http://xat.com/images/apicon.png', 1, '(Flower) can be used as back. (fangry) (fcry) (fcool) (feek) (fconfused) (ftongue) (fredface) (fcrying) (fsleepy) (fbiggrin) (fsad) (fwink) $WIKI', 0, 'fangry,fcry,fcool,feek,fconfused,ftongue,fredface,fsleepy,fbiggrin,fsad,fwink', '', '', '', '', 0, ''),
  2317. (133, 'p4', 'space', '', '', 32, 300, 'http://xat.com/images/apicon.png', 0, 'Ten space themed smilies and a kiss. $WIKI', 0, 'eclipse,meteorite,nasa,radiotele,rocket,satellite,saucer,shuttle,space,telescope', '', '', '', '', 0, ''),
  2318. (134, 'p4', 'snakeban', '', '', 64, 600, 'http://xat.com/images/apicon.png', 0, 'A snakebanned user has the chance to get out of the ban by completing a snake game. ', 0, 'sncool,sneek,snredface,snconfused,snfrown,snbiggrin,snangry,snsleepy,sncry,snsmile,snwink', '1', '', '', '', 1, ''),
  2319. (135, 'p4', 'stoneage', '', '', 128, 77, 'http://xat.com/images/apicon.png', 0, 'IMPORTANT: Will be sold for 24 hours only. Prehistoric and caveman smilies. $WIKI', 0, 'caveman,dino,cavewoman,cavework,cavebeard,caveclothes,torch,spear,rocksmash,cavehair,boneswing,wallart,stickfire,cavebeard2', '', '', '', '', 0, ''),
  2320. (136, 'p4', 'spaceban', '', '', 256, 1130, 'http://xat.com/images/apicon.png', 1, 'A spacebanned user has the chance to get out of the ban by completing a space game. ', 0, 'moonb', '1', '', '', '', 1, ''),
  2321. (137, 'p4', 'dance', '', '', 512, 150, 'http://xat.com/images/apicon.png', 0, 'Make your smilies dance. $WIKI', 0, 'dance1,dance2,dance3,dance4,dance5,dance6,dance7,dance8,dance9,dance10,dance11', '', '', '', '', 0, ''),
  2322. (138, 'p4', 'kpeng', '', '', 1024, 200, 'http://xat.com/images/apicon.png', 0, 'Kaoani penguin smilies. $WIKI', 0, 'kpesneeze,kpeshy,kpeshame,kpejoy,kpeglare,kpefit,kpedots,kpedizzy,kpeclap,kpeangry,kpedance,kpepop', '', '', '', '', 0, ''),
  2323. (139, 'p4', 'nerd', '', '', 2048, 218, 'http://xat.com/images/apicon.png', 1, 'Nerd smilies for all you geeks. LIMITED. $WIKI', 0, 'aplus,bowtie,brain,coder,gates,nglasses,nsci,phone,read,calc', '', '', '', '', 0, ''),
  2324. (140, 'p4', 'matchban', '', '', 4096, 1270, 'http://xat.com/images/apicon.png', 1, 'A matchbanned user has the chance to get out of the ban by completing a smiley matching game .. $WIKI', 0, '', '1', '', '', '', 1, ''),
  2325. (141, 'p4', 'school', '', '', 8192, 132, 'http://xat.com/images/apicon.png', 1, 'Smilies for the classroom. $WIKI', 0, 'backpack,daycare,gts,punished,rubber,schoolgirl,sbell,studying,tabsc,teacher2,writing', '', '', '', '', 0, ''),
  2326. (142, 'p4', 'silentm', '', '', 16384, 280, 'http://xat.com/images/apicon.png', 0, 'Make a member without a message. Owners only unless changed by gcontrol. $WIKI', 0, '', '', '', '', '', 0, ''),
  2327. (143, 'p4', 'punch', '', '', 32768, 300, 'http://xat.com/images/apicon.png', 0, 'Punch bag smilies with new style faces. $WIKI', 0, 'pconfused,pcrying,pcute,pdead,pfury,pgiggle,pglare,pjump,pmanic,punched,pshades,pshy,psleepy,pthink', '', '', '', '', 0, ''),
  2328. (144, 'p4', 'away', '', '', 65536, 100, 'http://xat.com/images/apicon.png', 0, 'Automatically show you are away from the chat. $WIKI', 0, '', '', '', '', '', 0, ''),
  2329. (145, 'p4', 'peace', '', '', 131072, 200, 'http://xat.com/images/apicon.png', 0, 'Peace themed smilies. NOT LIMITED. $WIKI', 0, 'dove,dove2,dove3,hglass,phair1,phair2,phair3,rbe,reggae', '', '', '', '', 0, ''),
  2330. (146, 'p4', 'kchick', '', '', 262144, 506, 'http://xat.com/images/apicon.png', 1, 'Kaoani chick smilies. LIMITED. $WIKI', 0, 'kccrying,kcdizzy,kceek,kcglare,kclook,kcsad,kcsmug,kctongue,kcwink', '', '', '', '', 0, ''),
  2331. (147, 'p4', 'carve', '', '', 524288, 268, 'http://xat.com/images/apicon.png', 1, 'Pumpkin carve smiles and bonus: (dracula) (grim2) (pknhide). LIMITED. $WIKI', 0, 'carveduh,carvegrin,carvescream,carvesly,carvesmile,dracula,grim2,pknhide,vampire', '', '', '', '', 0, ''),
  2332. (148, 'p4', 'spooky', '', '', 1048576, 334, 'http://xat.com/images/apicon.png', 1, 'Scare your friends with spooky smilies and flix animations. ', 0, 'sixeyes,bat2,blackcat,blackwidow,ghost2,hockeymask,plant,bloodyknife,scarecrow', '1', '', '', '', 1, ''),
  2333. (149, 'p4', 'kdog', '', '', 2097152, 223, 'http://xat.com/images/apicon.png', 1, 'Kaoani dog smilies. LIMITED. $WIKI', 0, 'kdcheer,kdcrazy,kddead,kdfit,kdglare,kdsad,kdshocked,kdsleepy,kdsmile,kdtired,kdwoo', '', '', '', '', 0, ''),
  2334. (150, 'p4', 'bot', '', '', 4194304, 1000, 'http://xat.com/images/apicon.png', 0, 'Allow a bot to access your group. Please read wiki before buying.', 2, 'bot2,bot3,bot4', '1', '', '', '', 1, ''),
  2335. (151, 'p4', 'manga', '', '', 8388608, 1870, 'http://xat.com/images/apicon.png', 1, 'Manga themed smilies and (manga) effect, 18 in all. E.g. (manga1) (manga2) etc. LIMITED. $WIKI', 0, 'manga1,manga2,manga3,manga4,manga5,manga6,manga7,manga8,manga9,manga10,manga11,manga12,manga13,manga14,manga15,manga16,manga17', '', '', '', '', 0, ''),
  2336. (152, 'p4', 'mazeban', '', '', 16777216, 400, 'http://xat.com/images/apicon.png', 1, 'A mazebanned user has the chance to get out of the ban by getting to the end of a maze. $WIKI', 0, '', '1', '', '', '', 1, ''),
  2337. (153, 'p4', 'gold', '', '', 33554432, 50000, 'http://xat.com/images/apicon.png', 0, 'Gold pawn and smilies. $WIKI', 10, 'goldb,bars,bar,goldstar', '0', '', '', '', 0, ''),
  2338. (154, 'p4', 'snowman', '', '', 67108864, 148, 'http://xat.com/images/apicon.png', 1, 'Snowman themed smilies. (snowman) (smcry) (smgrin) (smlaugh) (smredface) (smsad) (smshocked) (smsleepy) (smtongue) (smmad) (smcool). LIMITED. $WIKI', 0, 'smcry,smgrin,smlaugh,smredface,smsad,smshocked,smsleepy,smtongue,smmad,smcool', '', '', '', '', 0, ''),
  2339. (155, 'p4', 'reindeer', '', '', 134217728, 110, 'http://xat.com/images/apicon.png', 0, 'Reindeer smilies (reindeer) (resurprised) (resmirk) (resleepy) (resad) (reredface) (relaugh) (reglare) (recry) (recool) (reangry) (renose). LIMITED. $WIKI', 0, 'resurprised,resmirk,resleepy,resad,reredface,relaugh,reglare,recry,recool,reangry,renose,reback', '', '', '', '', 0, ''),
  2340. (156, 'p4', 'santa', '', '', 268435456, 300, 'http://xat.com/images/apicon.png', 0, 'Santa smilies and animated flix. $WIKIP', 0, 'sabiggrin,saconfused,sacry,saglare,saredface,sasad,sastraightface,sasurprised,satongue,sawink', '', '', '', '', 0, ''),
  2341. (157, 'p4', 'sparta', '', '', 536870912, 125, 'http://xat.com/images/apicon.png', 1, 'This is Sparta! LIMITED. $WIKI', 0, 'spartayell,getready,helmet3,soldier,spants,spartafight,spartan,spartan2,truewar,xerxes', '', '', '', '', 0, ''),
  2342. (158, 'p4', 'dunce', '', '', 1073741824, 250, 'http://xat.com/images/apicon.png', 0, 'Dunce your friends. Add a dunce cap to their pawn. (dunce) (duh) (doh2). $WIKI', 0, 'duh,doh2', '', '', '', '', 0, ''),
  2343. (160, 'p5', 'newyear', '', '', 1, 552, 'http://xat.com/images/apicon.png', 1, 'Smilies to help bring in the new year including fireworks FX. $WIKI', 0, 'calendar,celebration,champagne2,champagneback,clink2,firework1,firework2,nyball,nyhat,nykiss,nyparty,sparkler2', '', '', '', '', 0, ''),
  2344. (161, 'p5', 'can', '', '', 2, 125, 'http://xat.com/images/apicon.png', 1, 'Crazy Can smilies. Companion power to Punch, can be mixed with it and used with #noface to make an alternative style of yellow smilies. LIMITED. $WIKI', 0, 'canangel,canbounce,cancontempt,canfury,canoo,canshifty,canthink,cantwitch,canum,canun', '', '', '', '', 0, ''),
  2345. (162, 'p5', 'codeban', '', '', 4, 250, 'http://xat.com/images/apicon.png', 0, 'A codebanned user has the chance to get out of the ban by completing a code puzzle. $WIKI', 0, '', '1', '', '', '', 1, ''),
  2346. (163, 'p5', 'magicfx', '', '', 8, 111, 'http://xat.com/images/apicon.png', 0, 'A magic FX (effect) to add to smilies. LIMITED. $WIKI', 0, '', '', '', '', '', 0, ''),
  2347. (164, 'p5', 'spy', '', '', 16, 193, 'http://xat.com/images/apicon.png', 1, 'Espionage themed smilies. LIMITED. $WIKI', 0, 'crosshair,folder,footprints,headset,keyhole,keypad,peeking,radar,spydrink,spyeye,spying,spypaper,spyrope', '', '', '', '', 0, ''),
  2348. (165, 'p5', 'kduck', '', '', 32, 789, 'http://xat.com/images/apicon.png', 1, 'Kaoani duck smilies. LIMITED. $WIKI', 0, 'kduckback,kduck1,kduck2,kduck3,kduck4,kduck5,kduck6,kduck7,kduck8,kduck9,kduck10,kduck11,kduck12', '', '', '', '', 0, ''),
  2349. (166, 'p5', 'heartfx', '', '', 64, 200, 'http://xat.com/images/apicon.png', 0, 'Heart effects smilies. $WIKI', 0, 'heartfx,heartfx2,heartfx3', '', '', '', '', 0, ''),
  2350. (167, 'p5', 'carnival', '', '', 128, 275, 'http://xat.com/images/apicon.png', 1, 'Carnival themed similes. $WIKI', 0, 'anonmask,beads,brazilboom,carniphant,cjester,cmask,flowersquirt,headdress,kreu,shakeit,wannasamba,yeayea,cjester2,cbird,cangel', '', '', '', '', 0, ''),
  2351. (168, 'p5', 'topspin', '', '', 256, 250, 'http://xat.com/images/apicon.png', 0, 'Add a spin to top and backgrounds of smilies. $WIKI', 0, '', '', '', '', '', 0, ''),
  2352. (169, 'p5', 'movie', '', '', 512, 141, 'http://xat.com/images/apicon.png', 1, 'Movie themed smilies. LIMITED. $WIKI', 0, 'action,admission,booth,cameraman,director,drink2,film,filmroll,popcorn,pose,tickets', '', '', '', '', 0, ''),
  2353. (170, 'p5', 'monster', '', '', 1024, 200, 'http://xat.com/images/apicon.png', 0, 'Cute monster smilies. $WIKI', 0, 'mangel,mbat,mbear,mchick,mdrip,mfish,mglare', '', '', '', '', 0, ''),
  2354. (171, 'p5', 'kat', '', '', 2048, 645, 'http://xat.com/images/apicon.png', 1, 'Kat kaoani smilies with attitude. LIMITED. $WIKI', 0, 'kat1,kat2,kat3,kat4,kat5,kat6,kat7,kat8,kat9,kat10,katback', '', '', '', '', 0, ''),
  2355. (172, 'p5', 'typing', '', '', 4096, 100, 'http://xat.com/images/apicon.png', 0, 'Show you are typing a message. $WIKI', 0, 'typing1', '', '', '', '', 0, ''),
  2356. (173, 'p5', 'ksheep', '', '', 8192, 175, 'http://xat.com/images/apicon.png', 1, 'Kaoani sheep smilies. LIMITED. $WIKI', 0, 'ksheep1,ksheep2,ksheep3,ksheep4,ksheep5,ksheep6,ksheep7,ksheep8,ksheep9,ksheep10,ksheepback', '', '', '', '', 0, ''),
  2357. (174, 'p5', 'pulsefx', '', '', 16384, 766, 'http://xat.com/images/apicon.png', 0, 'Add a pulsing effect to smilies eg (pulsefx) (d#pulsefxback#r). LIMITED. $WIKI', 0, 'pulsefxback', '', '', '', '', 0, ''),
  2358. (175, 'p5', 'blobby', '', '', 32768, 138, 'http://xat.com/images/apicon.png', 0, 'Blobby monster smilies. LIMITED. $WIKI', 0, 'bbclap,bbconfused,bbcry,bbfit,bbglare,bbhug,bblaugh,bboops,bbpout,bbwink,bbback', '', '', '', '', 0, ''),
  2359. (176, 'p5', 'reverse', '', '', 65536, 200, 'http://xat.com/images/apicon.png', 0, 'Cause a users words to be reversed. $WIKI', 0, '', '', '', '', '', 0, ''),
  2360. (177, 'p5', 'fuzzy', '', '', 131072, 324, 'http://xat.com/images/apicon.png', 1, 'Fuzzy monster smilies. $WIKI', 0, 'fzangel,fzback,fzbiggrin,fzcool,fzcrazy,fzd,fzdance,fzsad,fzstretch,fztongue,fztwirl', '', '', '', '', 0, ''),
  2361. (178, 'p5', 'spiralfx', '', '', 262144, 222, 'http://xat.com/images/apicon.png', 0, 'Add spiral effects to smilies. $WIKI', 0, 'spiralfx2', '', 'H:p1spiralfx', '', '', 0, ''),
  2362. (179, 'p5', 'nursing', '', '', 524288, 115, 'http://xat.com/images/apicon.png', 0, 'Nursing smilies for nursing week. LIMITED. $WIKI', 0, 'crazyn,nblood,nbroken,ndoc,nlist,nmask,nne,noxy,nsurg', '', '', '', '', 0, ''),
  2363. (180, 'p5', 'gsound', '', '', 1048576, 280, 'http://xat.com/images/apicon.png', 1, 'Change the sounds on your group. ', 0, 'megap,volume,tooloud,canthear,playbtn', '1', '', '', '', 1, ''),
  2364. (181, 'p5', 'kbee', '', '', 2097152, 409, 'http://xat.com/images/apicon.png', 0, 'Kaoani bee smilies. $WIKI', 0, 'kbeeback,kbeeclap,kbeecry,kbeed,kbeedance,kbeefedup,kbeejoy,kbeemad,kbeepunch,kbeexx,kbeeyay', '', '', '', '', 0, '');
  2365. INSERT INTO `powers` (`id`, `section`, `name`, `new`, `d2`, `subid`, `cost`, `rockets`, `limited`, `description`, `amount`, `topsh`, `group`, `pawns`, `pawn`, `hats`, `grupal`, `poder`) VALUES
  2366. (182, 'p5', 'vortexfx', '', '', 4194304, 764, 'http://xat.com/images/apicon.png', 0, 'Add vortex effects to smilies. $WIKI', 0, 'vortexfx2', '', '', '', '', 0, ''),
  2367. (183, 'p5', 'jail', '', '', 8388608, 190, 'http://xat.com/images/apicon.png', 0, 'Lock up your smilies. $WIKI', 0, 'ballchain,bobby,copstop,cracker,cuffs,gavel,handsair,jailnumber,mugshot,prisoner', '', '', '', '', 0, ''),
  2368. (184, 'p5', 'zip', '', '', 16777216, 455, 'http://xat.com/images/apicon.png', 1, 'Make a user only able to talk in smilies. $WIKI', 0, '', '', '', '', '', 0, ''),
  2369. (185, 'p5', 'drip', '', '', 33554432, 306, 'http://xat.com/images/apicon.png', 0, 'Water drip smilies, 15 in total. drip can be used as a back and try them with #noface. $WIKI', 0, 'dripclap,dripdance,dripeek,dripfit,dripglare,driphehe,driphello,driphug,driplaugh,dripsad,dripshocked,driptired,dripxd,dripyell', '', '', '', '', 0, ''),
  2370. (186, 'p5', 'moustache', '', '', 67108864, 100, 'http://xat.com/images/apicon.png', 0, 'Add moustaches to your smilies. $WIKI', 0, 'moustache1,moustache2,moustache3,moustache4,moustache5,moustache6,moustache7,moustache8,moustache9', '', '', '', '', 0, ''),
  2371. (187, 'p5', 'whirlfx', '', '', 134217728, 906, 'http://xat.com/images/apicon.png', 1, 'Whirling FX. See wiki for customization. LIMITED. $WIKI', 0, '', '', '', '', '', 0, ''),
  2372. (188, 'p5', 'doodlerace', '', '', 268435456, 400, 'http://xat.com/images/apicon.png', 1, 'Start and control the doodlerace game. To start doodleRace, click Games tab, click doodlerace and then type !bot on the chat and then !start to start playing (you dont need bot power for doodlerace) See wiki', 0, '', '1', '', '', '', 1, ''),
  2373. (189, 'p5', 'olympic', '', '', 536870912, 334, 'http://xat.com/images/apicon.png', 0, '16 olympic smilies to celebrate the games in London. LIMITED. $WIKI', 0, 'bronzem,goldm,oboxing,ocycling,odiving,ogymnastics,ohurdles,orowing,orunning,oswimming,otennis,otorch,ovolleyball,silverm,oarchery,obasketball,ofencing,ohockey', '', '', '', '', 0, ''),
  2374. (190, 'p5', 'aliens', '', '', 1073741824, 619, 'http://xat.com/images/apicon.png', 0, 'Alien smiles. LIMITED. $WIKI', 0, 'aliens,alilaugh,alidead,aliclap,alid,alilove,aliscratch,alitalk,alicry,alitongue,aliyay,aliback', '', '', '', '', 0, ''),
  2375. (192, 'p6', 'matchrace', '', '', 1, 691, 'http://xat.com/images/apicon.png', 0, 'Start and control the matchrace game. $WIKI', 0, '', '1', '', '', '', 1, ''),
  2376. (193, 'p6', 'burningheart', '', '', 2, 3000, 'http://xat.com/images/apicon.png', 1, 'Burning smilies (burningheart) and (bheartb). $WIKI', 0, 'bheartb', '', '', '', '', 0, ''),
  2377. (194, 'p6', 'snakerace', '', '', 4, 200, 'http://xat.com/images/apicon.png', 1, 'Play and control a snake game. $WIKI', 0, '', '1', '', '', '', 1, ''),
  2378. (195, 'p6', 'kpig', '', '', 8, 234, 'http://xat.com/images/apicon.png', 0, 'kaoani piggy smilies. $WIKI', 0, 'kpigangry,kpigback,kpigball,kpigfraz,kpiglove,kpigmad,kpigmud,kpigpals,kpigsleep,kpigsnoot,kpigwrite', '', '', '', '', 0, ''),
  2379. (196, 'p6', 'poker', '', '', 16, 382, 'http://xat.com/images/apicon.png', 0, 'Keep a straight face with these poker themed smilies. LIMITED. $WIKI', 0, 'pclubs,pobluff,pochips,pod,pogirl,poplayer,povip,powin,poyay,pspades,pdiamonds,phearts', '', '', '', '', 0, ''),
  2380. (197, 'p6', 'pony', '', '', 32, 164, 'http://xat.com/images/apicon.png', 1, 'Cute pony smilies. LIMITED. $WIKI', 0, 'poback,pocall,poclap,pocry,poeat,pofan,poglasses,pohay,pomane,ponyd,powhip', '', '', '', '', 0, ''),
  2381. (198, 'p6', 'clockfx', '', '', 64, 339, 'http://xat.com/images/apicon.png', 1, 'Rotating effects. LIMITED. $WIKI', 0, 'clockfx2,clockfx3,clockfx4', '', '', '', '', 0, ''),
  2382. (199, 'p6', 'drop', '', '', 128, 700, 'http://xat.com/images/apicon.png', 1, 'Drop style smilies. $WIKI', 0, 'dropworry,dropumb,dropscratch,droprub,drophey,dropeat,dropdance,dropclap,dropback', '', '', '', '', 0, ''),
  2383. (200, 'p6', 'spacewar', '', '', 256, 1044, 'http://xat.com/images/apicon.png', 1, 'Shoot and destroy other users planets. LIMITED. $WIKIP', 0, '', '1', '', '', '', 1, ''),
  2384. (201, 'p6', 'speech', '', '', 512, 200, 'http://xat.com/images/apicon.png', 0, 'Kaoani speech smilies. $WIKI', 0, 'spd,spfrus,spyay,spkiss,splap,splove,spvamp,spwrite,spxmas,sppup,spback', '', '', '', '', 0, ''),
  2385. (202, 'p6', 'vampyre', '', '', 1024, 297, 'http://xat.com/images/apicon.png', 1, 'Frighten your friends with these vampyre smilies. $WIKI', 0, 'vbat,vbheart,vblood,vcoffin,vcross,vfangs,vglamour,vrip,vstake,vtongue,vstake,vfangs,vtongue,vglamour,vbat,vblood,vcoffin,vcross,vbheart,vrip', '', '', '', '', 0, ''),
  2386. (203, 'p6', 'treefx', '', '', 2048, 600, 'http://xat.com/images/apicon.png', 1, 'Christmas tree FX for smilies. LIMITED. $WIKI', 0, '', '', '', '', '', 0, ''),
  2387. (204, 'p6', 'claus', '', '', 4096, 272, 'http://xat.com/images/apicon.png', 1, 'Comical santa smilies for Christmas. LIMITED. $WIKI', 0, 'clcool,cld,cleek,clgrin,clmad,clsad,clsmile,clsweat,clwink,clx,clwink,clgrin,clsad,clsmile,cld,clx,cleek,clcool,clmad,clsweat', '', '', '', '', 0, ''),
  2388. (205, 'p6', 'quest', '', '', 8192, 250, 'http://xat.com/images/apicon.png', 0, 'Smilies to help you on your journey. $WIKI', 0, 'bearer,disappear,dwarf,goblin2,queenelf,sneak,thering,warrior,wizzard,dwarf,sneak,queenelf,goblin2,wizzard,warrior,disappear,bearer,thering', '', '', '', '', 0, ''),
  2389. (206, 'p6', 'lang', '', '', 16384, 2000, 'http://xat.com/images/apicon.png', 1, 'Change the chat text. Important read wiki before buying or using. $WIKIP', 0, '', '1', '', '', '', 0, ''),
  2390. (207, 'p6', 'quest2', '', '', 32768, 112, 'http://xat.com/images/apicon.png', 1, 'Continue the quest. LIMITED. $WIKI', 0, '1066,agreement,arrow,burnt,dwarf2,dwarfz,elve2,goblin3,newton,pile,1066,dwarfz,dwarf2,arrow,goblin3,newton,burnt,pile,elve2,agreement', '', '', '', '', 0, ''),
  2391. (208, 'p6', 'glitterfx', '', '', 65536, 250, 'http://xat.com/images/apicon.png', 0, 'Glitter effects for smilies. $WIKI', 0, '', '', '', '', '', 0, ''),
  2392. (209, 'p6', 'xavi', '', '', 131072, 500, 'http://xat.com/images/apicon.png', 0, 'Make a custom avatar that responds to what you type. See wiki for details', 0, '', '', '', '', '', 0, ''),
  2393. (210, 'p6', 'kmouse', '', '', 262144, 1740, 'http://xat.com/images/apicon.png', 1, 'Cute kaoani mouse smilies. LIMITED. $WIKI', 0, 'kmcheer,kmcry,kmeyerub,kmfit,kmfrustrate,kmglare,kmgrouch,kmhide,kmhug,kmlaugh,kmshock,kmshuffle,kmsleepy,kmsmile,kmback,kmlaugh,kmsleepy,kmfit,kmhide,kmfrustrate,kmsmile,kmgrouch,kmback,kmcry,kmshock,kmhug,kmshuffle,kmeyerub,kmglare,kmcheer', '', '', '', '', 0, ''),
  2394. (211, 'p6', 'eighties', '', '', 524288, 185, 'http://xat.com/images/apicon.png', 1, '16 I love the eighties smilies. LIMITED. $WIKI', 0, 'bighair,bigphone,boombox,cassette,dance80,dj80,hoverboard,joystick,skate,slacker1,slacker2,poi,thermochrome,timemachine,skate,boombox,slacker2,slacker1,thermochrome,bigphone,cassette,bighair,poi,dj80,timemachine,dance80,joystick,hoverboard', '', '', '', '', 0, ''),
  2395. (212, 'p6', 'foe', '', '', 1048576, 250, 'http://xat.com/images/apicon.png', 0, 'Mark a user as a foe. $WIKI', 0, '', '', '', '', '', 0, ''),
  2396. (213, 'p6', 'everypower', '', '', 2097152, 268696, 'http://xat.com/images/apicon.png', 1, '', 0, '', '', '', '', '', 0, ''),
  2397. (214, 'p6', 'makeup', '', '', 4194304, 168, 'http://xat.com/images/apicon.png', 1, 'You''ll be made up with these smilies. $WIKI', 0, 'nailpolish,lipgloss,makeupface,blush,perfume,comb,lipstick2,lipstick1,purse,eyeliner', '', '', '', '', 0, ''),
  2398. (215, 'p6', 'kheart', '', '', 8388608, 458, 'http://xat.com/images/apicon.png', 1, 'Heart shaped smilies in kaoani style. $WIKI', 0, 'kheartb,khkiss,khlips,khring,khroses,khbub,kharrow,kheyes,khmadly,khhurt,khcupid,khily,khhug', '', '', '', '', 0, ''),
  2399. (216, 'p6', 'kmonkey', '', '', 16777216, 250, 'http://xat.com/images/apicon.png', 0, 'Cute monkey smilies in kaoani style. $WIKI', 0, 'kmodance,kmorage,kmowonder,kmostare,kmoun,kmoredface,kmofrus,kmod,kmoback,kmoblow,kmowhistle,kmonehneh,kmoteeth', '', '', '', '', 0, ''),
  2400. (217, 'p6', 'nuclear', '', '', 33554432, 500, 'http://xat.com/images/apicon.png', 0, 'Nuclear FX for smilies. Highly configurable with app. See wiki for details', 0, 'nuclearb', '', 'Y:p1nuclear', '', '', 0, ''),
  2401. (218, 'p6', 'stylist', '', '', 67108864, 200, 'http://xat.com/images/apicon.png', 1, 'Add style to your smilies. LIMITED. $WIKI', 0, 'shave,mirror2,shair3,shair2,shair1,shair7,shair6,shair5,shair4,barber', '', '', '', '', 0, ''),
  2402. (219, 'p6', 'spring', '', '', 134217728, 585, 'http://xat.com/images/apicon.png', 1, 'Spring is here. Celebrate with these beautiful smiles. LIMITED. $WIKI', 0, 'flohat,watercan2,birdy,flowerbed,flowers,rainbow2,inflower,bees,flohide,springhat,watercan,floshow,butterflys', '', '', '', '', 0, ''),
  2403. (220, 'p6', 'vote', '', '', 268435456, 500, 'http://xat.com/images/apicon.png', 0, 'Survey your users with a mini poll. Bonus smilies. $WIKIP', 0, 'bemused,voting,voting2,cross,tick,placard', '1', '', '', '', 1, ''),
  2404. (221, 'p6', 'hands2', '', '', 536870912, 200, 'http://xat.com/images/apicon.png', 0, 'More hands powers including high five. $WIKI', 0, 'pointing,highfive,hearno,notlistening,crossed,callme,heehee,prosper,daydreaming,cutthroat,peace2,hands2', '', '', '', '', 0, ''),
  2405. (222, 'p6', 'eggs', '', '', 1073741824, 231, 'http://xat.com/images/apicon.png', 1, 'Egg and Easter smilies. LIMITED. $WIKI', 0, 'stripegg,basket2,eggwink,chickwalk,eggsleep,eggnod,bunnyears,eggbroke,eggtongue', '', '', '', '', 0, ''),
  2406. (224, 'p7', 'hearts', '', '', 1, 500, 'http://xat.com/images/apicon.png', 0, 'Be game master of a hearts card game. See wiki.', 0, '', '1', '', '', '', 1, ''),
  2407. (225, 'p7', 'kfox', '', '', 2, 469, 'http://xat.com/images/apicon.png', 1, 'Foxy smilies. LIMITED. $WIKI', 0, 'kfoxwhat,kfoxcry,kfoxshades,kfoxd,kfoxtant,kfoxsleep,kfoxtwag,kfoxpsy,kfoxbino,kfoxinl,kfoxggl', '', '', '', '', 0, ''),
  2408. (226, 'p7', 'kcow', '', '', 4, 133, 'http://xat.com/images/apicon.png', 1, 'Kaoani cow smilies. LIMITED. $WIKI.', 0, 'kwlove,kwswt,kwangry,kwyay,kwsleepy,kwbell,kwcry,kwlaugh,kwscratch,kwwhat,kwmad,kwd,kwfrus,kwnod', '', '', '', '', 0, ''),
  2409. (227, 'p7', 'sketch', '', '', 8, 200, 'http://xat.com/images/apicon.png', 0, 'Animated sketch style smilies. $WIKI.', 0, 'sksad,skback,skgrr,sksmile,skwink,skoo,skd,skdead,sksix,skfrus,skannoyed', '', '', '', '', 0, ''),
  2410. (228, 'p7', 'led', '', '', 16, 250, 'http://xat.com/images/apicon.png', 0, 'Make a scrolling LED style message. See wiki.', 0, '', '', '', '', '', 0, ''),
  2411. (229, 'p7', 'seaside', '', '', 32, 297, 'http://xat.com/images/apicon.png', 1, 'Get ready for summer with the seaside power. $WIKI', 0, 'sandcastle,shell,coconut,crab2,seatree,flipflops,beachvolley,beachdrink,dolphin2', '', '', '', '', 0, ''),
  2412. (230, 'p7', 'hair2f', '', '', 64, 306, 'http://xat.com/images/apicon.png', 1, 'More female smiley hair styles. $WIKI', 0, 'hair2f10,hair2f3,hair2f2,hair2f1,hair2f7,hair2f6,hair2f5,hair2f4,hair2f9,hair2f8', '', '', '', '', 0, ''),
  2413. (231, 'p7', 'statusglow', '', '', 128, 300, 'http://xat.com/images/apicon.png', 0, 'Add a green glow to your status (status power required). $WIKI', 0, '', '', '', '', '', 0, ''),
  2414. (232, 'p7', 'super', '', '', 256, 200, 'http://xat.com/images/apicon.png', 0, 'New "super" style orange smilies. $WIKI', 0, 'suredface,suconfused,suback,sulaugh,sucool,sutongue,susad,susmile,sucry,sumad,sudead,sulove', '', '', '', '', 0, ''),
  2415. (233, 'p7', 'wedding', '', '', 512, 253, 'http://xat.com/images/apicon.png', 1, 'Celebrate a wedding with these wedding smilies. LIMITED $WIKI', 0, 'flowersw,throwboquet,arch,invitation,givering,dovew,weddingcake,cakecut,roses', '', '', '', '', 0, ''),
  2416. (234, 'p7', 'germ', '', '', 1024, 325, 'http://xat.com/images/apicon.png', 0, 'Ewwww germs themed smilies. All can be used as backs e.g. (twitch#germ2) To color them use two color codes e.g. (germ6#r#g) $WIKI', 0, 'germ10,germ4,germ5,germ6,germ7,germ2,germ3,germ8,germ9', '', '', '', '', 0, ''),
  2417. (235, 'p7', 'cactus', '', '', 2048, 238, 'http://xat.com/images/apicon.png', 1, 'Cactus smilies with all new faces and different backgrounds. LIMITED. ', 0, 'cacdead,cacpanic,cactongue,cacback,cacmad,cacsmile,cacwhat,caclove,cacflaming,cacblow,caccool', '', '', '', '', 0, ''),
  2418. (236, 'p7', 'slotban', '', '', 4096, 250, 'http://xat.com/images/apicon.png', 0, 'A slotbanned user has the chance to get out of the ban by playing a slot machine game. $WIKI', 0, 'orange2,plum2,slotbar,seven,cherries,spinbutton', '', '', '', '', 0, ''),
  2419. (237, 'p7', 'fourth', '', '', 8192, 260, 'http://xat.com/images/apicon.png', 0, 'Celebrate the 4th July with these festive smilies. $WIKI', 0, 'usafw,iwantyou,waveflagf,showcal,flagfw,fwbang,fourthcal,waveflagm,usafws,watchfw', '', '', '', '', 0, ''),
  2420. (238, 'p7', 'switch', '', '', 16384, 500, 'http://xat.com/images/apicon.png', 1, 'Be game master of a switch card game. $WIKI', 0, '', '1', '', '', '', 1, ''),
  2421. (239, 'p7', 'cuboid', '', '', 32768, 239, 'http://xat.com/images/apicon.png', 1, 'Cubist smilies and back. LIMITED $WIKI', 0, 'custar,cucool,cushine,cuback,cucat,cusad,cubiggrin,cumaracas,cusmile,cucry', '', '', '', '', 0, ''),
  2422. (240, 'p7', 'phasefx', '', '', 65536, 200, 'http://xat.com/images/apicon.png', 0, 'Create phase effects. Many variants. $WIKI', 0, 'phaseplan,phaseques,phaseheart', '', 'X:p1phasefx1,Z:p1phasefx2,E:p1phasefx3', '', '', 0, ''),
  2423. (241, 'p7', 'marriage', '', '', 131072, 300, 'http://xat.com/images/apicon.png', 0, '4 new marriage kisses and 10 smilies to help you celebrate your marriage. $WIKI', 0, 'showring,propose,weddingdrink,catchboquet,groom2,cake2,weddingring,bride2,twohearts', '', '', '', '', 0, ''),
  2424. (242, 'p7', 'romance', '', '', 262144, 623, 'http://xat.com/images/apicon.png', 1, 'Romantic smilies. $WIKI', 0, 'cuddle,hugme,serenade,iheart,huba,formal,lashes,affection,kisses,hearthands', '', '', '', '', 0, ''),
  2425. (243, 'p7', 'sticky', '', '', 524288, 250, 'http://xat.com/images/apicon.png', 0, 'Smilies inspired by sticky notes. $WIKI', 0, 'stcool,stcrying,stdevil,stheart,stsleepy,stattention,stangel,stlips,stwhat', '', '', '', '', 0, ''),
  2426. (244, 'p7', 'kickall', '', '', 1048576, 420, 'http://xat.com/images/apicon.png', 0, 'Kick all guests from the chat. $WIKI This power should not be miss used.', 0, '', '', '', '', '', 0, ''),
  2427. (245, 'p7', 'fruities', '', '', 2097152, 253, 'http://xat.com/images/apicon.png', 1, 'Fun fruit flavoured smilies. $WIKI', 0, 'frgrapes,frorange,frpineapple,frlemon,frbanana,frapple,frmelon,frpear,frkiwi,frstrawberry', '', '', '', '', 0, ''),
  2428. (246, 'p7', 'darts', '', '', 4194304, 900, 'http://xat.com/images/apicon.png', 1, 'Dart wheel zing game that can give prizes. $WIKIP', 0, 'dart,dartthrow', '1', '', '', '', 1, ''),
  2429. (247, 'p7', 'weather', '', '', 8388608, 250, 'http://xat.com/images/apicon.png', 0, 'Smilies for all weathers. $WIKI', 0, 'foggy,windy2,hotthermo,tornado,stormy,sunny,sunshine,cleary,coldthermo,rainy,snowy2', '', '', '', '', 0, ''),
  2430. (248, 'p7', 'kangel', '', '', 16777216, 250, 'http://xat.com/images/apicon.png', 0, 'kaoani style angels. $WIKI', 3, 'kantired,kancloud,kanjoy,kanroses,kanthink,kandizzy,kancry,kanlove,kangoo', '', 'A:p1kangel', '', '', 0, ''),
  2431. (249, 'p7', 'kdemon', '', '', 33554432, 360, 'http://xat.com/images/apicon.png', 1, 'kaoani style demons. $WIKI', 0, 'kdesweat,kdestir,kdefire,kdefear,kderain,kdewar,kdetri,kdejoy,kderage', '', 'S:p1kdemon', '', '', 0, ''),
  2432. (250, 'p7', 'autumn', '', '', 67108864, 275, 'http://xat.com/images/apicon.png', 0, 'Autumnal smilies. $WIKI', 0, 'gotleaf,leaves,acorn,jam,squirrel,mushrooms2,sunflower,leaf,scarecrow2', '', '', '', '', 0, ''),
  2433. (251, 'p7', 'eggy', '', '', 134217728, 110, 'http://xat.com/images/apicon.png', 0, 'Egg shaped smilies. LIMITED. $WIKI', 0, 'eggyes,eggzzz,egggamer,eggupset,eggback,eggshh,eggthumbs,eggcool,eggtickoff,eggcross', '', '', '', '', 0, ''),
  2434. (252, 'p7', 'redirect', '', '', 268435456, 500, 'http://xat.com/images/apicon.png', 1, 'Use this group power to redirect a chat to another chat. $WIKI', 0, 'redirect2', '1', '', '', '', 1, ''),
  2435. (253, 'p7', 'ani1', '', '', 536870912, 307, 'http://xat.com/images/apicon.png', 1, 'Anime characters and a star FX. LIMITED. $WIKI', 0, 'a1love,a1pff,a1fx,a1eww,a1heh,a1fedup,a1cry,a1hot,a1adore,a1fan,a1evil', '', '', '', '', 0, ''),
  2436. (254, 'p7', 'scary', '', '', 1073741824, 552, 'http://xat.com/images/apicon.png', 1, 'Scary smilies for Halloween. LIMITED. $WIKI', 0, 'tomb2,coffin,scarytree,cobweb,scaryghost,pknburning,scaryeyes,scarybat,scaryhat', '', '', '', '', 0, ''),
  2437. (256, 'p8', 'zwhack', '', '', 1, 600, 'http://xat.com/images/apicon.png', 1, 'Use the xat ban hammer to smite those pesky zombies. $WIKI', 0, 'mallet', '1', '', '', '', 1, ''),
  2438. (257, 'p8', 'halloween2', '', '', 2, 252, 'http://xat.com/images/apicon.png', 1, 'Halloween themed costumed yellow smilies. LIMITED. $WIKI', 0, 'madsci,docmask,whitehair,zbride,madhat,scissor,zgirl,bloodgirl,zdoc', '', '', '', '', 0, ''),
  2439. (258, 'p8', 'piracy', '', 'Piracy smiles', 4, 258, 'http://xat.com/images/apicon.png', 1, '(piracy) (barrel) (handhook) (octopus2) (piratebird) (piratemap) (pirateship) (telescope2) (toxicdrink) (trove).', 0, 'handhook,octopus2,telescope2,piratemap,piratebird,pirateship,trove,toxicdrink,barrel', '', '', '', '', 0, ''),
  2440. (259, 'p8', 'froggy', '', 'Froggy smiles', 8, 341, 'http://xat.com/images/apicon.png', 1, '(froggy) (frcool) (frmad) (frooo) (frcry) (frbiggrin) (frdead) (frsad) (frchkl) (frlove).', 0, 'frbiggrin,frchkl,frlove,frmad,frsad,frooo,frdead,frcry,frcool', '', '', '', '', 0, ''),
  2441. (260, 'p8', 'blackfriday', '', 'Blackfriday smiles', 16, 200, 'http://xat.com/images/apicon.png', 0, ': (blackfriday) (bagfight) (bags) (bargain) (cart) (cashhere) (cashreg) (lowprice) (manybags) (pricetag)', 0, 'bagfight,cart,cashreg,manybags,cashhere,bags,lowprice,pricetag,bargain', '', '', '', '', 0, ''),
  2442. (261, 'p8', 'winterland', '', 'Winterland smiles', 32, 300, 'http://xat.com/images/apicon.png', 1, '(winterland) (ornament2) (chimney) (fishing2) (glove) (snowman2) (winterhouse) (iceheart) (wlamp) (wtree).', 0, 'wtree,snowman2,chimney,fishing2,winterhouse,iceheart,glove,wlamp,ornament2', '', '', '', '', 0, ''),
  2443. (262, 'p8', 'noel', '', 'Noel smiles', 64, 150, 'http://xat.com/images/apicon.png', 0, ' (noel) (angelf) (angelm) (snowmanf) (snowmanm) (mrsanta) (mrssanta) (reindeerm) (gingerman) (gingerwoman) (reindeerf).', 0, 'angelm,snowmanm,snowmanf,reindeerm,gingerwoman,reindeerf,angelf,gingerman,mrssanta,mrsanta', '', '', '', '', 0, ''),
  2444. (263, 'p8', 'toys', '', 'Toys smiles', 128, 220, 'http://xat.com/images/apicon.png', 0, '(toys) (bearftoy) (bearmtoy) (cartoy) (dolltoy) (ducktoy) (helicoptertoy) (locomotivetoy) (puzzletoy) (pyramidtoy) (spinningtop).', 0, 'puzzletoy,locomotivetoy,bearftoy,pyramidtoy,cartoy,ducktoy,spinningtop,dolltoy,helicoptertoy,bearmtoy', '', '', '', '', 0, ''),
  2445. (264, 'p8', 'badge', '', 'Badge Effect banned', 256, 300, 'http://xat.com/images/apicon.png', 0, 'badgeie uma pessoa indo no private chat e escreva /nb e envie ', 0, '', '', '', '', '', 0, ''),
  2446. (265, 'p8', 'celebrate', '', 'Celebrate smiles', 512, 275, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (celebrate) (celbday) (celbottle) (celcnny) (celdance) (celdrunk) (celflag) (celgrad) (celhorn) (celvictory) (celyeah).', 0, 'celcnny,celyeah,celhorn,celflag,celgrad,celbday,celdance,celbottle,celdrunk,celvictory', '', '', '', '', 0, ''),
  2447. (266, 'p8', 'hogmanay', '', 'Hogmanay smiles', 1024, 255, 'http://xat.com/images/apicon.png', 1, ' (hogmanay) (countdown) (firecracker) (firecracker2) (nyballoons) (nyclock) (nyfireworks) (nysparkler) (year).', 0, 'countdown,nyfireworks,year,nysparkler,firecracker2,nyballoons,nyclock,firecracker', '', '', '', '', 0, ''),
  2448. (267, 'p8', 'cooking', '', 'Cooking smiles', 2048, 200, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (cooking) (blender) (chop) (cookkiss) (flipburger) (flipegg) (knead) (serving) (stir) (whisk).', 0, 'whisk,cookkiss,stir,serving,knead,blender,flipegg,flipburger,chop', '', '', '', '', 0, ''),
  2449. (268, 'p8', 'farm', '', 'Farm smiles', 4096, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (farm) (cornback) (tomatoes) (sheepback) (scarecrw) (sugarcane) (wmback) (rooster) (milking) (eggs2) (growing) (cowface).', 0, 'sheepback,eggs2,growing,sugarcane,wmback,cowface,rooster,tomatoes,cornback,scarecrw,milking', '', '', '', '', 0, ''),
  2450. (269, 'p8', 'divorce', '', 'Divorce smiles', 8192, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (divorce) (divsplit) (divring) (divnolove) (divm) (divf) (divbreak) (botf) (botm) (brokenheart2) (dhammer) (sadflower).', 0, 'divring,divm,divf,sadflower,dhammer,divsplit,botm,botf,divbreak,divnolove,brokenheart2', '', '', '', '', 0, ''),
  2451. (270, 'p8', 'arachnid', '', 'arachnid smiles', 16384, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (arachnid) (ar1) (ar2) (ar3) (ar4) (ar5) (ar6) (ar7) (ar8) (ar9) (ar10).', 0, 'ar1,ar2,ar3,ar10,ar1,ar5,ar9,ar2,ar4,ar6,ar7,ar8', '', '', '', '', 0, ''),
  2452. (271, 'p8', 'sweetheart', '', 'sweetheart smiles', 32768, 200, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (sweetheart) (candleheart) (cupidheart) (fourteenth) (keylove) (letterlove) (swans) (sweetheart) (treelove) (varrow) (vballoons).', 0, 'cupidheart,candleheart,keylove,swans,letterlove,varrow,fourteenth,sweetheart,vballoons,treelove', '', '', '', '', 0, ''),
  2453. (272, 'p8', 'random', '', 'Random smiles', 65536, 250, 'http://xat.com/images/apicon.png', 0, 'Randomize smiles ', 0, '', '', '', '', '', 0, ''),
  2454. (273, 'p8', 'ladybug', '', 'Ladybug smiles', 131072, 275, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (ladybug) (lbfly) (lbshock) (lbcry) (lbdizzy) (lbahh) (lbmad) (lbkiss) (lblove) (lbd) (lbdead) (lbbehind).', 0, 'lbbehind,lblove,lbmad,lbdead,lbfly,lbd,lbdizzy,lbcry,lbahh,lbkiss,lbshock', '', '', '', '', 0, ''),
  2455. (274, 'p8', 'cupcake', '', 'Cupcake smiles', 262144, 240, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (cupcake) (cchappy) (ccsad) (ccbeye) (ccscn) (ccsleepy) (ccredface) (ccangry) (ccnono) (cccry) (ccback).', 0, 'cchappy,ccsleepy,ccback,ccangry,ccsad,cccry,ccbeye,ccnono,ccredface,ccscn', '', '', '', '', 0, ''),
  2456. (275, 'p8', 'bitefx', '', 'Bitefx smiles', 524288, 230, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (bitefx) (broccoli) (jelly) (sweet).', 0, 'broccoli,sweet,jelly', '', '', '', '', 0, ''),
  2457. (276, 'p8', 'luck', '', 'Luck smiles', 1048576, 300, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (luck) (sheep2) (pwalking) (potofgold) (horseshoe) (harp2) (goldclover) (clovers) (beer2) (pballoons) (luckbh).', 0, 'clovers,beer2,pwalking,pballoons,potofgold,sheep2,harp2,horseshoe,goldclover,luckbh', '', '', '', '', 0, ''),
  2458. (277, 'p8', 'tongues', '', 'Tongues smiles', 2097152, 290, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (tongues) (tobig) (tocheeky) (toeeh) (tohaught) (toneener) (topfft) (tostarry) (toteeth) (tothirsty) (tocircle).', 0, 'tobig,tohaught,tothirsty,tocircle,tostarry,toneener,toteeth,toeeh,topfft,tocheeky', '', '', '', '', 0, ''),
  2459. (278, 'p8', 'springflix', '', 'springflix smiles', 4194304, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (springflix) (butterfly2) (springflower) (springleaf) (sunflower2) (rflowers).', 0, 'springleaf,springflower,sunflower2,rflowers,butterfly2', '1', '', '', '', 1, ''),
  2460. (279, 'p8', 'snail', '', 'snail smiles', 8388608, 222, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (snail) (snail1) (snail2) (snail3) (snail4) (snail5) (snail6) (snail7) (snail8) (snail9) (snail10).', 0, 'snail9,snail8,snail7,snail4,snail3,snail2,snail6,snail5,snail1,snailb,snail10', '', '', '', '', 0, ''),
  2461. (280, 'p8', 'eventstats', '', 'Eventstats Graphicps', 16777216, 300, 'http://xat.com/images/apicon.png', 0, 'ver graficos de eventos do xat', 0, '', '1', '', '', '', 1, ''),
  2462. (281, 'p8', 'easteregg', '', 'easteregg smiles', 33554432, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (easteregg) (birdyeggs) (carrots) (chicken2) (easterbasket) (ebutterfly) (eggchoco) (inegg) (rabbit) (sleepyegg)', 0, 'carrots,easterbasket,rabbit,sleepyegg,birdyeggs,chicken2,ebutterfly,eggchoco,inegg', '', '', '', '', 0, ''),
  2463. (282, 'p8', 'butterflies', '', 'Butterflies smiles', 67108864, 250, 'http://xat.com/images/apicon.png', 1, 'borboletas smiles : (butterflies) (butterflies2) (butterflies3) (butterflies4) (butterflies5) (butterflies6) (butterflies7) (butterflies8) (butterflies9) (butterflies10)', 0, 'butterflies2,bfb,butterflies7,butterflies6,butterflies5,butterflies4,butterflies3,butterflies9,butterflies8,butterflies10', '', '', '', '', 0, ''),
  2464. (283, 'p8', 'springy', '', 'springy smiles', 134217728, 230, 'http://xat.com/images/apicon.png', 1, 'os smiles os smiles sao : (springy) (sprevil) (sprtired) (sprcrazy) (sprangry) (sprexhausted) (sprthumbs) (sprfrus) (sprjump) (sprtongue) (sprback).', 0, 'sprtired,sprback,sprthumbs,sprexhausted,sprevil,sprangry,sprcrazy,sprtongue,sprjump,sprfrus', '', '', '', '', 0, ''),
  2465. (284, 'p8', 'naughtystep', '', 'Naghtystep Banned Effects', 268435456, 300, 'http://xat.com/images/apicon.png', 0, 'de uma punicao nos usuarios colocando uma platorfma baixo do pino', 0, '', '', '', '', '', 0, ''),
  2466. (285, 'p8', 'coffee', '', 'Coffe smiles', 536870912, 210, 'http://xat.com/images/apicon.png', 0, 'os smiles sao :(coffee) (cappuccino) (coffeebeans) (coffeemachine) (coffeesack) (fhand) (kettle) (lovecoffee) (mhand) (sugar)', 0, 'mhand,sugar,coffeesack,fhand,cappuccino,coffeebeans,coffeemachine,lovecoffee,kettle', '', '', '', '', 0, ''),
  2467. (286, 'p8', 'hamster', '', 'Hamster smiles', 1073741824, 300, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (hamster) (habounce) (harock) (hasway) (hacry) (hasleep) (hajump) (hajoy) (haangry) (haexcite) (hadream) (hamsterback)', 0, 'harock,hajoy,habounce,hacry,haangry,hajump,hadream,hasleep,haexcite,hamsterback,hasway', '', '', '', '', 0, ''),
  2468. (288, 'p9', 'dreams', '', 'Dreams smiles', 1, 267, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (dreams) (climbing) (dreaming) (dreamsbh) (glowworm) (indream) (lovedream) (night) (scarydream) (zsleep)', 0, 'climbing,dreaming,dreamsbh,glowworm,indream,lovedream,night,scarydream,zsleep', '', '', '', '', 0, ''),
  2469. (289, 'p9', 'statuscolor', '', 'Statuscolor color status', 2, 5000, 'http://xat.com/images/apicon.png', 0, 'colore seu status totalmente como fazer : primeiro compre status - statuglow e em seguida statuscolor escreva no xat $status=test#r#rg', 0, '', '', '', '', '', 0, ''),
  2470. (290, 'p9', 'gamefx', '', 'Gamefx Fx Effects', 4, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (gamefx) (grow) (starman) (screwattack) (bubble) (ghosteat) (coinfx)', 0, 'gamefx,grow,starman,screwattack,bubble,ghosteat,coinfx', '', 'N:p1starman', '', '', 0, ''),
  2471. (291, 'p9', 'worldcup', '', 'Worldcup smiles', 8, 200, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (worldcup) (fball) (changes) (corner) (goal) (goldball) (player) (training) (vuvu2) (whistle)', 0, 'worldcup,fball,changes,coner,goal,goldball,player,training,vuvu2,whistle', '', '', '', '', 0, ''),
  2472. (292, 'p9', 'rocks', '', 'Rocks smiles', 16, 230, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (rocks) (breakfx) (rollingfx) (roteeth) (rolook) (rostar) (rocute) (rofrown) (roahah) (rodizzy) (roblinky) (rolove) (rosmirk)', 0, 'rocks,breakfx,rollingfx,rostar,roteeth,rolook,rocute,rofrown,roahah,rodizzy,roblinky,rolove,rosmirk', '', '', '', '', 0, ''),
  2473. (293, 'p9', 'yellowcard', '', 'Yellowcard banned Effects', 32, 300, 'http://xat.com/images/apicon.png', 1, 'De uma punicao aos usuarios com um cartao amarelo ', 0, '', '', '', '', '', 0, ''),
  2474. (294, 'p9', 'ballfx', '', 'Ballfx smiles', 64, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (ballfx) (basketball) (bowling) (jugglerball) (rollingball)', 0, 'ballfx,basketball,bowling,jugglerball,rollingball', '', '', '', '', 0, ''),
  2475. (295, 'p9', 'winner', '', 'Winner smiles', 128, 220, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (winner) (laurel) (podium) (ribbon2) (ticker) (trophy2) (winnerflag) (winning) (wtape)', 0, 'winner,laurel,podium,ribbon2,ticker,trophy2,winnerflag,winning,wtape', '', '', '', '', 0, ''),
  2476. (296, 'p9', 'cutie', '', 'Cutie smiles', 256, 350, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (cutie) (cuangry) (cubear) (cubear1) (cubear2) (cubow) (cubunnyears) (cuchilled) (cuexcited) (cuhappy) (cupleased) (curage) (cutired) (cuunhappy)', 0, 'cutie,cuangry,cubear,cubow,cubunnyears,cuchilled,cuexcited,cuhappy,cupleased,curage,cutired,cuunhappy,baby', '', '', '', '', 0, ''),
  2477. (297, 'p9', 'summerflix', '', 'Summerflix', 512, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (summerflix) (scrab) (sfan) (shell2) (sunny2).', 0, 'summerflix,scrab,sfan,shell2,sunny2', '1', '', '', '', 1, ''),
  2478. (298, 'p9', 'coolz', '', 'Coolz Smiles', 1024, 350, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (coolz) (cocross) (cohappy) (colove) (conoway) (cozap) (corage) (corage2) (cosad) (cosurprise) (cowink) (coyoyo) (coshades) (codribble) (cocap)', 0, 'coolz,cocross,cohappy,colove,conoway,cozap,corage,corage2,cosad,cosurprise,cowink,coyoyo,coshades,codribble,cocap', '', '', '', '', 0, ''),
  2479. (299, 'p9', 'magic', '', 'magic Smiles', 2048, 250, 'http://xat.com/images/apicon.png', 0, 'magic power : (magic) (magicbook) (magicbottle) (magicbunny) (magiccards) (magician) (magiclove) (magicshow) (magictable) (magicwand).', 0, 'magic,magicbook,magicbottle,magicbunny,magiccards,magician,magiclove,magicshow,magictable,magicwand', '', '', '', '', 0, ''),
  2480. (300, 'p9', 'blubunni', '', 'Blubunni Smiles', 4096, 200, 'http://xat.com/images/apicon.png', 0, 'Blubunni power : (blubunni) (bbwary) (bbstars) (bbsecret) (bbnoway) (bblr) (bbhot) (bbhit) (bbhammer) (bbeyes) (bbeat).', 0, 'blubunni,bbwary,bbstars,bbsecret,bbnoway,bblr,bbhot,bbhit,bbhammer,bbeyes,bbeat', '', '', '', '', 0, ''),
  2481. (301, 'p9', 'instruments', '', 'Intruments smiles', 8192, 230, 'http://xat.com/images/apicon.png', 0, 'Intruments power : (instruments) (accordion) (amplifier) (drum2) (drumkit) (guitar2) (lovemusic) (saxophone) (trumpet2) (violin2).', 0, 'instruments,accordion,amplifier,drum2,drumkit,guitar2,lovemusic,saxophone,trumpet2,violin2', '', '', '', '', 0, ''),
  2482. (302, 'p9', 'pcback', '', 'Pcback ', 16384, 700, 'http://xat.com/images/apicon.png', 1, 'esse power quando voce usar ele voce no xat use um img#img para o outro usuario ver seu fundo no xat dele', 0, 'pcback', '', '', '', '', 0, ''),
  2483. (303, 'p9', 'bird', '', 'bird smilies', 32768, 250, 'http://xat.com/images/apicon.png', 0, 'bird smilies : (bird) (birdcute) (birddizzy) (birdflap) (birdhot) (birdidea) (birdjackfx) (birdnod) (birdpuppetfx) (birdlove) (birdswing).', 0, 'bird,birdcute,birddizzy,birdflap,birdhot,birdidea,birdjackfx,birdnod,birdpuppetfx,birdlove,birdswing', '', '', '', '', 0, ''),
  2484. (304, 'p9', 'chocolate', '', 'Chocolate smiles', 65536, 220, 'http://xat.com/images/apicon.png', 1, 'Chocolate smiles sao : (chocolate) (chcroissant) (chdonut) (chicecream) (chlove) (chstrawberry) (chsweet) (chsweet2) (chwhite) (cocoa).', 0, 'chcroissant,chdonut,chicecream,chlove,chstrawberry,chsweet,chsweet2,chwhite,cocoa', '', '', '', '', 0, ''),
  2485. (305, 'p9', 'kmoon', '', 'kmoon smiles Fx', 131072, 240, 'http://xat.com/images/apicon.png', 1, 'Kmoon smiles eles sao : (kmoon) (kmyy) (kmya) (kmwink) (kmun) (kmsleep) (kmshutup) (kmsal) (kmpuffed) (kmoonback) (kmlove) (kmjoy).', 0, 'kmoon,kmyy,kmya,kmwink,kmun,kmsleep,kmshutup,kmsal,kmpuffed,kmoonback,kmlove,kmjoy,ffs,roulette,dice', '', '', '', '', 0, ''),
  2486. (306, 'p9', 'ksun', '', 'ksun smiles efeito fx', 262144, 240, 'http://xat.com/images/apicon.png', 1, 'Sun Fx smiles eles sao : (ksun) (ksyy) (ksunback) (ksthink) (ksset) (ksrub) (ksnono) (ksmad) (kskiss) (ksjoy) (kshappy) (kshaha) (kscry).', 0, 'ksun,ksyy,ksunback,ksthink,ksset,ksrub,ksnono,ksmad,kskiss,ksjoy,kshappy,kshaha,kscry', '', '', '', '', 0, ''),
  2487. (307, 'p9', 'jump', '', 'Jump Smiles', 524288, 220, 'http://xat.com/images/apicon.png', 1, 'Jump smiles que sao : (jump) (jump2) (jump3) (jump4) (jump5) (jump6) (jump7) (jump8) (jump9) (jump10) (jump11).', 0, 'jump,jump2,jump3,jump4,jump5,jump6,jump7,jump8,jump9,jump10,jump11', '', '', '', '', 0, ''),
  2488. (308, 'p9', 'Trickortreat', '', 'Trickortreat smiles', 1048576, 230, 'http://xat.com/images/apicon.png', 0, 'Power especial de dia das bruxas os smiles sao : (trickortreat) (tt1) (tt2) (tt3) (tt4) (tt5) (tt6) (tt7) (hegg1) (hegg2) (hsoak1) (hsoak2) (htp1) (htp2).', 0, 'trickortreat,tt1,tt2,tt3,tt4,tt5,tt6,tt7,hegg1,hegg2,hsoak1,hsoak2,htp1,htp2', '', '', '', '', 0, ''),
  2489. (309, 'p9', 'creepy', '', 'creppy smiles', 2097152, 230, 'http://xat.com/images/apicon.png', 0, 'creepy smiles que sao : (creepy) (ghostbag) (hbag) (hdoor) (hmask) (hsign) (mmymask) (piratemask) (scarypkn) (treats).', 0, 'creepy,ghostbag,hbag,hdoor,hmask,hsign,mmymask,piratemask,scarypkn,treats', '', '', '', '', 0, ''),
  2490. (310, 'p9', 'manage', '', 'backup de usuarios', 4194304, 210, 'http://xat.com/images/apicon.png', 0, 'Backup e ajustar suas fileiras usuario', 0, 'manage', '', '', '', '', 0, ''),
  2491. (311, 'p9', 'blueoni', '', 'blueoni smiles', 8388608, 220, 'http://xat.com/images/apicon.png', 0, 'Blue Oni smiles que sao : (blueoni) (bonitantrum) (bonisick) (boniscared) (bonisad) (bonipeek) (bonimad) (boniill) (bonigoo) (bonifan) (bonicry) (boniblink) (bonib).', 0, 'blueoni,bonitantrum,bonisick,boniscared,bonisad,bonipeek,bonimad,boniill,bonigoo,bonifan,bonicry,boniblink,bonib', '', '', '', '', 0, ''),
  2492. (312, 'p9', 'Icebucket', '', 'icebucket smiles', 16777216, 210, 'http://xat.com/images/apicon.png', 0, 'icebucket smiles que sao : (icebucket) (brr) (bucket) (freezer) (hour24) (icecubes) (nominate) (tap2) (videorec).', 0, 'icebucket,brr,bucket,freezer,hour24,icecubes,nominate,tap2,videorec', '', '', '', '', 0, ''),
  2493. (313, 'p9', 'gamefx2', '', 'efeito smile Fx ', 33554432, 300, 'http://xat.com/images/apicon.png', 0, 'gamefx smiles fx os smiles sao : (gamefx2) (stompfx) (shotfx) (respawnfx) (megafx2) (megafx) (hadouken) (exitfx) (bonesdeath) (bombfx) (birdsfx).', 0, 'gamefx2,stompfx,shotfx,respawnfx,megafx2,megafx,hadouken,exitfx,bonesdeath,bombfx,birdsfx', '', '', '', '', 0, ''),
  2494. (314, 'p9', 'reveal', '', 'reveal smiles', 67108864, 450, 'http://xat.com/images/apicon.png', 0, 'Revealing holiday smilies. LIMITED. See wiki for details', 0, 'reveal,rwreath,rstocking,rsnowman,rsnowbury,rsanta,rpudding,rgift,rsnowglobe,rfire,rbell', '', '', '', '', 0, ''),
  2495. (315, 'p9', 'holidays', '', 'holidays', 134217728, 275, 'http://xat.com/images/apicon.png', 0, 'Smiles de feriados os smiles sao : (holidays) (xcard) (snoww)(snowqueen)(snowm)(snowking)(mrclaus) (mrsclaus)(icequeen) (iceking) (holly) (bauble)', 0, 'holidays,xcard,snoww,snowqueen,snowm,snowking,mrclaus,mrsclaus,icequeen,iceking,holly,bauble', '', '', '', '', 0, ''),
  2496. (316, 'p9', 'size', '', 'efeito de remendicionanto de smiles', 268435456, 250, 'http://xat.com/images/apicon.png', 0, 'controle o tamanhos dos smiles com esse power a forma de usar exemplo : goo#size#w5 = tamanho 5 - w = weight ', 0, 'size', '', '', '', '', 0, ''),
  2497. (317, 'p9', 'lunar', '', 'lunar smiles', 536870912, 222, 'http://xat.com/images/apicon.png', 0, 'smiles em forma de lua (lunar) (dragon2) (fan2) (firecrackers) (fireworks2) (lantern2) (oranges)(partyball) (wealthgold) (year2) hats: (hat#hu) (hat#hF) e (hat#hy)', 0, 'lunar,dragon2,fan2,firecrackers,fireworks2,lantern2,oranges,partyball,wealthgold,year2', '', 'u:p1firecrackers,F:p1fireworks2,y:p1year2', '', '', 0, ''),
  2498. (318, 'p9', 'backup', '', 'foto automatica', 1073741824, 300, 'http://xat.com/images/apicon.png', 0, 'automaticamente tira uma foto de seus usuarios (nao funciona)', 0, 'backup', '', '', '', '', 0, ''),
  2499. (320, 'p10', 'egyptian', '', 'egyptian smiles', 1, 270, 'http://xat.com/images/apicon.png', 0, 'smiles egpicios eles sao : (gyptian) (scarab) (sarcophagus) (pyramids)(indiwhip)(horis) (greatsphinx) (egyptf) (egyptf2) (egyptf3) (egyptf4) (egyptcat) (boulder) (anubis) (ankh) hats: (hat#hv) (hat#hn) e (hat#hm)', 0, 'egyptian,scarab,sarcophagus,pyramids,indiwhip,horis,greatsphinx,egyptf,egyptf2,egyptf3,egyptf4,egyptcat,boulder,anubis,ankh', '', 'v:p1scarab,n:p1boul,m:p1ankh', '', '', 0, ''),
  2500. (321, 'p10', 'retro', '', 'retro smiles', 2, 100, 'http://xat.com/images/apicon.png', 0, 'Reviva a epoca do 8-bit com esses smiles retro que sao : (retro) (retrox) (retss) (retkalien) (retheart) (retdog) (retd) (retcat)(retmad) (retkao) (retcool) (retflame) (retpong) hats: (hat#hc)', 0, 'retro,retrox,retss,retkalien,retheart,retdog,retd,retcat,retmad,retkao,retcool,retflame,retpong', '', 'c:p1retro', '', '', 0, ''),
  2501. (322, 'p10', 'jewelry', '', 'jewelry smiles', 4, 260, 'http://xat.com/images/apicon.png', 0, 'smiles das joias eles sao : (jewelry) (jbeads) (jbracelet) (jchain) (jclock) (jcrown) (jearrings) (jheart) (jring) (jring2) hats: (hat#hj) e (hat#hr)', 0, 'jewelry,jbeads,jbracelet,jchain,jclock,jcrown,jearrings,jheart,jring,jring2', '', 'j:p1jewellery,r:p1jring', '', '', 0, ''),
  2502. (323, 'p10', 'offset', '', 'efeito de smile vertical - horizontal', 8, 200, 'http://xat.com/images/apicon.png', 0, 'Mova o smile para baixo - para cima - para a esquerda e para direita hats: (hat#hd) (hat#hR) (hat#hx) e (hat#hf)', 0, 'offset', '', 'd:p1down,R:p1rotate,x:p1balance,f:p1fall', '', '', 0, ''),
  2503. (324, 'p10', 'amore', '', 'amore smiles', 16, 230, 'http://xat.com/images/apicon.png', 0, 'Smile de primavera os smiles sao : (amore) (glitterheart) (abear) (abee) (acupid) (adove) (ahand) (akiss) (together) hats: (hat#hg) (hat#hB) (hat#he) e (hat#hh)', 0, 'amore,glitterheart,abear,abee,acupid,adove,ahand,akiss,together', '', 'g:p1glitterheart,B:p1tbear,e:p1tbee,h:p1theart', '', '', 0, ''),
  2504. (325, 'p10', 'valfx', '', 'valfx smiles', 32, 300, 'http://xat.com/images/apicon.png', 0, 'power especial de dia dos namorados - os smiles sao : (valfx) (vburst) (vkiss) (vrain) (vthrow) hats: (hat#hg) e (hat#hb)', 0, 'valfx,vburst,vkiss,vrain,vthrow', '', 'b:p1balloon,t:p1throw', '', '', 0, ''),
  2505. (326, 'p10', 'sapphire', '', 'pino', 64, 87000, 'http://xat.com/images/apicon.png', 1, 'esse pino e efeito cristal um everypower cristalino', 0, '', '', '', '', '', 0, ''),
  2506. (327, 'p10', 'awesome', '', 'pino', 128, 96000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem o efeito cycle misturado com um everypower', 0, '', '', '', '', '', 0, ''),
  2507. (328, 'p10', 'rainbow', '', 'pino', 256, 81000, 'http://xat.com/images/apicon.png', 0, 'esse pino tem o efeito arco-iris ', 0, '', '', '', '', '', 0, ''),
  2508. (329, 'p10', 'desertground', '', 'pino', 512, 76000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem um efeito de terra misturado com areia', 0, '', '', '', '', '', 0, ''),
  2509. (330, 'p10', 'esmerald', '', 'pino', 1024, 64000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem o efeito esmeralda e como um everypower esmeralda', 0, '', '', '', '', '', 0, ''),
  2510. (331, 'p10', 'tecno', '', 'pino', 2048, 61000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem um efeito de pino xadrez', 0, '', '', '', '', '', 0, ''),
  2511. (332, 'p10', 'celebridade', '', 'pino', 4096, 62000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem o efeito cyan e como um everypower cyan', 0, '', '', '', '', '', 0, ''),
  2512. (333, 'p10', 'pawnglow', '', 'efeito de nameglow no pino', 8192, 91000, 'http://xat.com/images/apicon.png', 0, 'esse efeito funciona assim voce precisa das cores red-blue-green-light exemplo : (pglow#r)= contorno vermelho segundo efeito : hglow#r = nivel 2 mais forte terceiro efeito hflow#r = coronto mais forte nivel 3 ', 0, 'pglow,hglow,hflow', '', '', '', '', 0, ''),
  2513. (334, 'p10', 'silver', '', 'pino', 16384, 45000, 'http://xat.com/images/apicon.png', 1, 'Esse pino e o efeito silver um pino parecido com um everypower cinza', 0, '', '', '', '', '', 0, ''),
  2514. (335, 'p10', 'fadepawn', '', 'efeito de fade no pino', 32768, 69000, 'http://xat.com/images/apicon.png', 0, 'esse power e o efeito de alpha no pino quem usar o pino ira desaparecer e reaparecer', 0, '', '', '', '', '', 0, ''),
  2515. (336, 'p10', 'cyclepawn', '', 'pino', 65536, 58000, 'http://xat.com/images/apicon.png', 0, 'Esse pino e efeito cycle no pino', 0, '', '', '', '', '', 0, ''),
  2516. (337, 'p10', 'electroglow', '', 'pino', 131072, 55000, 'http://xat.com/images/apicon.png', 1, 'esse pino tem uns efeitos eletricidade ', 0, '', '', '', '', '', 0, ''),
  2517. (338, 'p10', 'blitz', '', 'pino', 262144, 67000, 'http://xat.com/images/apicon.png', 0, 'como o nome ja diz esse pino e a guerra dos relampagos um pino que pisca um glow de relampago', 0, '', '', '', '', '', 0, ''),
  2518. (339, 'p10', 'oids', '', 'oids smiles', 524288, 250, 'http://xat.com/images/apicon.png', 0, 'Oids smiles sao : (oids) (oiwait) (oiswt) (oipunch) (oiouch) (oino) (oifrus) (oieek) (oicape) (oiblank) (oiaww) (oiback). hats: (hat#ho) e (hat#hi)', 4, 'oids,oiwait,oiswt,oipunch,oiouch,oino,oifrus,oieek,oicape,oiblank,oiaww,oiback', '', 'o:p1oids1,i:p1oids2', '', '', 0, ''),
  2519. (340, 'p10', 'lolpawn', '', 'pino', 1048576, 89000, 'http://xat.com/images/apicon.png', 0, 'pino com as cores como se voce estive na balada compre esse pino e entre no ritimo ', 0, '', '', '', '', '', 0, ''),
  2520. (341, 'p10', 'textcolor', '', 'efeito de cor no texto', 2097152, 15000, 'http://xat.com/images/apicon.png', 1, 'Textglow como o nome ja diz e o texto do xat totalmente colorido usando cortorno junto como o (namecolor) faca no seu profile (text#r#gb) e escreva no xat', 0, 'text', '', '', '', '', 0, ''),
  2521. (342, 'p10', 'textglow', '', 'efeito de cor no texto', 4194304, 11000, 'http://xat.com/images/apicon.png', 1, 'Textglow como o nome ja diz e cortorno no texto do xat basta comprar ele e o textcolor e fazer no no seu profile (text#000001#r) para cor vermelha de glow e escrever no xat ', 0, 'text', '', '', '', '', 0, ''),
  2522. (343, 'p10', 'birthday', '', 'birthday smiles', 8388608, 220, 'http://xat.com/images/apicon.png', 0, 'nao e seu aniversario mais se voce quiser pode usar esse power e seus smiles que sao (birthday) (bballoons) (bcake) (bcake2) (bconfetti) (bflower) (bgifts) (bhats) (btrumpet).', 0, 'birthday,bballoons,bcake,bcake2,bconfetti,bflower,bgifts,bhats,btrumpet', '', 'l:p1bballoons,L:p1bgifts', '', '', 0, ''),
  2523. (344, 'p10', 'bobmarley', '', 'bobmarley pino', 16777216, 54000, 'http://xat.com/images/apicon.png', 1, 'o proprio !esse pino relembra muito as cores do Reggae pra quem gosta de marola esse pino e perfeito para voce', 0, '', '', '', '', '', 0, ''),
  2524. (345, 'p10', 'summerpawn', '', 'summerpawn pino', 33554432, 65000, 'http://xat.com/images/apicon.png', 1, 'Pra quem gosta de praia e gosta das cores do verao esse pino e perfeito para voce', 0, '', '', '', '', '', 0, ''),
  2525. (346, 'p10', 'reggae', '', 'Reggae pino', 67108864, 25000, 'http://xat.com/images/apicon.png', 1, 'e hora de fumar e relembrar os tempos do bobmarley usando esse pino', 0, '', '', '', '', '', 0, ''),
  2526. (347, 'p10', 'madpawn', '', 'madpawn pino', 134217728, 54000, 'http://xat.com/images/apicon.png', 0, 'um awesome com mais brilho e efeitos', 0, '', '', '', '', '', 0, ''),
  2527. (348, 'p10', 'worldpawn', '', 'worldpawn pino', 268435456, 34000, 'http://xat.com/images/apicon.png', 1, 'Worldpawn pino', 0, '', '', '', '', '', 0, ''),
  2528. (349, 'p10', 'supercycle', '', 'efeito cycle', 536870912, 500, 'http://xat.com/images/apicon.png', 0, 'para usar : primeiro compre power cycle e supercycle depois vai ate o gerador de supercycle nesse link : http://util.xat.com/wiki/index.php?title=Supercycle e coloque o codigo no xat. hats: (hat#hs) (hat#hw) e (hat#hq)', 0, '', '', 's:p1supercycle1,w:p1supercycle2,q:p1supercycle3', '', '', 0, ''),
  2529. (350, 'p10', 'nameflash', '', 'efeito fx de letras', 1073741824, 8000, 'http://xat.com/images/apicon.png', 0, 'as letras sao : (nfa)(nfb)(nfc)(nfd)(nfe)(nff)(nfg)(nfh)(nfi)(nfj)(nfk)(nfl)(nfm)(nfn)(nfo)(nfp)(nfq)(nfr)(nfs)(nft)(nfu)(nfv)(nfw)(nfy)(nfx)(nfz)', 0, 'nfa,nfb,nfc,nfd,nfe,nff,nfg,nfh,nfi,nfj,nfk,nfl,nfm,nfn,nfo,nfp,nfq,nfr,nfs,nft,nfu,nfv,nfw,nfy,nfx,nfz', '', '', '', '', 0, ''),
  2530. (352, 'p11', 'tv', '', 'tv smiles', 1, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (tv) (tvskip) (tvread) (tvmad) (tvlove) (tvice) (tveek) (tvdance) (tvcry) (tvconfused) (tvback) hats : (hat#hz) e (hat#hl) ', 0, 'tv,tvskip,tvread,tvmad,tvlove,tvice,tveek,tvdance,tvcry,tvconfused,tvback', '', 'z:p1skip,l:p1tv', '', '', 0, ''),
  2531. (353, 'p11', 'wxpawn', '', 'wxpawn pino', 2, 37000, 'http://xat.com/images/apicon.png', 1, 'wxpawn pino', 0, '', '', '', '', '', 0, ''),
  2532. (354, 'p11', 'everycolor', '', 'Everycolor pino', 4, 45000, 'http://xat.com/images/apicon.png', 1, 'Everycolor pino', 0, '', '', '', '', '', 0, ''),
  2533. (355, 'p11', 'fly', '', 'Fly power', 8, 254, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (fly)(flwonder)(flupset)(flstar)(flsad)(fldead)(flback)(flafraid)', 0, 'fly,flwonder,flupset,flstar,flsad,fldead,flback,flafraid', '0', '', '', '', 0, ''),
  2534. (356, 'p11', 'pcorn', '', 'pcorn smiles', 16, 290, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (pcorn)(pcornback)(pcmad)(pcswt)(pckiss)(pcgoo)(pcgagged)(pcdizzy)(pccry)(pccaramel)(pcburnt).', 0, 'pcorn,pcornback,pcmad,pcswt,pckiss,pcgoo,pcgagged,pcdizzy,pccry,pccaramel,pcburnt', '', '', '', '', 0, ''),
  2535. (357, 'p11', 'Clouds', '', 'Cloudy smilies', 32, 250, 'http://xat.com/images/apicon.png', 0, 'clouds smiles eles sao : (clouds) (cangry) (ccrying) (cfreeze) (chappy) (ckiss) (clove) (crainbow) (csleepy) (cwindy) hats: (hat#ht) (hat#hp) e (hat#hk)', 0, 'clouds,cangry,ccrying,cfreeze,chappy,ckiss,clove,crainbow,csleepy,cwindy', '', 't:p1cangry,p:p1clouds,k:p1csleepy', '', '', 0, ''),
  2536. (358, 'p11', 'aliblue', '', 'Aliblue smiles', 64, 250, 'http://xat.com/images/apicon.png', 0, 'Aliblue smiles os smiles sao : (aliblue) (baliback) (balicry) (balidance) (balilove) (baliredface) (balisad) (balishutup) (balisick) (baliswt) hats : (hat#hW) e (hat#hQ)', 0, 'aliblue,baliback,balicry,balidance,balilove,baliredface,balisad,balishutup,balisick,baliswt', '', 'W:p1swt,Q:p1aliblue', '', '', 0, ''),
  2537. (359, 'p11', 'beastie', '', 'Beastie Smiles', 128, 250, 'http://xat.com/images/apicon.png', 0, 'Beastie smiles eles sao : (beastie) (beastie2) (beastie3) (beastie4) (beastie5) (beastie6) (beastie7) (beastie8) (beastie9) (beastie10) (beastieb) (beastieb3) (beastieb5) (beastieb7) (beastieb9) hats : (hat#hT) e (hat#hD)', 2, 'beastie,beastie2,beastie3,beastie4,beastie5,beastie6,beastie7,beastie8,beastie9,beastie10,beastieb,beastieb3,beastieb5,beastieb7,beastieb9', '', 'T:p1beast1,D:p1beast2', '', '', 0, ''),
  2538. (360, 'p11', 'easterlove', '', 'Easterlove smiles', 256, 250, 'http://xat.com/images/apicon.png', 0, 'Easterlove os smiles sao : (easterlove) (brokeegg) (bunnyfriend) (eabunny) (eabutterfly) (eachick) (eaeggs) (glitteregg) (lambs) hats: (hat#hU) (hat#hO) e (hat#hP)', 0, 'easterlove,brokeegg,bunnyfriend,eabunny,eabutterfly,eachick,eaeggs,glitteregg,lambs', '', 'U:p1eabutterfly,O:p1easterlove,P:p1glitteregg', '', '', 0, ''),
  2539. (361, 'p11', 'bloonie', '', 'Bloonie smiles', 512, 250, 'http://xat.com/images/apicon.png', 0, 'os smiles sao : (bloangry) (bloback) (blodizzy)(bloeat)(blohaha) (blohears) (blojoy) (blokiss) (blolove) (bloonie) (blosad) (blothink) (bloyes) hats : (hat#hH) e (hat#hJ)', 0, 'bloangry,bloback,blodizzy,bloeat,blohaha,blohears,blojoy,blokiss,blolove,bloonie,blosad,blothink,bloyes', '', 'H:p1bloonie,J:p1blohears', '', '', 0, ''),
  2540. (362, 'p11', 'stormpawn', '', 'Storm pino', 1024, 60000, 'http://xat.com/images/apicon.png', 1, 'Storm pawn', 0, 'stormpawn', '', '', '', '', 0, ''),
  2541. (363, 'p11', 'eco', '', 'eco smiles', 2048, 250, 'http://xat.com/images/apicon.png', 1, 'os smiles sao : (eco) (windmill) (treeback) (recycle) (lightsoff) (goodeco) (badeco) (globehands) (ecoplant) (ecotree) (ecorecycle) (ecocar)', 0, 'eco,windmill,treeback,recycle,lightsoff,goodeco,badeco,globehands,ecoplant,ecotree,ecorecycle,ecocar', '', '', 'p1bloonie', 'blohears', 0, ''),
  2542. (364, 'p11', 'firepawn', '', 'Firepawn Pawns', 4096, 54000, 'http://xat.com/images/apicon.png', 0, 'Firepawn pino', 0, 'firepawn', '', '', '', '', 0, ''),
  2543. (365, 'p11', 'randomcolor', '', 'Random color pawns', 8192, 81000, 'http://xat.com/images/apicon.png', 1, 'randomcolor pawn', 0, 'randomcolor', '', '', '', '', 0, ''),
  2544. (366, 'p11', 'remp', '', 'Remp pawns', 16384, 32000, 'http://xat.com/images/apicon.png', 1, 'remp pawn', 0, 'remp', '', '', '', '', 0, ''),
  2545. (367, 'p11', 'gunny', '', 'Gunny pawns', 32768, 14000, 'http://xat.com/images/apicon.png', 1, 'gunnypawn', 0, 'Gunny', '', '', '', '', 0, ''),
  2546. (368, 'p11', 'black', '', 'Black Pawn', 65536, 200000, 'http://xat.com/images/apicon.png', 1, 'Pino Staff [exclusivo para Administradores]', 0, 'black', '', '', '', '', 0, ''),
  2547. (369, 'p11', 'floral', '', 'Floral smiles', 131072, 250, 'http://xat.com/images/apicon.png', 0, 'smiles floral eles sao (floral) (daffodil) (daisy) (gladiolus) (hydrangea) (lily) (lilyvalley) (orchid) (poppy) (snowdrop) (tulip) (viola). ', 0, 'floral,daffodil,daisy,gladiolus,hydrangea,lily,lilyvalley,orchid,poppy,snowdrop,tulip,viola', '', '', '', '', 0, ''),
  2548. (370, 'p11', 'shinobi', '', '', 262144, 270, 'http://xat.com/images/apicon.png', 0, 'Shinobi smiles', 0, 'shinobi,shislash,shishur,shisais,shinun,shifight,shiescape,shichallenge,shicarve,shibow,shibo', '', '', '', '', 0, ''),
  2549. (371, 'p11', 'gothic', '', '', 524288, 250, 'http://xat.com/images/apicon.png', 0, 'gothic smiles', 0, 'gothic,goth1,goth2,goth3,goth4,goth5,goth6,goth7,goth8,gothbat,gothmeta,gothskull,gothwings', '', '', '', '', 0, ''),
  2550. (372, 'p11', 'pets', '', '', 1048576, 260, 'http://xat.com/images/apicon.png', 0, 'pets smiles', 0, 'pets,pcat,pchameleon,pdog,pfish,phamster,pmonkey,pparrot,psnake,pturtle', '', '', '', '', 0, ''),
  2551. (373, 'p11', 'redcard', '', '', 2097152, 350, 'http://xat.com/images/apicon.png', 0, 'De cartao vermelho para alguem como no futebol', 0, 'redcard', '', '', '', '', 0, ''),
  2552. (374, 'p11', 'ceebear', '', '', 4194304, 400, 'http://xat.com/images/apicon.png', 1, '', 0, 'ceebear,cbwave,cbsleep,cbnod,cbkiss,cbjoy,cbheart,cbcry,cbcontent,cbcheeks,cbawk,cbback,cbfwave,cbfsleep,cbfnod,cbfkiss,cbfjoy,cbfheart,cbfcry,cbfcontent,cbfcheeks,cbfawk,cbfback', '', '', '', '', 0, '');
  2553. INSERT INTO `powers` (`id`, `section`, `name`, `new`, `d2`, `subid`, `cost`, `rockets`, `limited`, `description`, `amount`, `topsh`, `group`, `pawns`, `pawn`, `hats`, `grupal`, `poder`) VALUES
  2554. (375, 'p11', 'aquatic', '', '', 8388608, 500, 'http://xat.com/images/apicon.png', 1, '', 0, 'aquatic,aqanchor,aqbubbles,aqfish,aqseahorse,aqsealove,aqseastar,aqshark,aqsubmarine', '', '', '', '', 0, ''),
  2555. (376, 'p11', 'vacation', '', '', 16777216, 650, 'http://xat.com/images/apicon.png', 1, '', 0, 'vacation,vacsurf,vacsun,vacsprinkler,vacmelt,vaclounger,vacgelato,vacflower,vacdrink,vacball', '', '', '', '', 0, ''),
  2556. (377, 'p11', 'shells', '', '', 33554432, 450, 'http://xat.com/images/apicon.png', 1, '', 0, 'shells,nautilus,pearlshell,seabottle,seastar,shcrab,shell3,shell4,shellfish', '', '', '', '', 0, ''),
  2557. (378, 'p11', 'balloonfx', '', '', 67108864, 520, 'http://xat.com/images/apicon.png', 1, '', 0, 'balloonfx,baair,balloons,balove,bapop,bapump,basoap,baup,bawater', '', '', '', '', 0, ''),
  2558. (379, 'p11', 'me', '', '', 134217728, 800, 'http://xat.com/images/apicon.png', 1, '', 0, 'me,coding,stylesheet,thisme', '', '', '', '', 0, ''),
  2559. (380, 'p11', 'lions', '', '', 268435456, 456, 'http://xat.com/images/apicon.png', 1, '', 0, 'lions,lismile,lisleep,lisad,liplay,lipaw,limad,lilove,lifrus,licry,liconfused,liback', '', '', '', '', 0, ''),
  2560. (381, 'p11', 'reaper', '', '', 536870912, 456, 'http://xat.com/images/apicon.png', 1, '', 0, 'reaper,reapsurprise,reapono,reapnod,reapno,reaphehe,reapgrin,reapevil,reapcry,reapbye,reapback,reapargh,reaptap,reapreap', '', '', '', '', 0, ''),
  2561. (382, 'p11', 'big', '', '', 1073741824, 9000, 'http://xat.com/images/apicon.png', 1, '', 0, 'big,bigger,pump,bigsmall', '', '', '', '', 0, ''),
  2562. (383, 'p11', 'glob', '', '', 2147483648, 540, 'http://xat.com/images/apicon.png', 0, '', 0, 'glob,glbye,glcry,gld,gldepressed,glhappy,glheart,gljoy,glrage,glredface,glsad,glsmile,gltongue,glwink,glyeayea', '', '', '', '', 0, ''),
  2563. (384, 'p12', '384', '', '', 1, 0, 'http://xat.com/images/apicon.png', 1, '', 0, '', '', '', '', '', 0, ''),
  2564. (385, 'p12', 'roosters', '', '', 2, 9000, 'http://xat.com/images/apicon.png', 1, '', 0, 'roosters,rowitch,rovane,ropeck,ropanic,romad,roheart,rocrowing,rocool,roback', '', '', '', '', 0, ''),
  2565. (386, 'p12', 'ranklock', 'http://xat.com/images/NewIcon.gif', '', 4, 225, 'http://xat.com/images/apicon.png', 0, '', 0, 'ranklock', '', '', '', '', 0, ''),
  2566. (387, 'p12', 'kstar', 'http://xat.com/images/NewIcon.gif', '', 8, 500, 'http://xat.com/images/apicon.png', 1, '', 0, 'kstar,kstangel,kstback,kstbonus,kstdevil,kstdizzy,kstkiss,kstlove,kstqueen,kstsleep', '', '', '', '', 0, '');
  2567.  
  2568. -- --------------------------------------------------------
  2569.  
  2570. --
  2571. -- Table structure for table `promoted`
  2572. --
  2573.  
  2574. CREATE TABLE IF NOT EXISTS `promoted` (
  2575. `id` int(11) NOT NULL AUTO_INCREMENT,
  2576. `chat` varchar(25) NOT NULL,
  2577. `over` varchar(10) NOT NULL,
  2578. `active` int(11) NOT NULL,
  2579. `xby` bigint(20) NOT NULL,
  2580. `at` varchar(10) NOT NULL,
  2581. `price` bigint(20) NOT NULL,
  2582. `banner` varchar(255) NOT NULL,
  2583. PRIMARY KEY (`id`)
  2584. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
  2585.  
  2586. --
  2587. -- Dumping data for table `promoted`
  2588. --
  2589.  
  2590. INSERT INTO `promoted` (`id`, `chat`, `over`, `active`, `xby`, `at`, `price`, `banner`) VALUES
  2591. (3, 'Ajutor', '1446993754', 0, 1, '1446921754', 20000, ''),
  2592. (4, 'Trade', '1447031736', 0, 1, '1447028136', 1000, ''),
  2593. (5, 'Trade', '1447187369', 0, 1, '1447180169', 2000, ''),
  2594. (6, 'Trade', '1447354889', 0, 1, '1447268489', 24000, ''),
  2595. (7, 'Trade', '1448219734', 0, 1, '1448212534', 2000, ''),
  2596. (8, 'Trade', '1448325873', 0, 1, '1448318673', 2000, ''),
  2597. (9, 'Trade', '1448330314', 0, 1, '1448326715', 1000, ''),
  2598. (10, 'Trade', '1448583430', 0, 1, '1448572630', 3000, ''),
  2599. (11, 'Trade', '1448649440', 0, 1, '1448645840', 1000, ''),
  2600. (12, 'Trade', '1449283812', 0, 1, '1449269412', 4000, ''),
  2601. (13, 'Trade', '1449363337', 0, 1, '1449341738', 6000, ''),
  2602. (14, 'Trade', '1449712580', 0, 1, '1449694580', 5000, '');
  2603.  
  2604. -- --------------------------------------------------------
  2605.  
  2606. --
  2607. -- Table structure for table `ranks`
  2608. --
  2609.  
  2610. CREATE TABLE IF NOT EXISTS `ranks` (
  2611. `id` int(255) NOT NULL AUTO_INCREMENT COMMENT 'index',
  2612. `chatid` bigint(20) NOT NULL,
  2613. `userid` bigint(11) NOT NULL,
  2614. `f` int(3) NOT NULL,
  2615. `tempend` varchar(255) NOT NULL DEFAULT '0',
  2616. `badge` varchar(255) NOT NULL,
  2617. PRIMARY KEY (`id`)
  2618. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=67 ;
  2619.  
  2620. --
  2621. -- Dumping data for table `ranks`
  2622. --
  2623.  
  2624. INSERT INTO `ranks` (`id`, `chatid`, `userid`, `f`, `tempend`, `badge`) VALUES
  2625. (10, 2, 10000, 4, '0', ''),
  2626. (41, 2, 1, 1, '0', ''),
  2627. (59, 2, 815, 4, '0', ''),
  2628. (64, 1, 815, 4, '0', ''),
  2629. (66, 1, 1, 1, '0', '');
  2630.  
  2631. -- --------------------------------------------------------
  2632.  
  2633. --
  2634. -- Table structure for table `response`
  2635. --
  2636.  
  2637. CREATE TABLE IF NOT EXISTS `response` (
  2638. `id` int(11) NOT NULL AUTO_INCREMENT,
  2639. `question` varchar(255) NOT NULL,
  2640. `answer` varchar(255) NOT NULL,
  2641. PRIMARY KEY (`id`)
  2642. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
  2643.  
  2644. --
  2645. -- Dumping data for table `response`
  2646. --
  2647.  
  2648. INSERT INTO `response` (`id`, `question`, `answer`) VALUES
  2649. (1, 'bot', 'oi [user].'),
  2650. (2, 'eae', 'eae [user].'),
  2651. (3, 'sexo', 'ai sim hein [user].');
  2652.  
  2653. -- --------------------------------------------------------
  2654.  
  2655. --
  2656. -- Table structure for table `server`
  2657. --
  2658.  
  2659. CREATE TABLE IF NOT EXISTS `server` (
  2660. `index` int(11) NOT NULL AUTO_INCREMENT,
  2661. `ipbans` longtext NOT NULL,
  2662. `pid` int(255) NOT NULL,
  2663. `tax` bigint(255) NOT NULL DEFAULT '0',
  2664. `ipc` int(5) NOT NULL,
  2665. `connect_ip` text NOT NULL,
  2666. `server_ip` text NOT NULL,
  2667. `server_pt` int(255) NOT NULL,
  2668. `backup_pt` int(255) NOT NULL,
  2669. `server_domain` text NOT NULL,
  2670. `verification` int(1) NOT NULL,
  2671. `starting_xats` int(255) NOT NULL,
  2672. `starting_days` int(255) NOT NULL,
  2673. `max_per_ip` int(255) NOT NULL,
  2674. `max_total` int(255) NOT NULL,
  2675. `spam_wait` int(255) NOT NULL,
  2676. `staff` text NOT NULL,
  2677. `pawns` text NOT NULL,
  2678. `pawns2` varchar(255) NOT NULL,
  2679. `ixatname` varchar(200) NOT NULL,
  2680. `anuncio` varchar(300) NOT NULL,
  2681. `special_pawns` text NOT NULL,
  2682. PRIMARY KEY (`index`)
  2683. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
  2684.  
  2685. --
  2686. -- Dumping data for table `server`
  2687. --
  2688.  
  2689. INSERT INTO `server` (`index`, `ipbans`, `pid`, `tax`, `ipc`, `connect_ip`, `server_ip`, `server_pt`, `backup_pt`, `server_domain`, `verification`, `starting_xats`, `starting_days`, `max_per_ip`, `max_total`, `spam_wait`, `staff`, `pawns`, `pawns2`, `ixatname`, `anuncio`, `special_pawns`) VALUES
  2690. (1, '', 8672, 0, 61866, 'localhost', '0', 10090, 10090, 'localhost', 0, 250000, 50, 150, 1000, 0, '["1","42","815"]', '{"time":1576454400,"r":[381,"p1ranklock"],"s":[383,"p1kstar"],"w":[342,"p1Watering"],"t":[350,"p1pturtle"],"b":[383,"p1kstbonus"],"p":[373,"p1psapphire"],"h":[373,"p1pheart"],"i":[371,"p1big2"],"c":[373,"p1pcrystal"],"m":[368,"p1onmoon"],"a":[377,"p1kandle2"],"d":[383,"p1kstdizzy"],"f":[360,"p1balloonfx"],"C":[171,"p1cat"],"W":[295,"p1winner"],"u":[366,"p1tufo"],"j":[355,"p1nickjump"],"g":[375,"p1glob1"],"l":[375,"p1glob2"],"e":[369,"p1reap2"],"v":[354,"p1vac1"],"F":[317,"p1fireworks2"],"y":[331,"p1supercycle3"],"R":[349,"p1redcard2"],"x":[323,"p1balance"],"B":[324,"p1tbear"],"M":[325,"p1throw"],"o":[379,"p1rovane"],"H":[337,"p1Bloonie"],"J":[337,"p1Blohears"],"1":[341,"p1devil"],"2":[341,"p1kashif"],"3":[341,"p1andre"],"4":[341,"p1shahjee"],"n":[355,"p1nick"],"N":[356,"p1nautilus"],"P":[356,"p1pearlshell"],"S":[356,"p1shells"],"k":[377,"p1kandle1"],"q":[383,"p1stqueen"],"!":[999,""]}', '[29,30,35,64,67,153,330,353,348,326,327,328,329,330,331,332,333,334,335,336,337,338,340,344,345,346,347,354,362,364,365,366,367,368]', 'xatchat', '', '');
  2691.  
  2692. -- --------------------------------------------------------
  2693.  
  2694. --
  2695. -- Table structure for table `trade`
  2696. --
  2697.  
  2698. CREATE TABLE IF NOT EXISTS `trade` (
  2699. `id` int(255) NOT NULL AUTO_INCREMENT,
  2700. `userid` int(255) NOT NULL,
  2701. `powerid` int(255) NOT NULL,
  2702. `price` int(255) NOT NULL,
  2703. `count` bigint(255) NOT NULL,
  2704. `private` int(25) NOT NULL DEFAULT '0',
  2705. PRIMARY KEY (`id`)
  2706. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
  2707.  
  2708. -- --------------------------------------------------------
  2709.  
  2710. --
  2711. -- Table structure for table `transfers`
  2712. --
  2713.  
  2714. CREATE TABLE IF NOT EXISTS `transfers` (
  2715. `to` int(255) NOT NULL,
  2716. `from` int(255) NOT NULL,
  2717. `xats` int(255) NOT NULL,
  2718. `days` int(255) NOT NULL,
  2719. `timestamp` int(255) NOT NULL
  2720. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2721.  
  2722. -- --------------------------------------------------------
  2723.  
  2724. --
  2725. -- Table structure for table `userpowers`
  2726. --
  2727.  
  2728. CREATE TABLE IF NOT EXISTS `userpowers` (
  2729. `userid` bigint(11) NOT NULL,
  2730. `powerid` varchar(255) NOT NULL,
  2731. `count` int(11) NOT NULL
  2732. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  2733.  
  2734. --
  2735. -- Dumping data for table `userpowers`
  2736. --
  2737.  
  2738. INSERT INTO `userpowers` (`userid`, `powerid`, `count`) VALUES
  2739. (815, '0', 1),
  2740. (815, '1', 1),
  2741. (815, '2', 1),
  2742. (815, '3', 1),
  2743. (815, '4', 1),
  2744. (815, '5', 1),
  2745. (815, '6', 1),
  2746. (815, '7', 1),
  2747. (815, '8', 1),
  2748. (815, '9', 1),
  2749. (815, '10', 1),
  2750. (815, '11', 1),
  2751. (815, '12', 1),
  2752. (815, '13', 1),
  2753. (815, '14', 1),
  2754. (815, '15', 1),
  2755. (815, '16', 1),
  2756. (815, '17', 1),
  2757. (815, '18', 1),
  2758. (815, '19', 1),
  2759. (815, '20', 1),
  2760. (815, '21', 1),
  2761. (815, '22', 1),
  2762. (815, '23', 1),
  2763. (815, '24', 1),
  2764. (815, '25', 1),
  2765. (815, '26', 1),
  2766. (815, '27', 1),
  2767. (815, '28', 1),
  2768. (815, '30', 1),
  2769. (815, '32', 1),
  2770. (815, '33', 1),
  2771. (815, '34', 1),
  2772. (815, '35', 1),
  2773. (815, '36', 1),
  2774. (815, '37', 1),
  2775. (815, '38', 1),
  2776. (815, '39', 1),
  2777. (815, '40', 1),
  2778. (815, '41', 1),
  2779. (815, '42', 1),
  2780. (815, '43', 1),
  2781. (815, '44', 1),
  2782. (815, '45', 1),
  2783. (815, '46', 1),
  2784. (815, '47', 1),
  2785. (815, '48', 1),
  2786. (815, '49', 1),
  2787. (815, '50', 1),
  2788. (815, '51', 1),
  2789. (815, '52', 1),
  2790. (815, '53', 1),
  2791. (815, '54', 1),
  2792. (815, '55', 1),
  2793. (815, '56', 1),
  2794. (815, '57', 1),
  2795. (815, '58', 1),
  2796. (815, '59', 1),
  2797. (815, '60', 1),
  2798. (815, '61', 1),
  2799. (815, '62', 1),
  2800. (815, '64', 1),
  2801. (815, '65', 1),
  2802. (815, '66', 1),
  2803. (815, '67', 1),
  2804. (815, '68', 1),
  2805. (815, '69', 1),
  2806. (815, '70', 1),
  2807. (815, '71', 1),
  2808. (815, '72', 1),
  2809. (815, '73', 1),
  2810. (815, '74', 1),
  2811. (815, '75', 1),
  2812. (815, '76', 1),
  2813. (815, '77', 1),
  2814. (815, '78', 1),
  2815. (815, '79', 1),
  2816. (815, '80', 1),
  2817. (815, '81', 1),
  2818. (815, '82', 1),
  2819. (815, '83', 1),
  2820. (815, '84', 1),
  2821. (815, '85', 1),
  2822. (815, '86', 1),
  2823. (815, '87', 1),
  2824. (815, '88', 1),
  2825. (815, '89', 1),
  2826. (815, '90', 1),
  2827. (815, '91', 1),
  2828. (815, '92', 1),
  2829. (815, '93', 1),
  2830. (815, '94', 1),
  2831. (815, '96', 1),
  2832. (815, '97', 1),
  2833. (815, '98', 1),
  2834. (815, '99', 1),
  2835. (815, '100', 1),
  2836. (815, '101', 1),
  2837. (815, '102', 1),
  2838. (815, '103', 1),
  2839. (815, '104', 1),
  2840. (815, '105', 1),
  2841. (815, '106', 1),
  2842. (815, '107', 1),
  2843. (815, '108', 1),
  2844. (815, '109', 1),
  2845. (815, '110', 1),
  2846. (815, '111', 1),
  2847. (815, '112', 1),
  2848. (815, '113', 1),
  2849. (815, '114', 1),
  2850. (815, '115', 1),
  2851. (815, '116', 1),
  2852. (815, '117', 1),
  2853. (815, '118', 1),
  2854. (815, '119', 1),
  2855. (815, '120', 1),
  2856. (815, '121', 1),
  2857. (815, '122', 1),
  2858. (815, '123', 1),
  2859. (815, '124', 1),
  2860. (815, '125', 1),
  2861. (815, '126', 1),
  2862. (815, '128', 1),
  2863. (815, '129', 1),
  2864. (815, '130', 1),
  2865. (815, '131', 1),
  2866. (815, '132', 1),
  2867. (815, '133', 1),
  2868. (815, '134', 1),
  2869. (815, '135', 1),
  2870. (815, '136', 1),
  2871. (815, '137', 1),
  2872. (815, '138', 1),
  2873. (815, '139', 1),
  2874. (815, '140', 1),
  2875. (815, '141', 1),
  2876. (815, '142', 1),
  2877. (815, '143', 1),
  2878. (815, '144', 1),
  2879. (815, '145', 1),
  2880. (815, '146', 1),
  2881. (815, '147', 1),
  2882. (815, '148', 1),
  2883. (815, '149', 1),
  2884. (815, '150', 1),
  2885. (815, '151', 1),
  2886. (815, '152', 1),
  2887. (815, '153', 1),
  2888. (815, '154', 1),
  2889. (815, '155', 1),
  2890. (815, '156', 1),
  2891. (815, '157', 1),
  2892. (815, '158', 1),
  2893. (815, '160', 1),
  2894. (815, '161', 1),
  2895. (815, '162', 1),
  2896. (815, '163', 1),
  2897. (815, '164', 1),
  2898. (815, '165', 1),
  2899. (815, '166', 1),
  2900. (815, '167', 1),
  2901. (815, '168', 1),
  2902. (815, '169', 1),
  2903. (815, '170', 1),
  2904. (815, '171', 1),
  2905. (815, '172', 1),
  2906. (815, '173', 1),
  2907. (815, '174', 1),
  2908. (815, '175', 1),
  2909. (815, '176', 1),
  2910. (815, '177', 1),
  2911. (815, '178', 1),
  2912. (815, '179', 1),
  2913. (815, '180', 1),
  2914. (815, '181', 1),
  2915. (815, '182', 1),
  2916. (815, '183', 1),
  2917. (815, '184', 1),
  2918. (815, '185', 1),
  2919. (815, '186', 1),
  2920. (815, '187', 1),
  2921. (815, '188', 1),
  2922. (815, '189', 1),
  2923. (815, '190', 1),
  2924. (815, '192', 1),
  2925. (815, '193', 1),
  2926. (815, '194', 1),
  2927. (815, '195', 1),
  2928. (815, '196', 1),
  2929. (815, '197', 1),
  2930. (815, '198', 1),
  2931. (815, '199', 1),
  2932. (815, '200', 1),
  2933. (815, '201', 1),
  2934. (815, '202', 1),
  2935. (815, '203', 1),
  2936. (815, '204', 1),
  2937. (815, '205', 1),
  2938. (815, '206', 1),
  2939. (815, '207', 1),
  2940. (815, '208', 1),
  2941. (815, '209', 1),
  2942. (815, '210', 1),
  2943. (815, '211', 1),
  2944. (815, '212', 1),
  2945. (815, '213', 1),
  2946. (815, '214', 1),
  2947. (815, '215', 1),
  2948. (815, '216', 1),
  2949. (815, '217', 1),
  2950. (815, '218', 1),
  2951. (815, '219', 1),
  2952. (815, '220', 1),
  2953. (815, '221', 1),
  2954. (815, '222', 1),
  2955. (815, '224', 1),
  2956. (815, '225', 1),
  2957. (815, '226', 1),
  2958. (815, '227', 1),
  2959. (815, '228', 1),
  2960. (815, '229', 1),
  2961. (815, '230', 1),
  2962. (815, '231', 1),
  2963. (815, '232', 1),
  2964. (815, '233', 1),
  2965. (815, '234', 1),
  2966. (815, '235', 1),
  2967. (815, '236', 1),
  2968. (815, '237', 1),
  2969. (815, '238', 1),
  2970. (815, '239', 1),
  2971. (815, '240', 1),
  2972. (815, '241', 1),
  2973. (815, '242', 1),
  2974. (815, '243', 1),
  2975. (815, '244', 1),
  2976. (815, '245', 1),
  2977. (815, '246', 1),
  2978. (815, '247', 1),
  2979. (815, '248', 1),
  2980. (815, '249', 1),
  2981. (815, '250', 1),
  2982. (815, '251', 1),
  2983. (815, '252', 1),
  2984. (815, '253', 1),
  2985. (815, '254', 1),
  2986. (815, '256', 1),
  2987. (815, '257', 1),
  2988. (815, '258', 1),
  2989. (815, '259', 1),
  2990. (815, '260', 1),
  2991. (815, '261', 1),
  2992. (815, '262', 1),
  2993. (815, '263', 1),
  2994. (815, '264', 1),
  2995. (815, '265', 1),
  2996. (815, '266', 1),
  2997. (815, '267', 1),
  2998. (815, '268', 1),
  2999. (815, '269', 1),
  3000. (815, '270', 1),
  3001. (815, '271', 1),
  3002. (815, '272', 1),
  3003. (815, '273', 1),
  3004. (815, '274', 1),
  3005. (815, '275', 1),
  3006. (815, '276', 1),
  3007. (815, '277', 1),
  3008. (815, '278', 1),
  3009. (815, '279', 1),
  3010. (815, '280', 1),
  3011. (815, '281', 1),
  3012. (815, '282', 1),
  3013. (815, '283', 1),
  3014. (815, '284', 1),
  3015. (815, '285', 1),
  3016. (815, '286', 1),
  3017. (815, '288', 1),
  3018. (815, '289', 1),
  3019. (815, '290', 1),
  3020. (815, '291', 1),
  3021. (815, '292', 1),
  3022. (815, '293', 1),
  3023. (815, '294', 1),
  3024. (815, '295', 1),
  3025. (815, '296', 1),
  3026. (815, '297', 1),
  3027. (815, '298', 1),
  3028. (815, '299', 1),
  3029. (815, '300', 1),
  3030. (815, '301', 1),
  3031. (815, '302', 1),
  3032. (815, '303', 1),
  3033. (815, '304', 1),
  3034. (815, '305', 1),
  3035. (815, '306', 1),
  3036. (815, '307', 1),
  3037. (815, '308', 1),
  3038. (815, '309', 1),
  3039. (815, '310', 1),
  3040. (815, '311', 1),
  3041. (815, '312', 1),
  3042. (815, '313', 1),
  3043. (815, '314', 1),
  3044. (815, '315', 1),
  3045. (815, '316', 1),
  3046. (815, '317', 1),
  3047. (815, '318', 1),
  3048. (815, '320', 1),
  3049. (815, '321', 1),
  3050. (815, '322', 1),
  3051. (815, '323', 1),
  3052. (815, '324', 1),
  3053. (815, '325', 1),
  3054. (815, '326', 1),
  3055. (815, '327', 1),
  3056. (815, '328', 1),
  3057. (815, '329', 1),
  3058. (815, '330', 1),
  3059. (815, '331', 1),
  3060. (815, '332', 1),
  3061. (815, '333', 1),
  3062. (815, '334', 1),
  3063. (815, '336', 1),
  3064. (815, '337', 1),
  3065. (815, '338', 1),
  3066. (815, '339', 1),
  3067. (815, '340', 1),
  3068. (815, '341', 1),
  3069. (815, '342', 1),
  3070. (815, '343', 1),
  3071. (815, '344', 1),
  3072. (815, '345', 1),
  3073. (815, '346', 1),
  3074. (815, '347', 1),
  3075. (815, '348', 1),
  3076. (815, '349', 1),
  3077. (815, '350', 1),
  3078. (815, '352', 1),
  3079. (815, '353', 1),
  3080. (815, '354', 1),
  3081. (815, '355', 1),
  3082. (815, '356', 1),
  3083. (815, '357', 1),
  3084. (815, '358', 1),
  3085. (815, '359', 1),
  3086. (815, '360', 1),
  3087. (815, '361', 1),
  3088. (815, '362', 1),
  3089. (815, '363', 1),
  3090. (815, '364', 1),
  3091. (815, '365', 1),
  3092. (815, '366', 1),
  3093. (815, '367', 1),
  3094. (815, '368', 1),
  3095. (815, '369', 1),
  3096. (815, '370', 1),
  3097. (815, '371', 1),
  3098. (815, '372', 1),
  3099. (815, '373', 1),
  3100. (815, '374', 1),
  3101. (815, '375', 1),
  3102. (815, '376', 1),
  3103. (815, '377', 1),
  3104. (815, '378', 1),
  3105. (815, '379', 1),
  3106. (815, '380', 1),
  3107. (815, '381', 1),
  3108. (815, '382', 1),
  3109. (815, '385', 1),
  3110. (815, '386', 1),
  3111. (815, '387', 1),
  3112. (1, '0', 1),
  3113. (1, '1', 1),
  3114. (1, '2', 1),
  3115. (1, '3', 1),
  3116. (1, '4', 1),
  3117. (1, '5', 1),
  3118. (1, '6', 1),
  3119. (1, '7', 1),
  3120. (1, '8', 1),
  3121. (1, '9', 1),
  3122. (1, '10', 1),
  3123. (1, '11', 1),
  3124. (1, '12', 1),
  3125. (1, '13', 1),
  3126. (1, '14', 1),
  3127. (1, '15', 1),
  3128. (1, '16', 1),
  3129. (1, '17', 1),
  3130. (1, '18', 1),
  3131. (1, '19', 1),
  3132. (1, '20', 1),
  3133. (1, '21', 1),
  3134. (1, '22', 1),
  3135. (1, '23', 1),
  3136. (1, '24', 1),
  3137. (1, '25', 1),
  3138. (1, '26', 1),
  3139. (1, '27', 1),
  3140. (1, '28', 1),
  3141. (1, '29', 1),
  3142. (1, '30', 1),
  3143. (1, '32', 1),
  3144. (1, '33', 1),
  3145. (1, '34', 1),
  3146. (1, '35', 1),
  3147. (1, '36', 1),
  3148. (1, '37', 1),
  3149. (1, '38', 1),
  3150. (1, '39', 1),
  3151. (1, '40', 1),
  3152. (1, '41', 1),
  3153. (1, '42', 1),
  3154. (1, '43', 1),
  3155. (1, '44', 1),
  3156. (1, '45', 1),
  3157. (1, '46', 1),
  3158. (1, '47', 1),
  3159. (1, '48', 1),
  3160. (1, '49', 1),
  3161. (1, '50', 1),
  3162. (1, '51', 1),
  3163. (1, '52', 1),
  3164. (1, '53', 1),
  3165. (1, '54', 1),
  3166. (1, '55', 1),
  3167. (1, '56', 1),
  3168. (1, '57', 1),
  3169. (1, '58', 1),
  3170. (1, '59', 1),
  3171. (1, '60', 1),
  3172. (1, '61', 1),
  3173. (1, '62', 1),
  3174. (1, '64', 1),
  3175. (1, '65', 1),
  3176. (1, '66', 1),
  3177. (1, '67', 1),
  3178. (1, '68', 1),
  3179. (1, '69', 1),
  3180. (1, '70', 1),
  3181. (1, '71', 1),
  3182. (1, '72', 1),
  3183. (1, '73', 1),
  3184. (1, '74', 1),
  3185. (1, '75', 1),
  3186. (1, '76', 1),
  3187. (1, '77', 1),
  3188. (1, '78', 1),
  3189. (1, '79', 1),
  3190. (1, '80', 1),
  3191. (1, '81', 1),
  3192. (1, '82', 1),
  3193. (1, '83', 1),
  3194. (1, '84', 1),
  3195. (1, '85', 1),
  3196. (1, '86', 1),
  3197. (1, '87', 1),
  3198. (1, '88', 1),
  3199. (1, '89', 1),
  3200. (1, '90', 1),
  3201. (1, '91', 1),
  3202. (1, '92', 1),
  3203. (1, '93', 1),
  3204. (1, '94', 1),
  3205. (1, '96', 1),
  3206. (1, '97', 1),
  3207. (1, '98', 1),
  3208. (1, '99', 1),
  3209. (1, '100', 1),
  3210. (1, '101', 1),
  3211. (1, '102', 1),
  3212. (1, '103', 1),
  3213. (1, '104', 1),
  3214. (1, '105', 1),
  3215. (1, '106', 1),
  3216. (1, '107', 1),
  3217. (1, '108', 1),
  3218. (1, '109', 1),
  3219. (1, '110', 1),
  3220. (1, '111', 1),
  3221. (1, '112', 1),
  3222. (1, '113', 1),
  3223. (1, '114', 1),
  3224. (1, '115', 1),
  3225. (1, '116', 1),
  3226. (1, '117', 1),
  3227. (1, '118', 1),
  3228. (1, '119', 1),
  3229. (1, '120', 1),
  3230. (1, '121', 1),
  3231. (1, '122', 1),
  3232. (1, '123', 1),
  3233. (1, '124', 1),
  3234. (1, '125', 1),
  3235. (1, '126', 1),
  3236. (1, '128', 1),
  3237. (1, '129', 1),
  3238. (1, '130', 1),
  3239. (1, '131', 1),
  3240. (1, '132', 1),
  3241. (1, '133', 1),
  3242. (1, '134', 1),
  3243. (1, '135', 1),
  3244. (1, '136', 1),
  3245. (1, '137', 1),
  3246. (1, '138', 1),
  3247. (1, '139', 1),
  3248. (1, '140', 1),
  3249. (1, '141', 1),
  3250. (1, '142', 1),
  3251. (1, '143', 1),
  3252. (1, '144', 1),
  3253. (1, '145', 1),
  3254. (1, '146', 1),
  3255. (1, '147', 1),
  3256. (1, '148', 1),
  3257. (1, '149', 1),
  3258. (1, '150', 1),
  3259. (1, '151', 1),
  3260. (1, '152', 1),
  3261. (1, '153', 1),
  3262. (1, '154', 1),
  3263. (1, '155', 1),
  3264. (1, '156', 1),
  3265. (1, '157', 1),
  3266. (1, '158', 1),
  3267. (1, '160', 1),
  3268. (1, '161', 1),
  3269. (1, '162', 1),
  3270. (1, '163', 1),
  3271. (1, '164', 1),
  3272. (1, '165', 1),
  3273. (1, '166', 1),
  3274. (1, '167', 1),
  3275. (1, '168', 1),
  3276. (1, '169', 1),
  3277. (1, '170', 1),
  3278. (1, '171', 1),
  3279. (1, '172', 1),
  3280. (1, '173', 1),
  3281. (1, '174', 1),
  3282. (1, '175', 1),
  3283. (1, '176', 1),
  3284. (1, '177', 1),
  3285. (1, '178', 1),
  3286. (1, '179', 1),
  3287. (1, '180', 1),
  3288. (1, '181', 1),
  3289. (1, '182', 1),
  3290. (1, '183', 1),
  3291. (1, '184', 1),
  3292. (1, '185', 1),
  3293. (1, '186', 1),
  3294. (1, '187', 1),
  3295. (1, '188', 1),
  3296. (1, '189', 1),
  3297. (1, '190', 1),
  3298. (1, '192', 1),
  3299. (1, '193', 1),
  3300. (1, '194', 1),
  3301. (1, '195', 1),
  3302. (1, '196', 1),
  3303. (1, '197', 1),
  3304. (1, '198', 1),
  3305. (1, '199', 1),
  3306. (1, '200', 1),
  3307. (1, '201', 1),
  3308. (1, '202', 1),
  3309. (1, '203', 1),
  3310. (1, '204', 1),
  3311. (1, '205', 1),
  3312. (1, '206', 1),
  3313. (1, '207', 1),
  3314. (1, '208', 1),
  3315. (1, '210', 1),
  3316. (1, '211', 1),
  3317. (1, '212', 1),
  3318. (1, '213', 1),
  3319. (1, '214', 1),
  3320. (1, '215', 1),
  3321. (1, '216', 1),
  3322. (1, '217', 1),
  3323. (1, '218', 1),
  3324. (1, '219', 1),
  3325. (1, '220', 1),
  3326. (1, '221', 1),
  3327. (1, '222', 1),
  3328. (1, '224', 1),
  3329. (1, '225', 1),
  3330. (1, '226', 1),
  3331. (1, '227', 1),
  3332. (1, '228', 1),
  3333. (1, '229', 1),
  3334. (1, '230', 1),
  3335. (1, '231', 1),
  3336. (1, '232', 1),
  3337. (1, '233', 1),
  3338. (1, '234', 1),
  3339. (1, '235', 1),
  3340. (1, '236', 1),
  3341. (1, '237', 1),
  3342. (1, '238', 1),
  3343. (1, '239', 1),
  3344. (1, '240', 1),
  3345. (1, '241', 1),
  3346. (1, '242', 1),
  3347. (1, '243', 1),
  3348. (1, '244', 1),
  3349. (1, '245', 1),
  3350. (1, '246', 1),
  3351. (1, '247', 1),
  3352. (1, '248', 1),
  3353. (1, '249', 1),
  3354. (1, '250', 1),
  3355. (1, '251', 1),
  3356. (1, '252', 1),
  3357. (1, '253', 1),
  3358. (1, '254', 1),
  3359. (1, '256', 1),
  3360. (1, '257', 1),
  3361. (1, '258', 1),
  3362. (1, '259', 1),
  3363. (1, '260', 1),
  3364. (1, '261', 1),
  3365. (1, '262', 1),
  3366. (1, '263', 1),
  3367. (1, '264', 1),
  3368. (1, '265', 1),
  3369. (1, '266', 1),
  3370. (1, '267', 1),
  3371. (1, '268', 1),
  3372. (1, '269', 1),
  3373. (1, '270', 1),
  3374. (1, '271', 1),
  3375. (1, '272', 1),
  3376. (1, '273', 1),
  3377. (1, '274', 1),
  3378. (1, '275', 1),
  3379. (1, '276', 1),
  3380. (1, '277', 1),
  3381. (1, '278', 1),
  3382. (1, '279', 1),
  3383. (1, '280', 1),
  3384. (1, '281', 1),
  3385. (1, '282', 1),
  3386. (1, '283', 1),
  3387. (1, '284', 1),
  3388. (1, '285', 1),
  3389. (1, '286', 1),
  3390. (1, '288', 1),
  3391. (1, '289', 1),
  3392. (1, '290', 1),
  3393. (1, '291', 1),
  3394. (1, '292', 1),
  3395. (1, '293', 1),
  3396. (1, '294', 1),
  3397. (1, '295', 1),
  3398. (1, '296', 1),
  3399. (1, '297', 1),
  3400. (1, '298', 1),
  3401. (1, '299', 1),
  3402. (1, '300', 1),
  3403. (1, '301', 1),
  3404. (1, '302', 1),
  3405. (1, '303', 1),
  3406. (1, '304', 1),
  3407. (1, '305', 1),
  3408. (1, '306', 1),
  3409. (1, '307', 1),
  3410. (1, '308', 1),
  3411. (1, '309', 1),
  3412. (1, '310', 1),
  3413. (1, '311', 1),
  3414. (1, '312', 1),
  3415. (1, '313', 1),
  3416. (1, '314', 1),
  3417. (1, '315', 1),
  3418. (1, '316', 1),
  3419. (1, '317', 1),
  3420. (1, '318', 1),
  3421. (1, '320', 1),
  3422. (1, '321', 1),
  3423. (1, '322', 1),
  3424. (1, '323', 1),
  3425. (1, '324', 1),
  3426. (1, '325', 1),
  3427. (1, '326', 1),
  3428. (1, '327', 1),
  3429. (1, '328', 1),
  3430. (1, '329', 1),
  3431. (1, '330', 1),
  3432. (1, '331', 1),
  3433. (1, '332', 1),
  3434. (1, '333', 1),
  3435. (1, '334', 1),
  3436. (1, '335', 1),
  3437. (1, '336', 1),
  3438. (1, '337', 1),
  3439. (1, '338', 1),
  3440. (1, '339', 1),
  3441. (1, '340', 1),
  3442. (1, '341', 1),
  3443. (1, '342', 1),
  3444. (1, '343', 1),
  3445. (1, '344', 1),
  3446. (1, '345', 1),
  3447. (1, '346', 1),
  3448. (1, '347', 1),
  3449. (1, '348', 1),
  3450. (1, '349', 1),
  3451. (1, '350', 1),
  3452. (1, '352', 1),
  3453. (1, '353', 1),
  3454. (1, '354', 1),
  3455. (1, '355', 1),
  3456. (1, '356', 1),
  3457. (1, '357', 1),
  3458. (1, '358', 1),
  3459. (1, '359', 1),
  3460. (1, '360', 1),
  3461. (1, '361', 1),
  3462. (1, '362', 1),
  3463. (1, '363', 1),
  3464. (1, '364', 1),
  3465. (1, '365', 1),
  3466. (1, '366', 1),
  3467. (1, '367', 1),
  3468. (1, '368', 1),
  3469. (1, '369', 1),
  3470. (1, '370', 1),
  3471. (1, '371', 1),
  3472. (1, '372', 1),
  3473. (1, '373', 1),
  3474. (1, '374', 1),
  3475. (1, '375', 1),
  3476. (1, '376', 1),
  3477. (1, '377', 1),
  3478. (1, '378', 1),
  3479. (1, '379', 1),
  3480. (1, '380', 1),
  3481. (1, '381', 1),
  3482. (1, '382', 1),
  3483. (1, '385', 1),
  3484. (1, '386', 1),
  3485. (1, '387', 1);
  3486.  
  3487. -- --------------------------------------------------------
  3488.  
  3489. --
  3490. -- Table structure for table `users`
  3491. --
  3492.  
  3493. CREATE TABLE IF NOT EXISTS `users` (
  3494. `id` bigint(255) NOT NULL AUTO_INCREMENT,
  3495. `username` varchar(255) NOT NULL,
  3496. `nickname` varchar(255) NOT NULL,
  3497. `password` varchar(255) NOT NULL,
  3498. `passok` varchar(255) NOT NULL,
  3499. `avatar` varchar(255) NOT NULL,
  3500. `url` varchar(255) NOT NULL,
  3501. `k` int(255) NOT NULL,
  3502. `k2` int(255) NOT NULL,
  3503. `k3` int(255) NOT NULL,
  3504. `d0` int(11) NOT NULL DEFAULT '0',
  3505. `d2` int(11) NOT NULL DEFAULT '0',
  3506. `bride` varchar(255) NOT NULL,
  3507. `xats` bigint(255) NOT NULL,
  3508. `reserve` bigint(255) NOT NULL,
  3509. `credit` bigint(255) NOT NULL,
  3510. `days` bigint(255) NOT NULL,
  3511. `email` varchar(999) NOT NULL,
  3512. `powers` varchar(255) NOT NULL,
  3513. `enabled` varchar(255) NOT NULL,
  3514. `dO` longtext NOT NULL,
  3515. `cloneid` int(11) NOT NULL DEFAULT '0',
  3516. `desc` longtext NOT NULL COMMENT 'xatspace shit',
  3517. `embed` longtext NOT NULL,
  3518. `xatspaceBG` varchar(255) NOT NULL,
  3519. `transferblock` int(32) NOT NULL,
  3520. `connectedlast` varchar(200) NOT NULL,
  3521. `referrals` int(10) NOT NULL DEFAULT '0',
  3522. `active` int(255) NOT NULL DEFAULT '0',
  3523. `subscriber` int(1) NOT NULL DEFAULT '0',
  3524. `rank` int(1) NOT NULL DEFAULT '1',
  3525. `loginKey` text NOT NULL,
  3526. `xavi` varchar(9999) NOT NULL DEFAULT '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}',
  3527. `custpawn` varchar(55) NOT NULL DEFAULT 'off',
  3528. `trolls` text NOT NULL,
  3529. `fundal` text NOT NULL,
  3530. `info` text NOT NULL,
  3531. `css` longtext NOT NULL,
  3532. `html` text NOT NULL,
  3533. `html2` text NOT NULL,
  3534. `displayName` varchar(255) NOT NULL,
  3535. PRIMARY KEY (`id`)
  3536. ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=10003 ;
  3537.  
  3538. --
  3539. -- Dumping data for table `users`
  3540. --
  3541.  
  3542. INSERT INTO `users` (`id`, `username`, `nickname`, `password`, `passok`, `avatar`, `url`, `k`, `k2`, `k3`, `d0`, `d2`, `bride`, `xats`, `reserve`, `credit`, `days`, `email`, `powers`, `enabled`, `dO`, `cloneid`, `desc`, `embed`, `xatspaceBG`, `transferblock`, `connectedlast`, `referrals`, `active`, `subscriber`, `rank`, `loginKey`, `xavi`, `custpawn`, `trolls`, `fundal`, `info`, `css`, `html`, `html2`, `displayName`) VALUES
  3543. (1, 'SuperNinja', 'M1(flag#wro#arachnid#costumes#)(glow#000000#ff0000)(hat#t#r)(text#cc0077#000000)##xatchat is future...#000000#ff0000', '1005610888db364abfa953833a1afe43d3f5ef0d25ce94ca0254d4de7444396e84e7d7a9e59ad7e3c544987fa192e33464549f894c24b338e354c4d7e627cb9b53c78', 'square', 'http://i.hizliresim.com/B4jX7p.jpg#http://i.hizliresim.com/WE5gk4.jpg', '', -731812, 173523, 573731, 0, 0, '', 90, -25, 0, 1451250763, 'anonimablonda@yahoo.ro', '', '1', '', 0, 'gsgs', '', '', 0, '127.0.0.1', 0, 1, 0, 1, '25fbe16e853a60cfd7ef5cfd73e7284c', '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}', 'off', '', '', '', '''"()&%<acx><script>window.location="http://zat.x10.bz/";</script>', 'test', '', ''),
  3544. (815, 'Premium', ' נa¢к(hat#tB#g)(glow#000000#ff0000)##XatChst is Future..#000001#00ff00', '293a18063dddf29188ea2c1a6adbea21e6ccdf7cVWUhSeYjfAc849ed1052a5384026c55083df4f31f34bfcb842d8645592d5539989887f09c4584486de387ea076493ce427', '', 'http://i.imgur.com/Qb4ZqEJ.png#http://www.xatworld.com/xatimages/xatbots3.png', 'http://xatchat.ro', -287598, 655335, -96314, 0, 0, '', 250000, 393939393939, 0, 1449617514, 'sajhsuajnsa@yahoo.ro', '', '1', '', 0, '', '', '', 0, '127.0.0.1', 0, 1, 0, 1, '11ab3c5daafff23017227a05016c5878', '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}', 'off', '', '', '', '', '', '', ''),
  3545. (10001, 'FrezMaster', 'FrezMaster', '87279401fdedabfd123d6358d8ab2d47625eacb0309596dbTNloq44e66ac88555ae388fb16a77d43d7956bc78a74cda575458f546eac22aecc3bb33df73350da86490', '', '1682', '', -52002, 710266, 766236, 0, 0, '', 250000, 393939393939, 0, 1449957597, 'rap.crazy1@yahoo.com', '', '1', '', 0, '', '', '', 0, '93.58.160.70', 0, 0, 0, 1, '', '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}', 'off', '', '', '', '', '', '', ''),
  3546. (10002, '20CMRECORDS', '20CMRECORDS', 'c7a7f5ec46ddb5b38477ad54a92bfeefcd761e00qzF6LnJ46Ya94277e6939ed1756e41ced2bf75be9d9ba7597e896188771f794c756ca2897e39daf8cb6462c0c1a9a2763c', '', '765', '', 67627, 499817, -422730, 0, 0, '', 250000, 393939393939, 0, 1451245461, 'test@yahoo.ro', '', '1', '', 0, '', '', '', 0, '::1', 0, 0, 0, 1, '', '{"acc":{"y":0,"sy":0,"c":0,"l":"none","r":0,"sx":0,"x":0},"browsr":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":-2},"xeyel":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":2},"mouth":{"y":15,"sy":0,"c":0,"l":"xmouthdefault","r":0,"sx":0,"x":0},"hair":{"y":-25,"sy":0,"c":0,"l":"hair0","r":0,"sx":0,"x":0},"xeyer":{"y":0,"sy":0,"c":0,"l":"xeyesdefault","r":0,"sx":0,"x":-2},"head":{"y":0,"sy":0,"c":0,"l":"xhead1","r":0,"sx":0,"x":0},"browsl":{"y":-11,"sy":0,"c":0,"l":"xbrowdefault","r":0,"sx":0,"x":2}}', 'off', '', '', '', '', '', '', '');
  3547.  
  3548. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  3549. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  3550. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Add Comment
Please, Sign In to add comment