[8567] Include DB changes from [8548-8549] into mangos.sql
[getmangos.git] / sql / mangos.sql
blob6c460fc964400fbbce62b77bd58bc872f6ecda0a
1 -- MySQL dump 10.11
2 --
3 -- Host: localhost    Database: mangos
4 -- ------------------------------------------------------
5 -- Server version       5.0.56-nt
7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10 /*!40101 SET NAMES utf8 */;
11 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12 /*!40103 SET TIME_ZONE='+00:00' */;
13 /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14 /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15 /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16 /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
19 -- Table structure for table `db_version`
22 DROP TABLE IF EXISTS `db_version`;
23 CREATE TABLE `db_version` (
24   `version` varchar(120) default NULL,
25   `creature_ai_version` varchar(120) default NULL,
26   `cache_id` int(10) default '0',
27   `required_8549_03_mangos_battleground_events` bit(1) default NULL
28 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Used DB version notes';
31 -- Dumping data for table `db_version`
34 LOCK TABLES `db_version` WRITE;
35 /*!40000 ALTER TABLE `db_version` DISABLE KEYS */;
36 INSERT INTO `db_version` VALUES
37 ('Mangos default database.','Creature EventAI not provided.',0,NULL);
38 /*!40000 ALTER TABLE `db_version` ENABLE KEYS */;
39 UNLOCK TABLES;
42 -- Table structure for table `achievement_criteria_data`
45 DROP TABLE IF EXISTS `achievement_criteria_data`;
46 CREATE TABLE `achievement_criteria_data` (
47   `criteria_id` mediumint(8) NOT NULL,
48   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
49   `value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
50   `value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
51   PRIMARY KEY (`criteria_id`,`type`)
52 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
55 -- Dumping data for table `achievement_criteria_data`
58 LOCK TABLES `achievement_criteria_data` WRITE;
59 /*!40000 ALTER TABLE `achievement_criteria_data` DISABLE KEYS */;
60 /*!40000 ALTER TABLE `achievement_criteria_data` ENABLE KEYS */;
61 UNLOCK TABLES;
64 -- Table structure for table `achievement_reward`
67 DROP TABLE IF EXISTS `achievement_reward`;
68 CREATE TABLE `achievement_reward` (
69   `entry` mediumint(8) unsigned NOT NULL default '0',
70   `title_A` mediumint(8) unsigned NOT NULL default '0',
71   `title_H` mediumint(8) unsigned NOT NULL default '0',
72   `item` mediumint(8) unsigned NOT NULL default '0',
73   `sender` mediumint(8) unsigned NOT NULL default '0',
74   `subject` varchar(255) default NULL,
75   `text` text,
76   PRIMARY KEY  (`entry`)
77 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';
80 -- Dumping data for table `achievement_reward`
83 LOCK TABLES `achievement_reward` WRITE;
84 /*!40000 ALTER TABLE `achievement_reward` DISABLE KEYS */;
85 /*!40000 ALTER TABLE `achievement_reward` ENABLE KEYS */;
86 UNLOCK TABLES;
89 -- Table structure for table `areatrigger_involvedrelation`
92 DROP TABLE IF EXISTS `areatrigger_involvedrelation`;
93 CREATE TABLE `areatrigger_involvedrelation` (
94   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
95   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
96   PRIMARY KEY  (`id`)
97 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
100 -- Dumping data for table `areatrigger_involvedrelation`
103 LOCK TABLES `areatrigger_involvedrelation` WRITE;
104 /*!40000 ALTER TABLE `areatrigger_involvedrelation` DISABLE KEYS */;
105 /*!40000 ALTER TABLE `areatrigger_involvedrelation` ENABLE KEYS */;
106 UNLOCK TABLES;
109 -- Table structure for table `areatrigger_scripts`
112 DROP TABLE IF EXISTS `areatrigger_scripts`;
113 CREATE TABLE `areatrigger_scripts` (
114     `entry` MEDIUMINT( 8 ) NOT NULL ,
115     `ScriptName` CHAR( 64 ) NOT NULL ,
116     PRIMARY KEY ( `entry` )
117 ) ENGINE = MYISAM DEFAULT CHARSET=utf8;
120 -- Dumping data for table `areatrigger_scripts`
123 LOCK TABLES `areatrigger_scripts` WRITE;
124 /*!40000 ALTER TABLE `areatrigger_scripts` DISABLE KEYS */;
125 /*!40000 ALTER TABLE `areatrigger_scripts` ENABLE KEYS */;
126 UNLOCK TABLES;
129 -- Table structure for table `areatrigger_tavern`
132 DROP TABLE IF EXISTS `areatrigger_tavern`;
133 CREATE TABLE `areatrigger_tavern` (
134   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
135   `name` text,
136   PRIMARY KEY  (`id`)
137 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
140 -- Dumping data for table `areatrigger_tavern`
143 LOCK TABLES `areatrigger_tavern` WRITE;
144 /*!40000 ALTER TABLE `areatrigger_tavern` DISABLE KEYS */;
145 /*!40000 ALTER TABLE `areatrigger_tavern` ENABLE KEYS */;
146 UNLOCK TABLES;
149 -- Table structure for table `areatrigger_teleport`
152 DROP TABLE IF EXISTS `areatrigger_teleport`;
153 CREATE TABLE `areatrigger_teleport` (
154   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
155   `name` text,
156   `required_level` tinyint(3) unsigned NOT NULL default '0',
157   `required_item` mediumint(8) unsigned NOT NULL default '0',
158   `required_item2` mediumint(8) unsigned NOT NULL default '0',
159   `heroic_key` mediumint(8) unsigned NOT NULL default '0',
160   `heroic_key2` mediumint(8) unsigned NOT NULL default '0',
161   `required_quest_done` int(11) unsigned NOT NULL default '0',
162   `required_quest_done_heroic` int(11) unsigned NOT NULL default '0',
163   `required_failed_text` text,
164   `target_map` smallint(5) unsigned NOT NULL default '0',
165   `target_position_x` float NOT NULL default '0',
166   `target_position_y` float NOT NULL default '0',
167   `target_position_z` float NOT NULL default '0',
168   `target_orientation` float NOT NULL default '0',
169   PRIMARY KEY  (`id`)
170 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
173 -- Dumping data for table `areatrigger_teleport`
176 LOCK TABLES `areatrigger_teleport` WRITE;
177 /*!40000 ALTER TABLE `areatrigger_teleport` DISABLE KEYS */;
178 /*!40000 ALTER TABLE `areatrigger_teleport` ENABLE KEYS */;
179 UNLOCK TABLES;
182 -- Table structure for table `battleground_events`
185 DROP TABLE IF EXISTS `battleground_events`;
186 CREATE TABLE `battleground_events` (
187   `map` smallint(5) NOT NULL,
188   `event1` tinyint(3) unsigned NOT NULL,
189   `event2` tinyint(3) unsigned NOT NULL,
190   `description` varchar(255) NOT NULL,
191   PRIMARY KEY  (`map`,`event1`,`event2`)
192 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
195 -- Dumping data for table `battleground_events`
198 LOCK TABLES `battleground_events` WRITE;
199 /*!40000 ALTER TABLE `battleground_events` DISABLE KEYS */;
200 INSERT INTO battleground_events (map, event1, event2, description) VALUES
201 -- WS
202 (489, 0, 0, 'Alliance Flag'),
203 (489, 1, 0, 'Horde Flag'),
204 (489, 2, 0, 'Spirit Guides'),
205 (489, 254, 0, 'Doors'),
206 -- AB
207 (529, 0, 0, 'Stables - neutral'),
208 (529, 0, 1, 'Stables - alliance contested'),
209 (529, 0, 2, 'Stables - horde contested'),
210 (529, 0, 3, 'Stables - alliance owned'),
211 (529, 0, 4, 'Stables - horde owned'),
212 (529, 1, 0, 'Blacksmith - neutral'),
213 (529, 1, 1, 'Blacksmith - alliance contested'),
214 (529, 1, 2, 'Blacksmith - horde contested'),
215 (529, 1, 3, 'Blacksmith - alliance owned'),
216 (529, 1, 4, 'Blacksmith - horde owned'),
217 (529, 2, 0, 'Farm - neutral'),
218 (529, 2, 1, 'Farm - alliance contested'),
219 (529, 2, 2, 'Farm - horde contested'),
220 (529, 2, 3, 'Farm - alliance owned'),
221 (529, 2, 4, 'Farm - horde owned'),
222 (529, 3, 0, 'Lumber Mill - neutral'),
223 (529, 3, 1, 'Lumber Mill - alliance contested'),
224 (529, 3, 2, 'Lumber Mill - horde contested'),
225 (529, 3, 3, 'Lumber Mill - alliance owned'),
226 (529, 3, 4, 'Lumber Mill - horde owned'),
227 (529, 4, 0, 'Gold Mine - neutral'),
228 (529, 4, 1, 'Gold Mine - alliance contested'),
229 (529, 4, 2, 'Gold Mine - horde contested'),
230 (529, 4, 3, 'Gold Mine - alliance owned'),
231 (529, 4, 4, 'Gold Mine - horde owned'),
232 (529, 254, 0, 'doors'),
233 -- EY
234 (566, 0, 0, 'Fel Reaver - alliance'),
235 (566, 0, 1, 'Fel Reaver - horde'),
236 (566, 0, 2, 'Fel Reaver - neutral'),
237 (566, 1, 0, 'Blood Elf - alliance'),
238 (566, 1, 1, 'Blood Elf - horde'),
239 (566, 1, 2, 'Blood Elf - neutral'),
240 (566, 2, 0, 'Draenei Ruins - alliance'),
241 (566, 2, 1, 'Draenei Ruins - horde'),
242 (566, 2, 2, 'Draenei Ruins - neutral'),
243 (566, 3, 0, 'Mage Tower - alliance'),
244 (566, 3, 1, 'Mage Tower - horde'),
245 (566, 3, 2, 'Mage Tower - neutral'),
246 (566, 4, 0, 'capture flag - Fel Reaver'),
247 (566, 4, 1, 'capture flag - Blood Elf'),
248 (566, 4, 2, 'capture flag - Draenei Ruins'),
249 (566, 4, 3, 'capture flag - Mage Tower'),
250 (566, 4, 4, 'capture flag - center'),
251 (566, 254, 0, 'doors'),
252 -- arenas
253 (559, 253, 0, 'buffs'),
254 (559, 254, 0, 'doors'),
255 (572, 253, 0, 'buffs'),
256 (572, 254, 0, 'doors'),
257 (562, 253, 0, 'buffs'),
258 (562, 254, 0, 'doors');
259 /*!40000 ALTER TABLE `battleground_events` ENABLE KEYS */;
260 UNLOCK TABLES;
263 -- Table structure for table `battleground_template`
266 DROP TABLE IF EXISTS `battleground_template`;
267 CREATE TABLE `battleground_template` (
268   `id` mediumint(8) unsigned NOT NULL,
269   `MinPlayersPerTeam` smallint(5) unsigned NOT NULL default '0',
270   `MaxPlayersPerTeam` smallint(5) unsigned NOT NULL default '0',
271   `MinLvl` tinyint(3) unsigned NOT NULL default '0',
272   `MaxLvl` tinyint(3) unsigned NOT NULL default '0',
273   `AllianceStartLoc` mediumint(8) unsigned NOT NULL,
274   `AllianceStartO` float NOT NULL,
275   `HordeStartLoc` mediumint(8) unsigned NOT NULL,
276   `HordeStartO` float NOT NULL,
277   PRIMARY KEY  (`id`)
278 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
281 -- Dumping data for table `battleground_template`
284 LOCK TABLES `battleground_template` WRITE;
285 /*!40000 ALTER TABLE `battleground_template` DISABLE KEYS */;
286 INSERT INTO `battleground_template` VALUES
287 (1,0,0,0,0,611,2.72532,610,2.27452),
288 (2,0,0,0,0,769,3.14159,770,3.14159),
289 (4,0,2,10,70,929,0,936,3.14159),
290 (3,0,0,0,0,890,3.40156,889,0.263892),
291 (5,0,2,10,70,939,0,940,3.14159),
292 (6,0,2,10,70,0,0,0,0),
293 (7,0,0,0,0,1103,3.40156,1104,0.263892),
294 (8,0,2,10,70,1258,0,1259,3.14159),
295 (9,0,0,0,0,1367,0,1368,0),
296 (10,5,5,10,80,1362,0,1363,0),
297 (11,5,5,10,80,1364,0,1365,0);
298 /*!40000 ALTER TABLE `battleground_template` ENABLE KEYS */;
299 UNLOCK TABLES;
302 -- Table structure for table `battlemaster_entry`
305 DROP TABLE IF EXISTS `battlemaster_entry`;
306 CREATE TABLE `battlemaster_entry` (
307   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Entry of a creature',
308   `bg_template` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Battleground template id',
309   PRIMARY KEY  (`entry`)
310 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
313 -- Dumping data for table `battlemaster_entry`
316 LOCK TABLES `battlemaster_entry` WRITE;
317 /*!40000 ALTER TABLE `battlemaster_entry` DISABLE KEYS */;
318 /*!40000 ALTER TABLE `battlemaster_entry` ENABLE KEYS */;
319 UNLOCK TABLES;
322 -- Table structure for table `command`
325 DROP TABLE IF EXISTS `command`;
326 CREATE TABLE `command` (
327   `name` varchar(50) NOT NULL default '',
328   `security` tinyint(3) unsigned NOT NULL default '0',
329   `help` longtext,
330   PRIMARY KEY  (`name`)
331 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Chat System';
334 -- Dumping data for table `command`
337 LOCK TABLES `command` WRITE;
338 /*!40000 ALTER TABLE `command` DISABLE KEYS */;
339 INSERT INTO `command` VALUES
340 ('account',0,'Syntax: .account\r\n\r\nDisplay the access level of your account.'),
341 ('account create',4,'Syntax: .account create $account $password\r\n\r\nCreate account and set password to it.'),
342 ('account delete',4,'Syntax: .account delete $account\r\n\r\nDelete account with all characters.'),
343 ('account lock',0,'Syntax: .account lock [on|off]\r\n\r\nAllow login from account only from current used IP or remove this requirement.'),
344 ('account onlinelist',4,'Syntax: .account onlinelist\r\n\r\nShow list of online accounts.'),
345 ('account password',0,'Syntax: .account password $old_password $new_password $new_password\r\n\r\nChange your account password.'),
346 ('account set addon',3,'Syntax: .account set addon [$account] #addon\r\n\r\nSet user (possible targeted) expansion addon level allowed. Addon values: 0 - normal, 1 - tbc, 2 - wotlk.'),
347 ('account set gmlevel',4,'Syntax: .account set gmlevel [$account] #level\r\n\r\nSet the security level for targeted player (can''t be used at self) or for account $name to a level of #level.\r\n\r\n#level may range from 0 to 3.'),
348 ('account set password',4,'Syntax: .account set password $account $password $password\r\n\r\nSet password for account.'),
349 ('additem',3,'Syntax: .additem #itemid/[#itemname]/#shift-click-item-link #itemcount\r\n\r\nAdds the specified number of items of id #itemid (or exact (!) name $itemname in brackets, or link created by shift-click at item in inventory or recipe) to your or selected character inventory. If #itemcount is omitted, only one item will be added.\r\n.'),
350 ('additemset',3,'Syntax: .additemset #itemsetid\r\n\r\nAdd items from itemset of id #itemsetid to your or selected character inventory. Will add by one example each item from itemset.'),
351 ('announce',1,'Syntax: .announce $MessageToBroadcast\r\n\r\nSend a global message to all players online in chat log.'),
352 ('aura',3,'Syntax: .aura #spellid\r\n\r\nAdd the aura from spell #spellid to the selected Unit.'),
353 ('ban account',3,'Syntax: .ban account $Name $bantime $reason\r\nBan account kick player.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
354 ('ban character',3,'Syntax: .ban character $Name $bantime $reason\r\nBan account and kick player.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
355 ('ban ip',3,'Syntax: .ban ip $Ip $bantime $reason\r\nBan IP.\r\n$bantime: negative value leads to permban, otherwise use a timestring like \"4d20h3s\".'),
356 ('baninfo account',3,'Syntax: .baninfo account $accountid\r\nWatch full information about a specific ban.'),
357 ('baninfo character',3,'Syntax: .baninfo character $charactername \r\nWatch full information about a specific ban.'),
358 ('baninfo ip',3,'Syntax: .baninfo ip $ip\r\nWatch full information about a specific ban.'),
359 ('bank',3,'Syntax: .bank\r\n\r\nShow your bank inventory.'),
360 ('banlist account',3,'Syntax: .banlist account [$Name]\r\nSearches the banlist for a account name pattern or show full list account bans.'),
361 ('banlist character',3,'Syntax: .banlist character $Name\r\nSearches the banlist for a character name pattern. Pattern required.'),
362 ('banlist ip',3,'Syntax: .banlist ip [$Ip]\r\nSearches the banlist for a IP pattern or show full list of IP bans.'),
363 ('cast',3,'Syntax: .cast #spellid [triggered]\r\n  Cast #spellid to selected target. If no target selected cast to self. If \'trigered\' or part provided then spell casted with triggered flag.'),
364 ('cast back',3,'Syntax: .cast back #spellid [triggered]\r\n  Selected target will cast #spellid to your character. If \'trigered\' or part provided then spell casted with triggered flag.'),
365 ('cast dist',3,'Syntax: .cast dist #spellid [#dist [triggered]]\r\n  You will cast spell to pint at distance #dist. If \'trigered\' or part provided then spell casted with triggered flag. Not all spells can be casted as area spells.'),
366 ('cast self',3,'Syntax: .cast self #spellid [triggered]\r\nCast #spellid by target at target itself. If \'trigered\' or part provided then spell casted with triggered flag.'),
367 ('cast target',3,'Syntax: .cast target #spellid [triggered]\r\n  Selected target will cast #spellid to his victim. If \'trigered\' or part provided then spell casted with triggered flag.'),
368 ('character customize',2,'Syntax: .character customize [$name]\r\n\r\nMark selected in game or by $name in command character for customize at next login.'),
369 ('character delete',4,'Syntax: .character delete $name\r\n\r\nDelete character $name.'),
370 ('character level',3,'Syntax: .character level [$playername] [#level]\r\n\r\nSet the level of character with $playername (or the selected if not name provided) by #numberoflevels Or +1 if no #numberoflevels provided). If #numberoflevels is omitted, the level will be increase by 1. If #numberoflevels is 0, the same level will be restarted. If no character is selected and name not provided, increase your level. Command can be used for offline character. All stats and dependent values recalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost.'),
371 ('character rename',2,'Syntax: .character rename [$name]\r\n\r\nMark selected in game or by $name in command character for rename at next login.'),
372 ('character reputation',2,'Syntax: .character reputation [$player_name]\r\n\r\nShow reputation information for selected player or player find by $player_name.'),
373 ('combatstop',2,'Syntax: .combatstop [$playername]\r\nStop combat for selected character. If selected non-player then command applied to self. If $playername provided then attempt applied to online player $playername.'),
374 ('commands',0,'Syntax: .commands\r\n\r\nDisplay a list of available commands for your account level.'),
375 ('cooldown',3,'Syntax: .cooldown [#spell_id]\r\n\r\nRemove all (if spell_id not provided) or #spel_id spell cooldown from selected character or you (if no selection).'),
376 ('damage',3,'Syntax: .damage $damage_amount [$school [$spellid]]\r\n\r\nApply $damage to target. If not $school and $spellid provided then this flat clean melee damage without any modifiers. If $school provided then damage modified by armor reduction (if school physical), and target absorbing modifiers and result applied as melee damage to target. If spell provided then damage modified and applied as spell damage. $spellid can be shift-link.'),
377 ('debug anim',2,'Syntax: .debug anim #emoteid\r\n\r\nPlay emote #emoteid for your character.'),
378 ('debug arena',3,'Syntax: .debug arena\r\n\r\nToggle debug mode for arenas. In debug mode GM can start arena with single player.'),
379 ('debug bg',3,'Syntax: .debug bg\r\n\r\nToggle debug mode for battlegrounds. In debug mode GM can start battleground with single player.'),
380 ('debug getvalue',3,'Syntax: .debug getvalue #field #isInt\r\n\r\nGet the field #field of the selected creature. If no creature is selected, get the content of your field.\r\n\r\nUse a #isInt of value 1 if the expected field content is an integer.'),
381 ('debug play cinematic',1,'Syntax: .debug play cinematic #cinematicid\r\n\r\nPlay cinematic #cinematicid for you. You stay at place while your mind fly.\r\n'),
382 ('debug play movie',1,'Syntax: .debug play movie #movieid\r\n\r\nPlay movie #movieid for you.'),
383 ('debug play sound',1,'Syntax: .debug play sound #soundid\r\n\r\nPlay sound with #soundid.\r\nSound will be play only for you. Other players do not hear this.\r\nWarning: client may have more 5000 sounds...'),
384 ('debug setvalue',3,'Syntax: .debug setvalue #field #value #isInt\r\n\r\nSet the field #field of the selected creature with value #value. If no creature is selected, set the content of your field.\r\n\r\nUse a #isInt of value 1 if #value is an integer.'),
385 ('debug update',3,'Syntax: .debug update #field #value\r\n\r\nUpdate the field #field of the selected character or creature with value #value.\r\n\r\nIf no #value is provided, display the content of field #field.'),
386 ('debug Mod32Value',3,'Syntax: .debug Mod32Value #field #value\r\n\r\nAdd #value to field #field of your character.'),
387 ('delticket',2,'Syntax: .delticket all\r\n        .delticket #num\r\n        .delticket $character_name\r\n\rall to dalete all tickets at server, $character_name to delete ticket of this character, #num to delete ticket #num.'),
388 ('demorph',2,'Syntax: .demorph\r\n\r\nDemorph the selected player.'),
389 ('die',3,'Syntax: .die\r\n\r\nKill the selected player. If no player is selected, it will kill you.'),
390 ('dismount',0,'Syntax: .dismount\r\n\r\nDismount you, if you are mounted.'),
391 ('distance',3,'Syntax: .distance [$name/$link]\r\n\r\nDisplay the distance from your character to the selected creature/player, or player with name $name, or player/creature/gameobject pointed to shift-link with guid.'),
392 ('event',2,'Syntax: .event #event_id\r\nShow details about event with #event_id.'),
393 ('event activelist',2,'Syntax: .event activelist\r\nShow list of currently active events.'),
394 ('event start',2,'Syntax: .event start #event_id\r\nStart event #event_id. Set start time for event to current moment (change not saved in DB).'),
395 ('event stop',2,'Syntax: .event stop #event_id\r\nStop event #event_id. Set start time for event to time in past that make current moment is event stop time (change not saved in DB).'),
396 ('explorecheat',3,'Syntax: .explorecheat #flag\r\n\r\nReveal  or hide all maps for the selected player. If no player is selected, hide or reveal maps to you.\r\n\r\nUse a #flag of value 1 to reveal, use a #flag value of 0 to hide all maps.'),
397 ('flusharenapoints','3','Syntax: .flusharenapoints\r\n\r\nUse it to distribute arena points based on arena team ratings, and start a new week.'),
398 ('gm',1,'Syntax: .gm [on/off]\r\n\r\nEnable or Disable in game GM MODE or show current state of on/off not provided.'),
399 ('gm chat',1,'Syntax: .gm chat [on/off]\r\n\r\nEnable or disable chat GM MODE (show gm badge in messages) or show current state of on/off not provided.'),
400 ('gm fly',3,'Syntax: .gm fly [on/off]\r\nEnable/disable gm fly mode.'),
401 ('gm ingame',0,'Syntax: .gm ingame\r\n\r\nDisplay a list of available in game Game Masters.'),
402 ('gm list',3,'Syntax: .gm list\r\n\r\nDisplay a list of all Game Masters accounts and security levels.'),
403 ('gm online',0,'Syntax: .gm online\r\n\r\nDisplay a list of available Game Masters.'),
404 ('gm visible',1,'Syntax: .gm visible on/off\r\n\r\nOutput current visibility state or make GM visible(on) and invisible(off) for other players.'),
405 ('go creature',1,'Syntax: .go creature #creature_guid\r\nTeleport your character to creature with guid #creature_guid.\r\n.gocreature #creature_name\r\nTeleport your character to creature with this name.\r\n.gocreature id #creature_id\r\nTeleport your character to a creature that was spawned from the template with this entry.\r\n*If* more than one creature is found, then you are teleported to the first that is found inside the database.'),
406 ('go graveyard',1,'Syntax: .go graveyard #graveyardId\r\n Teleport to graveyard with the graveyardId specified.'),
407 ('go grid',1,'Syntax: .go grid #gridX #gridY [#mapId]\r\n\r\nTeleport the gm to center of grid with provided indexes at map #mapId (or current map if it not provided).'),
408 ('go object',1,'Syntax: .go object #object_guid\r\nTeleport your character to gameobject with guid #object_guid'),
409 ('go taxinode',1,'Syntax: .go taxinode #taxinode\r\n\r\nTeleport player to taxinode coordinates. You can look up zone using .lookup taxinode $namepart'),
410 ('go trigger',1,'Syntax: .go trigger #trigger_id\r\n\r\nTeleport your character to areatrigger with id #trigger_id. Character will be teleported to trigger target if selected areatrigger is telporting trigger.'),
411 ('go xy',1,'Syntax: .go xy #x #y [#mapid]\r\n\r\nTeleport player to point with (#x,#y) coordinates at ground(water) level at map #mapid or same map if #mapid not provided.'),
412 ('go xyz',1,'Syntax: .go xyz #x #y #z [#mapid]\r\n\r\nTeleport player to point with (#x,#y,#z) coordinates at ground(water) level at map #mapid or same map if #mapid not provided.'),
413 ('go zonexy',1,'Syntax: .go zonexy #x #y [#zone]\r\n\r\nTeleport player to point with (#x,#y) client coordinates at ground(water) level in zone #zoneid or current zone if #zoneid not provided. You can look up zone using .lookup area $namepart'),
414 ('gobject add',2,'Syntax: .gobject add #id <spawntimeSecs>\r\n\r\nAdd a game object from game object templates to the world at your current location using the #id.\r\nspawntimesecs sets the spawntime, it is optional.\r\n\r\nNote: this is a copy of .gameobject.'),
415 ('gobject delete',2,'Syntax: .gobject delete #go_guid\r\nDelete gameobject with guid #go_guid.'),
416 ('gobject move',2,'Syntax: .gobject move #goguid [#x #y #z]\r\n\r\nMove gameobject #goguid to character coordinates (or to (#x,#y,#z) coordinates if its provide).'),
417 ('gobject near',2,'Syntax: .gobject near  [#distance]\r\n\r\nOutput gameobjects at distance #distance from player. Output gameobject guids and coordinates sorted by distance from character. If #distance not provided use 10 as default value.'),
418 ('gobject setphase',2,'Syntax: .gobject setphase #guid #phasemask\r\n\r\nGameobject with DB guid #guid phasemask changed to #phasemask with related world vision update for players. Gameobject state saved to DB and persistent.'),
419 ('gobject turn',2,'Syntax: .gobject turn #goguid \r\n\r\nSet for gameobject #goguid orientation same as current character orientation.'),
420 ('gobject target',2,'Syntax: .gobject target [#go_id|#go_name_part]\r\n\r\nLocate and show position nearest gameobject. If #go_id or #go_name_part provide then locate and show position of nearest gameobject with gameobject template id #go_id or name included #go_name_part as part.'),
421 ('goname',1,'Syntax: .goname [$charactername]\r\n\r\nTeleport to the given character. Either specify the character name or click on the character\'s portrait, e.g. when you are in a group. Character can be offline.'),
422 ('gps',1,'Syntax: .gps [$name|$shift-link]\r\n\r\nDisplay the position information for a selected character or creature (also if player name $name provided then for named player, or if creature/gameobject shift-link provided then pointed creature/gameobject if it loaded). Position information includes X, Y, Z, and orientation, map Id and zone Id'),
423 ('groupgo',1,'Syntax: .groupgo [$charactername]\r\n\r\nTeleport the given character and his group to you. Teleported only online characters but original selected group member can be offline.'),
424 ('guid',2,'Syntax: .guid\r\n\r\nDisplay the GUID for the selected character.'),
425 ('guild create',2,'Syntax: .guild create [$GuildLeaderName] "$GuildName"\r\n\r\nCreate a guild named $GuildName with the player $GuildLeaderName (or selected) as leader.  Guild name must in quotes.'),
426 ('guild delete',2,'Syntax: .guild delete "$GuildName"\r\n\r\nDelete guild $GuildName. Guild name must in quotes.'),
427 ('guild invite',2,'Syntax: .guild invite [$CharacterName] "$GuildName"\r\n\r\nAdd player $CharacterName (or selected) into a guild $GuildName. Guild name must in quotes.'),
428 ('guild rank',2,'Syntax: .guild rank $CharacterName #Rank\r\n\r\nSet for $CharacterName rank #Rank in a guild.'),
429 ('guild uninvite',2,'Syntax: .guild uninvite [$CharacterName]\r\n\r\nRemove player $CharacterName (or selected) from a guild.'),
430 ('help',0,'Syntax: .help [$command]\r\n\r\nDisplay usage instructions for the given $command. If no $command provided show list available commands.'),
431 ('hidearea',3,'Syntax: .hidearea #areaid\r\n\r\nHide the area of #areaid to the selected character. If no character is selected, hide this area to you.'),
432 ('honor add',2,'Syntax: .honor add $amount\r\n\r\nAdd a certain amount of honor (gained today) to the selected player.'),
433 ('honor addkill',2,'Syntax: .honor addkikll\r\n\r\nAdd the targeted unit as one of your pvp kills today (you only get honor if it\'s a racial leader or a player)'),
434 ('honor update',2,'Syntax: .honor update\r\n\r\nForce the yesterday\'s honor fields to be updated with today\'s data, which will get reset for the selected player.'),
435 ('hover',3,'Syntax: .hover #flag\r\n\r\nEnable or disable hover mode for your character.\r\n\r\nUse a #flag of value 1 to enable, use a #flag value of 0 to disable hover.'),
436 ('instance unbind',3,'Syntax: .instance unbind all\r\n  All of the selected player\'s binds will be cleared.'),
437 ('instance listbinds',3,'Syntax: .instance listbinds\r\n  Lists the binds of the selected player.'),
438 ('instance stats',3,'Syntax: .instance stats\r\n  Shows statistics about instances.'),
439 ('instance savedata',3,'Syntax: .instance savedata\r\n  Save the InstanceData for the current player\'s map to the DB.'),
440 ('itemmove',2,'Syntax: .itemmove #sourceslotid #destinationslotid\r\n\r\nMove an item from slots #sourceslotid to #destinationslotid in your inventory\r\n\r\nNot yet implemented'),
441 ('kick',2,'Syntax: .kick [$charactername]\r\n\r\nKick the given character name from the world. If no character name is provided then the selected player (except for yourself) will be kicked.'),
442 ('learn',3,'Syntax: .learn #spell [all]\r\n\r\nSelected character learn a spell of id #spell. If \'all\' provided then all ranks learned.'),
443 ('learn all',3,'Syntax: .learn all\r\n\r\nLearn all big set different spell maybe useful for Administaror.'),
444 ('learn all_crafts',2,'Syntax: .learn crafts\r\n\r\nLearn all professions and recipes.'),
445 ('learn all_default',1,'Syntax: .learn all_default [$playername]\r\n\r\nLearn for selected/$playername player all default spells for his race/class and spells rewarded by completed quests.'),
446 ('learn all_gm',2,'Syntax: .learn all_gm\r\n\r\nLearn all default spells for Game Masters.'),
447 ('learn all_lang',1,'Syntax: .learn all_lang\r\n\r\nLearn all languages'),
448 ('learn all_myclass',3,'Syntax: .learn all_myclass\r\n\r\nLearn all spells and talents available for his class.'),
449 ('learn all_mypettalents',3,'Syntax: .learn all_mypettalents\r\n\r\nLearn all talents for your pet available for his creature type (only for hunter pets).'),
450 ('learn all_myspells',3,'Syntax: .learn all_myspells\r\n\r\nLearn all spells (except talents and spells with first rank learned as talent) available for his class.'),
451 ('learn all_mytalents',3,'Syntax: .learn all_mytalents\r\n\r\nLearn all talents (and spells with first rank learned as talent) available for his class.'),
452 ('learn all_recipes',2,'Syntax: .learn all_recipes [$profession]\r\rLearns all recipes of specified profession and sets skill level to max.\rExample: .learn all_recipes enchanting'),
453 ('levelup',3,'Syntax: .levelup [$playername] [#numberoflevels]\r\n\r\nIncrease/decrease the level of character with $playername (or the selected if not name provided) by #numberoflevels Or +1 if no #numberoflevels provided). If #numberoflevels is omitted, the level will be increase by 1. If #numberoflevels is 0, the same level will be restarted. If no character is selected and name not provided, increase your level. Command can be used for offline character. All stats and dependent VALUESrecalculated. At level decrease talents can be reset if need. Also at level decrease equipped items with greater level requirement can be lost.'),
454 ('linkgrave',3,'Syntax: .linkgrave #graveyard_id [alliance|horde]\r\n\r\nLink current zone to graveyard for any (or alliance/horde faction ghosts). This let character ghost from zone teleport to graveyard after die if graveyard is nearest from linked to zone and accept ghost of this faction. Add only single graveyard at another map and only if no graveyards linked (or planned linked at same map).'),
455 ('list creature',3,'Syntax: .list creature #creature_id [#max_count]\r\n\r\nOutput creatures with creature id #creature_id found in world. Output creature guids and coordinates sorted by distance from character. Will be output maximum #max_count creatures. If #max_count not provided use 10 as default value.'),
456 ('list item',3,'Syntax: .list item #item_id [#max_count]\r\n\r\nOutput items with item id #item_id found in all character inventories, mails, auctions, and guild banks. Output item guids, item owner guid, owner account and owner name (guild name and guid in case guild bank). Will be output maximum #max_count items. If #max_count not provided use 10 as default value.'),
457 ('list object',3,'Syntax: .list object #gameobject_id [#max_count]\r\n\r\nOutput gameobjects with gameobject id #gameobject_id found in world. Output gameobject guids and coordinates sorted by distance from character. Will be output maximum #max_count gameobject. If #max_count not provided use 10 as default value.'),
458 ('loadscripts',3,'Syntax: .loadscripts $scriptlibraryname\r\n\r\nUnload current and load the script library $scriptlibraryname or reload current if $scriptlibraryname omitted, in case you changed it while the server was running.'),
459 ('lookup area',1,'Syntax: .lookup area $namepart\r\n\r\nLooks up an area by $namepart, and returns all matches with their area ID\'s.'),
460 ('lookup creature',3,'Syntax: .lookup creature $namepart\r\n\r\nLooks up a creature by $namepart, and returns all matches with their creature ID\'s.'),
461 ('lookup event',2,'Syntax: .lookup event $name\r\nAttempts to find the ID of the event with the provided $name.'),
462 ('lookup faction',3,'Syntax: .lookup faction $name\r\nAttempts to find the ID of the faction with the provided $name.'),
463 ('lookup item',3,'Syntax: .lookup item $itemname\r\n\r\nLooks up an item by $itemname, and returns all matches with their Item ID\'s.'),
464 ('lookup itemset',3,'Syntax: .lookup itemset $itemname\r\n\r\nLooks up an item set by $itemname, and returns all matches with their Item set ID\'s.'),
465 ('lookup object',3,'Syntax: .lookup object $objname\r\n\r\nLooks up an gameobject by $objname, and returns all matches with their Gameobject ID\'s.'),
466 ('lookup player account',2,'Syntax: .lookup player account $account ($limit) \r\n\r\n Searchs players, which account username is $account with optional parametr $limit of results.'),
467 ('lookup player ip',2,'Syntax: .lookup player ip $ip ($limit) \r\n\r\n Searchs players, which account ast_ip is $ip with optional parametr $limit of results.'),
468 ('lookup player email',2,'Syntax: .lookup player email $email ($limit) \r\n\r\n Searchs players, which account email is $email with optional parametr $limit of results.'),
469 ('lookup quest',3,'Syntax: .lookup quest $namepart\r\n\r\nLooks up a quest by $namepart, and returns all matches with their quest ID\'s.'),
470 ('lookup skill',3,'Syntax: .lookup skill $$namepart\r\n\r\nLooks up a skill by $namepart, and returns all matches with their skill ID\'s.'),
471 ('lookup spell',3,'Syntax: .lookup spell $namepart\r\n\r\nLooks up a spell by $namepart, and returns all matches with their spell ID\'s.'),
472 ('lookup taxinode',3,'Syntax: .lookup taxinode $substring\r\n\r\nSearch and output all taxinodes with provide $substring in name.'),
473 ('lookup tele',1,'Syntax: .lookup tele $substring\r\n\r\nSearch and output all .tele command locations with provide $substring in name.'),
474 ('maxskill',3,'Syntax: .maxskill\r\nSets all skills of the targeted player to their maximum VALUESfor its current level.'),
475 ('modify arena',1,'Syntax: .modify arena #value\r\nAdd $amount arena points to the selected player.'),
476 ('modify aspeed',1,'Syntax: .modify aspeed #rate\r\n\r\nModify all speeds -run,swim,run back,swim back- of the selected player to \"normalbase speed for this move type\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
477 ('modify bit',1,'Syntax: .modify bit #field #bit\r\n\r\nToggle the #bit bit of the #field field for the selected player. If no player is selected, modify your character.'),
478 ('modify bwalk',1,'Syntax: .modify bwalk #rate\r\n\r\nModify the speed of the selected player while running backwards to \"normal walk back speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
479 ('modify drunk',1,'Syntax: .modify drunk #value\r\n Set drunk level to #value (0..100). Value 0 remove drunk state, 100 is max drunked state.'),
480 ('modify energy',1,'Syntax: .modify energy #energy\r\n\r\nModify the energy of the selected player. If no player is selected, modify your energy.'),
481 ('modify faction',1,'Syntax: .modify faction #factionid #flagid #npcflagid #dynamicflagid\r\n\r\nModify the faction and flags of the selected creature. Without arguments, display the faction and flags of the selected creature.'),
482 ('modify gender',2,'Syntax: .modify gender male/female\r\n\r\nChange gender of selected player.'),
483 ('modify honor',1,'Syntax: .modify honor $amount\r\n\r\nAdd $amount honor points to the selected player.'),
484 ('modify hp',1,'Syntax: .modify hp #newhp\r\n\r\nModify the hp of the selected player. If no player is selected, modify your hp.'),
485 ('modify mana',1,'Syntax: .modify mana #newmana\r\n\r\nModify the mana of the selected player. If no player is selected, modify your mana.'),
486 ('modify money',1,'Syntax: .modify money #money\r\n.money #money\r\n\r\nAdd or remove money to the selected player. If no player is selected, modify your money.\r\n\r\n #gold can be negative to remove money.'),
487 ('modify morph',2,'Syntax: .modify morph #displayid\r\n\r\nChange your current model id to #displayid.'),
488 ('modify mount',1,'Syntax: .modify mount #id #speed\r\nDisplay selected player as mounted at #id creature and set speed to #speed value.'),
489 ('modify phase',3,'Syntax: .modify phase #phasemask\r\n\r\nSelected character phasemask changed to #phasemask with related world vision update. Change active until in game phase changed, or GM-mode enable/disable, or re-login. Character pts pasemask update to same value.'),
490 ('modify rage',1,'Syntax: .modify rage #newrage\r\n\r\nModify the rage of the selected player. If no player is selected, modify your rage.'),
491 ('modify rep',2,'Syntax: .modify rep #repId (#repvalue | $rankname [#delta])\r\nSets the selected players reputation with faction #repId to #repvalue or to $reprank.\r\nIf the reputation rank name is provided, the resulting reputation will be the lowest reputation for that rank plus the delta amount, if specified.\r\nYou can use \'.pinfo rep\' to list all known reputation ids, or use \'.lookup faction $name\' to locate a specific faction id.'),
492 ('modify runicpower',1,'Syntax: .modify runicpower #newrunicpower\r\n\r\nModify the runic power of the selected player. If no player is selected, modify your runic power.'),
493 ('modify scale',1,''),
494 ('modify speed',1,'Syntax: .modify speed #rate\r\n.speed #rate\r\n\r\nModify the running speed of the selected player to \"normal base run speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
495 ('modify spell',1,''),
496 ('modify standstate',2,'Syntax: .modify standstate #emoteid\r\n\r\nChange the emote of your character while standing to #emoteid.'),
497 ('modify swim',1,'Syntax: .modify swim #rate\r\n\r\nModify the swim speed of the selected player to \"normal swim speed\"*rate. If no player is selected, modify your speed.\r\n\r\n #rate may range from 0.1 to 10.'),
498 ('modify titles',1,'Syntax: .modify titles #mask\r\n\r\nAllows user to use all titles from #mask.\r\n\r\n #mask=0 disables the title-choose-field'),
499 ('modify tp',1,'Syntax: .modify tp #amount\r\n\r\nSet free talent pointes for selected character or character\'s pet. It will be reset to default expected at next levelup/login/quest reward.'),
500 ('movegens',3,'Syntax: .movegens\r\n  Show movement generators stack for selected creature or player.'),
501 ('mute',1,'Syntax: .mute [$playerName] $timeInMinutes\r\n\r\nDisible chat messaging for any character from account of character $playerName (or currently selected) at $timeInMinutes minutes. Player can be offline.'),
502 ('namego',1,'Syntax: .namego [$charactername]\r\n\r\nTeleport the given character to you. Character can be offline.'),
503 ('neargrave',3,'Syntax: .neargrave [alliance|horde]\r\n\r\nFind nearest graveyard linked to zone (or only nearest from accepts alliance or horde faction ghosts).'),
504 ('notify',1,'Syntax: .notify $MessageToBroadcast\r\n\r\nSend a global message to all players online in screen.'),
505 ('npc add',2,'Syntax: .npc add #creatureid\r\n\r\nSpawn a creature by the given template id of #creatureid.'),
506 ('npc additem',2,'Syntax: .npc additem #itemId <#maxcount><#incrtime><#extendedcost>r\r\n\r\nAdd item #itemid to item list of selected vendor. Also optionally set max count item in vendor item list and time to item count restoring and items ExtendedCost.'),
507 ('npc addmove',2,'Syntax: .npc addmove #creature_guid [#waittime]\r\n\r\nAdd your current location as a waypoint for creature with guid #creature_guid. And optional add wait time.'),
508 ('npc addweapon',3,'Not yet implemented.'),
509 ('npc allowmove',3,'Syntax: .npc allowmove\r\n\r\nEnable or disable movement creatures in world. Not implemented.'),
510 ('npc changelevel',2,'Syntax: .npc changelevel #level\r\n\r\nChange the level of the selected creature to #level.\r\n\r\n#level may range from 1 to 63.'),
511 ('npc delete',2,'Syntax: .npc delete [#guid]\r\n\r\nDelete creature with guid #guid (or the selected if no guid is provided)'),
512 ('npc delitem',2,'Syntax: .npc delitem #itemId\r\n\r\nRemove item #itemid from item list of selected vendor.'),
513 ('npc factionid',2,'Syntax: .npc factionid #factionid\r\n\r\nSet the faction of the selected creature to #factionid.'),
514 ('npc flag',2,'Syntax: .npc flag #npcflag\r\n\r\nSet the NPC flags of creature template of the selected creature and selected creature to #npcflag. NPC flags will applied to all creatures of selected creature template after server restart or grid unload/load.'),
515 ('npc follow',2,'Syntax: .npc follow\r\n\r\nSelected creature start follow you until death/fight/etc.'),
516 ('npc info',3,'Syntax: .npc info\r\n\r\nDisplay a list of details for the selected creature.\r\n\r\nThe list includes:\r\n- GUID, Faction, NPC flags, Entry ID, Model ID,\r\n- Level,\r\n- Health (current/maximum),\r\n\r\n- Field flags, dynamic flags, faction template, \r\n- Position information,\r\n- and the creature type, e.g. if the creature is a vendor.'),
517 ('npc move',2,'Syntax: .npc move [#creature_guid]\r\n\r\nMove the targeted creature spawn point to your coordinates.'),
518 ('npc name',2,'Syntax: .npc name $name\r\n\r\nChange the name of the selected creature or character to $name.\r\n\r\nCommand disabled.'),
519 ('npc setphase',3,'Syntax: .npc setphase #phasemask\r\n\r\nSelected unit or pet phasemask changed to #phasemask with related world vision update for players. In creature case state saved to DB and persistent. In pet case change active until in game phase changed for owner, owner re-login, or GM-mode enable/disable..'),
520 ('npc playemote',3,'Syntax: .npc playemote #emoteid\r\n\r\nMake the selected creature emote with an emote of id #emoteid.'),
521 ('npc setdeathstate',2,'Syntax: .npc setdeathstate on/off\r\n\r\nSet default death state (dead/alive) for npc at spawn.'),
522 ('npc setmodel',2,'Syntax: .npc setmodel #displayid\r\n\r\nChange the model id of the selected creature to #displayid.'),
523 ('npc setmovetype',2,'Syntax: .npc setmovetype [#creature_guid] stay/random/way [NODEL]\r\n\r\nSet for creature pointed by #creature_guid (or selected if #creature_guid not provided) movement type and move it to respawn position (if creature alive). Any existing waypoints for creature will be removed from the database if you do not use NODEL. If the creature is dead then movement type will applied at creature respawn.\r\nMake sure you use NODEL, if you want to keep the waypoints.'),
524 ('npc spawndist',2,'Syntax: .npc spawndist #dist\r\n\r\nAdjust spawndistance of selected creature to dist.'),
525 ('npc spawntime',2,'Syntax: .npc spawntime #time \r\n\r\nAdjust spawntime of selected creature to time.'),
526 ('npc subname',2,'Syntax: .npc subname $Name\r\n\r\nChange the subname of the selected creature or player to $Name.\r\n\r\nCommand disabled.'),
527 ('npc tame',2,'Syntax: .npc tame\r\n\r\nTame selected creature (tameable non pet creature). You don''t must have pet.'),
528 ('npc textemote',1,'Syntax: .npc textemote #emoteid\r\n\r\nMake the selected creature to do textemote with an emote of id #emoteid.'),
529 ('npc whisper',1,'Syntax: .npc whisper #playerguid #text\r\nMake the selected npc whisper #text to  #playerguid.'),
530 ('npc unfollow',2,'Syntax: .npc unfollow\r\n\r\nSelected creature (non pet) stop follow you.'),
531 ('pdump write',3,'Syntax: .pdump write $filename $playerNameOrGUID\r\nWrite character dump with name/guid $playerNameOrGUID to file $filename.'),
532 ('pdump load',3,'Syntax: .pdump load $filename $account [$newname] [$newguid]\r\nLoad character dump from dump file into character list of $account with saved or $newname, with saved (or first free) or $newguid guid.'),
533 ('pinfo',2,'Syntax: .pinfo [$player_name]\r\n\r\nOutput account information for selected player or player find by $player_name.'),
534 ('quest add',3,'Syntax: .quest add #quest_id\r\n\r\nAdd to character quest log quest #quest_id. Quest started from item can\'t be added by this command but correct .additem call provided in command output.'),
535 ('quest complete',3,'Syntax: .quest complete #questid\r\nMark all quest objectives as completed for target character active quest. After this target character can go and get quest reward.'),
536 ('quest remove',3,'Syntax: .quest remove #quest_id\r\n\r\nSet quest #quest_id state to not completed and not active (and remove from active quest list) for selected player.'),
537 ('recall',1,'Syntax: .recall [$playername]\r\n\r\nTeleport $playername or selected player to the place where he has been before last use of a teleportation command. If no $playername is entered and no player is selected, it will teleport you.'),
538 ('reload all',3,'Syntax: .reload all\r\n\r\nReload all tables with reload support added and that can be _safe_ reloaded.'),
539 ('reload all_area',3,'Syntax: .reload all_area\r\n\r\nReload all `areatrigger_*` tables if reload support added for this table and this table can be _safe_ reloaded.'),
540 ('reload all_loot',3,'Syntax: .reload all_loot\r\n\r\nReload all `*_loot_template` tables. This can be slow operation with lags for server run.'),
541 ('reload all_quest',3,'Syntax: .reload all_quest\r\n\r\nReload all quest related tables if reload support added for this table and this table can be _safe_ reloaded.'),
542 ('reload all_spell',3,'Syntax: .reload all_spell\r\n\r\nReload all `spell_*` tables with reload support added and that can be _safe_ reloaded.'),
543 ('reload all_locales',3,'Syntax: .reload all_locales\r\n\r\nReload all `locales_*` tables with reload support added and that can be _safe_ reloaded.'),
544 ('reload config',3,'Syntax: .reload config\r\n\r\nReload config settings (by default stored in mangosd.conf). Not all settings can be change at reload: some new setting values will be ignored until restart, some values will applied with delay or only to new objects/maps, some values will explicitly rejected to change at reload.'),
545 ('repairitems',2,'Syntax: .repairitems\r\n\r\nRepair all selected player''s items.'),
546 ('reset achievements',3,'Syntax: .reset achievements [$playername]\r\n\r\nReset achievements data for selected or named (online or offline) character. Achievements for persistance progress data like completed quests/etc re-filled at reset. Achievements for events like kills/casts/etc will lost.'),
547 ('reset all',3,'Syntax: .reset all spells\r\n\r\nSyntax: .reset all talents\r\n\r\nRequest reset spells or talents (including talents for all character\'s pets if any) at next login each existed character.'),
548 ('reset honor',3,'Syntax: .reset honor [Playername]\r\n  Reset all honor data for targeted character.'),
549 ('reset level',3,'Syntax: .reset level [Playername]\r\n  Reset level to 1 including reset stats and talents.  Equipped items with greater level requirement can be lost.'),
550 ('reset spells',3,'Syntax: .reset spells [Playername]\r\n  Removes all non-original spells from spellbook.\r\n. Playername can be name of offline character.'),
551 ('reset stats',3,'Syntax: .reset stats [Playername]\r\n  Resets(recalculate) all stats of the targeted player to their original VALUESat current level.'),
552 ('reset talents',3,'Syntax: .reset talents [Playername]\r\n  Removes all talents of the targeted player or pet or named player. Playername can be name of offline character. With player talents also will be reset talents for all character\'s pets if any.'),
553 ('respawn',3,'Syntax: .respawn\r\n\r\nRespawn selected creature or respawn all nearest creatures (if none selected) and GO without waiting respawn time expiration.'),
554 ('revive',3,'Syntax: .revive\r\n\r\nRevive the selected player. If no player is selected, it will revive you.'),
555 ('save',0,'Syntax: .save\r\n\r\nSaves your character.'),
556 ('saveall',1,'Syntax: .saveall\r\n\r\nSave all characters in game.'),
557 ('send items',3,'Syntax: .send items #playername "#subject" "#text" itemid1[:count1] itemid2[:count2] ... itemidN[:countN]\r\n\r\nSend a mail to a player. Subject and mail text must be in "". If for itemid not provided related count values then expected 1, if count > max items in stack then items will be send in required amount stacks. All stacks amount in mail limited to 12.'),
558 ('send mail',1,'Syntax: .send mail #playername "#subject" "#text"\r\n\r\nSend a mail to a player. Subject and mail text must be in "".'),
559 ('send message',3,'Syntax: .send message $playername $message\r\n\r\nSend screen message to player from ADMINISTRATOR.'),
560 ('send money','3','Syntax: .send money #playername "#subject" "#text" #money\r\n\r\nSend mail with money to a player. Subject and mail text must be in "".'),
561 ('server corpses',2,'Syntax: .server corpses\r\n\r\nTriggering corpses expire check in world.'),
562 ('server exit',4,'Syntax: .server exit\r\n\r\nTerminate mangosd NOW. Exit code 0.'),
563 ('server info',0,'Syntax: .server info\r\n\r\nDisplay server version and the number of connected players.'),
564 ('server idleshutdown',3,'Syntax: .server idleshutdown #delay [#exist_code]\r\n\r\nShut the server down after #delay seconds if no active connections are present (no players). Use #exist_code or 0 as program exist code.'),
565 ('server idleshutdown cancel',3,'Syntax: .server idleshutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
566 ('server idlerestart',3,'Syntax: .server idlerestart #delay\r\n\r\nRestart the server after #delay seconds if no active connections are present (no players). Use #exist_code or 2 as program exist code.'),
567 ('server idlerestart cancel',3,'Syntax: .server idlerestart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
568 ('server motd',0,'Syntax: .server motd\r\n\r\nShow server Message of the day.'),
569 ('server plimit',3,'Syntax: .server plimit [#num|-1|-2|-3|reset|player|moderator|gamemaster|administrator]\r\n\r\nWithout arg show current player amount and security level limitations for login to server, with arg set player linit ($num > 0) or securiti limitation ($num < 0 or security leme name. With `reset` sets player limit to the one in the config file'),
570 ('server restart',3,'Syntax: .server restart #delay\r\n\r\nRestart the server after #delay seconds. Use #exist_code or 2 as program exist code.'),
571 ('server restart cancel',3,'Syntax: .server restart cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
572 ('server set loglevel',4,'Syntax: .server set loglevel #level\r\n\r\nSet server log level (0 - errors only, 1 - basic, 2 - detail, 3 - debug).'),
573 ('server set motd',3,'Syntax: .server set motd $MOTD\r\n\r\nSet server Message of the day.'),
574 ('server shutdown',3,'Syntax: .server shutdown #delay [#exist_code]\r\n\r\nShut the server down after #delay seconds. Use #exist_code or 0 as program exist code.'),
575 ('server shutdown cancel',3,'Syntax: .server shutdown cancel\r\n\r\nCancel the restart/shutdown timer if any.'),
576 ('setskill',3,'Syntax: .setskill #skill #level [#max]\r\n\r\nSet a skill of id #skill with a current skill value of #level and a maximum value of #max (or equal current maximum if not provide) for the selected character. If no character is selected, you learn the skill.'),
577 ('showarea',3,'Syntax: .showarea #areaid\r\n\r\nReveal the area of #areaid to the selected character. If no character is selected, reveal this area to you.'),
578 ('start',0,'Syntax: .start\r\n\r\nTeleport you to the starting area of your character.'),
579 ('taxicheat',1,'Syntax: .taxicheat on/off\r\n\r\nTemporary grant access or remove to all taxi routes for the selected character. If no character is selected, hide or reveal all routes to you.\r\n\r\nVisited taxi nodes sill accessible after removing access.'),
580 ('tele',1,'Syntax: .tele #location\r\n\r\nTeleport player to a given location.'),
581 ('tele add',3,'Syntax: .tele add $name\r\n\r\nAdd current your position to .tele command target locations list with name $name.'),
582 ('tele del',3,'Syntax: .tele del $name\r\n\r\nRemove location with name $name for .tele command locations list.'),
583 ('tele group',1,'Syntax: .tele group#location\r\n\r\nTeleport a selected player and his group members to a given location.'),
584 ('tele name',1,'Syntax: .tele name [#playername] #location\r\n\r\nTeleport the given character to a given location. Character can be offline.'),
585 ('ticket',2,'Syntax: .ticket on\r\n        .ticket off\r\n        .ticket #num\r\n        .ticket $character_name\r\n\r\non/off for GMs to show or not a new ticket directly, $character_name to show ticket of this character, #num to show ticket #num.'),
586 ('unaura',3,'Syntax: .unaura #spellid\r\n\r\nRemove aura due to spell #spellid from the selected Unit.'),
587 ('unban account',3,'Syntax: .unban account $Name\r\nUnban accounts for account name pattern.'),
588 ('unban character',3,'Syntax: .unban character $Name\r\nUnban accounts for character name pattern.'),
589 ('unban ip',3,'Syntax : .unban ip $Ip\r\nUnban accounts for IP pattern.'),
590 ('unlearn',3,'Syntax: .unlearn #spell [all]\r\n\r\nUnlearn for selected player a spell #spell.  If \'all\' provided then all ranks unlearned.'),
591 ('unmute',1,'Syntax: .unmute $playerName\r\n\r\nRestore chat messaging for any character from account of character $playerName.'),
592 ('waterwalk',2,'Syntax: .waterwalk on/off\r\n\r\nSet on/off waterwalk state for selected player.'),
593 ('wchange',3,'Syntax: .wchange #weathertype #status\r\n\r\nSet current weather to #weathertype with an intensity of #status.\r\n\r\n#weathertype can be 1 for rain, 2 for snow, and 3 for sand. #status can be 0 for disabled, and 1 for enabled.'),
594 ('whispers',1,'Syntax: .whispers on|off\r\nEnable/disable accepting whispers by GM from players. By default use mangosd.conf setting.'),
595 ('wp',2,'Using WP Command:\r\nEach Waypoint Command has it\'s own description!'),
596 ('wp add',2,'Syntax: .wp add [#creature_guid or Select a Creature]'),
597 ('wp export',3,'Syntax: .wp export [#creature_guid or Select a Creature] $filename'),
598 ('wp import',3,'Syntax: .wp import $filename'),
599 ('wp modify',2,'Syntax: .wp modify [#creature_guid or Select a Creature]\r\nadd - Add a waypoint after the selected visual\r\nwaittime $time\r\nemote ID\r\nspell ID\r\ntext1| text2| text3| text4| text5 <text>\r\nmodel1 ID\r\nmodel2 ID\r\nmove(moves wp to player pos)\r\ndel (deletes the wp)\r\n\r\nOnly one parameter per time!'),
600 ('wp show',2,'Syntax: .wp show [#creature_guid or Select a Creature]\r\non\r\nfirst\r\nlast\r\noff\r\ninfo\r\n\r\nFor using info you have to do first show on and than select a Visual-Waypoint and do the show info!');
601 /*!40000 ALTER TABLE `command` ENABLE KEYS */;
602 UNLOCK TABLES;
605 -- Table structure for table `creature`
608 DROP TABLE IF EXISTS `creature`;
609 CREATE TABLE `creature` (
610   `guid` int(10) unsigned NOT NULL auto_increment COMMENT 'Global Unique Identifier',
611   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Creature Identifier',
612   `map` smallint(5) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
613   `spawnMask` tinyint(3) unsigned NOT NULL default '1',
614   `phaseMask` smallint(5) unsigned NOT NULL default '1',
615   `modelid` mediumint(8) unsigned NOT NULL default '0',
616   `equipment_id` mediumint(9) NOT NULL default '0',
617   `position_x` float NOT NULL default '0',
618   `position_y` float NOT NULL default '0',
619   `position_z` float NOT NULL default '0',
620   `orientation` float NOT NULL default '0',
621   `spawntimesecs` int(10) unsigned NOT NULL default '120',
622   `spawndist` float NOT NULL default '5',
623   `currentwaypoint` mediumint(8) unsigned NOT NULL default '0',
624   `curhealth` int(10) unsigned NOT NULL default '1',
625   `curmana` int(10) unsigned NOT NULL default '0',
626   `DeathState` tinyint(3) unsigned NOT NULL default '0',
627   `MovementType` tinyint(3) unsigned NOT NULL default '0',
628   PRIMARY KEY  (`guid`),
629   KEY `idx_map` (`map`),
630   KEY `index_id` (`id`)
631 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature System';
634 -- Dumping data for table `creature`
637 LOCK TABLES `creature` WRITE;
638 /*!40000 ALTER TABLE `creature` DISABLE KEYS */;
639 /*!40000 ALTER TABLE `creature` ENABLE KEYS */;
640 UNLOCK TABLES;
643 -- Table structure for table `creature_addon`
646 DROP TABLE IF EXISTS `creature_addon`;
647 CREATE TABLE `creature_addon` (
648   `guid` int(11) NOT NULL default '0',
649   `mount` mediumint(8) unsigned NOT NULL default '0',
650   `bytes1` int(10) unsigned NOT NULL default '0',
651   `bytes2` int(10) unsigned NOT NULL default '0',
652   `emote` int(10) unsigned NOT NULL default '0',
653   `moveflags` int(10) unsigned NOT NULL default '0',
654   `auras` text,
655   PRIMARY KEY  (`guid`)
656 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
659 -- Dumping data for table `creature_addon`
662 LOCK TABLES `creature_addon` WRITE;
663 /*!40000 ALTER TABLE `creature_addon` DISABLE KEYS */;
664 /*!40000 ALTER TABLE `creature_addon` ENABLE KEYS */;
665 UNLOCK TABLES;
668 -- Table structure for table `creature_battleground`
671 DROP TABLE IF EXISTS `creature_battleground`;
672 CREATE TABLE `creature_battleground` (
673     `guid` int(10) unsigned NOT NULL COMMENT 'Creature\'s GUID',
674     `event1` tinyint(3) unsigned NOT NULL COMMENT 'main event',
675     `event2` tinyint(3) unsigned NOT NULL COMMENT 'sub event',
676     PRIMARY KEY  (`guid`)
677 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature battleground indexing system';
680 -- Dumping data for table `creature_battleground`
683 LOCK TABLES `creature_battleground` WRITE;
684 /*!40000 ALTER TABLE `creature_battleground` DISABLE KEYS */;
685 /*!40000 ALTER TABLE `creature_battleground` ENABLE KEYS */;
686 UNLOCK TABLES;
689 -- Table structure for table `creature_equip_template`
692 DROP TABLE IF EXISTS `creature_equip_template`;
693 CREATE TABLE `creature_equip_template` (
694   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Unique entry',
695   `equipentry1` mediumint(8) unsigned NOT NULL default '0',
696   `equipentry2` mediumint(8) unsigned NOT NULL default '0',
697   `equipentry3` mediumint(8) unsigned NOT NULL default '0',
698   PRIMARY KEY  (`entry`)
699 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Equipment)';
702 -- Dumping data for table `creature_equip_template`
705 LOCK TABLES `creature_equip_template` WRITE;
706 /*!40000 ALTER TABLE `creature_equip_template` DISABLE KEYS */;
707 /*!40000 ALTER TABLE `creature_equip_template` ENABLE KEYS */;
708 UNLOCK TABLES;
711 -- Table structure for table `creature_involvedrelation`
714 DROP TABLE IF EXISTS `creature_involvedrelation`;
715 CREATE TABLE `creature_involvedrelation` (
716   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
717   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
718   PRIMARY KEY  (`id`,`quest`)
719 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
722 -- Dumping data for table `creature_involvedrelation`
725 LOCK TABLES `creature_involvedrelation` WRITE;
726 /*!40000 ALTER TABLE `creature_involvedrelation` DISABLE KEYS */;
727 /*!40000 ALTER TABLE `creature_involvedrelation` ENABLE KEYS */;
728 UNLOCK TABLES;
731 -- Table structure for table `creature_loot_template`
734 DROP TABLE IF EXISTS `creature_loot_template`;
735 CREATE TABLE `creature_loot_template` (
736   `entry` mediumint(8) unsigned NOT NULL default '0',
737   `item` mediumint(8) unsigned NOT NULL default '0',
738   `ChanceOrQuestChance` float NOT NULL default '100',
739   `groupid` tinyint(3) unsigned NOT NULL default '0',
740   `mincountOrRef` mediumint(9) NOT NULL default '1',
741   `maxcount` tinyint(3) unsigned NOT NULL default '1',
742   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
743   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
744   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
745   PRIMARY KEY  (`entry`,`item`)
746 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
749 -- Dumping data for table `creature_loot_template`
752 LOCK TABLES `creature_loot_template` WRITE;
753 /*!40000 ALTER TABLE `creature_loot_template` DISABLE KEYS */;
754 /*!40000 ALTER TABLE `creature_loot_template` ENABLE KEYS */;
755 UNLOCK TABLES;
758 -- Table structure for table `creature_model_info`
761 DROP TABLE IF EXISTS `creature_model_info`;
762 CREATE TABLE `creature_model_info` (
763   `modelid` mediumint(8) unsigned NOT NULL default '0',
764   `bounding_radius` float NOT NULL default '0',
765   `combat_reach` float NOT NULL default '0',
766   `gender` tinyint(3) unsigned NOT NULL default '2',
767   `modelid_other_gender` mediumint(8) unsigned NOT NULL default '0',
768   PRIMARY KEY  (`modelid`)
769 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Creature System (Model related info)';
772 -- Dumping data for table `creature_model_info`
775 LOCK TABLES `creature_model_info` WRITE;
776 /*!40000 ALTER TABLE `creature_model_info` DISABLE KEYS */;
777 INSERT INTO `creature_model_info` VALUES
778 (10045, 1, 1.5, 2, 0);
779 /*!40000 ALTER TABLE `creature_model_info` ENABLE KEYS */;
780 UNLOCK TABLES;
783 -- Table structure for table `creature_movement`
786 DROP TABLE IF EXISTS `creature_movement`;
787 CREATE TABLE `creature_movement` (
788   `id` int(10) unsigned NOT NULL COMMENT 'Creature GUID',
789   `point` mediumint(8) unsigned NOT NULL default '0',
790   `position_x` float NOT NULL default '0',
791   `position_y` float NOT NULL default '0',
792   `position_z` float NOT NULL default '0',
793   `waittime` int(10) unsigned NOT NULL default '0',
794   `textid1` int(11) NOT NULL default '0',
795   `textid2` int(11) NOT NULL default '0',
796   `textid3` int(11) NOT NULL default '0',
797   `textid4` int(11) NOT NULL default '0',
798   `textid5` int(11) NOT NULL default '0',
799   `emote` mediumint(8) unsigned NOT NULL default '0',
800   `spell` mediumint(8) unsigned NOT NULL default '0',
801   `wpguid` int(11) NOT NULL default '0',
802   `orientation` float NOT NULL default '0',
803   `model1` mediumint(9) NOT NULL default '0',
804   `model2` mediumint(9) NOT NULL default '0',
805   PRIMARY KEY  (`id`,`point`)
806 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
809 -- Dumping data for table `creature_movement`
812 LOCK TABLES `creature_movement` WRITE;
813 /*!40000 ALTER TABLE `creature_movement` DISABLE KEYS */;
814 /*!40000 ALTER TABLE `creature_movement` ENABLE KEYS */;
815 UNLOCK TABLES;
818 -- Table structure for table `creature_onkill_reputation`
821 DROP TABLE IF EXISTS `creature_onkill_reputation`;
822 CREATE TABLE `creature_onkill_reputation` (
823   `creature_id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Creature Identifier',
824   `RewOnKillRepFaction1` smallint(6) NOT NULL default '0',
825   `RewOnKillRepFaction2` smallint(6) NOT NULL default '0',
826   `MaxStanding1` tinyint(4) NOT NULL default '0',
827   `IsTeamAward1` tinyint(4) NOT NULL default '0',
828   `RewOnKillRepValue1` mediumint(9) NOT NULL default '0',
829   `MaxStanding2` tinyint(4) NOT NULL default '0',
830   `IsTeamAward2` tinyint(4) NOT NULL default '0',
831   `RewOnKillRepValue2` mediumint(9) NOT NULL default '0',
832   `TeamDependent` tinyint(3) unsigned NOT NULL default '0',
833   PRIMARY KEY  (`creature_id`)
834 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Creature OnKill Reputation gain';
837 -- Dumping data for table `creature_onkill_reputation`
840 LOCK TABLES `creature_onkill_reputation` WRITE;
841 /*!40000 ALTER TABLE `creature_onkill_reputation` DISABLE KEYS */;
842 /*!40000 ALTER TABLE `creature_onkill_reputation` ENABLE KEYS */;
843 UNLOCK TABLES;
846 -- Table structure for table `creature_questrelation`
849 DROP TABLE IF EXISTS `creature_questrelation`;
850 CREATE TABLE `creature_questrelation` (
851   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
852   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
853   PRIMARY KEY  (`id`,`quest`)
854 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
857 -- Dumping data for table `creature_questrelation`
860 LOCK TABLES `creature_questrelation` WRITE;
861 /*!40000 ALTER TABLE `creature_questrelation` DISABLE KEYS */;
862 /*!40000 ALTER TABLE `creature_questrelation` ENABLE KEYS */;
863 UNLOCK TABLES;
866 -- Table structure for table `creature_respawn`
869 DROP TABLE IF EXISTS `creature_respawn`;
870 CREATE TABLE `creature_respawn` (
871   `guid` int(10) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
872   `respawntime` bigint(20) NOT NULL default '0',
873   `instance` mediumint(8) unsigned NOT NULL default '0',
874   PRIMARY KEY  (`guid`,`instance`),
875   KEY `instance` (`instance`)
876 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
879 -- Dumping data for table `creature_respawn`
882 LOCK TABLES `creature_respawn` WRITE;
883 /*!40000 ALTER TABLE `creature_respawn` DISABLE KEYS */;
884 /*!40000 ALTER TABLE `creature_respawn` ENABLE KEYS */;
885 UNLOCK TABLES;
888 -- Table structure for table `creature_template`
891 DROP TABLE IF EXISTS `creature_template`;
892 CREATE TABLE `creature_template` (
893   `entry` mediumint(8) unsigned NOT NULL default '0',
894   `heroic_entry` mediumint(8) unsigned NOT NULL default '0',
895   `KillCredit1` int(11) unsigned NOT NULL default '0',
896   `KillCredit2` int(11) unsigned NOT NULL default '0',
897   `modelid_A` mediumint(8) unsigned NOT NULL default '0',
898   `modelid_A2` mediumint(8) unsigned NOT NULL default '0',
899   `modelid_H` mediumint(8) unsigned NOT NULL default '0',
900   `modelid_H2` mediumint(8) unsigned NOT NULL default '0',
901   `name` char(100) NOT NULL default '0',
902   `subname` char(100) default NULL,
903   `IconName` char(100) default NULL,
904   `minlevel` tinyint(3) unsigned NOT NULL default '1',
905   `maxlevel` tinyint(3) unsigned NOT NULL default '1',
906   `minhealth` int(10) unsigned NOT NULL default '0',
907   `maxhealth` int(10) unsigned NOT NULL default '0',
908   `minmana` int(10) unsigned NOT NULL default '0',
909   `maxmana` int(10) unsigned NOT NULL default '0',
910   `armor` mediumint(8) unsigned NOT NULL default '0',
911   `faction_A` smallint(5) unsigned NOT NULL default '0',
912   `faction_H` smallint(5) unsigned NOT NULL default '0',
913   `npcflag` int(10) unsigned NOT NULL default '0',
914   `speed` float NOT NULL default '1',
915   `scale` float NOT NULL default '1',
916   `rank` tinyint(3) unsigned NOT NULL default '0',
917   `mindmg` float NOT NULL default '0',
918   `maxdmg` float NOT NULL default '0',
919   `dmgschool` tinyint(4) NOT NULL default '0',
920   `attackpower` int(10) unsigned NOT NULL default '0',
921   `dmg_multiplier` float NOT NULL default '1',
922   `baseattacktime` int(10) unsigned NOT NULL default '0',
923   `rangeattacktime` int(10) unsigned NOT NULL default '0',
924   `unit_class` tinyint(3) unsigned NOT NULL default '0',
925   `unit_flags` int(10) unsigned NOT NULL default '0',
926   `dynamicflags` int(10) unsigned NOT NULL default '0',
927   `family` tinyint(4) NOT NULL default '0',
928   `trainer_type` tinyint(4) NOT NULL default '0',
929   `trainer_spell` mediumint(8) unsigned NOT NULL default '0',
930   `trainer_class` tinyint(3) unsigned NOT NULL default '0',
931   `trainer_race` tinyint(3) unsigned NOT NULL default '0',
932   `minrangedmg` float NOT NULL default '0',
933   `maxrangedmg` float NOT NULL default '0',
934   `rangedattackpower` smallint(5) unsigned NOT NULL default '0',
935   `type` tinyint(3) unsigned NOT NULL default '0',
936   `type_flags` int(10) unsigned NOT NULL default '0',
937   `lootid` mediumint(8) unsigned NOT NULL default '0',
938   `pickpocketloot` mediumint(8) unsigned NOT NULL default '0',
939   `skinloot` mediumint(8) unsigned NOT NULL default '0',
940   `resistance1` smallint(5) NOT NULL default '0',
941   `resistance2` smallint(5) NOT NULL default '0',
942   `resistance3` smallint(5) NOT NULL default '0',
943   `resistance4` smallint(5) NOT NULL default '0',
944   `resistance5` smallint(5) NOT NULL default '0',
945   `resistance6` smallint(5) NOT NULL default '0',
946   `spell1` mediumint(8) unsigned NOT NULL default '0',
947   `spell2` mediumint(8) unsigned NOT NULL default '0',
948   `spell3` mediumint(8) unsigned NOT NULL default '0',
949   `spell4` mediumint(8) unsigned NOT NULL default '0',
950   `PetSpellDataId` mediumint(8) unsigned NOT NULL default '0',
951   `mingold` mediumint(8) unsigned NOT NULL default '0',
952   `maxgold` mediumint(8) unsigned NOT NULL default '0',
953   `AIName` char(64) NOT NULL default '',
954   `MovementType` tinyint(3) unsigned NOT NULL default '0',
955   `InhabitType` tinyint(3) unsigned NOT NULL default '3',
956   `unk16` float NOT NULL default '1',
957   `unk17` float NOT NULL default '1',
958   `RacialLeader` tinyint(3) unsigned NOT NULL default '0',
959   `questItem1` int(11) UNSIGNED DEFAULT '0' NOT NULL,
960   `questItem2` int(11) UNSIGNED DEFAULT '0' NOT NULL,
961   `questItem3` int(11) UNSIGNED DEFAULT '0' NOT NULL,
962   `questItem4` int(11) UNSIGNED DEFAULT '0' NOT NULL,
963   `movementId` int(11) UNSIGNED DEFAULT '0' NOT NULL,
964   `RegenHealth` tinyint(3) unsigned NOT NULL default '1',
965   `equipment_id` mediumint(8) unsigned NOT NULL default '0',
966   `mechanic_immune_mask` int(10) unsigned NOT NULL default '0',
967   `flags_extra` int(10) unsigned NOT NULL default '0',
968   `ScriptName` char(64) NOT NULL default '',
969   PRIMARY KEY  (`entry`)
970 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Creature System';
973 -- Dumping data for table `creature_template`
976 LOCK TABLES `creature_template` WRITE;
977 /*!40000 ALTER TABLE `creature_template` DISABLE KEYS */;
978 INSERT INTO `creature_template` VALUES
979 (1,0,0,0,10045,0,10045,0,'Waypoint(Only GM can see it)','Visual',NULL,1,1,64,64,0,0,0,35,35,0,0.91,1,0,14,15,0,100,1,2000,2200,8,4096,0,0,0,0,0,0,1.76,2.42,100,8,5242886,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,3,1.0,1.0,0,0,0,0,0,0,1,0,0,0x82,'');
980 /*!40000 ALTER TABLE `creature_template` ENABLE KEYS */;
981 UNLOCK TABLES;
984 -- Table structure for table `creature_template_addon`
987 DROP TABLE IF EXISTS `creature_template_addon`;
988 CREATE TABLE `creature_template_addon` (
989   `entry` mediumint(8) unsigned NOT NULL default '0',
990   `mount` mediumint(8) unsigned NOT NULL default '0',
991   `bytes1` int(10) unsigned NOT NULL default '0',
992   `bytes2` int(10) unsigned NOT NULL default '0',
993   `emote` mediumint(8) unsigned NOT NULL default '0',
994   `moveflags` int(10) unsigned NOT NULL default '0',
995   `auras` text,
996   PRIMARY KEY  (`entry`)
997 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1000 -- Dumping data for table `creature_template_addon`
1003 LOCK TABLES `creature_template_addon` WRITE;
1004 /*!40000 ALTER TABLE `creature_template_addon` DISABLE KEYS */;
1005 /*!40000 ALTER TABLE `creature_template_addon` ENABLE KEYS */;
1006 UNLOCK TABLES;
1009 -- Table structure for table `db_script_string`
1012 DROP TABLE IF EXISTS `db_script_string`;
1013 CREATE TABLE `db_script_string` (
1014   `entry` mediumint(8) unsigned NOT NULL default '0',
1015   `content_default` text NOT NULL,
1016   `content_loc1` text,
1017   `content_loc2` text,
1018   `content_loc3` text,
1019   `content_loc4` text,
1020   `content_loc5` text,
1021   `content_loc6` text,
1022   `content_loc7` text,
1023   `content_loc8` text,
1024   PRIMARY KEY  (`entry`)
1025 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1028 -- Dumping data for table `db_script_string`
1031 LOCK TABLES `db_script_string` WRITE;
1032 /*!40000 ALTER TABLE `db_script_string` DISABLE KEYS */;
1033 /*!40000 ALTER TABLE `db_script_string` ENABLE KEYS */;
1034 UNLOCK TABLES;
1037 -- Table structure for table `disenchant_loot_template`
1040 DROP TABLE IF EXISTS `disenchant_loot_template`;
1041 CREATE TABLE `disenchant_loot_template` (
1042   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Recommended id selection: item_level*100 + item_quality',
1043   `item` mediumint(8) unsigned NOT NULL default '0',
1044   `ChanceOrQuestChance` float NOT NULL default '100',
1045   `groupid` tinyint(3) unsigned NOT NULL default '0',
1046   `mincountOrRef` mediumint(9) NOT NULL default '1',
1047   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1048   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1049   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1050   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1051   PRIMARY KEY  (`entry`,`item`)
1052 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1055 -- Dumping data for table `disenchant_loot_template`
1058 LOCK TABLES `disenchant_loot_template` WRITE;
1059 /*!40000 ALTER TABLE `disenchant_loot_template` DISABLE KEYS */;
1060 /*!40000 ALTER TABLE `disenchant_loot_template` ENABLE KEYS */;
1061 UNLOCK TABLES;
1064 -- Table structure for table `creature_ai_scripts`
1067 DROP TABLE IF EXISTS `creature_ai_scripts`;
1068 CREATE TABLE `creature_ai_scripts` (
1069   `id` int(11) unsigned NOT NULL COMMENT 'Identifier' AUTO_INCREMENT,
1070   `creature_id` int(11) unsigned NOT NULL default '0' COMMENT 'Creature Template Identifier',
1071   `event_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Event Type',
1072   `event_inverse_phase_mask` int(11) signed NOT NULL default '0' COMMENT 'Mask which phases this event will not trigger in',
1073   `event_chance` int(3) unsigned NOT NULL default '100',
1074   `event_flags` int(3) unsigned NOT NULL default '0',
1075   `event_param1` int(11) signed NOT NULL default '0',
1076   `event_param2` int(11) signed NOT NULL default '0',
1077   `event_param3` int(11) signed NOT NULL default '0',
1078   `event_param4` int(11) signed NOT NULL default '0',
1079   `action1_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1080   `action1_param1` int(11) signed NOT NULL default '0',
1081   `action1_param2` int(11) signed NOT NULL default '0',
1082   `action1_param3` int(11) signed NOT NULL default '0',
1083   `action2_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1084   `action2_param1` int(11) signed NOT NULL default '0',
1085   `action2_param2` int(11) signed NOT NULL default '0',
1086   `action2_param3` int(11) signed NOT NULL default '0',
1087   `action3_type` tinyint(5) unsigned NOT NULL default '0' COMMENT 'Action Type',
1088   `action3_param1` int(11) signed NOT NULL default '0',
1089   `action3_param2` int(11) signed NOT NULL default '0',
1090   `action3_param3` int(11) signed NOT NULL default '0',
1091   `comment` varchar(255) NOT NULL default '' COMMENT 'Event Comment',
1092   PRIMARY KEY (`id`)
1093 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Scripts';
1096 -- Dumping data for table `creature_ai_scripts`
1099 LOCK TABLES `creature_ai_scripts` WRITE;
1100 /*!40000 ALTER TABLE `creature_ai_scripts` DISABLE KEYS */;
1101 /*!40000 ALTER TABLE `creature_ai_scripts` ENABLE KEYS */;
1102 UNLOCK TABLES;
1105 -- Table structure for table `creature_ai_summons`
1108 DROP TABLE IF EXISTS `creature_ai_summons`;
1109 CREATE TABLE `creature_ai_summons` (
1110   `id` int(11) unsigned NOT NULL COMMENT 'Location Identifier' AUTO_INCREMENT,
1111   `position_x` float NOT NULL default '0',
1112   `position_y` float NOT NULL default '0',
1113   `position_z` float NOT NULL default '0',
1114   `orientation` float NOT NULL default '0',
1115   `spawntimesecs` int(11) unsigned NOT NULL default '120',
1116   `comment` varchar(255) NOT NULL default '' COMMENT 'Summon Comment',
1117   PRIMARY KEY (`id`)
1118 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='EventAI Summoning Locations';
1121 -- Dumping data for table `creature_ai_summons`
1124 LOCK TABLES `creature_ai_summons` WRITE;
1125 /*!40000 ALTER TABLE `creature_ai_summons` DISABLE KEYS */;
1126 /*!40000 ALTER TABLE `creature_ai_summons` ENABLE KEYS */;
1127 UNLOCK TABLES;
1130 -- Table structure for table `creature_ai_texts`
1133 DROP TABLE IF EXISTS `creature_ai_texts`;
1134 CREATE TABLE `creature_ai_texts` (
1135   `entry` mediumint(8) NOT NULL,
1136   `content_default` text NOT NULL,
1137   `content_loc1` text,
1138   `content_loc2` text,
1139   `content_loc3` text,
1140   `content_loc4` text,
1141   `content_loc5` text,
1142   `content_loc6` text,
1143   `content_loc7` text,
1144   `content_loc8` text,
1145   `sound` mediumint(8) unsigned NOT NULL DEFAULT '0',
1146   `type` tinyint(3) unsigned NOT NULL DEFAULT '0',
1147   `language` tinyint(3) unsigned NOT NULL DEFAULT '0',
1148   `emote` smallint(5) unsigned NOT NULL DEFAULT '0',
1149   `comment` text,
1150   PRIMARY KEY (`entry`)
1151 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Script Texts';
1154 -- Dumping data for table `creature_ai_texts`
1157 LOCK TABLES `creature_ai_texts` WRITE;
1158 /*!40000 ALTER TABLE `creature_ai_texts` DISABLE KEYS */;
1159 /*!40000 ALTER TABLE `creature_ai_texts` ENABLE KEYS */;
1160 UNLOCK TABLES;
1163 -- Table structure for table `event_scripts`
1166 DROP TABLE IF EXISTS `event_scripts`;
1167 CREATE TABLE `event_scripts` (
1168   `id` mediumint(8) unsigned NOT NULL default '0',
1169   `delay` int(10) unsigned NOT NULL default '0',
1170   `command` mediumint(8) unsigned NOT NULL default '0',
1171   `datalong` mediumint(8) unsigned NOT NULL default '0',
1172   `datalong2` int(10) unsigned NOT NULL default '0',
1173   `dataint` int(11) NOT NULL default '0',
1174   `x` float NOT NULL default '0',
1175   `y` float NOT NULL default '0',
1176   `z` float NOT NULL default '0',
1177   `o` float NOT NULL default '0'
1178 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1181 -- Dumping data for table `event_scripts`
1184 LOCK TABLES `event_scripts` WRITE;
1185 /*!40000 ALTER TABLE `event_scripts` DISABLE KEYS */;
1186 /*!40000 ALTER TABLE `event_scripts` ENABLE KEYS */;
1187 UNLOCK TABLES;
1190 -- Table structure for table `exploration_basexp`
1193 DROP TABLE IF EXISTS `exploration_basexp`;
1194 CREATE TABLE `exploration_basexp` (
1195   `level` tinyint(4) NOT NULL default '0',
1196   `basexp` mediumint(9) NOT NULL default '0',
1197   PRIMARY KEY  (`level`)
1198 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Exploration System';
1201 -- Dumping data for table `exploration_basexp`
1204 LOCK TABLES `exploration_basexp` WRITE;
1205 /*!40000 ALTER TABLE `exploration_basexp` DISABLE KEYS */;
1206 INSERT INTO `exploration_basexp` VALUES
1207 (0,0),
1208 (1,5),
1209 (2,15),
1210 (3,25),
1211 (4,35),
1212 (5,45),
1213 (6,55),
1214 (7,65),
1215 (8,70),
1216 (9,80),
1217 (10,85),
1218 (11,90),
1219 (12,90),
1220 (13,90),
1221 (14,100),
1222 (15,105),
1223 (16,115),
1224 (17,125),
1225 (18,135),
1226 (19,145),
1227 (20,155),
1228 (21,165),
1229 (22,175),
1230 (23,185),
1231 (24,195),
1232 (25,200),
1233 (26,210),
1234 (27,220),
1235 (28,230),
1236 (29,240),
1237 (30,245),
1238 (31,250),
1239 (32,255),
1240 (33,265),
1241 (34,270),
1242 (35,275),
1243 (36,280),
1244 (37,285),
1245 (38,285),
1246 (39,300),
1247 (40,315),
1248 (41,330),
1249 (42,345),
1250 (43,360),
1251 (44,375),
1252 (45,390),
1253 (46,405),
1254 (47,420),
1255 (48,440),
1256 (49,455),
1257 (50,470),
1258 (51,490),
1259 (52,510),
1260 (53,530),
1261 (54,540),
1262 (55,560),
1263 (56,580),
1264 (57,600),
1265 (58,620),
1266 (59,640),
1267 (60,660),
1268 (61,970),
1269 (62,1000),
1270 (63,1050),
1271 (64,1080),
1272 (65,1100),
1273 (66,1130),
1274 (67,1160),
1275 (68,1200),
1276 (69,1230),
1277 (70,1250);
1278 /*!40000 ALTER TABLE `exploration_basexp` ENABLE KEYS */;
1279 UNLOCK TABLES;
1282 -- Table structure for table `fishing_loot_template`
1285 DROP TABLE IF EXISTS `fishing_loot_template`;
1286 CREATE TABLE `fishing_loot_template` (
1287   `entry` mediumint(8) unsigned NOT NULL default '0',
1288   `item` mediumint(8) unsigned NOT NULL default '0',
1289   `ChanceOrQuestChance` float NOT NULL default '100',
1290   `groupid` tinyint(3) unsigned NOT NULL default '0',
1291   `mincountOrRef` mediumint(9) NOT NULL default '1',
1292   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1293   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1294   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1295   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1296   PRIMARY KEY  (`entry`,`item`)
1297 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1300 -- Dumping data for table `fishing_loot_template`
1303 LOCK TABLES `fishing_loot_template` WRITE;
1304 /*!40000 ALTER TABLE `fishing_loot_template` DISABLE KEYS */;
1305 /*!40000 ALTER TABLE `fishing_loot_template` ENABLE KEYS */;
1306 UNLOCK TABLES;
1309 -- Table structure for table `game_event`
1312 DROP TABLE IF EXISTS `game_event`;
1313 CREATE TABLE `game_event` (
1314   `entry` mediumint(8) unsigned NOT NULL COMMENT 'Entry of the game event',
1315   `start_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Absolute start date, the event will never start before',
1316   `end_time` timestamp NOT NULL default '0000-00-00 00:00:00' COMMENT 'Absolute end date, the event will never start afler',
1317   `occurence` bigint(20) unsigned NOT NULL default '86400' COMMENT 'Delay in hours between occurences of the event',
1318   `length` bigint(20) unsigned NOT NULL default '43200' COMMENT 'Length in hours of the event',
1319   `holiday` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Client side holiday id',
1320   `description` varchar(255) default NULL COMMENT 'Description of the event displayed in console',
1321   PRIMARY KEY  (`entry`)
1322 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1325 -- Dumping data for table `game_event`
1328 LOCK TABLES `game_event` WRITE;
1329 /*!40000 ALTER TABLE `game_event` DISABLE KEYS */;
1330 /*!40000 ALTER TABLE `game_event` ENABLE KEYS */;
1331 UNLOCK TABLES;
1334 -- Table structure for table `game_event_creature`
1337 DROP TABLE IF EXISTS `game_event_creature`;
1338 CREATE TABLE `game_event_creature` (
1339   `guid` int(10) unsigned NOT NULL,
1340   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
1341   PRIMARY KEY  (`guid`)
1342 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1345 -- Dumping data for table `game_event_creature`
1348 LOCK TABLES `game_event_creature` WRITE;
1349 /*!40000 ALTER TABLE `game_event_creature` DISABLE KEYS */;
1350 /*!40000 ALTER TABLE `game_event_creature` ENABLE KEYS */;
1351 UNLOCK TABLES;
1354 -- Table structure for table `game_event_creature_quest`
1357 DROP TABLE IF EXISTS `game_event_creature_quest`;
1358 CREATE TABLE `game_event_creature_quest` (
1359   `id` mediumint(8) unsigned NOT NULL default '0',
1360   `quest` mediumint(8) unsigned NOT NULL default '0',
1361   `event` smallint(5) unsigned NOT NULL default '0',
1362   PRIMARY KEY  (`id`,`quest`)
1363 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1366 -- Dumping data for table `game_event_creature_quest`
1369 LOCK TABLES `game_event_creature_quest` WRITE;
1370 /*!40000 ALTER TABLE `game_event_creature_quest` DISABLE KEYS */;
1371 /*!40000 ALTER TABLE `game_event_creature_quest` ENABLE KEYS */;
1372 UNLOCK TABLES;
1375 -- Table structure for table `game_event_gameobject`
1378 DROP TABLE IF EXISTS `game_event_gameobject`;
1379 CREATE TABLE `game_event_gameobject` (
1380   `guid` int(10) unsigned NOT NULL,
1381   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
1382   PRIMARY KEY  (`guid`)
1383 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1386 -- Dumping data for table `game_event_gameobject`
1389 LOCK TABLES `game_event_gameobject` WRITE;
1390 /*!40000 ALTER TABLE `game_event_gameobject` DISABLE KEYS */;
1391 /*!40000 ALTER TABLE `game_event_gameobject` ENABLE KEYS */;
1392 UNLOCK TABLES;
1395 -- Table structure for table `game_event_model_equip`
1398 DROP TABLE IF EXISTS `game_event_model_equip`;
1399 CREATE TABLE `game_event_model_equip` (
1400   `guid` int(10) unsigned NOT NULL default '0',
1401   `modelid` mediumint(8) unsigned NOT NULL default '0',
1402   `equipment_id` mediumint(8) unsigned NOT NULL default '0',
1403   `event` smallint(5) unsigned NOT NULL default '0',
1404   PRIMARY KEY  (`guid`)
1405 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1408 -- Dumping data for table `game_event_model_equip`
1411 LOCK TABLES `game_event_model_equip` WRITE;
1412 /*!40000 ALTER TABLE `game_event_model_equip` DISABLE KEYS */;
1413 /*!40000 ALTER TABLE `game_event_model_equip` ENABLE KEYS */;
1414 UNLOCK TABLES;
1417 -- Table structure for table `game_graveyard_zone`
1420 DROP TABLE IF EXISTS `game_graveyard_zone`;
1421 CREATE TABLE `game_graveyard_zone` (
1422   `id` mediumint(8) unsigned NOT NULL default '0',
1423   `ghost_zone` mediumint(8) unsigned NOT NULL default '0',
1424   `faction` smallint(5) unsigned NOT NULL default '0',
1425   PRIMARY KEY  (`id`,`ghost_zone`)
1426 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Trigger System';
1429 -- Dumping data for table `game_graveyard_zone`
1432 LOCK TABLES `game_graveyard_zone` WRITE;
1433 /*!40000 ALTER TABLE `game_graveyard_zone` DISABLE KEYS */;
1434 /*!40000 ALTER TABLE `game_graveyard_zone` ENABLE KEYS */;
1435 UNLOCK TABLES;
1438 -- Table structure for table `game_tele`
1441 DROP TABLE IF EXISTS `game_tele`;
1442 CREATE TABLE `game_tele` (
1443   `id` mediumint(8) unsigned NOT NULL auto_increment,
1444   `position_x` float NOT NULL default '0',
1445   `position_y` float NOT NULL default '0',
1446   `position_z` float NOT NULL default '0',
1447   `orientation` float NOT NULL default '0',
1448   `map` smallint(5) unsigned NOT NULL default '0',
1449   `name` varchar(100) NOT NULL default '',
1450   PRIMARY KEY  (`id`)
1451 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tele Command';
1454 -- Dumping data for table `game_tele`
1457 LOCK TABLES `game_tele` WRITE;
1458 /*!40000 ALTER TABLE `game_tele` DISABLE KEYS */;
1459 /*!40000 ALTER TABLE `game_tele` ENABLE KEYS */;
1460 UNLOCK TABLES;
1463 -- Table structure for table `game_weather`
1466 DROP TABLE IF EXISTS `game_weather`;
1467 CREATE TABLE `game_weather` (
1468   `zone` mediumint(8) unsigned NOT NULL default '0',
1469   `spring_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1470   `spring_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1471   `spring_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1472   `summer_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1473   `summer_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1474   `summer_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1475   `fall_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1476   `fall_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1477   `fall_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1478   `winter_rain_chance` tinyint(3) unsigned NOT NULL default '25',
1479   `winter_snow_chance` tinyint(3) unsigned NOT NULL default '25',
1480   `winter_storm_chance` tinyint(3) unsigned NOT NULL default '25',
1481   PRIMARY KEY  (`zone`)
1482 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Weather System';
1485 -- Dumping data for table `game_weather`
1488 LOCK TABLES `game_weather` WRITE;
1489 /*!40000 ALTER TABLE `game_weather` DISABLE KEYS */;
1490 /*!40000 ALTER TABLE `game_weather` ENABLE KEYS */;
1491 UNLOCK TABLES;
1494 -- Table structure for table `gameobject`
1497 DROP TABLE IF EXISTS `gameobject`;
1498 CREATE TABLE `gameobject` (
1499   `guid` int(10) unsigned NOT NULL auto_increment COMMENT 'Global Unique Identifier',
1500   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Gameobject Identifier',
1501   `map` smallint(5) unsigned NOT NULL default '0' COMMENT 'Map Identifier',
1502   `spawnMask` tinyint(3) unsigned NOT NULL default '1',
1503   `phaseMask` smallint(5) unsigned NOT NULL default '1',
1504   `position_x` float NOT NULL default '0',
1505   `position_y` float NOT NULL default '0',
1506   `position_z` float NOT NULL default '0',
1507   `orientation` float NOT NULL default '0',
1508   `rotation0` float NOT NULL default '0',
1509   `rotation1` float NOT NULL default '0',
1510   `rotation2` float NOT NULL default '0',
1511   `rotation3` float NOT NULL default '0',
1512   `spawntimesecs` int(11) NOT NULL default '0',
1513   `animprogress` tinyint(3) unsigned NOT NULL default '0',
1514   `state` tinyint(3) unsigned NOT NULL default '0',
1515   PRIMARY KEY  (`guid`)
1516 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
1519 -- Dumping data for table `gameobject`
1522 LOCK TABLES `gameobject` WRITE;
1523 /*!40000 ALTER TABLE `gameobject` DISABLE KEYS */;
1524 /*!40000 ALTER TABLE `gameobject` ENABLE KEYS */;
1525 UNLOCK TABLES;
1528 -- Table structure for table `gameobject_battleground`
1531 DROP TABLE IF EXISTS `gameobject_battleground`;
1532 CREATE TABLE `gameobject_battleground` (
1533     `guid` int(10) unsigned NOT NULL COMMENT 'GameObject\'s GUID',
1534     `event1` tinyint(3) unsigned NOT NULL COMMENT 'main event',
1535     `event2` tinyint(3) unsigned NOT NULL COMMENT 'sub event',
1536     PRIMARY KEY  (`guid`)
1537 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='GameObject battleground indexing system';
1540 -- Dumping data for table `gameobject_battleground`
1543 LOCK TABLES `gameobject_battleground` WRITE;
1544 /*!40000 ALTER TABLE `gameobject_battleground` DISABLE KEYS */;
1545 /*!40000 ALTER TABLE `gameobject_battleground` ENABLE KEYS */;
1546 UNLOCK TABLES;
1549 -- Table structure for table `gameobject_involvedrelation`
1552 DROP TABLE IF EXISTS `gameobject_involvedrelation`;
1553 CREATE TABLE `gameobject_involvedrelation` (
1554   `id` mediumint(8) unsigned NOT NULL default '0',
1555   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1556   PRIMARY KEY  (`id`,`quest`)
1557 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1560 -- Dumping data for table `gameobject_involvedrelation`
1563 LOCK TABLES `gameobject_involvedrelation` WRITE;
1564 /*!40000 ALTER TABLE `gameobject_involvedrelation` DISABLE KEYS */;
1565 /*!40000 ALTER TABLE `gameobject_involvedrelation` ENABLE KEYS */;
1566 UNLOCK TABLES;
1569 -- Table structure for table `gameobject_loot_template`
1572 DROP TABLE IF EXISTS `gameobject_loot_template`;
1573 CREATE TABLE `gameobject_loot_template` (
1574   `entry` mediumint(8) unsigned NOT NULL default '0',
1575   `item` mediumint(8) unsigned NOT NULL default '0',
1576   `ChanceOrQuestChance` float NOT NULL default '100',
1577   `groupid` tinyint(3) unsigned NOT NULL default '0',
1578   `mincountOrRef` mediumint(9) NOT NULL default '1',
1579   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1580   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1581   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1582   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1583   PRIMARY KEY  (`entry`,`item`)
1584 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1587 -- Dumping data for table `gameobject_loot_template`
1590 LOCK TABLES `gameobject_loot_template` WRITE;
1591 /*!40000 ALTER TABLE `gameobject_loot_template` DISABLE KEYS */;
1592 /*!40000 ALTER TABLE `gameobject_loot_template` ENABLE KEYS */;
1593 UNLOCK TABLES;
1596 -- Table structure for table `gameobject_questrelation`
1599 DROP TABLE IF EXISTS `gameobject_questrelation`;
1600 CREATE TABLE `gameobject_questrelation` (
1601   `id` mediumint(8) unsigned NOT NULL default '0',
1602   `quest` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
1603   PRIMARY KEY  (`id`,`quest`)
1604 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1607 -- Dumping data for table `gameobject_questrelation`
1610 LOCK TABLES `gameobject_questrelation` WRITE;
1611 /*!40000 ALTER TABLE `gameobject_questrelation` DISABLE KEYS */;
1612 /*!40000 ALTER TABLE `gameobject_questrelation` ENABLE KEYS */;
1613 UNLOCK TABLES;
1616 -- Table structure for table `gameobject_respawn`
1619 DROP TABLE IF EXISTS `gameobject_respawn`;
1620 CREATE TABLE `gameobject_respawn` (
1621   `guid` int(10) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
1622   `respawntime` bigint(20) NOT NULL default '0',
1623   `instance` mediumint(8) unsigned NOT NULL default '0',
1624   PRIMARY KEY  (`guid`,`instance`),
1625   KEY `instance` (`instance`)
1626 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Grid Loading System';
1629 -- Dumping data for table `gameobject_respawn`
1632 LOCK TABLES `gameobject_respawn` WRITE;
1633 /*!40000 ALTER TABLE `gameobject_respawn` DISABLE KEYS */;
1634 /*!40000 ALTER TABLE `gameobject_respawn` ENABLE KEYS */;
1635 UNLOCK TABLES;
1638 -- Table structure for table `gameobject_scripts`
1641 DROP TABLE IF EXISTS `gameobject_scripts`;
1642 CREATE TABLE `gameobject_scripts` (
1643   `id` mediumint(8) unsigned NOT NULL default '0',
1644   `delay` int(10) unsigned NOT NULL default '0',
1645   `command` mediumint(8) unsigned NOT NULL default '0',
1646   `datalong` mediumint(8) unsigned NOT NULL default '0',
1647   `datalong2` int(10) unsigned NOT NULL default '0',
1648   `dataint` int(11) NOT NULL default '0',
1649   `x` float NOT NULL default '0',
1650   `y` float NOT NULL default '0',
1651   `z` float NOT NULL default '0',
1652   `o` float NOT NULL default '0'
1653 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1656 -- Dumping data for table `gameobject_scripts`
1659 LOCK TABLES `gameobject_scripts` WRITE;
1660 /*!40000 ALTER TABLE `gameobject_scripts` DISABLE KEYS */;
1661 /*!40000 ALTER TABLE `gameobject_scripts` ENABLE KEYS */;
1662 UNLOCK TABLES;
1665 -- Table structure for table `gameobject_template`
1668 DROP TABLE IF EXISTS `gameobject_template`;
1669 CREATE TABLE `gameobject_template` (
1670   `entry` mediumint(8) unsigned NOT NULL default '0',
1671   `type` tinyint(3) unsigned NOT NULL default '0',
1672   `displayId` mediumint(8) unsigned NOT NULL default '0',
1673   `name` varchar(100) NOT NULL default '',
1674   `IconName` varchar(100) NOT NULL default '',
1675   `castBarCaption` varchar(100) NOT NULL default '',
1676   `unk1` varchar(100) NOT NULL default '',
1677   `faction` smallint(5) unsigned NOT NULL default '0',
1678   `flags` int(10) unsigned NOT NULL default '0',
1679   `size` float NOT NULL default '1',
1680   `questItem1` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1681   `questItem2` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1682   `questItem3` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1683   `questItem4` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1684   `data0` int(10) unsigned NOT NULL default '0',
1685   `data1` int(10) unsigned NOT NULL default '0',
1686   `data2` int(10) unsigned NOT NULL default '0',
1687   `data3` int(10) unsigned NOT NULL default '0',
1688   `data4` int(10) unsigned NOT NULL default '0',
1689   `data5` int(10) unsigned NOT NULL default '0',
1690   `data6` int(10) unsigned NOT NULL default '0',
1691   `data7` int(10) unsigned NOT NULL default '0',
1692   `data8` int(10) unsigned NOT NULL default '0',
1693   `data9` int(10) unsigned NOT NULL default '0',
1694   `data10` int(10) unsigned NOT NULL default '0',
1695   `data11` int(10) unsigned NOT NULL default '0',
1696   `data12` int(10) unsigned NOT NULL default '0',
1697   `data13` int(10) unsigned NOT NULL default '0',
1698   `data14` int(10) unsigned NOT NULL default '0',
1699   `data15` int(10) unsigned NOT NULL default '0',
1700   `data16` int(10) unsigned NOT NULL default '0',
1701   `data17` int(10) unsigned NOT NULL default '0',
1702   `data18` int(10) unsigned NOT NULL default '0',
1703   `data19` int(10) unsigned NOT NULL default '0',
1704   `data20` int(10) unsigned NOT NULL default '0',
1705   `data21` int(10) unsigned NOT NULL default '0',
1706   `data22` int(10) unsigned NOT NULL default '0',
1707   `data23` int(10) unsigned NOT NULL default '0',
1708   `ScriptName` varchar(64) NOT NULL default '',
1709   PRIMARY KEY  (`entry`)
1710 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Gameobject System';
1713 -- Dumping data for table `gameobject_template`
1716 LOCK TABLES `gameobject_template` WRITE;
1717 /*!40000 ALTER TABLE `gameobject_template` DISABLE KEYS */;
1718 /*!40000 ALTER TABLE `gameobject_template` ENABLE KEYS */;
1719 UNLOCK TABLES;
1722 -- Table structure for table `instance_template`
1725 DROP TABLE IF EXISTS `instance_template`;
1726 CREATE TABLE `instance_template` (
1727   `map` smallint(5) unsigned NOT NULL,
1728   `parent` int(10) unsigned NOT NULL,
1729   `levelMin` tinyint(3) unsigned NOT NULL default '0',
1730   `levelMax` tinyint(3) unsigned NOT NULL default '0',
1731   `maxPlayers` tinyint(3) unsigned NOT NULL default '0',
1732   `maxPlayersHeroic` tinyint(3) unsigned NOT NULL default '0',
1733   `reset_delay` int(10) unsigned NOT NULL default '0',
1734   `startLocX` float default NULL,
1735   `startLocY` float default NULL,
1736   `startLocZ` float default NULL,
1737   `startLocO` float default NULL,
1738   `script` varchar(128) NOT NULL default '',
1739   PRIMARY KEY  (`map`)
1740 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
1743 -- Dumping data for table `instance_template`
1746 LOCK TABLES `instance_template` WRITE;
1747 /*!40000 ALTER TABLE `instance_template` DISABLE KEYS */;
1748 /*!40000 ALTER TABLE `instance_template` ENABLE KEYS */;
1749 UNLOCK TABLES;
1752 -- Table structure for table `item_enchantment_template`
1755 DROP TABLE IF EXISTS `item_enchantment_template`;
1756 CREATE TABLE `item_enchantment_template` (
1757   `entry` mediumint(8) unsigned NOT NULL default '0',
1758   `ench` mediumint(8) unsigned NOT NULL default '0',
1759   `chance` float unsigned NOT NULL default '0',
1760   PRIMARY KEY  (`entry`,`ench`)
1761 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item Random Enchantment System';
1764 -- Dumping data for table `item_enchantment_template`
1767 LOCK TABLES `item_enchantment_template` WRITE;
1768 /*!40000 ALTER TABLE `item_enchantment_template` DISABLE KEYS */;
1769 /*!40000 ALTER TABLE `item_enchantment_template` ENABLE KEYS */;
1770 UNLOCK TABLES;
1773 -- Table structure for table `item_loot_template`
1776 DROP TABLE IF EXISTS `item_loot_template`;
1777 CREATE TABLE `item_loot_template` (
1778   `entry` mediumint(8) unsigned NOT NULL default '0',
1779   `item` mediumint(8) unsigned NOT NULL default '0',
1780   `ChanceOrQuestChance` float NOT NULL default '100',
1781   `groupid` tinyint(3) unsigned NOT NULL default '0',
1782   `mincountOrRef` mediumint(9) NOT NULL default '1',
1783   `maxcount` tinyint(3) unsigned NOT NULL default '1',
1784   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
1785   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
1786   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
1787   PRIMARY KEY  (`entry`,`item`)
1788 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
1791 -- Dumping data for table `item_loot_template`
1794 LOCK TABLES `item_loot_template` WRITE;
1795 /*!40000 ALTER TABLE `item_loot_template` DISABLE KEYS */;
1796 /*!40000 ALTER TABLE `item_loot_template` ENABLE KEYS */;
1797 UNLOCK TABLES;
1800 -- Table structure for table `item_required_target`
1803 DROP TABLE IF EXISTS `item_required_target`;
1804 CREATE TABLE `item_required_target` (
1805   `entry` mediumint(8) unsigned NOT NULL,
1806   `type` tinyint(3) unsigned NOT NULL default '0',
1807   `targetEntry` mediumint(8) unsigned NOT NULL default '0',
1808   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
1809 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
1812 -- Dumping data for table `item_required_target`
1815 LOCK TABLES `item_required_target` WRITE;
1816 /*!40000 ALTER TABLE `item_required_target` DISABLE KEYS */;
1817 /*!40000 ALTER TABLE `item_required_target` ENABLE KEYS */;
1818 UNLOCK TABLES;
1821 -- Table structure for table `item_template`
1824 DROP TABLE IF EXISTS `item_template`;
1825 CREATE TABLE `item_template` (
1826   `entry` mediumint(8) unsigned NOT NULL default '0',
1827   `class` tinyint(3) unsigned NOT NULL default '0',
1828   `subclass` tinyint(3) unsigned NOT NULL default '0',
1829   `unk0` int(11) NOT NULL default '-1',
1830   `name` varchar(255) NOT NULL default '',
1831   `displayid` mediumint(8) unsigned NOT NULL default '0',
1832   `Quality` tinyint(3) unsigned NOT NULL default '0',
1833   `Flags` int(10) unsigned NOT NULL default '0',
1834   `BuyCount` tinyint(3) unsigned NOT NULL default '1',
1835   `BuyPrice` int(10) unsigned NOT NULL default '0',
1836   `SellPrice` int(10) unsigned NOT NULL default '0',
1837   `InventoryType` tinyint(3) unsigned NOT NULL default '0',
1838   `AllowableClass` mediumint(9) NOT NULL default '-1',
1839   `AllowableRace` mediumint(9) NOT NULL default '-1',
1840   `ItemLevel` tinyint(3) unsigned NOT NULL default '0',
1841   `RequiredLevel` tinyint(3) unsigned NOT NULL default '0',
1842   `RequiredSkill` smallint(5) unsigned NOT NULL default '0',
1843   `RequiredSkillRank` smallint(5) unsigned NOT NULL default '0',
1844   `requiredspell` mediumint(8) unsigned NOT NULL default '0',
1845   `requiredhonorrank` mediumint(8) unsigned NOT NULL default '0',
1846   `RequiredCityRank` mediumint(8) unsigned NOT NULL default '0',
1847   `RequiredReputationFaction` smallint(5) unsigned NOT NULL default '0',
1848   `RequiredReputationRank` smallint(5) unsigned NOT NULL default '0',
1849   `maxcount` smallint(5) NOT NULL default '-1',
1850   `stackable` smallint(5) NOT NULL default '1',
1851   `ContainerSlots` tinyint(3) unsigned NOT NULL default '0',
1852   `StatsCount` tinyint(3) unsigned NOT NULL default '0',
1853   `stat_type1` tinyint(3) unsigned NOT NULL default '0',
1854   `stat_value1` smallint(6) NOT NULL default '0',
1855   `stat_type2` tinyint(3) unsigned NOT NULL default '0',
1856   `stat_value2` smallint(6) NOT NULL default '0',
1857   `stat_type3` tinyint(3) unsigned NOT NULL default '0',
1858   `stat_value3` smallint(6) NOT NULL default '0',
1859   `stat_type4` tinyint(3) unsigned NOT NULL default '0',
1860   `stat_value4` smallint(6) NOT NULL default '0',
1861   `stat_type5` tinyint(3) unsigned NOT NULL default '0',
1862   `stat_value5` smallint(6) NOT NULL default '0',
1863   `stat_type6` tinyint(3) unsigned NOT NULL default '0',
1864   `stat_value6` smallint(6) NOT NULL default '0',
1865   `stat_type7` tinyint(3) unsigned NOT NULL default '0',
1866   `stat_value7` smallint(6) NOT NULL default '0',
1867   `stat_type8` tinyint(3) unsigned NOT NULL default '0',
1868   `stat_value8` smallint(6) NOT NULL default '0',
1869   `stat_type9` tinyint(3) unsigned NOT NULL default '0',
1870   `stat_value9` smallint(6) NOT NULL default '0',
1871   `stat_type10` tinyint(3) unsigned NOT NULL default '0',
1872   `stat_value10` smallint(6) NOT NULL default '0',
1873   `ScalingStatDistribution` smallint(6) NOT NULL default '0',
1874   `ScalingStatValue` int(6) unsigned NOT NULL default '0',
1875   `dmg_min1` float NOT NULL default '0',
1876   `dmg_max1` float NOT NULL default '0',
1877   `dmg_type1` tinyint(3) unsigned NOT NULL default '0',
1878   `dmg_min2` float NOT NULL default '0',
1879   `dmg_max2` float NOT NULL default '0',
1880   `dmg_type2` tinyint(3) unsigned NOT NULL default '0',
1881   `armor` smallint(5) unsigned NOT NULL default '0',
1882   `holy_res` tinyint(3) unsigned NOT NULL default '0',
1883   `fire_res` tinyint(3) unsigned NOT NULL default '0',
1884   `nature_res` tinyint(3) unsigned NOT NULL default '0',
1885   `frost_res` tinyint(3) unsigned NOT NULL default '0',
1886   `shadow_res` tinyint(3) unsigned NOT NULL default '0',
1887   `arcane_res` tinyint(3) unsigned NOT NULL default '0',
1888   `delay` smallint(5) unsigned NOT NULL default '1000',
1889   `ammo_type` tinyint(3) unsigned NOT NULL default '0',
1890   `RangedModRange` float NOT NULL default '0',
1891   `spellid_1` mediumint(8) unsigned NOT NULL default '0',
1892   `spelltrigger_1` tinyint(3) unsigned NOT NULL default '0',
1893   `spellcharges_1` tinyint(4) NOT NULL default '0',
1894   `spellppmRate_1` float NOT NULL default '0',
1895   `spellcooldown_1` int(11) NOT NULL default '-1',
1896   `spellcategory_1` smallint(5) unsigned NOT NULL default '0',
1897   `spellcategorycooldown_1` int(11) NOT NULL default '-1',
1898   `spellid_2` mediumint(8) unsigned NOT NULL default '0',
1899   `spelltrigger_2` tinyint(3) unsigned NOT NULL default '0',
1900   `spellcharges_2` tinyint(4) NOT NULL default '0',
1901   `spellppmRate_2` float NOT NULL default '0',
1902   `spellcooldown_2` int(11) NOT NULL default '-1',
1903   `spellcategory_2` smallint(5) unsigned NOT NULL default '0',
1904   `spellcategorycooldown_2` int(11) NOT NULL default '-1',
1905   `spellid_3` mediumint(8) unsigned NOT NULL default '0',
1906   `spelltrigger_3` tinyint(3) unsigned NOT NULL default '0',
1907   `spellcharges_3` tinyint(4) NOT NULL default '0',
1908   `spellppmRate_3` float NOT NULL default '0',
1909   `spellcooldown_3` int(11) NOT NULL default '-1',
1910   `spellcategory_3` smallint(5) unsigned NOT NULL default '0',
1911   `spellcategorycooldown_3` int(11) NOT NULL default '-1',
1912   `spellid_4` mediumint(8) unsigned NOT NULL default '0',
1913   `spelltrigger_4` tinyint(3) unsigned NOT NULL default '0',
1914   `spellcharges_4` tinyint(4) NOT NULL default '0',
1915   `spellppmRate_4` float NOT NULL default '0',
1916   `spellcooldown_4` int(11) NOT NULL default '-1',
1917   `spellcategory_4` smallint(5) unsigned NOT NULL default '0',
1918   `spellcategorycooldown_4` int(11) NOT NULL default '-1',
1919   `spellid_5` mediumint(8) unsigned NOT NULL default '0',
1920   `spelltrigger_5` tinyint(3) unsigned NOT NULL default '0',
1921   `spellcharges_5` tinyint(4) NOT NULL default '0',
1922   `spellppmRate_5` float NOT NULL default '0',
1923   `spellcooldown_5` int(11) NOT NULL default '-1',
1924   `spellcategory_5` smallint(5) unsigned NOT NULL default '0',
1925   `spellcategorycooldown_5` int(11) NOT NULL default '-1',
1926   `bonding` tinyint(3) unsigned NOT NULL default '0',
1927   `description` varchar(255) NOT NULL default '',
1928   `PageText` mediumint(8) unsigned NOT NULL default '0',
1929   `LanguageID` tinyint(3) unsigned NOT NULL default '0',
1930   `PageMaterial` tinyint(3) unsigned NOT NULL default '0',
1931   `startquest` mediumint(8) unsigned NOT NULL default '0',
1932   `lockid` mediumint(8) unsigned NOT NULL default '0',
1933   `Material` tinyint(4) NOT NULL default '0',
1934   `sheath` tinyint(3) unsigned NOT NULL default '0',
1935   `RandomProperty` mediumint(8) unsigned NOT NULL default '0',
1936   `RandomSuffix` mediumint(8) unsigned NOT NULL default '0',
1937   `block` mediumint(8) unsigned NOT NULL default '0',
1938   `itemset` mediumint(8) unsigned NOT NULL default '0',
1939   `MaxDurability` smallint(5) unsigned NOT NULL default '0',
1940   `area` mediumint(8) unsigned NOT NULL default '0',
1941   `Map` smallint(6) NOT NULL default '0',
1942   `BagFamily` mediumint(9) NOT NULL default '0',
1943   `TotemCategory` mediumint(9) NOT NULL default '0',
1944   `socketColor_1` tinyint(4) NOT NULL default '0',
1945   `socketContent_1` mediumint(9) NOT NULL default '0',
1946   `socketColor_2` tinyint(4) NOT NULL default '0',
1947   `socketContent_2` mediumint(9) NOT NULL default '0',
1948   `socketColor_3` tinyint(4) NOT NULL default '0',
1949   `socketContent_3` mediumint(9) NOT NULL default '0',
1950   `socketBonus` mediumint(9) NOT NULL default '0',
1951   `GemProperties` mediumint(9) NOT NULL default '0',
1952   `RequiredDisenchantSkill` smallint(6) NOT NULL default '-1',
1953   `ArmorDamageModifier` float NOT NULL default '0',
1954   `Duration` int(11) NOT NULL default '0' COMMENT 'Duration in seconds. Negative value means realtime, postive value ingame time',
1955   `ItemLimitCategory` smallint(6) NOT NULL default '0',
1956   `HolidayId` int(11) UNSIGNED DEFAULT '0' NOT NULL,
1957   `ScriptName` varchar(64) NOT NULL default '',
1958   `DisenchantID` mediumint(8) unsigned NOT NULL default '0',
1959   `FoodType` tinyint(3) unsigned NOT NULL default '0',
1960   `minMoneyLoot` int(10) unsigned NOT NULL default '0',
1961   `maxMoneyLoot` int(10) unsigned NOT NULL default '0',
1962   PRIMARY KEY  (`entry`),
1963   KEY `items_index` (`class`)
1964 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
1967 -- Dumping data for table `item_template`
1970 LOCK TABLES `item_template` WRITE;
1971 /*!40000 ALTER TABLE `item_template` DISABLE KEYS */;
1972 INSERT INTO `item_template` VALUES
1973 (25,2,7,-1,'Worn Shortsword',1542,1,0,1,35,7,21,32767,511,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,1,0,0,0,1,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1974 (35,2,10,-1,'Bent Staff',472,1,0,1,47,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,2,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1975 (36,2,4,-1,'Worn Mace',5194,1,0,1,38,7,21,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,1900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1976 (37,2,0,-1,'Worn Axe',14029,1,0,1,38,7,21,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,3,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1977 (38,4,0,-1,'Recruit\'s Shirt',9891,1,0,1,1,1,4,-1,-1,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1978 (39,4,1,-1,'Recruit\'s Pants',9892,0,0,1,5,1,7,32767,511,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1979 (40,4,0,-1,'Recruit\'s Boots',10141,1,0,1,4,1,8,32767,511,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1980 (43,4,0,-1,'Squire\'s Boots',9938,1,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1981 (44,4,1,-1,'Squire\'s Pants',9937,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1982 (45,4,0,-1,'Squire\'s Shirt',3265,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1983 (47,4,0,-1,'Footpad\'s Shoes',9915,1,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1984 (48,4,1,-1,'Footpad\'s Pants',9913,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1985 (49,4,0,-1,'Footpad\'s Shirt',9906,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1986 (51,4,0,-1,'Neophyte\'s Boots',9946,1,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1987 (52,4,1,-1,'Neophyte\'s Pants',9945,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1988 (53,4,0,-1,'Neophyte\'s Shirt',9944,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1989 (55,4,0,-1,'Apprentice\'s Boots',9929,1,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1990 (56,4,1,-1,'Apprentice\'s Robe',12647,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1991 (57,4,1,-1,'Acolyte\'s Robe',12645,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1992 (59,4,0,-1,'Acolyte\'s Shoes',3261,1,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1993 (117,0,0,-1,'Tough Jerky',2473,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1994 (120,4,1,-1,'Thug Pants',10006,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1995 (121,4,0,-1,'Thug Boots',10008,1,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1996 (127,4,0,-1,'Trapper\'s Shirt',9996,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1997 (139,4,1,-1,'Brawler\'s Pants',9988,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1998 (140,4,0,-1,'Brawler\'s Boots',9992,1,0,1,4,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
1999 (147,4,1,-1,'Rugged Trapper\'s Pants',9975,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2000 (148,4,0,-1,'Rugged Trapper\'s Shirt',9976,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2001 (153,4,2,-1,'Primitive Kilt',10050,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,8,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2002 (154,4,0,-1,'Primitive Mantle',10058,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2003 (159,0,0,-1,'Refreshing Spring Water',18084,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,430,0,-1,0,-1,59,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2004 (1395,4,1,-1,'Apprentice\'s Pants',9924,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2005 (1396,4,1,-1,'Acolyte\'s Pants',3260,0,0,1,4,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2006 (2070,0,0,-1,'Darnassian Bleu',6353,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2007 (2092,2,15,-1,'Worn Dagger',6442,1,0,1,35,7,13,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,1600,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,3,0,0,0,0,16,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2008 (2101,11,2,-1,'Light Quiver',21328,1,0,1,4,1,18,2047,255,1,1,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,14824,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2009 (2102,11,3,-1,'Small Ammo Pouch',1816,1,0,1,4,1,18,2047,255,1,1,0,0,0,0,0,0,0,0,1,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,14824,1,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2010 (2105,4,0,-1,'Thug Shirt',10005,1,0,1,5,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2011 (2361,2,5,-1,'Battleworn Hammer',8690,1,0,1,45,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,1,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2012 (2362,4,6,-1,'Worn Wooden Shield',18730,0,0,1,7,1,14,32767,511,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,4,0,0,1,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2013 (2504,2,2,-1,'Worn Shortbow',8106,1,0,1,29,5,15,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,2300,2,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2014 (2508,2,3,-1,'Old Blunderbuss',6606,1,0,1,27,5,26,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,2300,3,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2015 (2512,6,2,-1,'Rough Arrow',5996,1,0,1,10,0,24,2047,255,5,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,3000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2016 (2516,6,3,-1,'Light Shot',5998,1,0,1,10,0,24,2047,255,5,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,3000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2017 (2947,15,0,-1,'Small Throwing Knife',16754,1,0,1,15,0,0,2047,255,3,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2000,4,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2018 (3661,2,10,-1,'Handcrafted Staff',18530,1,0,1,45,9,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,2,2,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2019 (4536,0,0,-1,'Shiny Red Apple',6410,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2020 (4540,0,0,-1,'Tough Hunk of Bread',6399,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2021 (4604,0,0,-1,'Forest Mushroom Cap',15852,1,0,6,25,1,0,2047,255,5,1,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,433,0,-1,0,-1,11,1000,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2022 (6096,4,0,-1,'Apprentice\'s Shirt',2163,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2023 (6097,4,0,-1,'Acolyte\'s Shirt',2470,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2024 (6098,4,1,-1,'Neophyte\'s Robe',12679,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2025 (6119,4,1,-1,'Neophyte\'s Robe',12681,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2026 (6123,4,1,-1,'Novice\'s Robe',12683,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2027 (6124,4,1,-1,'Novice\'s Pants',9987,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2028 (6125,4,0,-1,'Brawler\'s Harness',9995,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2029 (6126,4,1,-1,'Trapper\'s Pants',10002,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2030 (6127,4,0,-1,'Trapper\'s Boots',10003,1,0,1,5,1,8,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2031 (6129,4,1,-1,'Acolyte\'s Robe',12646,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2032 (6134,4,0,-1,'Primitive Mantle',10108,1,0,1,1,1,4,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2033 (6135,4,2,-1,'Primitive Kilt',10109,0,0,1,5,1,7,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,8,0,0,0,0,0,30,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2034 (6139,4,1,-1,'Novice\'s Robe',12684,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2035 (6140,4,1,-1,'Apprentice\'s Robe',12649,0,0,1,4,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2036 (6144,4,1,-1,'Neophyte\'s Robe',12680,0,0,1,5,1,20,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,7,0,0,0,0,0,35,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2037 (6948,15,0,-1,'Hearthstone',6418,1,64,1,0,0,0,32767,511,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8690,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,'',0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2038 (12282,2,1,-1,'Worn Battleaxe',22291,1,0,1,43,8,17,2047,255,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,2900,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,1,0,0,0,0,25,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2039 (14646,12,0,-1,'Northshire Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5805,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2040 (14647,12,0,-1,'Coldridge Valley Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5841,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2041 (14648,12,0,-1,'Shadowglen Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5842,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2042 (14649,12,0,-1,'Valley of Trials Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5843,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2043 (14650,12,0,-1,'Camp Narache Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5844,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2044 (14651,12,0,-1,'Deathknell Gift Voucher',18499,1,0,1,0,0,0,2047,255,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1000,0,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,'',0,0,0,5847,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2045 (25861,2,16,-1,'Crude Throwing Axe',20777,1,0,1,15,0,25,2047,255,3,1,0,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,0,0,0,2000,4,0,0,0,0,0,-1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,'',0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'internalItemHandler',0,0,0,0),
2046 (34648,4,4,-1,'Acherus Knight\'s Greaves',51496,2,32768,1,51,10,8,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,10,7,12,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,392,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,55,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2047 (34649,4,4,-1,'Acherus Knight\'s Gauntlets',51498,2,32768,1,34,6,10,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,15,7,6,32,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,356,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2048 (34650,4,4,-1,'Acherus Knight\'s Tunic',51494,2,32768,1,69,13,5,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,20,7,11,32,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,570,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,115,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2049 (34651,4,4,-1,'Acherus Knight\'s Girdle',51497,2,32768,1,35,7,6,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,2,4,10,32,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,320,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2050 (34652,4,4,-1,'Acherus Knight\'s Hood',51495,2,32768,1,52,10,1,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,15,7,15,32,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2051 (34653,4,4,-1,'Acherus Knight\'s Wristguard',51500,2,32768,1,36,7,9,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,7,31,7,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,40,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2052 (34655,4,4,-1,'Acherus Knight\'s Pauldrons',51501,2,32768,1,54,10,3,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,9,7,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,427,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,70,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2053 (34656,4,4,-1,'Acherus Knight\'s Cover',51499,2,32768,1,73,14,7,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,13,3,10,7,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,499,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,6,0,0,0,0,0,85,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2054 (34657,4,0,-1,'Choker of Damnation',6539,2,32768,1,2303,575,2,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,9,7,8,31,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2055 (34658,4,0,-1,'Plague Band',963,2,32768,1,534,133,11,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,6,7,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2056 (34659,4,1,-1,'Acherus Knight\'s Shroud',49738,2,32768,1,31,6,16,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,2,4,12,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2057 (38145,1,0,-1,'Deathweave Bag',1282,1,32768,1,0,0,18,-1,-1,35,0,0,0,0,0,0,0,0,0,1,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2058 (38147,4,0,-1,'Corrupted Band',963,2,32768,1,534,133,11,-1,-1,60,55,0,0,0,0,0,0,0,0,1,0,3,4,11,3,6,32,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,1,'',0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0),
2059 (41751,0,5,-1,'Black Mushroom',36728,1,0,1,100,5,0,-1,-1,65,55,0,0,0,0,0,0,0,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27094,0,-1,0,0,11,1000,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,0,0,0,-1,0,-1,0,'',0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,0,0,0,0,'',0,0,0,0);
2060 /*!40000 ALTER TABLE `item_template` ENABLE KEYS */;
2061 UNLOCK TABLES;
2064 -- Table structure for table `locales_achievement_reward`
2067 DROP TABLE IF EXISTS `locales_achievement_reward`;
2068 CREATE TABLE `locales_achievement_reward` (
2069   `entry` mediumint(8) unsigned NOT NULL default '0',
2070   `subject_loc1` varchar(100) NOT NULL default '',
2071   `subject_loc2` varchar(100) NOT NULL default '',
2072   `subject_loc3` varchar(100) NOT NULL default '',
2073   `subject_loc4` varchar(100) NOT NULL default '',
2074   `subject_loc5` varchar(100) NOT NULL default '',
2075   `subject_loc6` varchar(100) NOT NULL default '',
2076   `subject_loc7` varchar(100) NOT NULL default '',
2077   `subject_loc8` varchar(100) NOT NULL default '',
2078   `text_loc1` text default NULL,
2079   `text_loc2` text default NULL,
2080   `text_loc3` text default NULL,
2081   `text_loc4` text default NULL,
2082   `text_loc5` text default NULL,
2083   `text_loc6` text default NULL,
2084   `text_loc7` text default NULL,
2085   `text_loc8` text default NULL,
2086   PRIMARY KEY  (`entry`)
2087 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2090 -- Dumping data for table `locales_achievement_reward`
2093 LOCK TABLES `locales_achievement_reward` WRITE;
2094 /*!40000 ALTER TABLE `locales_achievement_reward` DISABLE KEYS */;
2095 /*!40000 ALTER TABLE `locales_achievement_reward` ENABLE KEYS */;
2096 UNLOCK TABLES;
2099 -- Table structure for table `locales_creature`
2102 DROP TABLE IF EXISTS `locales_creature`;
2103 CREATE TABLE `locales_creature` (
2104   `entry` mediumint(8) unsigned NOT NULL default '0',
2105   `name_loc1` varchar(100) NOT NULL default '',
2106   `name_loc2` varchar(100) NOT NULL default '',
2107   `name_loc3` varchar(100) NOT NULL default '',
2108   `name_loc4` varchar(100) NOT NULL default '',
2109   `name_loc5` varchar(100) NOT NULL default '',
2110   `name_loc6` varchar(100) NOT NULL default '',
2111   `name_loc7` varchar(100) NOT NULL default '',
2112   `name_loc8` varchar(100) NOT NULL default '',
2113   `subname_loc1` varchar(100) default NULL,
2114   `subname_loc2` varchar(100) default NULL,
2115   `subname_loc3` varchar(100) default NULL,
2116   `subname_loc4` varchar(100) default NULL,
2117   `subname_loc5` varchar(100) default NULL,
2118   `subname_loc6` varchar(100) default NULL,
2119   `subname_loc7` varchar(100) default NULL,
2120   `subname_loc8` varchar(100) default NULL,
2121   PRIMARY KEY  (`entry`)
2122 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2125 -- Dumping data for table `locales_creature`
2128 LOCK TABLES `locales_creature` WRITE;
2129 /*!40000 ALTER TABLE `locales_creature` DISABLE KEYS */;
2130 /*!40000 ALTER TABLE `locales_creature` ENABLE KEYS */;
2131 UNLOCK TABLES;
2134 -- Table structure for table `locales_gameobject`
2137 DROP TABLE IF EXISTS `locales_gameobject`;
2138 CREATE TABLE `locales_gameobject` (
2139   `entry` mediumint(8) unsigned NOT NULL default '0',
2140   `name_loc1` varchar(100) NOT NULL default '',
2141   `name_loc2` varchar(100) NOT NULL default '',
2142   `name_loc3` varchar(100) NOT NULL default '',
2143   `name_loc4` varchar(100) NOT NULL default '',
2144   `name_loc5` varchar(100) NOT NULL default '',
2145   `name_loc6` varchar(100) NOT NULL default '',
2146   `name_loc7` varchar(100) NOT NULL default '',
2147   `name_loc8` varchar(100) NOT NULL default '',
2148   `castbarcaption_loc1` varchar(100) NOT NULL default '',
2149   `castbarcaption_loc2` varchar(100) NOT NULL default '',
2150   `castbarcaption_loc3` varchar(100) NOT NULL default '',
2151   `castbarcaption_loc4` varchar(100) NOT NULL default '',
2152   `castbarcaption_loc5` varchar(100) NOT NULL default '',
2153   `castbarcaption_loc6` varchar(100) NOT NULL default '',
2154   `castbarcaption_loc7` varchar(100) NOT NULL default '',
2155   `castbarcaption_loc8` varchar(100) NOT NULL default '',
2156   PRIMARY KEY  (`entry`)
2157 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2160 -- Dumping data for table `locales_gameobject`
2163 LOCK TABLES `locales_gameobject` WRITE;
2164 /*!40000 ALTER TABLE `locales_gameobject` DISABLE KEYS */;
2165 /*!40000 ALTER TABLE `locales_gameobject` ENABLE KEYS */;
2166 UNLOCK TABLES;
2169 -- Table structure for table `locales_item`
2172 DROP TABLE IF EXISTS `locales_item`;
2173 CREATE TABLE `locales_item` (
2174   `entry` mediumint(8) unsigned NOT NULL default '0',
2175   `name_loc1` varchar(100) NOT NULL default '',
2176   `name_loc2` varchar(100) NOT NULL default '',
2177   `name_loc3` varchar(100) NOT NULL default '',
2178   `name_loc4` varchar(100) NOT NULL default '',
2179   `name_loc5` varchar(100) NOT NULL default '',
2180   `name_loc6` varchar(100) NOT NULL default '',
2181   `name_loc7` varchar(100) NOT NULL default '',
2182   `name_loc8` varchar(100) NOT NULL default '',
2183   `description_loc1` varchar(255) default NULL,
2184   `description_loc2` varchar(255) default NULL,
2185   `description_loc3` varchar(255) default NULL,
2186   `description_loc4` varchar(255) default NULL,
2187   `description_loc5` varchar(255) default NULL,
2188   `description_loc6` varchar(255) default NULL,
2189   `description_loc7` varchar(255) default NULL,
2190   `description_loc8` varchar(255) default NULL,
2191   PRIMARY KEY  (`entry`)
2192 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2195 -- Dumping data for table `locales_item`
2198 LOCK TABLES `locales_item` WRITE;
2199 /*!40000 ALTER TABLE `locales_item` DISABLE KEYS */;
2200 /*!40000 ALTER TABLE `locales_item` ENABLE KEYS */;
2201 UNLOCK TABLES;
2205 -- Table structure for table `locales_npc_option`
2208 DROP TABLE IF EXISTS `locales_npc_option`;
2209 CREATE TABLE `locales_npc_option` (
2210   `entry` mediumint(8) unsigned NOT NULL default '0',
2211   `option_text_loc1` text,
2212   `option_text_loc2` text,
2213   `option_text_loc3` text,
2214   `option_text_loc4` text,
2215   `option_text_loc5` text,
2216   `option_text_loc6` text,
2217   `option_text_loc7` text,
2218   `option_text_loc8` text,
2219   `box_text_loc1` text,
2220   `box_text_loc2` text,
2221   `box_text_loc3` text,
2222   `box_text_loc4` text,
2223   `box_text_loc5` text,
2224   `box_text_loc6` text,
2225   `box_text_loc7` text,
2226   `box_text_loc8` text,
2227   PRIMARY KEY  (`entry`)
2228 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2231 -- Dumping data for table `locales_npc_option`
2234 LOCK TABLES `locales_npc_option` WRITE;
2235 /*!40000 ALTER TABLE `locales_npc_option` DISABLE KEYS */;
2236 /*!40000 ALTER TABLE `locales_npc_option` ENABLE KEYS */;
2237 UNLOCK TABLES;
2240 -- Table structure for table `locales_npc_text`
2243 DROP TABLE IF EXISTS `locales_npc_text`;
2244 CREATE TABLE `locales_npc_text` (
2245   `entry` mediumint(8) unsigned NOT NULL default '0',
2246   `Text0_0_loc1` longtext,
2247   `Text0_0_loc2` longtext,
2248   `Text0_0_loc3` longtext,
2249   `Text0_0_loc4` longtext,
2250   `Text0_0_loc5` longtext,
2251   `Text0_0_loc6` longtext,
2252   `Text0_0_loc7` longtext,
2253   `Text0_0_loc8` longtext,
2254   `Text0_1_loc1` longtext,
2255   `Text0_1_loc2` longtext,
2256   `Text0_1_loc3` longtext,
2257   `Text0_1_loc4` longtext,
2258   `Text0_1_loc5` longtext,
2259   `Text0_1_loc6` longtext,
2260   `Text0_1_loc7` longtext,
2261   `Text0_1_loc8` longtext,
2262   `Text1_0_loc1` longtext,
2263   `Text1_0_loc2` longtext,
2264   `Text1_0_loc3` longtext,
2265   `Text1_0_loc4` longtext,
2266   `Text1_0_loc5` longtext,
2267   `Text1_0_loc6` longtext,
2268   `Text1_0_loc7` longtext,
2269   `Text1_0_loc8` longtext,
2270   `Text1_1_loc1` longtext,
2271   `Text1_1_loc2` longtext,
2272   `Text1_1_loc3` longtext,
2273   `Text1_1_loc4` longtext,
2274   `Text1_1_loc5` longtext,
2275   `Text1_1_loc6` longtext,
2276   `Text1_1_loc7` longtext,
2277   `Text1_1_loc8` longtext,
2278   `Text2_0_loc1` longtext,
2279   `Text2_0_loc2` longtext,
2280   `Text2_0_loc3` longtext,
2281   `Text2_0_loc4` longtext,
2282   `Text2_0_loc5` longtext,
2283   `Text2_0_loc6` longtext,
2284   `Text2_0_loc7` longtext,
2285   `Text2_0_loc8` longtext,
2286   `Text2_1_loc1` longtext,
2287   `Text2_1_loc2` longtext,
2288   `Text2_1_loc3` longtext,
2289   `Text2_1_loc4` longtext,
2290   `Text2_1_loc5` longtext,
2291   `Text2_1_loc6` longtext,
2292   `Text2_1_loc7` longtext,
2293   `Text2_1_loc8` longtext,
2294   `Text3_0_loc1` longtext,
2295   `Text3_0_loc2` longtext,
2296   `Text3_0_loc3` longtext,
2297   `Text3_0_loc4` longtext,
2298   `Text3_0_loc5` longtext,
2299   `Text3_0_loc6` longtext,
2300   `Text3_0_loc7` longtext,
2301   `Text3_0_loc8` longtext,
2302   `Text3_1_loc1` longtext,
2303   `Text3_1_loc2` longtext,
2304   `Text3_1_loc3` longtext,
2305   `Text3_1_loc4` longtext,
2306   `Text3_1_loc5` longtext,
2307   `Text3_1_loc6` longtext,
2308   `Text3_1_loc7` longtext,
2309   `Text3_1_loc8` longtext,
2310   `Text4_0_loc1` longtext,
2311   `Text4_0_loc2` longtext,
2312   `Text4_0_loc3` longtext,
2313   `Text4_0_loc4` longtext,
2314   `Text4_0_loc5` longtext,
2315   `Text4_0_loc6` longtext,
2316   `Text4_0_loc7` longtext,
2317   `Text4_0_loc8` longtext,
2318   `Text4_1_loc1` longtext,
2319   `Text4_1_loc2` longtext,
2320   `Text4_1_loc3` longtext,
2321   `Text4_1_loc4` longtext,
2322   `Text4_1_loc5` longtext,
2323   `Text4_1_loc6` longtext,
2324   `Text4_1_loc7` longtext,
2325   `Text4_1_loc8` longtext,
2326   `Text5_0_loc1` longtext,
2327   `Text5_0_loc2` longtext,
2328   `Text5_0_loc3` longtext,
2329   `Text5_0_loc4` longtext,
2330   `Text5_0_loc5` longtext,
2331   `Text5_0_loc6` longtext,
2332   `Text5_0_loc7` longtext,
2333   `Text5_0_loc8` longtext,
2334   `Text5_1_loc1` longtext,
2335   `Text5_1_loc2` longtext,
2336   `Text5_1_loc3` longtext,
2337   `Text5_1_loc4` longtext,
2338   `Text5_1_loc5` longtext,
2339   `Text5_1_loc6` longtext,
2340   `Text5_1_loc7` longtext,
2341   `Text5_1_loc8` longtext,
2342   `Text6_0_loc1` longtext,
2343   `Text6_0_loc2` longtext,
2344   `Text6_0_loc3` longtext,
2345   `Text6_0_loc4` longtext,
2346   `Text6_0_loc5` longtext,
2347   `Text6_0_loc6` longtext,
2348   `Text6_0_loc7` longtext,
2349   `Text6_0_loc8` longtext,
2350   `Text6_1_loc1` longtext,
2351   `Text6_1_loc2` longtext,
2352   `Text6_1_loc3` longtext,
2353   `Text6_1_loc4` longtext,
2354   `Text6_1_loc5` longtext,
2355   `Text6_1_loc6` longtext,
2356   `Text6_1_loc7` longtext,
2357   `Text6_1_loc8` longtext,
2358   `Text7_0_loc1` longtext,
2359   `Text7_0_loc2` longtext,
2360   `Text7_0_loc3` longtext,
2361   `Text7_0_loc4` longtext,
2362   `Text7_0_loc5` longtext,
2363   `Text7_0_loc6` longtext,
2364   `Text7_0_loc7` longtext,
2365   `Text7_0_loc8` longtext,
2366   `Text7_1_loc1` longtext,
2367   `Text7_1_loc2` longtext,
2368   `Text7_1_loc3` longtext,
2369   `Text7_1_loc4` longtext,
2370   `Text7_1_loc5` longtext,
2371   `Text7_1_loc6` longtext,
2372   `Text7_1_loc7` longtext,
2373   `Text7_1_loc8` longtext,
2374   PRIMARY KEY  (`entry`)
2375 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2378 -- Dumping data for table `locales_npc_text`
2381 LOCK TABLES `locales_npc_text` WRITE;
2382 /*!40000 ALTER TABLE `locales_npc_text` DISABLE KEYS */;
2383 /*!40000 ALTER TABLE `locales_npc_text` ENABLE KEYS */;
2384 UNLOCK TABLES;
2387 -- Table structure for table `locales_page_text`
2390 DROP TABLE IF EXISTS `locales_page_text`;
2391 CREATE TABLE `locales_page_text` (
2392   `entry` mediumint(8) unsigned NOT NULL default '0',
2393   `Text_loc1` longtext,
2394   `Text_loc2` longtext,
2395   `Text_loc3` longtext,
2396   `Text_loc4` longtext,
2397   `Text_loc5` longtext,
2398   `Text_loc6` longtext,
2399   `Text_loc7` longtext,
2400   `Text_loc8` longtext,
2401   PRIMARY KEY  (`entry`)
2402 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2405 -- Dumping data for table `locales_page_text`
2408 LOCK TABLES `locales_page_text` WRITE;
2409 /*!40000 ALTER TABLE `locales_page_text` DISABLE KEYS */;
2410 /*!40000 ALTER TABLE `locales_page_text` ENABLE KEYS */;
2411 UNLOCK TABLES;
2414 -- Table structure for table `locales_points_of_interest`
2417 DROP TABLE IF EXISTS `locales_points_of_interest`;
2418 CREATE TABLE `locales_points_of_interest` (
2419   `entry` mediumint(8) unsigned NOT NULL default '0',
2420   `icon_name_loc1` text,
2421   `icon_name_loc2` text,
2422   `icon_name_loc3` text,
2423   `icon_name_loc4` text,
2424   `icon_name_loc5` text,
2425   `icon_name_loc6` text,
2426   `icon_name_loc7` text,
2427   `icon_name_loc8` text,
2428   PRIMARY KEY  (`entry`)
2429 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2432 -- Dumping data for table `locales_points_of_interest`
2435 LOCK TABLES `locales_points_of_interest` WRITE;
2436 /*!40000 ALTER TABLE `locales_points_of_interest` DISABLE KEYS */;
2437 /*!40000 ALTER TABLE `locales_points_of_interest` ENABLE KEYS */;
2438 UNLOCK TABLES;
2441 -- Table structure for table `locales_quest`
2444 DROP TABLE IF EXISTS `locales_quest`;
2445 CREATE TABLE `locales_quest` (
2446   `entry` mediumint(8) unsigned NOT NULL default '0',
2447   `Title_loc1` text,
2448   `Title_loc2` text,
2449   `Title_loc3` text,
2450   `Title_loc4` text,
2451   `Title_loc5` text,
2452   `Title_loc6` text,
2453   `Title_loc7` text,
2454   `Title_loc8` text,
2455   `Details_loc1` text,
2456   `Details_loc2` text,
2457   `Details_loc3` text,
2458   `Details_loc4` text,
2459   `Details_loc5` text,
2460   `Details_loc6` text,
2461   `Details_loc7` text,
2462   `Details_loc8` text,
2463   `Objectives_loc1` text,
2464   `Objectives_loc2` text,
2465   `Objectives_loc3` text,
2466   `Objectives_loc4` text,
2467   `Objectives_loc5` text,
2468   `Objectives_loc6` text,
2469   `Objectives_loc7` text,
2470   `Objectives_loc8` text,
2471   `OfferRewardText_loc1` text,
2472   `OfferRewardText_loc2` text,
2473   `OfferRewardText_loc3` text,
2474   `OfferRewardText_loc4` text,
2475   `OfferRewardText_loc5` text,
2476   `OfferRewardText_loc6` text,
2477   `OfferRewardText_loc7` text,
2478   `OfferRewardText_loc8` text,
2479   `RequestItemsText_loc1` text,
2480   `RequestItemsText_loc2` text,
2481   `RequestItemsText_loc3` text,
2482   `RequestItemsText_loc4` text,
2483   `RequestItemsText_loc5` text,
2484   `RequestItemsText_loc6` text,
2485   `RequestItemsText_loc7` text,
2486   `RequestItemsText_loc8` text,
2487   `EndText_loc1` text,
2488   `EndText_loc2` text,
2489   `EndText_loc3` text,
2490   `EndText_loc4` text,
2491   `EndText_loc5` text,
2492   `EndText_loc6` text,
2493   `EndText_loc7` text,
2494   `EndText_loc8` text,
2495   `ObjectiveText1_loc1` text,
2496   `ObjectiveText1_loc2` text,
2497   `ObjectiveText1_loc3` text,
2498   `ObjectiveText1_loc4` text,
2499   `ObjectiveText1_loc5` text,
2500   `ObjectiveText1_loc6` text,
2501   `ObjectiveText1_loc7` text,
2502   `ObjectiveText1_loc8` text,
2503   `ObjectiveText2_loc1` text,
2504   `ObjectiveText2_loc2` text,
2505   `ObjectiveText2_loc3` text,
2506   `ObjectiveText2_loc4` text,
2507   `ObjectiveText2_loc5` text,
2508   `ObjectiveText2_loc6` text,
2509   `ObjectiveText2_loc7` text,
2510   `ObjectiveText2_loc8` text,
2511   `ObjectiveText3_loc1` text,
2512   `ObjectiveText3_loc2` text,
2513   `ObjectiveText3_loc3` text,
2514   `ObjectiveText3_loc4` text,
2515   `ObjectiveText3_loc5` text,
2516   `ObjectiveText3_loc6` text,
2517   `ObjectiveText3_loc7` text,
2518   `ObjectiveText3_loc8` text,
2519   `ObjectiveText4_loc1` text,
2520   `ObjectiveText4_loc2` text,
2521   `ObjectiveText4_loc3` text,
2522   `ObjectiveText4_loc4` text,
2523   `ObjectiveText4_loc5` text,
2524   `ObjectiveText4_loc6` text,
2525   `ObjectiveText4_loc7` text,
2526   `ObjectiveText4_loc8` text,
2527   PRIMARY KEY  (`entry`)
2528 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2531 -- Dumping data for table `locales_quest`
2534 LOCK TABLES `locales_quest` WRITE;
2535 /*!40000 ALTER TABLE `locales_quest` DISABLE KEYS */;
2536 /*!40000 ALTER TABLE `locales_quest` ENABLE KEYS */;
2537 UNLOCK TABLES;
2540 -- Table structure for table `mangos_string`
2543 DROP TABLE IF EXISTS `mangos_string`;
2544 CREATE TABLE `mangos_string` (
2545   `entry` mediumint(8) unsigned NOT NULL default '0',
2546   `content_default` text NOT NULL,
2547   `content_loc1` text,
2548   `content_loc2` text,
2549   `content_loc3` text,
2550   `content_loc4` text,
2551   `content_loc5` text,
2552   `content_loc6` text,
2553   `content_loc7` text,
2554   `content_loc8` text,
2555   PRIMARY KEY  (`entry`)
2556 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
2559 -- Dumping data for table `mangos_string`
2562 LOCK TABLES `mangos_string` WRITE;
2563 /*!40000 ALTER TABLE `mangos_string` DISABLE KEYS */;
2564 INSERT INTO `mangos_string` VALUES
2565 (1,'You should select a character or a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2566 (2,'You should select a creature.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2567 (3,'|cffff0000[System Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2568 (4,'|cffff0000[Event Message]: %s|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2569 (5,'There is no help for that command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2570 (6,'There is no such command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2571 (7,'There is no such subcommand',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2572 (8,'Command %s have subcommands:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2573 (9,'Commands available to you:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2574 (10,'Incorrect syntax.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2575 (11,'Your account level is: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2576 (12,'Online players: %u (max: %u) Queued players: %u (max: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2577 (13,'Server uptime: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2578 (14,'Player saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2579 (15,'All players saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2580 (16,'There are the following active GMs on this server:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2581 (17,'There are no GMs currently logged in on this server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2582 (18,'Cannot do that while flying.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2583 (19,'Cannot do that in Battlegrounds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2584 (20,'Target is flying you can\'t do that.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2585 (21,'%s is flying command failed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2586 (22,'You are not mounted so you can\'t dismount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2587 (23,'Cannot do that while fighting.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2588 (24,'You used it recently.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2589 (25,'Password not changed (unknown error)!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2590 (26,'The password was changed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2591 (27,'The new passwords do not match or the old password is wrong',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2592 (28,'Your account is now locked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2593 (29,'Your account is now unlocked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2594 (30,', rank ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2595 (31,' [known]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2596 (32,' [learn]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2597 (33,' [passive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2598 (34,' [talent]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2599 (35,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2600 (36,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2601 (37,' (offline)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2602 (38,'on',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2603 (39,'off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2604 (40,'You are: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2605 (41,'visible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2606 (42,'invisible',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2607 (43,'done',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2608 (44,'You',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2609 (45,' <unknown> ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2610 (46,'<error>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2611 (47,'<non-existing character>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2612 (48,'UNKNOWN',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2613 (49,'You must be at least level %u to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2614 (50,'You must be at least level %u and have item %s to enter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2615 (51,'Hello! Ready for some training?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2616 (52,'Invaid item count (%u) for item %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2617 (53,'Mail can\'t have more %u item stacks',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2618 (54,'The new passwords do not match',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2619 (55,'Your password can\'t be longer than 16 characters (client limit), password not changed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2620 (56,'Current Message of the day: \r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2621 (57,'Using World DB: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2622 (58,'Using script library: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2623 (59,'Using creature EventAI: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2624 (100,'Global notify: ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2625 (101,'Map: %u (%s) Zone: %u (%s) Area: %u (%s) Phase: %u\nX: %f Y: %f Z: %f Orientation: %f\ngrid[%u,%u]cell[%u,%u] InstanceID: %u\n ZoneX: %f ZoneY: %f\nGroundZ: %f FloorZ: %f Have height data (Map: %u VMap: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2626 (102,'%s is already being teleported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2627 (103,'You can summon a player to your instance only if he is in your party with you as leader.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2628 (104,'You cannot go to the player\'s instance because you are in a party now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2629 (105,'You can go to the player\'s instance while not being in his party only if your GM mode is on.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2630 (106,'You can not go to player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2631 (107,'You can not summon player %s from instance to instance.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2632 (108,'You are summoning %s%s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2633 (109,'You are being summoned by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2634 (110,'You are teleporting %s%s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2635 (111,'You are being teleported by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2636 (112,'Player (%s) does not exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2637 (113,'Appearing at %s\'s location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2638 (114,'%s is appearing to your location.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2639 (115,'Incorrect values.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2640 (116,'No character selected.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2641 (117,'%s is not in a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2642 (118,'You changed HP of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2643 (119,'%s changed your HP to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2644 (120,'You changed MANA of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2645 (121,'%s changed your MANA to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2646 (122,'You changed ENERGY of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2647 (123,'%s changed your ENERGY to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2648 (124,'Current energy: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2649 (125,'You changed rage of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2650 (126,'%s changed your rage to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2651 (127,'You changed level of %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2652 (128,'GUID %i, faction is %i, flags is %i, npcflag is %i, DY flag is %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2653 (129,'Wrong faction: %u (not found in factiontemplate.dbc).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2654 (130,'You changed GUID=%i \'s Faction to %i, flags to %i, npcflag to %i, dyflag to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2655 (131,'You changed the spellflatid=%i, val= %i, mark =%i to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2656 (132,'%s changed your spellflatid=%i, val= %i, mark =%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2657 (133,'%s has access to all taxi nodes now (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2658 (134,'%s has no more access to all taxi nodes now (only visited accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2659 (135,'%s has given you access to all taxi nodes (until logout).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2660 (136,'%s has removed access to all taxi nodes (only visited still accessible).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2661 (137,'You set all speeds to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2662 (138,'%s set all your speeds to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2663 (139,'You set the speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2664 (140,'%s set your speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2665 (141,'You set the swim speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2666 (142,'%s set your swim speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2667 (143,'You set the backwards run speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2668 (144,'%s set your backwards run speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2669 (145,'You set the fly speed to %2.2f from normal of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2670 (146,'%s set your fly speed to %2.2f from normal.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2671 (147,'You set the size %2.2f of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2672 (148,'%s set your size to %2.2f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2673 (149,'There is no such mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2674 (150,'You give a mount to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2675 (151,'%s gave you a mount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2676 (152,'USER1: %i, ADD: %i, DIF: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2677 (153,'You take all copper of %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2678 (154,'%s took you all of your copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2679 (155,'You take %i copper from %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2680 (156,'%s took %i copper from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2681 (157,'You give %i copper to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2682 (158,'%s gave you %i copper.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2683 (159,'You hear sound %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2684 (160,'USER2: %i, ADD: %i, RESULT: %i\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2685 (161,'Removed bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2686 (162,'Set bit %i in field %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2687 (163,'Teleport location table is empty!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2688 (164,'Teleport location not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2689 (165,'Requires search parameter.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2690 (166,'There are no teleport locations matching your request.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2691 (168,'Locations found are:\n %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2692 (169,'Mail sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2693 (170,'You try to hear sound %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2694 (171,'You can\'t teleport self to self!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2695 (172,'server console command',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2696 (173,'You changed runic power of %s to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2697 (174,'%s changed your runic power to %i/%i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2698 (175,'Liquid level: %f, ground: %f, type: %d, status: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2699 (200,'No selection.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2700 (201,'Object GUID is: lowpart %u highpart %X',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2701 (202,'The name was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2702 (203,'Error, name can only contain characters A-Z and a-z.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2703 (204,'The subname was too long by %i characters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2704 (205,'Not yet implemented',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2705 (206,'Item \'%i\' \'%s\' added to list with maxcount \'%i\' and incrtime \'%i\' and extendedcost \'%i\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2706 (207,'Item \'%i\' not found in database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2707 (208,'Item \'%i\' \'%s\' deleted from vendor list',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2708 (209,'Item \'%i\' not found in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2709 (210,'Item \'%i\' already in vendor list.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2710 (211,'Spells of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2711 (212,'Spells of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2712 (213,'Talents of %s reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2713 (214,'Talents of %s will reset at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2714 (215,'Your spells have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2715 (216,'Your talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2716 (217,'Unknown case \'%s\' for .resetall command. Type full correct case name.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2717 (218,'Spells will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2718 (219,'Talents will reset for all players at login. Strongly recommend re-login!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2719 (220,'Creature (GUID: %u) No waypoint found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2720 (221,'Creature (GUID: %u) Last waypoint not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2721 (222,'Creature (GUID: %u) No waypoint found - used \'wpguid\'. Now trying to find it by its position...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2722 (223,'Creature (GUID: %u) No waypoints found - This is a MaNGOS db problem (single float).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2723 (224,'Selected creature is ignored - provided GUID is used',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2724 (225,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2725 (226,'You must select a visual waypoint.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2726 (227,'No visual waypoints found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2727 (228,'Could not create visual waypoint with creatureID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2728 (229,'All visual waypoints removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2729 (230,'Could not create waypoint-creature with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2730 (231,'No GUID provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2731 (232,'No waypoint number provided.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2732 (233,'Argument required for \'%s\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2733 (234,'Waypoint %i added to GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2734 (235,'Waypoint %d added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2735 (236,'Waypoint changed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2736 (237,'Waypoint %s modified.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2737 (238,'WP export successfull.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2738 (239,'No waypoints found inside the database.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2739 (240,'File imported.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2740 (241,'Waypoint removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2741 (242,'Warning: Could not delete WP from the world with ID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2742 (243,'This happens if the waypoint is too far away from your char.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2743 (244,'The WP is deleted from the database, but not from the world here.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2744 (245,'They will disappear after a server restart.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2745 (246,'Waypoint %d: Info for creature: %s, GUID: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2746 (247,'Waittime: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2747 (248,'Model %d: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2748 (249,'Emote: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2749 (250,'Spell: %d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2750 (251,'Text%d (ID: %i): %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2751 (252,'AIScript: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2752 (253,'Forced rename for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2753 (254,'Forced rename for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2754 (255,'Waypoint-Creature (GUID: %u) Not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2755 (256,'Could not find NPC...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2756 (257,'Creature movement type set to \'%s\', waypoints removed (if any).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2757 (258,'Creature movement type set to \'%s\', waypoints were not removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2758 (259,'Incorrect value, use on or off',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2759 (260,'Value saved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2760 (261,'Value saved, you may need to rejoin or clean your client cache.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2761 (262,'Areatrigger ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2762 (263,'Target map or coordinates is invalid (X: %f Y: %f MapId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2763 (264,'Zone coordinates is invalid (X: %f Y: %f AreaId: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2764 (265,'Zone %u (%s) is part of instanceable map %u (%s)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2765 (266,'Nothing found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2766 (267,'Object not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2767 (268,'Creature not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2768 (269,'Warning: Mob found more than once - you will be teleported to the first one found in DB.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2769 (270,'Creature Removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2770 (271,'Creature moved.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2771 (272,'Creature (GUID:%u) must be on the same map as player!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2772 (273,'Game Object (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2773 (274,'Game Object (GUID: %u) has references in not found creature %u GO list, can\'t be deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2774 (275,'Game Object (GUID: %u) removed',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2775 (276,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) turned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2776 (277,'Game Object |cffffffff|Hgameobject:%d|h[%s]|h|r (GUID: %u) moved',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2777 (278,'You must select a vendor',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2778 (279,'You must send id for item',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2779 (280,'Vendor has too many items (max 128)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2780 (281,'You can\'t kick self, logout instead',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2781 (282,'Player %s kicked.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2782 (284,'Accepting Whisper: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2783 (285,'Accepting Whisper: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2784 (286,'Accepting Whisper: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2785 (287,'Creature (GUID: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2786 (288,'Tickets count: %i show new tickets: %s\n',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2787 (289,'New ticket from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2788 (290,'Ticket of %s (Last updated: %s):\n%s ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2789 (291,'New ticket show: ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2790 (292,'New ticket show: OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2791 (293,'Ticket %i doesn\'t exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2792 (294,'All tickets deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2793 (295,'Character %s ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2794 (296,'Ticket deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2795 (297,'Spawn distance changed to: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2796 (298,'Spawn time changed to: %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2797 (299,'The honor of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2798 (300,'Your chat has been disabled for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2799 (301,'You have disabled %s\'s chat for %u minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2800 (302,'Player\'s chat is already enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2801 (303,'Your chat has been enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2802 (304,'You have enabled %s\'s chat.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2803 (305, 'Faction %s (%u) reputation of %s was set to %5d!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2804 (306, 'The arena points of %s was set to %u!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2805 (307, 'No faction found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2806 (308, 'Faction %i unknown!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2807 (309, 'Invalid parameter %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2808 (310, 'delta must be between 0 and %d (inclusive)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2809 (311, '%d - |cffffffff|Hfaction:%d|h[%s]|h|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2810 (312, ' [visible]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2811 (313, ' [at war]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2812 (314, ' [peace forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2813 (315, ' [hidden]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2814 (316, ' [invisible forced]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2815 (317, ' [inactive]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2816 (318, 'Hated',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2817 (319, 'Hostile',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2818 (320, 'Unfriendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2819 (321, 'Neutral',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2820 (322, 'Friendly',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2821 (323, 'Honored',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2822 (324, 'Revered',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2823 (325, 'Exalted',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2824 (326, 'Faction %s (%u) can\'not have reputation.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2825 (327, ' [no reputation]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2826 (328,'Characters at account %s (Id: %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2827 (329,'  %s (GUID %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2828 (330,'No players found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2829 (331,'Extended item cost %u not exist',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2830 (332,'GM mode is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2831 (333,'GM mode is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2832 (334,'GM Chat Badge is ON',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2833 (335,'GM Chat Badge is OFF',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2834 (336,'You repair all %s''s items.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2835 (337,'All your items repaired by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2836 (338,'You set waterwalk mode %s for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2837 (339,'Your waterwalk mode %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2838 (340,'%s is now following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2839 (341,'%s is not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2840 (342,'%s is now not following you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2841 (343,'Creature (Entry: %u) cannot be tamed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2842 (344,'You already have pet.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2843 (345,'Forced customize for player %s will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2844 (346,'Forced customize for player %s (GUID #%u) will be requested at next login.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2845 (347,'TaxiNode ID %u not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2846 (348,'Game Object (Entry: %u) have invalid data and can\'t be spawned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2847 (400,'|cffff0000[System Message]:|rScripts reloaded',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2848 (401,'You change security level of account %s to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2849 (402,'%s changed your security level to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2850 (403,'You have low security level for this.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2851 (404,'Creature movement disabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2852 (405,'Creature movement enabled.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2853 (406,'Weather can\'t be changed for this zone.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2854 (407,'Weather system disabled at server.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2855 (408,'%s is banned for %s. Reason: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2856 (409,'%s is banned permanently for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2857 (410,'%s %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2858 (411,'%s unbanned.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2859 (412,'There was an error removing the ban on %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2860 (413,'Account not exist: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2861 (414,'There is no such character.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2862 (415,'There is no such IP in banlist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2863 (416,'Account %s has never been banned',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2864 (417,'Ban history for account %s:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2865 (418,'Ban Date: %s Bantime: %s Still active: %s  Reason: %s Set by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2866 (419,'Inf.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2867 (420,'Never',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2868 (421,'Yes',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2869 (422,'No',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2870 (423,'IP: %s\nBan Date: %s\nUnban Date: %s\nRemaining: %s\nReason: %s\nSet by: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2871 (424,'There is no matching IPban.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2872 (425,'There is no matching account.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2873 (426,'There is no banned account owning a character matching this part.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2874 (427,'The following IPs match your pattern:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2875 (428,'The following accounts match your query:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2876 (429,'You learned many spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2877 (430,'You learned all spells for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2878 (431,'You learned all talents for class.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2879 (432,'You learned all languages.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2880 (433,'You learned all craft skills and recipes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2881 (434,'Could not find \'%s\'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2882 (435,'Invalid item id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2883 (436,'No items found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2884 (437,'Invalid gameobject id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2885 (438,'Found items %u: %u ( inventory %u mail %u auction %u guild %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2886 (439,'Found gameobjects %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2887 (440,'Invalid creature id: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2888 (441,'Found creatures %u: %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2889 (442,'No area found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2890 (443,'No item sets found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2891 (444,'No skills found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2892 (445,'No spells found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2893 (446,'No quests found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2894 (447,'No creatures found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2895 (448,'No gameobjects found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2896 (449,'Graveyard #%u doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2897 (450,'Graveyard #%u already linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2898 (451,'Graveyard #%u linked to zone #%u (current).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2899 (452,'Graveyard #%u can\'t be linked to subzone or not existed zone #%u (internal error).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2900 (454,'No faction in Graveyard with id= #%u , fix your DB',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2901 (455,'invalid team, please fix database',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2902 (456,'any',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2903 (457,'alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2904 (458,'horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2905 (459,'Graveyard #%u (faction: %s) is nearest from linked to zone #%u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2906 (460,'Zone #%u doesn\'t have linked graveyards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2907 (461,'Zone #%u doesn\'t have linked graveyards for faction: %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2908 (462,'Teleport location already exists!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2909 (463,'Teleport location added.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2910 (464,'Teleport location NOT added: database error.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2911 (465,'Teleport location deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2912 (466,'No taxinodes found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2913 (467,'Target unit has %d auras:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2914 (468,'id: %d eff: %d type: %d duration: %d maxduration: %d name: %s%s%s caster: %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2915 (469,'Target unit has %d auras of type %d:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2916 (470,'id: %d eff: %d name: %s%s%s caster: %s %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2917 (471,'Quest %u not found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2918 (472,'Quest %u started from item. For correct work, please, add item to inventory and start quest in normal way: .additem %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2919 (473,'Quest removed.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2920 (474,' [rewarded]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2921 (475,' [complete]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2922 (476,' [active]',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2923 (477,'%s\'s Fly Mode %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2924 (478,'Opcode %u sent to %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2925 (479,'Character loaded successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2926 (480,'Failed to load the character!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2927 (481,'Character dumped successfully!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2928 (482,'Character dump failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2929 (483,'Spell %u broken and not allowed to cast or learn!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2930 (484,'Skill %u (%s) for player %s set to %u and current maximum set to %u (without permanent (talent) bonuses).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2931 (485,'Player %s must have skill %u (%s) before using this command.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2932 (486,'Invalid skill id (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2933 (487,'You learned default GM spells/skills.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2934 (488,'You already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2935 (489,'Target(%s) already know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2936 (490,'%s doesn\'t know that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2937 (491,'You already forgot that spell.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2938 (492,'All spell cooldowns removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2939 (493,'Spell %u cooldown removed for %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2940 (494,'Command : Additem, itemId = %i, amount = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2941 (495,'Command : Additemset, itemsetId = %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2942 (496,'Removed itemID = %i, amount = %i from %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2943 (497,'Cannot create item \'%i\' (amount: %i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2944 (498,'You need to provide a guild name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2945 (499,'Player not found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2946 (500,'Player already has a guild!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2947 (501,'Guild not created! (already exists?)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2948 (502,'No items from itemset \'%u\' found.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2949 (503,'The distance is: (3D) %f (2D) %f yards.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2950 (504,'Item \'%i\' \'%s\' Item Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2951 (505,'Item \'%i\' doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2952 (506,'Item \'%i\' \'%s\' Added to Slot %i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2953 (507,'Item save failed!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2954 (508,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2955 (509,'%d - sender: %s (guid: %u account: %u ) receiver: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2956 (510,'%d - owner: %s (guid: %u account: %u ) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2957 (511,'Wrong link type!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2958 (512,'%d - |cffffffff|Hitem:%d:0:0:0:0:0:0:0:0|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2959 (513,'%d - |cffffffff|Hquest:%d:%d|h[%s]|h|r %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2960 (514,'%d - |cffffffff|Hcreature_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2961 (515,'%d - |cffffffff|Hcreature:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2962 (516,'%d - |cffffffff|Hgameobject_entry:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2963 (517,'%d - |cffffffff|Hgameobject:%d|h[%s X:%f Y:%f Z:%f MapId:%d]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2964 (518,'%d - |cffffffff|Hitemset:%d|h[%s %s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2965 (519,'|cffffffff|Htele:%s|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2966 (520,'%d - |cffffffff|Hspell:%d|h[%s]|h|r ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2967 (521,'%d - |cffffffff|Hskill:%d|h[%s %s]|h|r %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2968 (522,'Game Object (Entry: %u) not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2969 (523,'>> Game Object %s (GUID: %u) at %f %f %f. Orientation %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2970 (524,'Selected object:\n|cffffffff|Hgameobject:%d|h[%s]|h|r GUID: %u ID: %u\nX: %f Y: %f Z: %f MapId: %u\nOrientation: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2971 (525,'>> Add Game Object \'%i\' (%s) (GUID: %i) added at \'%f %f %f\'.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2972 (526,'%s (lowguid: %u) movement generators stack:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2973 (527,'   Idle',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2974 (528,'   Random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2975 (529,'   Waypoint',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2976 (530,'   Animal random',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2977 (531,'   Confused',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2978 (532,'   Targeted to player %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2979 (533,'   Targeted to creature %s (lowguid %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2980 (534,'   Targeted to <NULL>',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2981 (535,'   Home movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2982 (536,'   Home movement used for player?!?',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2983 (537,'   Taxi flight',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2984 (538,'   Unknown movement generator (%u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2985 (539,'Player selected NPC\nGUID: %u.\nFaction: %u.\nnpcFlags: %u.\nEntry: %u.\nDisplayID: %u (Native: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2986 (540,'Level: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2987 (541,'Health (base): %u. (max): %u. (current): %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2988 (542,'Unit Flags: %u.\nDynamic Flags: %u.\nFaction Template: %u.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2989 (543,'Loot: %u Pickpocket: %u Skinning: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2990 (544,'Position: %f %f %f.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2991 (545,'*** Is a vendor!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2992 (546,'*** Is a trainer!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2993 (547,'InstanceID: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2994 (548,'Player%s %s (guid: %u) Account: %s (id: %u) GMLevel: %u Last IP: %s Last login: %s Latency: %ums',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2995 (549,'Played time: %s Level: %u Money: %ug%us%uc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2996 (550,'Command .pinfo doesn\'t support \'rep\' option for offline players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2997 (551,'%s has explored all zones now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2998 (552,'%s has no more explored zones.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
2999 (553,'%s has explored all zones for you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3000 (554,'%s has hidden all zones from you.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3001 (555,'Hover enabled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3002 (556,'Hover disabled',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3003 (557,'%s level up you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3004 (558,'%s level down you to (%i)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3005 (559,'%s reset your level progress.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3006 (560,'The area has been set as explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3007 (561,'The area has been set as not explored.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3008 (562,'GUID=%i \'s updateIndex: %i, value:  %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3009 (563,'You change GUID=%i \'s UpdateIndex: %i value to %i.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3010 (564,'The value index %u is too big to %u(count: %u).',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3011 (565,'Set %u uint32 Value:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3012 (566,'You Set %u Field:%u to uint32 Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3013 (567,'Set %u float Value:[OPCODE]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3014 (568,'You Set %u Field:%i to float Value: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3015 (569,'Get %u uint32 Value:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3016 (570,'The uint32 value of %u in %u is: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3017 (571,'Get %u float Value:[OPCODE]:%u [VALUE]:%f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3018 (572,'The float of %u value in %u is: %f',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3019 (573,'.Set32Bit:[OPCODE]:%u [VALUE]:%u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3020 (574,'You set Bit of Field:%u to Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3021 (575,'.Mod32Value:[OPCODE]:%u [VALUE]:%i',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3022 (576,'You modified the value of Field:%u to Value: %u',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3023 (577,'You are now invisible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3024 (578,'You are now visible.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3025 (579,'Selected player or creature not have victim.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3026 (580,'You learned all default spells for race/class and completed quests rewarded spells.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3027 (581,'Found near gameobjects (distance %f): %u ',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3028 (582,'SpawnTime: Full:%s Remain:%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3029 (583,'%d - |cffffffff|Hgameevent:%d|h[%s]|h|r%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3030 (584,'No event found!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3031 (585,'Event not exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3032 (586,'Event %u: %s%s\nStart: %s End: %s Occurence: %s Length: %s\nNext state change: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3033 (587,'Event %u already active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3034 (588,'Event %u not active!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3035 (589,'   Point movement to (X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3036 (590,'   Fear movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3037 (591,'   Distract movement',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3038 (592,'You have learned all spells in craft: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3039 (593,'Currently Banned Accounts:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3040 (594,'|    Account    |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3041 (595,'Currently Banned IPs:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3042 (596,'|      IP       |   BanDate    |   UnbanDate  |  Banned By    |   Ban Reason  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3043 (597,'Current gamemasters:',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3044 (598,'|    Account    |  GM  |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3045 (599,'No gamemasters.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3046 (600,'The Alliance wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3047 (601,'The Horde wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3048 (602,'The battle for Warsong Gulch begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3049 (603,'The battle for Warsong Gulch begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3050 (604,'Let the battle for Warsong Gulch begin!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3051 (605,'$n captured the Horde flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3052 (606,'$n captured the Alliance flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3053 (607,'The Horde flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3054 (608,'The Alliance Flag was dropped by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3055 (609,'The Alliance Flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3056 (610,'The Horde flag was returned to its base by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3057 (611,'The Horde flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3058 (612,'The Alliance Flag was picked up by $n!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3059 (613,'The flags are now placed at their bases.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3060 (614,'The Alliance flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3061 (615,'The Horde flag is now placed at its base.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3062 (636,'The battle begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3063 (637,'The battle begins in 30 seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3064 (638,'The battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3065 (650,'Alliance',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3066 (651,'Horde',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3067 (652,'stables',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3068 (653,'blacksmith',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3069 (654,'farm',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3070 (655,'lumber mill',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3071 (656,'mine',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3072 (657,'The %s has taken the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3073 (658,'$n has defended the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3074 (659,'$n has assaulted the %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3075 (660,'$n claims the %s! If left unchallenged, the %s will control it in 1 minute!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3076 (661,'The battle for Arathi Basin begins in 1 minute.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3077 (662,'The battle for Arathi Basin begins in 30 seconds. Prepare yourselves!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3078 (663,'The battle for Arathi Basin has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3079 (664,'The Alliance has gathered $1776W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3080 (665,'The Horde has gathered $1777W resources, and is near victory!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3081 (666,'After your recent battle in %s our best attempts to award you a Mark of Honor failed. Enclosed you will find the Mark of Honor we were not able to deliver to you at the time. Thanks for fighting in %s!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3082 (667,'The Alliance has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3083 (668,'The Horde has taken control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3084 (669,'The Alliance has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3085 (670,'The Horde has taken control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3086 (671,'The Alliance has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3087 (672,'The Horde has taken control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3088 (673,'The Alliance has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3089 (674,'The Horde has taken control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3090 (675,'The Alliance has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3091 (676,'The Horde has lost control of the Mage Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3092 (677,'The Alliance has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3093 (678,'The Horde has lost control of the Draenei Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3094 (679,'The Alliance has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3095 (680,'The Horde has lost control of the Blood Elf Tower!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3096 (681,'The Alliance has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3097 (682,'The Horde has lost control of the Fel Reaver Ruins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3098 (683,'%s has taken the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3099 (684,'The Alliance have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3100 (685,'The Horde have captured the flag!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3101 (686,'The flag has been dropped.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3102 (687,'The flag has been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3103 (700,'You must be level %u to form an arena team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3104 (701,'One minute until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3105 (702,'Thirty seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3106 (703,'Fifteen seconds until the Arena battle begins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3107 (704,'The Arena battle has begun!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3108 (705,'You must wait %s before speaking again.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3109 (706,'This item(s) have problems with equipping/storing in inventory.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3110 (707,'%s wishes to not be disturbed and cannot receive whisper messages: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3111 (708,'%s is Away from Keyboard: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3112 (709,'Do not Disturb',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3113 (710,'Away from Keyboard',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3114 (711,'Queue status for %s (Lvl: %u to %u)\nQueued alliances: %u (Need at least %u more)\nQueued hordes: %u (Need at least %u more)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3115 (712,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] A: %u/%u, H: %u/%u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3116 (713,'You must be level %u to join an arena team!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3117 (714,'%s is not high enough level to join your team',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3118 (715,'You don\'t meet Battleground level requirements',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3119 (716,'Your arena team is full, %s cannot join it.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3120 (717,'|cffff0000[BG Queue Announcer]:|r %s -- [%u-%u] Started!|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3121 (718,'|cffff0000[Arena Queue Announcer]:|r %s -- Joined : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3122 (719,'|cffff0000[Arena Queue Announcer]:|r %s -- Exited : %ux%u : %u|r',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3123 (720,'Your group is too large for this battleground. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3124 (721,'Your group is too large for this arena. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3125 (722,'Your group has members not in your arena team. Please regroup to join.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3126 (723,'Your group does not have enough players to join this match.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3127 (724,'The Gold Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3128 (725,'The Green Team wins!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3129 (727,'Your group has an offline member. Please remove him before joining.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3130 (728,'Your group has players from the opposing faction. You can\'t join the battleground as a group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3131 (729,'Your group has players from different battleground brakets. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3132 (730,'Someone in your party is already in this battleground queue. (S)he must leave it before joining as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3133 (731,'Someone in your party is Deserter. You can\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3134 (732,'Someone in your party is already in three battleground queues. You cannot join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3135 (733,'You cannot teleport to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3136 (734,'You cannot summon players to a battleground or arena map.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3137 (735,'You must be in GM mode to teleport to a player in a battleground.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3138 (736,'You cannot teleport to a battleground from another battleground. Please leave the current battleground first.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3139 (737,'Arenas are set to 1v1 for debugging. So, don\'t join as group.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3140 (738,'Arenas are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3141 (739,'Battlegrounds are set to 1v0 for debugging.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3142 (740,'Battlegrounds are set to normal playercount.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3143 (741,'Flushing Arena points based on team ratings, this may take a few minutes. Please stand by...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3144 (742,'Distributing arena points to players...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3145 (743,'Finished setting arena points for online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3146 (744,'Modifying played count, arena points etc. for loaded arena teams, sending updated stats to online players...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3147 (745,'Modification done.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3148 (746,'Done flushing Arena points.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3149 (750,'Not enough players. This game will close in %u mins.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3150 (751,'Not enough players. This game will close in %u seconds.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3151 (753,'The battle for Warsong Gulch begins in 2 minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3152 (754,'The battle for Arathi Basin begins in 2 minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3153 (755,'The battle begins in 2 minutes.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3154 (801,'You do not have enough gold',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3155 (802,'You do not have enough free slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3156 (803,'Your partner does not have enough free bag slots',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3157 (804,'You do not have permission to perform that function',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3158 (805,'Unknown language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3159 (806,'You don\'t know that language',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3160 (807,'Please provide character name',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3161 (808,'Player %s not found or offline',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3162 (809,'Account for character %s not found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3163 (810,'|Hplayer:$N|h[$N]|h has earned the achievement $a!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3164 (811,'Guild Master',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3165 (812,'Officer',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3166 (813,'Veteran',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3167 (814,'Member',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3168 (815,'Initiate',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3169 (1000,'Exiting daemon...',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3170 (1001,'Account deleted: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3171 (1002,'Account %s NOT deleted (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3172 (1003,'Account %s NOT deleted (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3173 (1004,'Account created: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3174 (1005,'Account name can\'t be longer than 16 characters (client limit), account not created!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3175 (1006,'Account with this name already exist!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3176 (1007,'Account %s NOT created (probably sql file format was updated)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3177 (1008,'Account %s NOT created (unknown error)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3178 (1009,'Player %s (Guid: %u) Account %s (Id: %u) deleted.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3179 (1010,'|    Account    |       Character      |       IP        | GM | Expansion |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3180 (1011,'|<Error>        | %20s |<Error>          |<Er>| <Error>   |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3181 (1012,'===========================================================================',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3182 (1013,'|%15s| %20s | %15s |%4d| %9d |',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3183 (1014,'No online players.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3184 (1100,'Account %s (Id: %u) have up to %u expansion allowed now.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3185 (1101,'Message of the day changed to:\r\n%s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3186 (1102,'Message sent to %s: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3187 (1103,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3188 (1104,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3189 (1105,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3190 (1106,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3191 (1107,'%d - %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3192 (1108,'%d - %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3193 (1109,'%d - %s %s %s %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3194 (1110,'%d - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3195 (1111,'%d - %s X:%f Y:%f Z:%f MapId:%d',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3196 (1112,'Failed to open file: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3197 (1113,'Account %s (%u) have max amount allowed characters (client limit)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3198 (1114,'Dump file have broken data!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3199 (1115,'Invalid character name!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3200 (1116,'Invalid character guid!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3201 (1117,'Character guid %u in use!',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3202 (1118,'%d - guild: %s (guid: %u) %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3203 (1119,'You must use male or female as gender.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3204 (1120,'You change gender of %s to %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3205 (1121,'Your gender changed to %s by %s.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3206 (1122,'(%u/%u +perm %u +temp %u)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3207 (1123,'Not pet found',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3208 (1124,'Wrong pet type',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3209 (1125,'Your pet learned all talents',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3210 (1126,'Your pet talents have been reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3211 (1127,'Talents of %s\'s pet reset.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3212 (1128,'%d - |cffffffff|Htaxinode:%u|h[%s %s]|h|r (Map:%u X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3213 (1129,'%d - %s %s (Map:%u X:%f Y:%f Z:%f)',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3214 (1200,'You try to view cinemitic %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL),
3215 (1201,'You try to view movie %u but it doesn\'t exist.',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
3216 /*!40000 ALTER TABLE `mangos_string` ENABLE KEYS */;
3217 UNLOCK TABLES;
3220 -- Table structure for table `milling_loot_template`
3223 DROP TABLE IF EXISTS `milling_loot_template`;
3224 CREATE TABLE `milling_loot_template` (
3225   `entry` mediumint(8) unsigned NOT NULL default '0',
3226   `item` mediumint(8) unsigned NOT NULL default '0',
3227   `ChanceOrQuestChance` float NOT NULL default '100',
3228   `groupid` tinyint(3) unsigned NOT NULL default '0',
3229   `mincountOrRef` mediumint(9) NOT NULL default '1',
3230   `maxcount` tinyint(3) unsigned NOT NULL default '1',
3231   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
3232   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
3233   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
3234   PRIMARY KEY  (`entry`,`item`)
3235 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
3238 -- Dumping data for table `milling_loot_template`
3241 LOCK TABLES `milling_loot_template` WRITE;
3242 /*!40000 ALTER TABLE `milling_loot_template` DISABLE KEYS */;
3243 /*!40000 ALTER TABLE `milling_loot_template` ENABLE KEYS */;
3244 UNLOCK TABLES;
3247 -- Table structure for table `npc_gossip`
3250 DROP TABLE IF EXISTS `npc_gossip`;
3251 CREATE TABLE `npc_gossip` (
3252   `npc_guid` int(10) unsigned NOT NULL default '0',
3253   `textid` mediumint(8) unsigned NOT NULL default '0',
3254   PRIMARY KEY  (`npc_guid`)
3255 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3258 -- Dumping data for table `npc_gossip`
3261 LOCK TABLES `npc_gossip` WRITE;
3262 /*!40000 ALTER TABLE `npc_gossip` DISABLE KEYS */;
3263 /*!40000 ALTER TABLE `npc_gossip` ENABLE KEYS */;
3264 UNLOCK TABLES;
3267 -- Table structure for table `npc_gossip_textid`
3270 DROP TABLE IF EXISTS `npc_gossip_textid`;
3271 CREATE TABLE `npc_gossip_textid` (
3272   `zoneid` smallint(5) unsigned NOT NULL default '0',
3273   `action` smallint(5) unsigned NOT NULL default '0',
3274   `textid` mediumint(8) unsigned NOT NULL default '0',
3275   KEY `zoneid` (`zoneid`)
3276 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3279 -- Dumping data for table `npc_gossip_textid`
3282 LOCK TABLES `npc_gossip_textid` WRITE;
3283 /*!40000 ALTER TABLE `npc_gossip_textid` DISABLE KEYS */;
3284 /*!40000 ALTER TABLE `npc_gossip_textid` ENABLE KEYS */;
3285 UNLOCK TABLES;
3288 -- Table structure for table `npc_option`
3291 DROP TABLE IF EXISTS `npc_option`;
3292 CREATE TABLE `npc_option` (
3293   `id` mediumint(8) unsigned NOT NULL default '0',
3294   `gossip_id` mediumint(8) unsigned NOT NULL default '0',
3295   `npcflag` int(10) unsigned NOT NULL default '0',
3296   `icon` tinyint(3) unsigned NOT NULL default '0',
3297   `action` mediumint(8) unsigned NOT NULL default '0',
3298   `box_money` int(10) unsigned NOT NULL default '0',
3299   `coded` tinyint(3) unsigned NOT NULL default '0',
3300   `option_text` text,
3301   `box_text` text,
3302   PRIMARY KEY  (`id`)
3303 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3306 -- Dumping data for table `npc_option`
3309 LOCK TABLES `npc_option` WRITE;
3310 /*!40000 ALTER TABLE `npc_option` DISABLE KEYS */;
3311 /*!40000 ALTER TABLE `npc_option` ENABLE KEYS */;
3312 UNLOCK TABLES;
3315 -- Table structure for table `npc_spellclick_spells`
3318 DROP TABLE IF EXISTS `npc_spellclick_spells`;
3319 CREATE TABLE `npc_spellclick_spells` (
3320     `npc_entry`   int unsigned NOT NULL COMMENT 'reference to creature_template',
3321     `spell_id`    int unsigned NOT NULL COMMENT 'spell which should be casted ',
3322     `quest_start`        mediumint(8) unsigned NOT NULL COMMENT 'reference to quest_template',
3323     `quest_start_active` tinyint(1) unsigned NOT NULL default '0',
3324     `quest_end`          mediumint(8) unsigned NOT NULL default '0',
3325     `cast_flags`  tinyint unsigned NOT NULL COMMENT 'first bit defines caster: 1=player, 0=creature; second bit defines target, same mapping as caster bit'
3326 ) ENGINE = MYISAM DEFAULT CHARSET=utf8;
3329 -- Dumping data for table `npc_spellclick_spells`
3332 LOCK TABLES `npc_spellclick_spells` WRITE;
3333 /*!40000 ALTER TABLE `npc_spellclick_spells` DISABLE KEYS */;
3334 /*!40000 ALTER TABLE `npc_spellclick_spells` ENABLE KEYS */;
3335 UNLOCK TABLES;
3338 -- Table structure for table `npc_text`
3341 DROP TABLE IF EXISTS `npc_text`;
3342 CREATE TABLE `npc_text` (
3343   `ID` mediumint(8) unsigned NOT NULL default '0',
3344   `text0_0` longtext,
3345   `text0_1` longtext,
3346   `lang0` tinyint(3) unsigned NOT NULL default '0',
3347   `prob0` float NOT NULL default '0',
3348   `em0_0` smallint(5) unsigned NOT NULL default '0',
3349   `em0_1` smallint(5) unsigned NOT NULL default '0',
3350   `em0_2` smallint(5) unsigned NOT NULL default '0',
3351   `em0_3` smallint(5) unsigned NOT NULL default '0',
3352   `em0_4` smallint(5) unsigned NOT NULL default '0',
3353   `em0_5` smallint(5) unsigned NOT NULL default '0',
3354   `text1_0` longtext,
3355   `text1_1` longtext,
3356   `lang1` tinyint(3) unsigned NOT NULL default '0',
3357   `prob1` float NOT NULL default '0',
3358   `em1_0` smallint(5) unsigned NOT NULL default '0',
3359   `em1_1` smallint(5) unsigned NOT NULL default '0',
3360   `em1_2` smallint(5) unsigned NOT NULL default '0',
3361   `em1_3` smallint(5) unsigned NOT NULL default '0',
3362   `em1_4` smallint(5) unsigned NOT NULL default '0',
3363   `em1_5` smallint(5) unsigned NOT NULL default '0',
3364   `text2_0` longtext,
3365   `text2_1` longtext,
3366   `lang2` tinyint(3) unsigned NOT NULL default '0',
3367   `prob2` float NOT NULL default '0',
3368   `em2_0` smallint(5) unsigned NOT NULL default '0',
3369   `em2_1` smallint(5) unsigned NOT NULL default '0',
3370   `em2_2` smallint(5) unsigned NOT NULL default '0',
3371   `em2_3` smallint(5) unsigned NOT NULL default '0',
3372   `em2_4` smallint(5) unsigned NOT NULL default '0',
3373   `em2_5` smallint(5) unsigned NOT NULL default '0',
3374   `text3_0` longtext,
3375   `text3_1` longtext,
3376   `lang3` tinyint(3) unsigned NOT NULL default '0',
3377   `prob3` float NOT NULL default '0',
3378   `em3_0` smallint(5) unsigned NOT NULL default '0',
3379   `em3_1` smallint(5) unsigned NOT NULL default '0',
3380   `em3_2` smallint(5) unsigned NOT NULL default '0',
3381   `em3_3` smallint(5) unsigned NOT NULL default '0',
3382   `em3_4` smallint(5) unsigned NOT NULL default '0',
3383   `em3_5` smallint(5) unsigned NOT NULL default '0',
3384   `text4_0` longtext,
3385   `text4_1` longtext,
3386   `lang4` tinyint(3) unsigned NOT NULL default '0',
3387   `prob4` float NOT NULL default '0',
3388   `em4_0` smallint(5) unsigned NOT NULL default '0',
3389   `em4_1` smallint(5) unsigned NOT NULL default '0',
3390   `em4_2` smallint(5) unsigned NOT NULL default '0',
3391   `em4_3` smallint(5) unsigned NOT NULL default '0',
3392   `em4_4` smallint(5) unsigned NOT NULL default '0',
3393   `em4_5` smallint(5) unsigned NOT NULL default '0',
3394   `text5_0` longtext,
3395   `text5_1` longtext,
3396   `lang5` tinyint(3) unsigned NOT NULL default '0',
3397   `prob5` float NOT NULL default '0',
3398   `em5_0` smallint(5) unsigned NOT NULL default '0',
3399   `em5_1` smallint(5) unsigned NOT NULL default '0',
3400   `em5_2` smallint(5) unsigned NOT NULL default '0',
3401   `em5_3` smallint(5) unsigned NOT NULL default '0',
3402   `em5_4` smallint(5) unsigned NOT NULL default '0',
3403   `em5_5` smallint(5) unsigned NOT NULL default '0',
3404   `text6_0` longtext,
3405   `text6_1` longtext,
3406   `lang6` tinyint(3) unsigned NOT NULL default '0',
3407   `prob6` float NOT NULL default '0',
3408   `em6_0` smallint(5) unsigned NOT NULL default '0',
3409   `em6_1` smallint(5) unsigned NOT NULL default '0',
3410   `em6_2` smallint(5) unsigned NOT NULL default '0',
3411   `em6_3` smallint(5) unsigned NOT NULL default '0',
3412   `em6_4` smallint(5) unsigned NOT NULL default '0',
3413   `em6_5` smallint(5) unsigned NOT NULL default '0',
3414   `text7_0` longtext,
3415   `text7_1` longtext,
3416   `lang7` tinyint(3) unsigned NOT NULL default '0',
3417   `prob7` float NOT NULL default '0',
3418   `em7_0` smallint(5) unsigned NOT NULL default '0',
3419   `em7_1` smallint(5) unsigned NOT NULL default '0',
3420   `em7_2` smallint(5) unsigned NOT NULL default '0',
3421   `em7_3` smallint(5) unsigned NOT NULL default '0',
3422   `em7_4` smallint(5) unsigned NOT NULL default '0',
3423   `em7_5` smallint(5) unsigned NOT NULL default '0',
3424   PRIMARY KEY  (`ID`)
3425 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3428 -- Dumping data for table `npc_text`
3431 LOCK TABLES `npc_text` WRITE;
3432 /*!40000 ALTER TABLE `npc_text` DISABLE KEYS */;
3433 /*!40000 ALTER TABLE `npc_text` ENABLE KEYS */;
3434 UNLOCK TABLES;
3437 -- Table structure for table `npc_trainer`
3440 DROP TABLE IF EXISTS `npc_trainer`;
3441 CREATE TABLE `npc_trainer` (
3442   `entry` mediumint(8) unsigned NOT NULL default '0',
3443   `spell` mediumint(8) unsigned NOT NULL default '0',
3444   `spellcost` int(10) unsigned NOT NULL default '0',
3445   `reqskill` smallint(5) unsigned NOT NULL default '0',
3446   `reqskillvalue` smallint(5) unsigned NOT NULL default '0',
3447   `reqlevel` tinyint(3) unsigned NOT NULL default '0',
3448   UNIQUE KEY `entry_spell` (`entry`,`spell`)
3449 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3452 -- Dumping data for table `npc_trainer`
3455 LOCK TABLES `npc_trainer` WRITE;
3456 /*!40000 ALTER TABLE `npc_trainer` DISABLE KEYS */;
3457 /*!40000 ALTER TABLE `npc_trainer` ENABLE KEYS */;
3458 UNLOCK TABLES;
3461 -- Table structure for table `npc_vendor`
3464 DROP TABLE IF EXISTS `npc_vendor`;
3465 CREATE TABLE `npc_vendor` (
3466   `entry` mediumint(8) unsigned NOT NULL default '0',
3467   `item` mediumint(8) unsigned NOT NULL default '0',
3468   `maxcount` tinyint(3) unsigned NOT NULL default '0',
3469   `incrtime` int(10) unsigned NOT NULL default '0',
3470   `ExtendedCost` mediumint(8) unsigned NOT NULL default '0',
3471   PRIMARY KEY  (`entry`,`item`)
3472 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Npc System';
3475 -- Dumping data for table `npc_vendor`
3478 LOCK TABLES `npc_vendor` WRITE;
3479 /*!40000 ALTER TABLE `npc_vendor` DISABLE KEYS */;
3480 /*!40000 ALTER TABLE `npc_vendor` ENABLE KEYS */;
3481 UNLOCK TABLES;
3484 -- Table structure for table `page_text`
3487 DROP TABLE IF EXISTS `page_text`;
3488 CREATE TABLE `page_text` (
3489   `entry` mediumint(8) unsigned NOT NULL default '0',
3490   `text` longtext NOT NULL,
3491   `next_page` mediumint(8) unsigned NOT NULL default '0',
3492   PRIMARY KEY  (`entry`)
3493 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
3496 -- Dumping data for table `page_text`
3499 LOCK TABLES `page_text` WRITE;
3500 /*!40000 ALTER TABLE `page_text` DISABLE KEYS */;
3501 /*!40000 ALTER TABLE `page_text` ENABLE KEYS */;
3502 UNLOCK TABLES;
3505 -- Table structure for table `pet_levelstats`
3508 DROP TABLE IF EXISTS `pet_levelstats`;
3509 CREATE TABLE `pet_levelstats` (
3510   `creature_entry` mediumint(8) unsigned NOT NULL,
3511   `level` tinyint(3) unsigned NOT NULL,
3512   `hp` smallint(5) unsigned NOT NULL,
3513   `mana` smallint(5) unsigned NOT NULL,
3514   `armor` int(10) unsigned NOT NULL default '0',
3515   `str` smallint(5) unsigned NOT NULL,
3516   `agi` smallint(5) unsigned NOT NULL,
3517   `sta` smallint(5) unsigned NOT NULL,
3518   `inte` smallint(5) unsigned NOT NULL,
3519   `spi` smallint(5) unsigned NOT NULL,
3520   PRIMARY KEY  (`creature_entry`,`level`)
3521 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores pet levels stats.';
3524 -- Dumping data for table `pet_levelstats`
3527 LOCK TABLES `pet_levelstats` WRITE;
3528 /*!40000 ALTER TABLE `pet_levelstats` DISABLE KEYS */;
3529 /*!40000 ALTER TABLE `pet_levelstats` ENABLE KEYS */;
3530 UNLOCK TABLES;
3533 -- Table structure for table `pet_name_generation`
3536 DROP TABLE IF EXISTS `pet_name_generation`;
3537 CREATE TABLE `pet_name_generation` (
3538   `id` mediumint(8) unsigned NOT NULL auto_increment,
3539   `word` tinytext NOT NULL,
3540   `entry` mediumint(8) unsigned NOT NULL default '0',
3541   `half` tinyint(4) NOT NULL default '0',
3542   PRIMARY KEY  (`id`)
3543 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
3546 -- Dumping data for table `pet_name_generation`
3549 LOCK TABLES `pet_name_generation` WRITE;
3550 /*!40000 ALTER TABLE `pet_name_generation` DISABLE KEYS */;
3551 INSERT INTO `pet_name_generation` (`word`,`entry`,`half`) VALUES
3552 ('Aba',416,0),
3553 ('Az',416,0),
3554 ('Bel',416,0),
3555 ('Biz',416,0),
3556 ('Cho',416,0),
3557 ('Dag',416,0),
3558 ('Gak',416,0),
3559 ('Gar',416,0),
3560 ('Gel',416,0),
3561 ('Gho',416,0),
3562 ('Gob',416,0),
3563 ('Gra',416,0),
3564 ('Jak',416,0),
3565 ('Jub',416,0),
3566 ('Kar',416,0),
3567 ('Kup',416,0),
3568 ('Laz',416,0),
3569 ('Nal',416,0),
3570 ('Nok',416,0),
3571 ('Pag',416,0),
3572 ('Pig',416,0),
3573 ('Pip',416,0),
3574 ('Piz',416,0),
3575 ('Quz',416,0),
3576 ('Rui',416,0),
3577 ('Rul',416,0),
3578 ('Rup',416,0),
3579 ('Tar',416,0),
3580 ('Vol',416,0),
3581 ('Yaz',416,0),
3582 ('Zep',416,0),
3583 ('Zig',416,0),
3584 ('Zil',416,0),
3585 ('Zor',416,0),
3586 ('bis',416,1),
3587 ('fip',416,1),
3588 ('gup',416,1),
3589 ('ham',416,1),
3590 ('jub',416,1),
3591 ('kin',416,1),
3592 ('kol',416,1),
3593 ('lop',416,1),
3594 ('loz',416,1),
3595 ('mat',416,1),
3596 ('mir',416,1),
3597 ('nam',416,1),
3598 ('nar',416,1),
3599 ('nik',416,1),
3600 ('nip',416,1),
3601 ('pad',416,1),
3602 ('pep',416,1),
3603 ('pit',416,1),
3604 ('qua',416,1),
3605 ('rai',416,1),
3606 ('rin',416,1),
3607 ('rot',416,1),
3608 ('tai',416,1),
3609 ('tal',416,1),
3610 ('tik',416,1),
3611 ('tip',416,1),
3612 ('tog',416,1),
3613 ('tuk',416,1),
3614 ('uri',416,1),
3615 ('yal',416,1),
3616 ('yap',416,1),
3617 ('Bhee',417,0),
3618 ('Bruu',417,0),
3619 ('Czaa',417,0),
3620 ('Droo',417,0),
3621 ('Flaa',417,0),
3622 ('Fzuu',417,0),
3623 ('Ghaa',417,0),
3624 ('Gree',417,0),
3625 ('Gzaa',417,0),
3626 ('Haa',417,0),
3627 ('Haad',417,0),
3628 ('Haag',417,0),
3629 ('Haap',417,0),
3630 ('Jhaa',417,0),
3631 ('Jhuu',417,0),
3632 ('Khaa',417,0),
3633 ('Khii',417,0),
3634 ('Khuu',417,0),
3635 ('Kree',417,0),
3636 ('Luu',417,0),
3637 ('Maa',417,0),
3638 ('Nhee',417,0),
3639 ('Phuu',417,0),
3640 ('Pryy',417,0),
3641 ('Rhuu',417,0),
3642 ('Shaa',417,0),
3643 ('Sloo',417,0),
3644 ('Sruu',417,0),
3645 ('Thoo',417,0),
3646 ('Traa',417,0),
3647 ('Wraa',417,0),
3648 ('Zhaa',417,0),
3649 ('dhon',417,1),
3650 ('dhum',417,1),
3651 ('dhun',417,1),
3652 ('dom',417,1),
3653 ('don',417,1),
3654 ('drom',417,1),
3655 ('dym',417,1),
3656 ('fenn',417,1),
3657 ('fum',417,1),
3658 ('fun',417,1),
3659 ('ghon',417,1),
3660 ('ghun',417,1),
3661 ('grom',417,1),
3662 ('grym',417,1),
3663 ('hom',417,1),
3664 ('hon',417,1),
3665 ('hun',417,1),
3666 ('jhom',417,1),
3667 ('kun',417,1),
3668 ('lum',417,1),
3669 ('mmon',417,1),
3670 ('mon',417,1),
3671 ('myn',417,1),
3672 ('nam',417,1),
3673 ('nem',417,1),
3674 ('nhym',417,1),
3675 ('nom',417,1),
3676 ('num',417,1),
3677 ('phom',417,1),
3678 ('roon',417,1),
3679 ('rym',417,1),
3680 ('shon',417,1),
3681 ('thun',417,1),
3682 ('tom',417,1),
3683 ('zhem',417,1),
3684 ('zhum',417,1),
3685 ('zun',417,1),
3686 ('Bar',1860,0),
3687 ('Bel',1860,0),
3688 ('Char',1860,0),
3689 ('Grak\'',1860,0),
3690 ('Graz\'',1860,0),
3691 ('Grim',1860,0),
3692 ('Hath',1860,0),
3693 ('Hel',1860,0),
3694 ('Hok',1860,0),
3695 ('Huk',1860,0),
3696 ('Jhaz',1860,0),
3697 ('Jhom',1860,0),
3698 ('Juk\'',1860,0),
3699 ('Kal\'',1860,0),
3700 ('Klath',1860,0),
3701 ('Kon',1860,0),
3702 ('Krag',1860,0),
3703 ('Krak',1860,0),
3704 ('Mak',1860,0),
3705 ('Mezz',1860,0),
3706 ('Orm',1860,0),
3707 ('Phan',1860,0),
3708 ('Sar',1860,0),
3709 ('Tang',1860,0),
3710 ('Than',1860,0),
3711 ('Thog',1860,0),
3712 ('Thok',1860,0),
3713 ('Thul',1860,0),
3714 ('Zag\'',1860,0),
3715 ('Zang',1860,0),
3716 ('Zhar\'',1860,0),
3717 ('kath',1860,1),
3718 ('doc',1860,1),
3719 ('dok',1860,1),
3720 ('gak',1860,1),
3721 ('garth',1860,1),
3722 ('gore',1860,1),
3723 ('gorg',1860,1),
3724 ('grave',1860,1),
3725 ('gron',1860,1),
3726 ('juk',1860,1),
3727 ('krast',1860,1),
3728 ('kresh',1860,1),
3729 ('krit',1860,1),
3730 ('los',1860,1),
3731 ('mon',1860,1),
3732 ('mos',1860,1),
3733 ('moth',1860,1),
3734 ('nagma',1860,1),
3735 ('nak',1860,1),
3736 ('nar',1860,1),
3737 ('nos',1860,1),
3738 ('nuz',1860,1),
3739 ('phog',1860,1),
3740 ('rath',1860,1),
3741 ('tast',1860,1),
3742 ('taz',1860,1),
3743 ('thak',1860,1),
3744 ('thang',1860,1),
3745 ('thyk',1860,1),
3746 ('vhug',1860,1),
3747 ('zazt',1860,1),
3748 ('Ael',1863,0),
3749 ('Aez',1863,0),
3750 ('Ang',1863,0),
3751 ('Ban',1863,0),
3752 ('Bet',1863,0),
3753 ('Bro',1863,0),
3754 ('Bry',1863,0),
3755 ('Cat',1863,0),
3756 ('Dir',1863,0),
3757 ('Dis',1863,0),
3758 ('Dom',1863,0),
3759 ('Drus',1863,0),
3760 ('Fie',1863,0),
3761 ('Fier',1863,0),
3762 ('Gly',1863,0),
3763 ('Hel',1863,0),
3764 ('Hes',1863,0),
3765 ('Kal',1863,0),
3766 ('Lyn',1863,0),
3767 ('Mir',1863,0),
3768 ('Nim',1863,0),
3769 ('Sar',1863,0),
3770 ('Sel',1863,0),
3771 ('Vil',1863,0),
3772 ('Zah',1863,0),
3773 ('aith',1863,1),
3774 ('anda',1863,1),
3775 ('antia',1863,1),
3776 ('evere',1863,1),
3777 ('lia',1863,1),
3778 ('lissa',1863,1),
3779 ('neri',1863,1),
3780 ('neth',1863,1),
3781 ('nia',1863,1),
3782 ('nlissa',1863,1),
3783 ('nora',1863,1),
3784 ('nva',1863,1),
3785 ('nys',1863,1),
3786 ('ola',1863,1),
3787 ('ona',1863,1),
3788 ('ora',1863,1),
3789 ('rah',1863,1),
3790 ('riana',1863,1),
3791 ('riel',1863,1),
3792 ('rona',1863,1),
3793 ('tai',1863,1),
3794 ('tevere',1863,1),
3795 ('thea',1863,1),
3796 ('vina',1863,1),
3797 ('wena',1863,1),
3798 ('wyn',1863,1),
3799 ('xia',1863,1),
3800 ('yla',1863,1),
3801 ('yssa',1863,1),
3802 ('Flaa',17252,0),
3803 ('Haa',17252,0),
3804 ('Jhuu',17252,0),
3805 ('Shaa',17252,0),
3806 ('Thoo',17252,0),
3807 ('dhun',17252,1),
3808 ('ghun',17252,1),
3809 ('roon',17252,1),
3810 ('thun',17252,1),
3811 ('tom',17252,1);
3813 /*!40000 ALTER TABLE `pet_name_generation` ENABLE KEYS */;
3814 UNLOCK TABLES;
3817 -- Table structure for table `pickpocketing_loot_template`
3820 DROP TABLE IF EXISTS `pickpocketing_loot_template`;
3821 CREATE TABLE `pickpocketing_loot_template` (
3822   `entry` mediumint(8) unsigned NOT NULL default '0',
3823   `item` mediumint(8) unsigned NOT NULL default '0',
3824   `ChanceOrQuestChance` float NOT NULL default '100',
3825   `groupid` tinyint(3) unsigned NOT NULL default '0',
3826   `mincountOrRef` mediumint(9) NOT NULL default '1',
3827   `maxcount` tinyint(3) unsigned NOT NULL default '1',
3828   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
3829   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
3830   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
3831   PRIMARY KEY  (`entry`,`item`)
3832 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
3835 -- Dumping data for table `pickpocketing_loot_template`
3838 LOCK TABLES `pickpocketing_loot_template` WRITE;
3839 /*!40000 ALTER TABLE `pickpocketing_loot_template` DISABLE KEYS */;
3840 /*!40000 ALTER TABLE `pickpocketing_loot_template` ENABLE KEYS */;
3841 UNLOCK TABLES;
3844 -- Table structure for table `player_classlevelstats`
3847 DROP TABLE IF EXISTS `player_classlevelstats`;
3848 CREATE TABLE `player_classlevelstats` (
3849   `class` tinyint(3) unsigned NOT NULL,
3850   `level` tinyint(3) unsigned NOT NULL,
3851   `basehp` smallint(5) unsigned NOT NULL,
3852   `basemana` smallint(5) unsigned NOT NULL,
3853   PRIMARY KEY  (`class`,`level`)
3854 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
3857 -- Dumping data for table `player_classlevelstats`
3860 LOCK TABLES `player_classlevelstats` WRITE;
3861 /*!40000 ALTER TABLE `player_classlevelstats` DISABLE KEYS */;
3862 INSERT INTO `player_classlevelstats` VALUES
3863 (1,1,20,0),
3864 (1,2,29,0),
3865 (1,3,38,0),
3866 (1,4,47,0),
3867 (1,5,56,0),
3868 (1,6,65,0),
3869 (1,7,74,0),
3870 (1,8,83,0),
3871 (1,9,92,0),
3872 (1,10,101,0),
3873 (1,11,100,0),
3874 (1,12,109,0),
3875 (1,13,118,0),
3876 (1,14,128,0),
3877 (1,15,139,0),
3878 (1,16,151,0),
3879 (1,17,154,0),
3880 (1,18,168,0),
3881 (1,19,183,0),
3882 (1,20,199,0),
3883 (1,21,206,0),
3884 (1,22,224,0),
3885 (1,23,243,0),
3886 (1,24,253,0),
3887 (1,25,274,0),
3888 (1,26,296,0),
3889 (1,27,309,0),
3890 (1,28,333,0),
3891 (1,29,348,0),
3892 (1,30,374,0),
3893 (1,31,401,0),
3894 (1,32,419,0),
3895 (1,33,448,0),
3896 (1,34,468,0),
3897 (1,35,499,0),
3898 (1,36,521,0),
3899 (1,37,545,0),
3900 (1,38,581,0),
3901 (1,39,609,0),
3902 (1,40,649,0),
3903 (1,41,681,0),
3904 (1,42,715,0),
3905 (1,43,761,0),
3906 (1,44,799,0),
3907 (1,45,839,0),
3908 (1,46,881,0),
3909 (1,47,935,0),
3910 (1,48,981,0),
3911 (1,49,1029,0),
3912 (1,50,1079,0),
3913 (1,51,1131,0),
3914 (1,52,1185,0),
3915 (1,53,1241,0),
3916 (1,54,1299,0),
3917 (1,55,1359,0),
3918 (1,56,1421,0),
3919 (1,57,1485,0),
3920 (1,58,1551,0),
3921 (1,59,1619,0),
3922 (1,60,1689,0),
3923 (1,61,1902,0),
3924 (1,62,2129,0),
3925 (1,63,2357,0),
3926 (1,64,2612,0),
3927 (1,65,2883,0),
3928 (1,66,3169,0),
3929 (1,67,3455,0),
3930 (1,68,3774,0),
3931 (1,69,4109,0),
3932 (1,70,4444,0),
3933 (1,71,4720,0),
3934 (1,72,5013,0),
3935 (1,73,5325,0),
3936 (1,74,5656,0),
3937 (1,75,6008,0),
3938 (1,76,6381,0),
3939 (1,77,6778,0),
3940 (1,78,7198,0),
3941 (1,79,7646,0),
3942 (1,80,8121,0),
3943 (2,1,28,60),
3944 (2,2,36,78),
3945 (2,3,44,98),
3946 (2,4,52,104),
3947 (2,5,60,111),
3948 (2,6,68,134),
3949 (2,7,76,143),
3950 (2,8,84,153),
3951 (2,9,92,179),
3952 (2,10,100,192),
3953 (2,11,108,205),
3954 (2,12,116,219),
3955 (2,13,124,249),
3956 (2,14,132,265),
3957 (2,15,131,282),
3958 (2,16,141,315),
3959 (2,17,152,334),
3960 (2,18,164,354),
3961 (2,19,177,390),
3962 (2,20,191,412),
3963 (2,21,206,435),
3964 (2,22,222,459),
3965 (2,23,239,499),
3966 (2,24,247,525),
3967 (2,25,266,552),
3968 (2,26,286,579),
3969 (2,27,307,621),
3970 (2,28,329,648),
3971 (2,29,342,675),
3972 (2,30,366,702),
3973 (2,31,391,729),
3974 (2,32,407,756),
3975 (2,33,434,798),
3976 (2,34,462,825),
3977 (2,35,481,852),
3978 (2,36,511,879),
3979 (2,37,542,906),
3980 (2,38,564,933),
3981 (2,39,597,960),
3982 (2,40,621,987),
3983 (2,41,656,1014),
3984 (2,42,682,1041),
3985 (2,43,719,1068),
3986 (2,44,747,1110),
3987 (2,45,786,1137),
3988 (2,46,816,1164),
3989 (2,47,857,1176),
3990 (2,48,889,1203),
3991 (2,49,922,1230),
3992 (2,50,966,1257),
3993 (2,51,1001,1284),
3994 (2,52,1037,1311),
3995 (2,53,1084,1338),
3996 (2,54,1122,1365),
3997 (2,55,1161,1392),
3998 (2,56,1201,1419),
3999 (2,57,1252,1446),
4000 (2,58,1294,1458),
4001 (2,59,1337,1485),
4002 (2,60,1381,1512),
4003 (2,61,1540,1656),
4004 (2,62,1708,1800),
4005 (2,63,1884,1944),
4006 (2,64,2068,2088),
4007 (2,65,2262,2232),
4008 (2,66,2466,2377),
4009 (2,67,2679,2521),
4010 (2,68,2901,2665),
4011 (2,69,3134,2809),
4012 (2,70,3377,2953),
4013 (2,71,3629,3097),
4014 (2,72,3900,3241),
4015 (2,73,4191,3385),
4016 (2,74,4503,3529),
4017 (2,75,4839,3673),
4018 (2,76,5200,3817),
4019 (2,77,5588,3962),
4020 (2,78,6005,4106),
4021 (2,79,6453,4250),
4022 (2,80,6934,4394),
4023 (3,1,46,65),
4024 (3,2,53,70),
4025 (3,3,60,76),
4026 (3,4,67,98),
4027 (3,5,74,106),
4028 (3,6,81,130),
4029 (3,7,88,140),
4030 (3,8,95,166),
4031 (3,9,102,193),
4032 (3,10,109,206),
4033 (3,11,116,235),
4034 (3,12,123,250),
4035 (3,13,130,266),
4036 (3,14,138,298),
4037 (3,15,147,316),
4038 (3,16,157,350),
4039 (3,17,168,370),
4040 (3,18,180,391),
4041 (3,19,193,428),
4042 (3,20,207,451),
4043 (3,21,222,475),
4044 (3,22,238,515),
4045 (3,23,255,541),
4046 (3,24,273,568),
4047 (3,25,292,611),
4048 (3,26,312,640),
4049 (3,27,333,670),
4050 (3,28,355,715),
4051 (3,29,378,745),
4052 (3,30,402,775),
4053 (3,31,417,805),
4054 (3,32,443,850),
4055 (3,33,470,880),
4056 (3,34,498,910),
4057 (3,35,527,940),
4058 (3,36,547,970),
4059 (3,37,578,1015),
4060 (3,38,610,1045),
4061 (3,39,643,1075),
4062 (3,40,667,1105),
4063 (3,41,702,1135),
4064 (3,42,738,1180),
4065 (3,43,775,1210),
4066 (3,44,803,1240),
4067 (3,45,842,1270),
4068 (3,46,872,1300),
4069 (3,47,913,1330),
4070 (3,48,955,1360),
4071 (3,49,994,1390),
4072 (3,50,1047,1420),
4073 (3,51,1067,1450),
4074 (3,52,1113,1480),
4075 (3,53,1150,1510),
4076 (3,54,1198,1540),
4077 (3,55,1237,1570),
4078 (3,56,1287,1600),
4079 (3,57,1328,1630),
4080 (3,58,1370,1660),
4081 (3,59,1423,1690),
4082 (3,60,1467,1720),
4083 (3,61,1633,1886),
4084 (3,62,1819,2053),
4085 (3,63,2003,2219),
4086 (3,64,2195,2385),
4087 (3,65,2397,2552),
4088 (3,66,2623,2718),
4089 (3,67,2844,2884),
4090 (3,68,3075,3050),
4091 (3,69,3316,3217),
4092 (3,70,3568,3383),
4093 (3,71,3834,3549),
4094 (3,72,4120,3716),
4095 (3,73,4427,3882),
4096 (3,74,4757,4048),
4097 (3,75,5112,4215),
4098 (3,76,5493,4381),
4099 (3,77,5903,4547),
4100 (3,78,6343,4713),
4101 (3,79,6816,4880),
4102 (3,80,7324,5046),
4103 (4,1,25,0),
4104 (4,2,32,0),
4105 (4,3,49,0),
4106 (4,4,56,0),
4107 (4,5,63,0),
4108 (4,6,70,0),
4109 (4,7,87,0),
4110 (4,8,94,0),
4111 (4,9,101,0),
4112 (4,10,118,0),
4113 (4,11,125,0),
4114 (4,12,142,0),
4115 (4,13,149,0),
4116 (4,14,156,0),
4117 (4,15,173,0),
4118 (4,16,181,0),
4119 (4,17,190,0),
4120 (4,18,200,0),
4121 (4,19,221,0),
4122 (4,20,233,0),
4123 (4,21,246,0),
4124 (4,22,260,0),
4125 (4,23,275,0),
4126 (4,24,301,0),
4127 (4,25,318,0),
4128 (4,26,336,0),
4129 (4,27,355,0),
4130 (4,28,375,0),
4131 (4,29,396,0),
4132 (4,30,428,0),
4133 (4,31,451,0),
4134 (4,32,475,0),
4135 (4,33,500,0),
4136 (4,34,526,0),
4137 (4,35,553,0),
4138 (4,36,581,0),
4139 (4,37,610,0),
4140 (4,38,640,0),
4141 (4,39,671,0),
4142 (4,40,703,0),
4143 (4,41,736,0),
4144 (4,42,770,0),
4145 (4,43,805,0),
4146 (4,44,841,0),
4147 (4,45,878,0),
4148 (4,46,916,0),
4149 (4,47,955,0),
4150 (4,48,995,0),
4151 (4,49,1026,0),
4152 (4,50,1068,0),
4153 (4,51,1111,0),
4154 (4,52,1155,0),
4155 (4,53,1200,0),
4156 (4,54,1246,0),
4157 (4,55,1283,0),
4158 (4,56,1331,0),
4159 (4,57,1380,0),
4160 (4,58,1430,0),
4161 (4,59,1471,0),
4162 (4,60,1523,0),
4163 (4,61,1702,0),
4164 (4,62,1879,0),
4165 (4,63,2077,0),
4166 (4,64,2285,0),
4167 (4,65,2489,0),
4168 (4,66,2717,0),
4169 (4,67,2941,0),
4170 (4,68,3190,0),
4171 (4,69,3450,0),
4172 (4,70,3704,0),
4173 (4,71,3980,0),
4174 (4,72,4277,0),
4175 (4,73,4596,0),
4176 (4,74,4939,0),
4177 (4,75,5307,0),
4178 (4,76,5703,0),
4179 (4,77,6128,0),
4180 (4,78,6585,0),
4181 (4,79,7076,0),
4182 (4,80,7604,0),
4183 (5,1,52,73),
4184 (5,2,57,76),
4185 (5,3,72,95),
4186 (5,4,77,114),
4187 (5,5,92,133),
4188 (5,6,97,152),
4189 (5,7,112,171),
4190 (5,8,117,190),
4191 (5,9,132,209),
4192 (5,10,137,212),
4193 (5,11,142,215),
4194 (5,12,157,234),
4195 (5,13,172,254),
4196 (5,14,177,260),
4197 (5,15,192,282),
4198 (5,16,197,305),
4199 (5,17,212,329),
4200 (5,18,227,339),
4201 (5,19,232,365),
4202 (5,20,247,377),
4203 (5,21,252,405),
4204 (5,22,268,434),
4205 (5,23,275,449),
4206 (5,24,293,480),
4207 (5,25,302,497),
4208 (5,26,322,530),
4209 (5,27,343,549),
4210 (5,28,355,584),
4211 (5,29,378,605),
4212 (5,30,392,627),
4213 (5,31,417,665),
4214 (5,32,433,689),
4215 (5,33,460,728),
4216 (5,34,478,752),
4217 (5,35,507,776),
4218 (5,36,527,800),
4219 (5,37,548,839),
4220 (5,38,580,863),
4221 (5,39,603,887),
4222 (5,40,637,911),
4223 (5,41,662,950),
4224 (5,42,698,974),
4225 (5,43,725,998),
4226 (5,44,763,1022),
4227 (5,45,792,1046),
4228 (5,46,822,1070),
4229 (5,47,863,1094),
4230 (5,48,895,1118),
4231 (5,49,928,1142),
4232 (5,50,972,1166),
4233 (5,51,1007,1190),
4234 (5,52,1053,1214),
4235 (5,53,1090,1238),
4236 (5,54,1128,1262),
4237 (5,55,1177,1271),
4238 (5,56,1217,1295),
4239 (5,57,1258,1319),
4240 (5,58,1300,1343),
4241 (5,59,1353,1352),
4242 (5,60,1397,1376),
4243 (5,61,1557,1500),
4244 (5,62,1738,1625),
4245 (5,63,1916,1749),
4246 (5,64,2101,1873),
4247 (5,65,2295,1998),
4248 (5,66,2495,2122),
4249 (5,67,2719,2247),
4250 (5,68,2936,2371),
4251 (5,69,3160,2495),
4252 (5,70,3391,2620),
4253 (5,71,3644,2744),
4254 (5,72,3916,2868),
4255 (5,73,4208,2993),
4256 (5,74,4522,3117),
4257 (5,75,4859,3242),
4258 (5,76,5221,3366),
4259 (5,77,5610,3490),
4260 (5,78,6028,3615),
4261 (5,79,6477,3739),
4262 (5,80,6960,3863),
4263 (6,1,22,0),
4264 (6,2,27,0),
4265 (6,3,32,0),
4266 (6,4,37,0),
4267 (6,5,42,0),
4268 (6,6,47,0),
4269 (6,7,52,0),
4270 (6,8,58,0),
4271 (6,9,64,0),
4272 (6,10,70,0),
4273 (6,11,77,0),
4274 (6,12,84,0),
4275 (6,13,92,0),
4276 (6,14,100,0),
4277 (6,15,117,0),
4278 (6,16,127,0),
4279 (6,17,138,0),
4280 (6,18,150,0),
4281 (6,19,163,0),
4282 (6,20,177,0),
4283 (6,21,192,0),
4284 (6,22,208,0),
4285 (6,23,225,0),
4286 (6,24,239,0),
4287 (6,25,258,0),
4288 (6,26,278,0),
4289 (6,27,299,0),
4290 (6,28,321,0),
4291 (6,29,344,0),
4292 (6,30,368,0),
4293 (6,31,393,0),
4294 (6,32,419,0),
4295 (6,33,446,0),
4296 (6,34,474,0),
4297 (6,35,503,0),
4298 (6,36,533,0),
4299 (6,37,564,0),
4300 (6,38,596,0),
4301 (6,39,629,0),
4302 (6,40,698,0),
4303 (6,41,698,0),
4304 (6,42,734,0),
4305 (6,43,771,0),
4306 (6,44,809,0),
4307 (6,45,849,0),
4308 (6,46,891,0),
4309 (6,47,935,0),
4310 (6,48,981,0),
4311 (6,49,1029,0),
4312 (6,50,1079,0),
4313 (6,51,1131,0),
4314 (6,52,1185,0),
4315 (6,53,1241,0),
4316 (6,54,1299,0),
4317 (6,55,1359,0),
4318 (6,56,1421,0),
4319 (6,57,1485,0),
4320 (6,58,1551,0),
4321 (6,59,1619,0),
4322 (6,60,1689,0),
4323 (6,61,1902,0),
4324 (6,62,2129,0),
4325 (6,63,2357,0),
4326 (6,64,2612,0),
4327 (6,65,2883,0),
4328 (6,66,3169,0),
4329 (6,67,3455,0),
4330 (6,68,3774,0),
4331 (6,69,4109,0),
4332 (6,70,4444,0),
4333 (6,71,4720,0),
4334 (6,72,5013,0),
4335 (6,73,5325,0),
4336 (6,74,5656,0),
4337 (6,75,6008,0),
4338 (6,76,6381,0),
4339 (6,77,6778,0),
4340 (6,78,7199,0),
4341 (6,79,7646,0),
4342 (6,80,8121,0),
4343 (7,1,37,85),
4344 (7,2,44,91),
4345 (7,3,51,98),
4346 (7,4,58,106),
4347 (7,5,65,115),
4348 (7,6,72,125),
4349 (7,7,79,136),
4350 (7,8,86,148),
4351 (7,9,93,161),
4352 (7,10,100,175),
4353 (7,11,107,190),
4354 (7,12,114,206),
4355 (7,13,121,223),
4356 (7,14,128,241),
4357 (7,15,135,260),
4358 (7,16,142,280),
4359 (7,17,150,301),
4360 (7,18,159,323),
4361 (7,19,169,346),
4362 (7,20,180,370),
4363 (7,21,192,395),
4364 (7,22,205,421),
4365 (7,23,219,448),
4366 (7,24,234,476),
4367 (7,25,240,505),
4368 (7,26,257,535),
4369 (7,27,275,566),
4370 (7,28,294,598),
4371 (7,29,314,631),
4372 (7,30,335,665),
4373 (7,31,347,699),
4374 (7,32,370,733),
4375 (7,33,394,767),
4376 (7,34,419,786),
4377 (7,35,435,820),
4378 (7,36,462,854),
4379 (7,37,490,888),
4380 (7,38,509,922),
4381 (7,39,539,941),
4382 (7,40,570,975),
4383 (7,41,592,1009),
4384 (7,42,625,1028),
4385 (7,43,649,1062),
4386 (7,44,684,1096),
4387 (7,45,710,1115),
4388 (7,46,747,1149),
4389 (7,47,775,1183),
4390 (7,48,814,1202),
4391 (7,49,844,1236),
4392 (7,50,885,1255),
4393 (7,51,917,1289),
4394 (7,52,960,1323),
4395 (7,53,994,1342),
4396 (7,54,1029,1376),
4397 (7,55,1075,1395),
4398 (7,56,1112,1414),
4399 (7,57,1150,1448),
4400 (7,58,1199,1467),
4401 (7,59,1239,1501),
4402 (7,60,1330,1520),
4403 (7,61,1428,1664),
4404 (7,62,1583,1808),
4405 (7,63,1760,1951),
4406 (7,64,1932,2095),
4407 (7,65,2114,2239),
4408 (7,66,2304,2383),
4409 (7,67,2504,2527),
4410 (7,68,2713,2670),
4411 (7,69,2931,2814),
4412 (7,70,3159,2958),
4413 (7,71,3395,3102),
4414 (7,72,3648,3246),
4415 (7,73,3920,3389),
4416 (7,74,4212,3533),
4417 (7,75,4526,3677),
4418 (7,76,4863,3821),
4419 (7,77,5226,3965),
4420 (7,78,5616,4108),
4421 (7,79,6035,4252),
4422 (7,80,6485,4396),
4423 (8,1,32,100),
4424 (8,2,47,110),
4425 (8,3,52,106),
4426 (8,4,67,118),
4427 (8,5,82,131),
4428 (8,6,97,130),
4429 (8,7,102,145),
4430 (8,8,117,146),
4431 (8,9,132,163),
4432 (8,10,137,196),
4433 (8,11,152,215),
4434 (8,12,167,220),
4435 (8,13,172,241),
4436 (8,14,187,263),
4437 (8,15,202,271),
4438 (8,16,207,295),
4439 (8,17,222,305),
4440 (8,18,237,331),
4441 (8,19,242,343),
4442 (8,20,257,371),
4443 (8,21,272,385),
4444 (8,22,277,415),
4445 (8,23,292,431),
4446 (8,24,298,463),
4447 (8,25,315,481),
4448 (8,26,333,515),
4449 (8,27,342,535),
4450 (8,28,362,556),
4451 (8,29,373,592),
4452 (8,30,395,613),
4453 (8,31,418,634),
4454 (8,32,432,670),
4455 (8,33,457,691),
4456 (8,34,473,712),
4457 (8,35,500,733),
4458 (8,36,518,754),
4459 (8,37,547,790),
4460 (8,38,577,811),
4461 (8,39,598,832),
4462 (8,40,630,853),
4463 (8,41,653,874),
4464 (8,42,687,895),
4465 (8,43,712,916),
4466 (8,44,748,937),
4467 (8,45,775,958),
4468 (8,46,813,979),
4469 (8,47,842,1000),
4470 (8,48,882,1021),
4471 (8,49,913,1042),
4472 (8,50,955,1048),
4473 (8,51,988,1069),
4474 (8,52,1032,1090),
4475 (8,53,1067,1111),
4476 (8,54,1103,1117),
4477 (8,55,1150,1138),
4478 (8,56,1188,1159),
4479 (8,57,1237,1165),
4480 (8,58,1277,1186),
4481 (8,59,1328,1192),
4482 (8,60,1370,1213),
4483 (8,61,1526,1316),
4484 (8,62,1702,1419),
4485 (8,63,1875,1521),
4486 (8,64,2070,1624),
4487 (8,65,2261,1727),
4488 (8,66,2461,1830),
4489 (8,67,2686,1932),
4490 (8,68,2906,2035),
4491 (8,69,3136,2138),
4492 (8,70,3393,2241),
4493 (8,71,3646,2343),
4494 (8,72,3918,2446),
4495 (8,73,4210,2549),
4496 (8,74,4524,2652),
4497 (8,75,4861,2754),
4498 (8,76,5223,2857),
4499 (8,77,5612,2960),
4500 (8,78,6030,3063),
4501 (8,79,6480,3165),
4502 (8,80,6963,3268),
4503 (9,1,23,90),
4504 (9,2,28,98),
4505 (9,3,43,107),
4506 (9,4,48,102),
4507 (9,5,63,113),
4508 (9,6,68,126),
4509 (9,7,83,144),
4510 (9,8,88,162),
4511 (9,9,93,180),
4512 (9,10,108,198),
4513 (9,11,123,200),
4514 (9,12,128,218),
4515 (9,13,143,237),
4516 (9,14,148,257),
4517 (9,15,153,278),
4518 (9,16,168,300),
4519 (9,17,173,308),
4520 (9,18,189,332),
4521 (9,19,196,357),
4522 (9,20,204,383),
4523 (9,21,223,395),
4524 (9,22,233,423),
4525 (9,23,244,452),
4526 (9,24,266,467),
4527 (9,25,279,498),
4528 (9,26,293,530),
4529 (9,27,318,548),
4530 (9,28,334,582),
4531 (9,29,351,602),
4532 (9,30,379,638),
4533 (9,31,398,674),
4534 (9,32,418,695),
4535 (9,33,439,731),
4536 (9,34,471,752),
4537 (9,35,494,788),
4538 (9,36,518,809),
4539 (9,37,543,830),
4540 (9,38,569,866),
4541 (9,39,606,887),
4542 (9,40,634,923),
4543 (9,41,663,944),
4544 (9,42,693,965),
4545 (9,43,724,1001),
4546 (9,44,756,1022),
4547 (9,45,799,1043),
4548 (9,46,832,1064),
4549 (9,47,868,1100),
4550 (9,48,904,1121),
4551 (9,49,941,1142),
4552 (9,50,979,1163),
4553 (9,51,1018,1184),
4554 (9,52,1058,1205),
4555 (9,53,1099,1226),
4556 (9,54,1141,1247),
4557 (9,55,1184,1268),
4558 (9,56,1228,1289),
4559 (9,57,1273,1310),
4560 (9,58,1319,1331),
4561 (9,59,1366,1352),
4562 (9,60,1414,1373),
4563 (9,61,1580,1497),
4564 (9,62,1755,1621),
4565 (9,63,1939,1745),
4566 (9,64,2133,1870),
4567 (9,65,2323,1994),
4568 (9,66,2535,2118),
4569 (9,67,2758,2242),
4570 (9,68,2991,2366),
4571 (9,69,3235,2490),
4572 (9,70,3490,2615),
4573 (9,71,3750,2739),
4574 (9,72,4025,2863),
4575 (9,73,4330,2987),
4576 (9,74,4646,3111),
4577 (9,75,4997,3235),
4578 (9,76,5373,3360),
4579 (9,77,5774,3483),
4580 (9,78,6207,3608),
4581 (9,79,6667,3732),
4582 (9,80,7136,3856),
4583 (11,1,44,60),
4584 (11,2,51,66),
4585 (11,3,58,73),
4586 (11,4,75,81),
4587 (11,5,82,90),
4588 (11,6,89,100),
4589 (11,7,106,111),
4590 (11,8,113,123),
4591 (11,9,120,136),
4592 (11,10,137,150),
4593 (11,11,144,165),
4594 (11,12,151,182),
4595 (11,13,168,200),
4596 (11,14,175,219),
4597 (11,15,182,239),
4598 (11,16,199,260),
4599 (11,17,206,282),
4600 (11,18,214,305),
4601 (11,19,233,329),
4602 (11,20,243,354),
4603 (11,21,254,380),
4604 (11,22,266,392),
4605 (11,23,289,420),
4606 (11,24,303,449),
4607 (11,25,318,479),
4608 (11,26,334,509),
4609 (11,27,361,524),
4610 (11,28,379,554),
4611 (11,29,398,584),
4612 (11,30,418,614),
4613 (11,31,439,629),
4614 (11,32,461,659),
4615 (11,33,494,689),
4616 (11,34,518,704),
4617 (11,35,543,734),
4618 (11,36,569,749),
4619 (11,37,596,779),
4620 (11,38,624,809),
4621 (11,39,653,824),
4622 (11,40,683,854),
4623 (11,41,714,869),
4624 (11,42,746,899),
4625 (11,43,779,914),
4626 (11,44,823,944),
4627 (11,45,858,959),
4628 (11,46,894,989),
4629 (11,47,921,1004),
4630 (11,48,959,1019),
4631 (11,49,998,1049),
4632 (11,50,1038,1064),
4633 (11,51,1079,1079),
4634 (11,52,1121,1109),
4635 (11,53,1164,1124),
4636 (11,54,1208,1139),
4637 (11,55,1253,1154),
4638 (11,56,1299,1169),
4639 (11,57,1346,1199),
4640 (11,58,1384,1214),
4641 (11,59,1433,1229),
4642 (11,60,1483,1244),
4643 (11,61,1657,1357),
4644 (11,62,1840,1469),
4645 (11,63,2020,1582),
4646 (11,64,2222,1694),
4647 (11,65,2433,1807),
4648 (11,66,2640,1919),
4649 (11,67,2872,2032),
4650 (11,68,3114,2145),
4651 (11,69,3351,2257),
4652 (11,70,3614,2370),
4653 (11,71,3883,2482),
4654 (11,72,4172,2595),
4655 (11,73,4483,2708),
4656 (11,74,4817,2820),
4657 (11,75,5176,2933),
4658 (11,76,5562,3045),
4659 (11,77,5977,3158),
4660 (11,78,6423,3270),
4661 (11,79,6902,3383),
4662 (11,80,7417,3496);
4663 /*!40000 ALTER TABLE `player_classlevelstats` ENABLE KEYS */;
4664 UNLOCK TABLES;
4667 -- Table structure for table `player_levelstats`
4670 DROP TABLE IF EXISTS `player_levelstats`;
4671 CREATE TABLE `player_levelstats` (
4672   `race` tinyint(3) unsigned NOT NULL,
4673   `class` tinyint(3) unsigned NOT NULL,
4674   `level` tinyint(3) unsigned NOT NULL,
4675   `str` tinyint(3) unsigned NOT NULL,
4676   `agi` tinyint(3) unsigned NOT NULL,
4677   `sta` tinyint(3) unsigned NOT NULL,
4678   `inte` tinyint(3) unsigned NOT NULL,
4679   `spi` tinyint(3) unsigned NOT NULL,
4680   PRIMARY KEY  (`race`,`class`,`level`)
4681 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
4684 -- Dumping data for table `player_levelstats`
4687 LOCK TABLES `player_levelstats` WRITE;
4688 /*!40000 ALTER TABLE `player_levelstats` DISABLE KEYS */;
4689 INSERT INTO `player_levelstats` VALUES
4690 (1,1,1,23,20,22,20,20),
4691 (1,1,2,24,21,23,20,20),
4692 (1,1,3,26,22,24,20,21),
4693 (1,1,4,27,22,26,20,21),
4694 (1,1,5,28,23,27,20,21),
4695 (1,1,6,30,24,28,20,21),
4696 (1,1,7,31,25,29,21,22),
4697 (1,1,8,32,26,30,21,22),
4698 (1,1,9,34,26,32,21,22),
4699 (1,1,10,35,27,33,21,23),
4700 (1,1,11,36,28,34,21,23),
4701 (1,1,12,38,29,35,21,23),
4702 (1,1,13,39,30,37,21,24),
4703 (1,1,14,41,31,38,21,24),
4704 (1,1,15,42,32,39,21,24),
4705 (1,1,16,44,33,41,21,25),
4706 (1,1,17,45,34,42,22,25),
4707 (1,1,18,47,34,43,22,25),
4708 (1,1,19,48,35,45,22,26),
4709 (1,1,20,50,36,46,22,26),
4710 (1,1,21,51,37,48,22,26),
4711 (1,1,22,53,38,49,22,27),
4712 (1,1,23,54,39,51,22,27),
4713 (1,1,24,56,40,52,23,28),
4714 (1,1,25,58,41,53,23,28),
4715 (1,1,26,59,42,55,23,28),
4716 (1,1,27,61,43,56,23,29),
4717 (1,1,28,63,44,58,23,29),
4718 (1,1,29,64,45,59,23,30),
4719 (1,1,30,66,46,61,24,30),
4720 (1,1,31,68,47,62,24,30),
4721 (1,1,32,69,48,64,24,31),
4722 (1,1,33,71,50,66,24,31),
4723 (1,1,34,73,51,67,24,32),
4724 (1,1,35,74,52,69,24,32),
4725 (1,1,36,76,53,70,25,33),
4726 (1,1,37,78,54,72,25,33),
4727 (1,1,38,80,55,74,25,34),
4728 (1,1,39,82,56,75,25,34),
4729 (1,1,40,83,57,77,25,35),
4730 (1,1,41,85,58,79,26,35),
4731 (1,1,42,87,60,80,26,35),
4732 (1,1,43,89,61,82,26,36),
4733 (1,1,44,91,62,84,26,36),
4734 (1,1,45,93,63,85,26,37),
4735 (1,1,46,95,64,87,27,37),
4736 (1,1,47,97,66,89,27,38),
4737 (1,1,48,99,67,91,27,38),
4738 (1,1,49,101,68,93,27,39),
4739 (1,1,50,103,69,94,28,40),
4740 (1,1,51,105,71,96,28,40),
4741 (1,1,52,107,72,98,28,41),
4742 (1,1,53,109,73,100,28,41),
4743 (1,1,54,111,74,102,29,42),
4744 (1,1,55,113,76,103,29,42),
4745 (1,1,56,115,77,105,29,43),
4746 (1,1,57,117,78,107,29,43),
4747 (1,1,58,119,79,109,30,44),
4748 (1,1,59,121,81,111,30,44),
4749 (1,1,60,123,82,113,30,45),
4750 (1,1,61,125,83,115,30,46),
4751 (1,1,62,127,85,117,31,46),
4752 (1,1,63,129,86,119,31,47),
4753 (1,1,64,132,88,121,31,47),
4754 (1,1,65,134,89,123,32,48),
4755 (1,1,66,136,90,125,32,49),
4756 (1,1,67,138,92,127,32,49),
4757 (1,1,68,140,93,129,32,50),
4758 (1,1,69,143,95,131,33,50),
4759 (1,1,70,145,96,133,33,51),
4760 (1,1,71,148,97,140,33,53),
4761 (1,1,72,156,99,143,33,54),
4762 (1,1,73,162,101,148,33,55),
4763 (1,1,74,162,102,148,34,55),
4764 (1,1,75,165,104,150,34,56),
4765 (1,1,76,171,106,156,34,57),
4766 (1,1,77,171,108,157,35,58),
4767 (1,1,78,174,109,159,35,58),
4768 (1,1,79,181,111,165,35,59),
4769 (1,1,80,184,113,168,36,60),
4770 (1,2,1,22,20,22,20,21),
4771 (1,2,2,23,21,23,21,22),
4772 (1,2,3,24,21,24,21,22),
4773 (1,2,4,25,22,25,22,23),
4774 (1,2,5,26,22,26,23,24),
4775 (1,2,6,28,23,27,23,25),
4776 (1,2,7,29,24,28,24,25),
4777 (1,2,8,30,24,29,25,26),
4778 (1,2,9,31,25,30,25,27),
4779 (1,2,10,32,25,32,26,27),
4780 (1,2,11,33,26,33,27,28),
4781 (1,2,12,35,27,34,27,29),
4782 (1,2,13,36,27,35,28,30),
4783 (1,2,14,37,28,36,29,31),
4784 (1,2,15,38,29,37,30,31),
4785 (1,2,16,40,29,38,30,32),
4786 (1,2,17,41,30,40,31,33),
4787 (1,2,18,42,31,41,32,34),
4788 (1,2,19,43,31,42,33,35),
4789 (1,2,20,45,32,43,33,35),
4790 (1,2,21,46,33,45,34,36),
4791 (1,2,22,47,33,46,35,37),
4792 (1,2,23,49,34,47,36,38),
4793 (1,2,24,50,35,48,37,39),
4794 (1,2,25,51,36,50,37,40),
4795 (1,2,26,53,36,51,38,41),
4796 (1,2,27,54,37,52,39,42),
4797 (1,2,28,56,38,54,40,43),
4798 (1,2,29,57,39,55,41,43),
4799 (1,2,30,58,39,56,42,44),
4800 (1,2,31,60,40,58,43,45),
4801 (1,2,32,61,41,59,43,46),
4802 (1,2,33,63,42,60,44,47),
4803 (1,2,34,64,43,62,45,48),
4804 (1,2,35,66,44,63,46,49),
4805 (1,2,36,67,44,65,47,50),
4806 (1,2,37,69,45,66,48,51),
4807 (1,2,38,70,46,67,49,52),
4808 (1,2,39,72,47,69,50,53),
4809 (1,2,40,73,48,70,51,54),
4810 (1,2,41,75,49,72,52,55),
4811 (1,2,42,77,49,73,53,56),
4812 (1,2,43,78,50,75,54,57),
4813 (1,2,44,80,51,76,55,58),
4814 (1,2,45,81,52,78,56,59),
4815 (1,2,46,83,53,79,57,61),
4816 (1,2,47,85,54,81,58,62),
4817 (1,2,48,86,55,83,59,63),
4818 (1,2,49,88,56,84,60,64),
4819 (1,2,50,90,57,86,61,65),
4820 (1,2,51,91,58,87,62,66),
4821 (1,2,52,93,59,89,63,67),
4822 (1,2,53,95,60,91,64,68),
4823 (1,2,54,97,61,92,65,69),
4824 (1,2,55,98,61,94,66,71),
4825 (1,2,56,100,62,95,67,72),
4826 (1,2,57,102,63,97,68,73),
4827 (1,2,58,104,64,99,69,74),
4828 (1,2,59,105,65,101,70,75),
4829 (1,2,60,107,66,102,71,77),
4830 (1,2,61,109,67,104,73,78),
4831 (1,2,62,111,69,106,74,79),
4832 (1,2,63,113,70,107,75,80),
4833 (1,2,64,115,71,109,76,81),
4834 (1,2,65,116,72,111,77,83),
4835 (1,2,66,118,73,113,78,84),
4836 (1,2,67,120,74,115,79,85),
4837 (1,2,68,122,75,116,81,86),
4838 (1,2,69,124,76,118,82,88),
4839 (1,2,70,126,77,120,83,89),
4840 (1,2,71,148,78,122,84,92),
4841 (1,2,72,150,79,125,86,94),
4842 (1,2,73,152,80,127,87,96),
4843 (1,2,74,156,82,129,89,97),
4844 (1,2,75,158,83,131,90,99),
4845 (1,2,76,162,84,134,92,100),
4846 (1,2,77,164,86,136,93,103),
4847 (1,2,78,167,87,138,95,105),
4848 (1,2,79,170,88,153,96,106),
4849 (1,2,80,173,90,160,98,108),
4850 (1,4,1,21,23,21,20,20),
4851 (1,4,2,22,24,22,20,20),
4852 (1,4,3,23,26,22,20,21),
4853 (1,4,4,23,27,23,20,21),
4854 (1,4,5,24,29,24,21,21),
4855 (1,4,6,25,30,25,21,22),
4856 (1,4,7,26,32,25,21,22),
4857 (1,4,8,26,33,26,21,23),
4858 (1,4,9,27,35,27,21,23),
4859 (1,4,10,28,36,27,21,23),
4860 (1,4,11,29,38,28,22,24),
4861 (1,4,12,30,39,29,22,24),
4862 (1,4,13,31,41,30,22,25),
4863 (1,4,14,31,43,31,22,25),
4864 (1,4,15,32,44,31,22,25),
4865 (1,4,16,33,46,32,23,26),
4866 (1,4,17,34,48,33,23,26),
4867 (1,4,18,35,49,34,23,27),
4868 (1,4,19,36,51,35,23,27),
4869 (1,4,20,37,53,35,23,28),
4870 (1,4,21,38,54,36,24,28),
4871 (1,4,22,39,56,37,24,29),
4872 (1,4,23,40,58,38,24,29),
4873 (1,4,24,41,60,39,24,30),
4874 (1,4,25,42,61,40,25,30),
4875 (1,4,26,43,63,41,25,31),
4876 (1,4,27,44,65,42,25,31),
4877 (1,4,28,45,67,43,25,32),
4878 (1,4,29,46,69,43,25,32),
4879 (1,4,30,47,71,44,26,33),
4880 (1,4,31,48,72,45,26,33),
4881 (1,4,32,49,74,46,26,34),
4882 (1,4,33,50,76,47,27,34),
4883 (1,4,34,51,78,48,27,35),
4884 (1,4,35,52,80,49,27,35),
4885 (1,4,36,53,82,50,27,36),
4886 (1,4,37,54,84,51,28,36),
4887 (1,4,38,55,86,52,28,37),
4888 (1,4,39,56,88,53,28,38),
4889 (1,4,40,57,90,54,28,38),
4890 (1,4,41,58,92,55,29,39),
4891 (1,4,42,60,94,56,29,39),
4892 (1,4,43,61,96,57,29,40),
4893 (1,4,44,62,98,58,30,40),
4894 (1,4,45,63,100,59,30,41),
4895 (1,4,46,64,103,61,30,42),
4896 (1,4,47,65,105,62,31,42),
4897 (1,4,48,66,107,63,31,43),
4898 (1,4,49,68,109,64,31,44),
4899 (1,4,50,69,111,65,32,44),
4900 (1,4,51,70,113,66,32,45),
4901 (1,4,52,71,116,67,32,45),
4902 (1,4,53,73,118,68,33,46),
4903 (1,4,54,74,120,69,33,47),
4904 (1,4,55,75,122,71,33,47),
4905 (1,4,56,76,125,72,34,48),
4906 (1,4,57,78,127,73,34,49),
4907 (1,4,58,79,129,74,34,49),
4908 (1,4,59,80,131,75,35,50),
4909 (1,4,60,81,134,77,35,51),
4910 (1,4,61,83,136,78,35,51),
4911 (1,4,62,84,138,79,36,52),
4912 (1,4,63,85,141,80,36,53),
4913 (1,4,64,87,143,81,37,54),
4914 (1,4,65,88,146,83,37,54),
4915 (1,4,66,89,148,84,37,55),
4916 (1,4,67,91,151,85,38,56),
4917 (1,4,68,92,153,86,38,57),
4918 (1,4,69,94,156,88,39,57),
4919 (1,4,70,95,158,89,39,58),
4920 (1,4,71,97,161,90,39,60),
4921 (1,4,72,99,164,92,40,60),
4922 (1,4,73,100,167,94,40,61),
4923 (1,4,74,102,170,95,41,62),
4924 (1,4,75,104,173,97,41,63),
4925 (1,4,76,105,176,98,41,64),
4926 (1,4,77,107,179,100,42,65),
4927 (1,4,78,109,183,106,42,66),
4928 (1,4,79,111,186,107,43,67),
4929 (1,4,80,113,189,109,43,69),
4930 (1,5,1,20,20,20,22,23),
4931 (1,5,2,20,20,20,23,24),
4932 (1,5,3,20,20,21,25,26),
4933 (1,5,4,20,21,21,26,27),
4934 (1,5,5,21,21,21,27,28),
4935 (1,5,6,21,21,22,29,30),
4936 (1,5,7,21,21,22,30,31),
4937 (1,5,8,21,22,23,31,33),
4938 (1,5,9,21,22,23,33,34),
4939 (1,5,10,21,22,23,34,36),
4940 (1,5,11,22,22,24,36,37),
4941 (1,5,12,22,23,24,37,39),
4942 (1,5,13,22,23,25,38,40),
4943 (1,5,14,22,23,25,40,42),
4944 (1,5,15,22,23,25,41,43),
4945 (1,5,16,23,24,26,43,45),
4946 (1,5,17,23,24,26,44,46),
4947 (1,5,18,23,24,27,46,48),
4948 (1,5,19,23,24,27,47,49),
4949 (1,5,20,23,25,28,49,51),
4950 (1,5,21,24,25,28,51,53),
4951 (1,5,22,24,25,29,52,54),
4952 (1,5,23,24,26,29,54,56),
4953 (1,5,24,24,26,30,55,58),
4954 (1,5,25,25,26,30,57,59),
4955 (1,5,26,25,27,31,59,61),
4956 (1,5,27,25,27,31,60,63),
4957 (1,5,28,25,27,32,62,65),
4958 (1,5,29,25,28,32,64,66),
4959 (1,5,30,26,28,33,65,68),
4960 (1,5,31,26,28,33,67,70),
4961 (1,5,32,26,29,34,69,72),
4962 (1,5,33,27,29,34,70,73),
4963 (1,5,34,27,29,35,72,75),
4964 (1,5,35,27,30,35,74,77),
4965 (1,5,36,27,30,36,76,79),
4966 (1,5,37,28,30,36,78,81),
4967 (1,5,38,28,31,37,79,83),
4968 (1,5,39,28,31,38,81,85),
4969 (1,5,40,28,31,38,83,87),
4970 (1,5,41,29,32,39,85,88),
4971 (1,5,42,29,32,39,87,90),
4972 (1,5,43,29,33,40,89,92),
4973 (1,5,44,30,33,40,91,94),
4974 (1,5,45,30,33,41,92,96),
4975 (1,5,46,30,34,42,94,98),
4976 (1,5,47,31,34,42,96,100),
4977 (1,5,48,31,35,43,98,102),
4978 (1,5,49,31,35,44,100,104),
4979 (1,5,50,32,36,44,102,106),
4980 (1,5,51,32,36,45,104,109),
4981 (1,5,52,32,36,45,106,111),
4982 (1,5,53,33,37,46,108,113),
4983 (1,5,54,33,37,47,110,115),
4984 (1,5,55,33,38,47,112,117),
4985 (1,5,56,34,38,48,114,119),
4986 (1,5,57,34,39,49,117,121),
4987 (1,5,58,34,39,49,119,124),
4988 (1,5,59,35,40,50,121,126),
4989 (1,5,60,35,40,51,123,128),
4990 (1,5,61,35,41,51,125,130),
4991 (1,5,62,36,41,52,127,132),
4992 (1,5,63,36,41,53,129,135),
4993 (1,5,64,37,42,54,132,137),
4994 (1,5,65,37,42,54,134,139),
4995 (1,5,66,37,43,55,136,142),
4996 (1,5,67,38,43,56,138,144),
4997 (1,5,68,38,44,57,140,146),
4998 (1,5,69,39,44,57,143,149),
4999 (1,5,70,39,45,58,145,151),
5000 (1,5,71,39,46,59,148,158),
5001 (1,5,72,40,46,59,151,161),
5002 (1,5,73,40,47,60,154,164),
5003 (1,5,74,41,47,61,156,167),
5004 (1,5,75,41,48,62,159,170),
5005 (1,5,76,41,49,63,162,174),
5006 (1,5,77,42,49,64,165,177),
5007 (1,5,78,42,50,65,168,180),
5008 (1,5,79,43,50,66,171,183),
5009 (1,5,80,43,51,67,174,186),
5010 (1,6,1,23,20,22,20,20),
5011 (1,6,2,24,21,23,20,20),
5012 (1,6,3,26,22,24,20,21),
5013 (1,6,4,27,22,26,20,21),
5014 (1,6,5,28,23,27,20,21),
5015 (1,6,6,30,24,28,20,21),
5016 (1,6,7,31,25,29,21,22),
5017 (1,6,8,32,26,30,21,22),
5018 (1,6,9,34,26,32,21,22),
5019 (1,6,10,35,27,33,21,23),
5020 (1,6,11,36,28,34,21,23),
5021 (1,6,12,38,29,35,21,23),
5022 (1,6,13,39,30,37,21,24),
5023 (1,6,14,41,31,38,21,24),
5024 (1,6,15,42,32,39,21,24),
5025 (1,6,16,44,33,41,21,25),
5026 (1,6,17,45,34,42,22,25),
5027 (1,6,18,47,34,43,22,25),
5028 (1,6,19,48,35,45,22,26),
5029 (1,6,20,50,36,46,22,26),
5030 (1,6,21,51,37,48,22,26),
5031 (1,6,22,53,38,49,22,27),
5032 (1,6,23,54,39,51,22,27),
5033 (1,6,24,56,40,52,23,28),
5034 (1,6,25,58,41,53,23,28),
5035 (1,6,26,59,42,55,23,28),
5036 (1,6,27,61,43,56,23,29),
5037 (1,6,28,63,44,58,23,29),
5038 (1,6,29,64,45,59,23,30),
5039 (1,6,30,66,46,61,24,30),
5040 (1,6,31,68,47,62,24,30),
5041 (1,6,32,69,48,64,24,31),
5042 (1,6,33,71,50,66,24,31),
5043 (1,6,34,73,51,67,24,32),
5044 (1,6,35,74,52,69,24,32),
5045 (1,6,36,76,53,70,25,33),
5046 (1,6,37,78,54,72,25,33),
5047 (1,6,38,80,55,74,25,34),
5048 (1,6,39,82,56,75,25,34),
5049 (1,6,40,83,57,77,25,35),
5050 (1,6,41,85,58,79,26,35),
5051 (1,6,42,87,60,80,26,35),
5052 (1,6,43,89,61,82,26,36),
5053 (1,6,44,91,62,84,26,36),
5054 (1,6,45,93,63,85,26,37),
5055 (1,6,46,95,64,87,27,37),
5056 (1,6,47,97,66,89,27,38),
5057 (1,6,48,99,67,91,27,38),
5058 (1,6,49,101,68,93,27,39),
5059 (1,6,50,103,69,94,28,40),
5060 (1,6,51,105,71,96,28,40),
5061 (1,6,52,106,72,97,28,41),
5062 (1,6,53,107,72,98,28,41),
5063 (1,6,54,107,73,98,29,42),
5064 (1,6,55,108,73,99,29,43),
5065 (1,6,56,111,75,102,29,44),
5066 (1,6,57,113,76,104,29,44),
5067 (1,6,58,118,77,106,30,45),
5068 (1,6,59,118,79,108,30,45),
5069 (1,6,60,123,80,110,30,46),
5070 (1,6,61,125,81,112,30,47),
5071 (1,6,62,128,83,114,30,47),
5072 (1,6,63,130,84,117,31,48),
5073 (1,6,64,130,86,119,31,48),
5074 (1,6,65,140,87,128,31,49),
5075 (1,6,66,143,89,131,31,50),
5076 (1,6,67,146,90,133,32,50),
5077 (1,6,68,148,92,135,32,51),
5078 (1,6,69,151,93,138,32,52),
5079 (1,6,70,154,95,140,32,52),
5080 (1,6,71,162,97,144,33,53),
5081 (1,6,72,164,98,146,33,54),
5082 (1,6,73,165,100,148,33,55),
5083 (1,6,74,166,102,151,33,55),
5084 (1,6,75,169,103,154,34,56),
5085 (1,6,76,172,105,157,34,57),
5086 (1,6,77,175,107,157,34,58),
5087 (1,6,78,176,108,157,34,58),
5088 (1,6,79,177,110,157,35,59),
5089 (1,6,80,180,112,160,35,60),
5090 (1,8,1,20,20,20,23,22),
5091 (1,8,2,20,20,20,24,23),
5092 (1,8,3,20,20,21,26,25),
5093 (1,8,4,20,20,21,27,26),
5094 (1,8,5,20,21,21,28,27),
5095 (1,8,6,20,21,21,30,29),
5096 (1,8,7,21,21,22,31,30),
5097 (1,8,8,21,21,22,33,31),
5098 (1,8,9,21,21,22,34,33),
5099 (1,8,10,21,21,23,36,34),
5100 (1,8,11,21,22,23,37,36),
5101 (1,8,12,21,22,23,39,37),
5102 (1,8,13,21,22,24,40,38),
5103 (1,8,14,21,22,24,42,40),
5104 (1,8,15,21,22,24,43,41),
5105 (1,8,16,21,23,25,45,43),
5106 (1,8,17,22,23,25,46,44),
5107 (1,8,18,22,23,25,48,46),
5108 (1,8,19,22,23,26,49,47),
5109 (1,8,20,22,23,26,51,49),
5110 (1,8,21,22,24,26,53,51),
5111 (1,8,22,22,24,27,54,52),
5112 (1,8,23,22,24,27,56,54),
5113 (1,8,24,23,24,28,58,55),
5114 (1,8,25,23,25,28,59,57),
5115 (1,8,26,23,25,28,61,59),
5116 (1,8,27,23,25,29,63,60),
5117 (1,8,28,23,25,29,65,62),
5118 (1,8,29,23,25,30,66,64),
5119 (1,8,30,24,26,30,68,65),
5120 (1,8,31,24,26,30,70,67),
5121 (1,8,32,24,26,31,72,69),
5122 (1,8,33,24,27,31,73,70),
5123 (1,8,34,24,27,32,75,72),
5124 (1,8,35,24,27,32,77,74),
5125 (1,8,36,25,27,33,79,76),
5126 (1,8,37,25,28,33,81,78),
5127 (1,8,38,25,28,34,83,79),
5128 (1,8,39,25,28,34,85,81),
5129 (1,8,40,25,28,35,87,83),
5130 (1,8,41,26,29,35,88,85),
5131 (1,8,42,26,29,35,90,87),
5132 (1,8,43,26,29,36,92,89),
5133 (1,8,44,26,30,36,94,91),
5134 (1,8,45,26,30,37,96,92),
5135 (1,8,46,27,30,37,98,94),
5136 (1,8,47,27,31,38,100,96),
5137 (1,8,48,27,31,38,102,98),
5138 (1,8,49,27,31,39,104,100),
5139 (1,8,50,28,32,40,106,102),
5140 (1,8,51,28,32,40,109,104),
5141 (1,8,52,28,32,41,111,106),
5142 (1,8,53,28,33,41,113,108),
5143 (1,8,54,29,33,42,115,110),
5144 (1,8,55,29,33,42,117,112),
5145 (1,8,56,29,34,43,119,114),
5146 (1,8,57,29,34,43,121,117),
5147 (1,8,58,30,34,44,124,119),
5148 (1,8,59,30,35,44,126,121),
5149 (1,8,60,30,35,45,128,123),
5150 (1,8,61,30,35,46,130,125),
5151 (1,8,62,31,36,46,132,127),
5152 (1,8,63,31,36,47,135,129),
5153 (1,8,64,31,37,47,137,132),
5154 (1,8,65,32,37,48,139,134),
5155 (1,8,66,32,37,49,142,136),
5156 (1,8,67,32,38,49,144,138),
5157 (1,8,68,32,38,50,146,140),
5158 (1,8,69,33,39,50,149,143),
5159 (1,8,70,33,39,51,151,145),
5160 (1,8,71,33,39,52,154,152),
5161 (1,8,72,33,40,53,160,155),
5162 (1,8,73,33,40,54,160,158),
5163 (1,8,74,34,41,54,163,160),
5164 (1,8,75,34,41,55,166,163),
5165 (1,8,76,34,41,56,169,166),
5166 (1,8,77,35,42,57,172,169),
5167 (1,8,78,35,42,57,175,173),
5168 (1,8,79,35,43,58,178,176),
5169 (1,8,80,36,43,59,181,179),
5170 (1,9,1,20,20,21,22,22),
5171 (1,9,2,20,20,22,23,23),
5172 (1,9,3,21,21,22,24,24),
5173 (1,9,4,21,21,23,26,25),
5174 (1,9,5,21,21,23,27,27),
5175 (1,9,6,21,22,24,28,28),
5176 (1,9,7,22,22,24,29,29),
5177 (1,9,8,22,23,25,30,30),
5178 (1,9,9,22,23,26,32,31),
5179 (1,9,10,23,23,26,33,33),
5180 (1,9,11,23,24,27,34,34),
5181 (1,9,12,23,24,27,35,35),
5182 (1,9,13,24,25,28,37,36),
5183 (1,9,14,24,25,29,38,38),
5184 (1,9,15,24,25,29,39,39),
5185 (1,9,16,25,26,30,41,40),
5186 (1,9,17,25,26,31,42,42),
5187 (1,9,18,25,27,31,43,43),
5188 (1,9,19,26,27,32,45,44),
5189 (1,9,20,26,28,33,46,46),
5190 (1,9,21,26,28,33,48,47),
5191 (1,9,22,27,29,34,49,49),
5192 (1,9,23,27,29,35,51,50),
5193 (1,9,24,28,30,35,52,51),
5194 (1,9,25,28,30,36,53,53),
5195 (1,9,26,28,31,37,55,54),
5196 (1,9,27,29,31,37,56,56),
5197 (1,9,28,29,32,38,58,57),
5198 (1,9,29,30,32,39,59,59),
5199 (1,9,30,30,33,40,61,60),
5200 (1,9,31,30,33,40,62,62),
5201 (1,9,32,31,34,41,64,63),
5202 (1,9,33,31,34,42,66,65),
5203 (1,9,34,32,35,43,67,66),
5204 (1,9,35,32,35,44,69,68),
5205 (1,9,36,33,36,44,70,69),
5206 (1,9,37,33,36,45,72,71),
5207 (1,9,38,34,37,46,74,73),
5208 (1,9,39,34,38,47,75,74),
5209 (1,9,40,35,38,48,77,76),
5210 (1,9,41,35,39,48,79,78),
5211 (1,9,42,35,39,49,80,79),
5212 (1,9,43,36,40,50,82,81),
5213 (1,9,44,36,40,51,84,83),
5214 (1,9,45,37,41,52,85,84),
5215 (1,9,46,37,42,53,87,86),
5216 (1,9,47,38,42,54,89,88),
5217 (1,9,48,38,43,55,91,89),
5218 (1,9,49,39,44,55,93,91),
5219 (1,9,50,40,44,56,94,93),
5220 (1,9,51,40,45,57,96,95),
5221 (1,9,52,41,45,58,98,97),
5222 (1,9,53,41,46,59,100,98),
5223 (1,9,54,42,47,60,102,100),
5224 (1,9,55,42,47,61,103,102),
5225 (1,9,56,43,48,62,105,104),
5226 (1,9,57,43,49,63,107,106),
5227 (1,9,58,44,49,64,109,108),
5228 (1,9,59,44,50,65,111,109),
5229 (1,9,60,45,51,66,113,111),
5230 (1,9,61,46,51,67,115,113),
5231 (1,9,62,46,52,68,117,115),
5232 (1,9,63,47,53,69,119,117),
5233 (1,9,64,47,54,70,121,119),
5234 (1,9,65,48,54,71,123,121),
5235 (1,9,66,49,55,72,125,123),
5236 (1,9,67,49,56,73,127,125),
5237 (1,9,68,50,57,74,129,127),
5238 (1,9,69,50,57,75,131,129),
5239 (1,9,70,51,58,76,133,131),
5240 (1,9,71,52,59,78,135,146),
5241 (1,9,72,53,59,79,138,148),
5242 (1,9,73,54,60,80,140,151),
5243 (1,9,74,54,61,89,143,154),
5244 (1,9,75,55,62,91,145,156),
5245 (1,9,76,56,63,92,148,159),
5246 (1,9,77,57,64,93,151,162),
5247 (1,9,78,57,65,95,153,165),
5248 (1,9,79,58,66,96,156,168),
5249 (1,9,80,59,67,97,159,170),
5250 (2,1,1,26,17,24,17,23),
5251 (2,1,2,27,18,25,17,23),
5252 (2,1,3,29,19,26,17,24),
5253 (2,1,4,30,19,27,17,24),
5254 (2,1,5,31,20,29,17,24),
5255 (2,1,6,32,21,30,17,24),
5256 (2,1,7,34,22,31,18,25),
5257 (2,1,8,35,23,32,18,25),
5258 (2,1,9,37,24,34,18,25),
5259 (2,1,10,38,24,35,18,26),
5260 (2,1,11,39,25,36,18,26),
5261 (2,1,12,41,26,37,18,26),
5262 (2,1,13,42,27,39,18,27),
5263 (2,1,14,44,28,40,18,27),
5264 (2,1,15,45,29,41,18,27),
5265 (2,1,16,47,30,43,19,28),
5266 (2,1,17,48,31,44,19,28),
5267 (2,1,18,50,32,45,19,28),
5268 (2,1,19,51,33,47,19,29),
5269 (2,1,20,53,34,48,19,29),
5270 (2,1,21,54,34,50,19,29),
5271 (2,1,22,56,35,51,19,30),
5272 (2,1,23,57,36,52,20,30),
5273 (2,1,24,59,37,54,20,30),
5274 (2,1,25,60,38,55,20,31),
5275 (2,1,26,62,39,57,20,31),
5276 (2,1,27,64,40,58,20,32),
5277 (2,1,28,65,41,60,20,32),
5278 (2,1,29,67,43,61,21,32),
5279 (2,1,30,69,44,63,21,33),
5280 (2,1,31,70,45,64,21,33),
5281 (2,1,32,72,46,66,21,34),
5282 (2,1,33,74,47,67,21,34),
5283 (2,1,34,76,48,69,21,35),
5284 (2,1,35,77,49,71,22,35),
5285 (2,1,36,79,50,72,22,36),
5286 (2,1,37,81,51,74,22,36),
5287 (2,1,38,83,52,76,22,36),
5288 (2,1,39,84,53,77,22,37),
5289 (2,1,40,86,55,79,23,37),
5290 (2,1,41,88,56,81,23,38),
5291 (2,1,42,90,57,82,23,38),
5292 (2,1,43,92,58,84,23,39),
5293 (2,1,44,94,59,86,23,39),
5294 (2,1,45,96,60,87,24,40),
5295 (2,1,46,98,62,89,24,40),
5296 (2,1,47,100,63,91,24,41),
5297 (2,1,48,101,64,93,24,41),
5298 (2,1,49,103,65,94,25,42),
5299 (2,1,50,105,66,96,25,42),
5300 (2,1,51,107,68,98,25,43),
5301 (2,1,52,109,69,100,25,43),
5302 (2,1,53,111,70,102,25,44),
5303 (2,1,54,113,71,104,26,45),
5304 (2,1,55,115,73,105,26,45),
5305 (2,1,56,118,74,107,26,46),
5306 (2,1,57,120,75,109,26,46),
5307 (2,1,58,122,77,111,27,47),
5308 (2,1,59,124,78,113,27,47),
5309 (2,1,60,126,79,115,27,48),
5310 (2,1,61,128,81,117,27,48),
5311 (2,1,62,130,82,119,28,49),
5312 (2,1,63,132,83,121,28,50),
5313 (2,1,64,135,85,123,28,50),
5314 (2,1,65,137,86,125,29,51),
5315 (2,1,66,139,87,127,29,52),
5316 (2,1,67,141,89,129,29,52),
5317 (2,1,68,143,90,131,29,53),
5318 (2,1,69,146,92,133,30,53),
5319 (2,1,70,148,93,135,30,54),
5320 (2,1,71,157,94,142,30,55),
5321 (2,1,72,162,96,148,30,56),
5322 (2,1,73,165,98,150,30,57),
5323 (2,1,74,168,99,153,31,57),
5324 (2,1,75,170,101,154,31,58),
5325 (2,1,76,172,103,156,31,59),
5326 (2,1,77,174,105,159,32,60),
5327 (2,1,78,179,106,162,32,60),
5328 (2,1,79,184,108,167,32,61),
5329 (2,1,80,187,110,170,33,62),
5330 (2,3,1,23,20,23,17,24),
5331 (2,3,2,23,21,24,18,25),
5332 (2,3,3,24,23,25,18,25),
5333 (2,3,4,24,24,26,19,26),
5334 (2,3,5,25,25,27,19,26),
5335 (2,3,6,25,27,28,20,27),
5336 (2,3,7,26,28,28,21,28),
5337 (2,3,8,26,30,29,21,28),
5338 (2,3,9,26,31,30,22,29),
5339 (2,3,10,27,33,31,22,30),
5340 (2,3,11,27,34,32,23,30),
5341 (2,3,12,28,36,33,24,31),
5342 (2,3,13,28,37,34,24,32),
5343 (2,3,14,29,39,35,25,33),
5344 (2,3,15,29,40,36,26,33),
5345 (2,3,16,30,42,37,26,34),
5346 (2,3,17,30,43,39,27,35),
5347 (2,3,18,31,45,40,28,35),
5348 (2,3,19,31,47,41,28,36),
5349 (2,3,20,32,48,42,29,37),
5350 (2,3,21,32,50,43,30,38),
5351 (2,3,22,33,51,44,31,39),
5352 (2,3,23,34,53,45,31,39),
5353 (2,3,24,34,55,46,32,40),
5354 (2,3,25,35,57,47,33,41),
5355 (2,3,26,35,58,48,34,42),
5356 (2,3,27,36,60,50,34,43),
5357 (2,3,28,36,62,51,35,43),
5358 (2,3,29,37,63,52,36,44),
5359 (2,3,30,38,65,53,37,45),
5360 (2,3,31,38,67,54,37,46),
5361 (2,3,32,39,69,56,38,47),
5362 (2,3,33,39,71,57,39,48),
5363 (2,3,34,40,72,58,40,49),
5364 (2,3,35,41,74,59,41,49),
5365 (2,3,36,41,76,61,42,50),
5366 (2,3,37,42,78,62,42,51),
5367 (2,3,38,43,80,63,43,52),
5368 (2,3,39,43,82,64,44,53),
5369 (2,3,40,44,84,66,45,54),
5370 (2,3,41,45,86,67,46,55),
5371 (2,3,42,45,88,68,47,56),
5372 (2,3,43,46,90,70,47,57),
5373 (2,3,44,47,91,71,48,58),
5374 (2,3,45,47,93,72,49,59),
5375 (2,3,46,48,95,74,50,60),
5376 (2,3,47,49,98,75,51,61),
5377 (2,3,48,50,100,77,52,62),
5378 (2,3,49,50,102,78,53,63),
5379 (2,3,50,51,104,79,54,64),
5380 (2,3,51,52,106,81,55,65),
5381 (2,3,52,52,108,82,56,66),
5382 (2,3,53,53,110,84,57,67),
5383 (2,3,54,54,112,85,58,68),
5384 (2,3,55,55,114,87,59,69),
5385 (2,3,56,55,116,88,60,70),
5386 (2,3,57,56,118,90,61,71),
5387 (2,3,58,57,121,91,62,72),
5388 (2,3,59,58,123,93,63,73),
5389 (2,3,60,59,125,94,64,74),
5390 (2,3,61,59,127,96,65,76),
5391 (2,3,62,60,130,97,66,77),
5392 (2,3,63,61,132,99,67,78),
5393 (2,3,64,62,134,100,68,79),
5394 (2,3,65,63,136,102,69,80),
5395 (2,3,66,64,139,104,70,81),
5396 (2,3,67,64,141,105,71,82),
5397 (2,3,68,65,143,107,72,84),
5398 (2,3,69,66,146,108,73,85),
5399 (2,3,70,67,148,110,74,86),
5400 (2,3,71,68,151,112,75,87),
5401 (2,3,72,69,154,114,76,88),
5402 (2,3,73,70,157,116,77,90),
5403 (2,3,74,71,160,118,79,91),
5404 (2,3,75,72,163,120,80,93),
5405 (2,3,76,73,166,122,81,94),
5406 (2,3,77,74,169,124,83,96),
5407 (2,3,78,75,172,126,84,97),
5408 (2,3,79,76,175,128,85,99),
5409 (2,3,80,77,178,130,87,100),
5410 (2,4,1,24,20,23,17,23),
5411 (2,4,2,25,21,24,17,23),
5412 (2,4,3,25,23,24,17,24),
5413 (2,4,4,26,24,25,17,24),
5414 (2,4,5,27,26,26,18,24),
5415 (2,4,6,28,27,26,18,25),
5416 (2,4,7,29,29,27,18,25),
5417 (2,4,8,29,30,28,18,26),
5418 (2,4,9,30,32,29,18,26),
5419 (2,4,10,31,33,29,19,26),
5420 (2,4,11,32,35,30,19,27),
5421 (2,4,12,33,37,31,19,27),
5422 (2,4,13,34,38,32,19,28),
5423 (2,4,14,34,40,32,19,28),
5424 (2,4,15,35,41,33,19,28),
5425 (2,4,16,36,43,34,20,29),
5426 (2,4,17,37,45,35,20,29),
5427 (2,4,18,38,46,36,20,30),
5428 (2,4,19,39,48,37,20,30),
5429 (2,4,20,40,50,37,21,31),
5430 (2,4,21,41,52,38,21,31),
5431 (2,4,22,42,53,39,21,31),
5432 (2,4,23,43,55,40,21,32),
5433 (2,4,24,43,57,41,21,32),
5434 (2,4,25,44,59,42,22,33),
5435 (2,4,26,45,60,43,22,33),
5436 (2,4,27,46,62,44,22,34),
5437 (2,4,28,47,64,44,22,34),
5438 (2,4,29,48,66,45,23,35),
5439 (2,4,30,49,68,46,23,35),
5440 (2,4,31,50,70,47,23,36),
5441 (2,4,32,51,72,48,23,36),
5442 (2,4,33,53,73,49,24,37),
5443 (2,4,34,54,75,50,24,38),
5444 (2,4,35,55,77,51,24,38),
5445 (2,4,36,56,79,52,24,39),
5446 (2,4,37,57,81,53,25,39),
5447 (2,4,38,58,83,54,25,40),
5448 (2,4,39,59,85,55,25,40),
5449 (2,4,40,60,87,56,26,41),
5450 (2,4,41,61,89,57,26,41),
5451 (2,4,42,62,91,58,26,42),
5452 (2,4,43,63,93,59,27,43),
5453 (2,4,44,65,95,60,27,43),
5454 (2,4,45,66,98,61,27,44),
5455 (2,4,46,67,100,62,27,44),
5456 (2,4,47,68,102,64,28,45),
5457 (2,4,48,69,104,65,28,46),
5458 (2,4,49,71,106,66,28,46),
5459 (2,4,50,72,108,67,29,47),
5460 (2,4,51,73,110,68,29,48),
5461 (2,4,52,74,113,69,29,48),
5462 (2,4,53,75,115,70,30,49),
5463 (2,4,54,77,117,71,30,50),
5464 (2,4,55,78,119,73,30,50),
5465 (2,4,56,79,122,74,31,51),
5466 (2,4,57,80,124,75,31,52),
5467 (2,4,58,82,126,76,31,52),
5468 (2,4,59,83,129,77,32,53),
5469 (2,4,60,84,131,78,32,54),
5470 (2,4,61,86,133,80,33,54),
5471 (2,4,62,87,136,81,33,55),
5472 (2,4,63,88,138,82,33,56),
5473 (2,4,64,90,140,83,34,57),
5474 (2,4,65,91,143,85,34,57),
5475 (2,4,66,92,145,86,34,58),
5476 (2,4,67,94,148,87,35,59),
5477 (2,4,68,95,150,88,35,59),
5478 (2,4,69,97,153,90,36,60),
5479 (2,4,70,98,155,91,36,61),
5480 (2,4,71,100,158,92,36,62),
5481 (2,4,72,102,161,94,37,62),
5482 (2,4,73,103,164,99,37,63),
5483 (2,4,74,105,167,100,38,64),
5484 (2,4,75,107,170,102,38,65),
5485 (2,4,76,108,173,102,38,66),
5486 (2,4,77,110,176,102,39,67),
5487 (2,4,78,112,180,103,39,68),
5488 (2,4,79,114,183,105,40,69),
5489 (2,4,80,116,186,107,40,70),
5490 (2,6,1,26,17,24,17,23),
5491 (2,6,2,27,18,25,17,23),
5492 (2,6,3,29,19,26,17,24),
5493 (2,6,4,30,19,27,17,24),
5494 (2,6,5,31,20,29,17,24),
5495 (2,6,6,32,21,30,17,24),
5496 (2,6,7,34,22,31,18,25),
5497 (2,6,8,35,23,32,18,25),
5498 (2,6,9,37,24,34,18,25),
5499 (2,6,10,38,24,35,18,26),
5500 (2,6,11,39,25,36,18,26),
5501 (2,6,12,41,26,37,18,26),
5502 (2,6,13,42,27,39,18,27),
5503 (2,6,14,44,28,40,18,27),
5504 (2,6,15,45,29,41,18,27),
5505 (2,6,16,47,30,43,19,28),
5506 (2,6,17,48,31,44,19,28),
5507 (2,6,18,50,32,45,19,28),
5508 (2,6,19,51,33,47,19,29),
5509 (2,6,20,53,34,48,19,29),
5510 (2,6,21,54,34,50,19,29),
5511 (2,6,22,56,35,51,19,30),
5512 (2,6,23,57,36,52,20,30),
5513 (2,6,24,59,37,54,20,30),
5514 (2,6,25,60,38,55,20,31),
5515 (2,6,26,62,39,57,20,31),
5516 (2,6,27,64,40,58,20,32),
5517 (2,6,28,65,41,60,20,32),
5518 (2,6,29,67,43,61,21,32),
5519 (2,6,30,69,44,63,21,33),
5520 (2,6,31,70,45,64,21,33),
5521 (2,6,32,72,46,66,21,34),
5522 (2,6,33,74,47,67,21,34),
5523 (2,6,34,76,48,69,21,35),
5524 (2,6,35,77,49,71,22,35),
5525 (2,6,36,79,50,72,22,36),
5526 (2,6,37,81,51,74,22,36),
5527 (2,6,38,83,52,76,22,36),
5528 (2,6,39,84,53,77,22,37),
5529 (2,6,40,86,55,79,23,37),
5530 (2,6,41,88,56,81,23,38),
5531 (2,6,42,90,57,82,23,38),
5532 (2,6,43,92,58,84,23,39),
5533 (2,6,44,94,59,86,23,39),
5534 (2,6,45,96,60,87,24,40),
5535 (2,6,46,98,62,89,24,40),
5536 (2,6,47,100,63,91,24,41),
5537 (2,6,48,101,64,93,24,41),
5538 (2,6,49,103,65,94,25,42),
5539 (2,6,50,105,66,96,25,42),
5540 (2,6,51,107,68,98,25,43),
5541 (2,6,52,109,69,100,25,43),
5542 (2,6,53,110,69,100,25,44),
5543 (2,6,54,111,70,101,26,45),
5544 (2,6,55,111,70,101,26,45),
5545 (2,6,56,114,72,104,26,46),
5546 (2,6,57,116,73,106,26,46),
5547 (2,6,58,118,74,108,27,47),
5548 (2,6,59,124,76,110,27,47),
5549 (2,6,60,126,77,112,27,48),
5550 (2,6,61,128,78,114,27,49),
5551 (2,6,62,131,80,116,27,49),
5552 (2,6,63,133,81,119,28,50),
5553 (2,6,64,136,83,121,28,50),
5554 (2,6,65,136,84,123,28,51),
5555 (2,6,66,142,86,126,28,52),
5556 (2,6,67,145,87,128,29,52),
5557 (2,6,68,147,89,130,29,53),
5558 (2,6,69,150,90,133,29,54),
5559 (2,6,70,157,92,135,29,54),
5560 (2,6,71,160,94,138,30,55),
5561 (2,6,72,163,95,140,30,56),
5562 (2,6,73,166,97,151,30,57),
5563 (2,6,74,169,99,154,30,57),
5564 (2,6,75,172,100,156,31,58),
5565 (2,6,76,175,102,160,31,59),
5566 (2,6,77,179,104,162,31,60),
5567 (2,6,78,182,105,165,31,60),
5568 (2,6,79,191,107,168,32,61),
5569 (2,6,80,194,109,171,32,62),
5570 (2,7,1,24,17,23,18,25),
5571 (2,7,2,25,17,24,19,26),
5572 (2,7,3,26,18,25,20,27),
5573 (2,7,4,26,18,26,21,28),
5574 (2,7,5,27,19,27,22,29),
5575 (2,7,6,28,19,28,23,30),
5576 (2,7,7,29,20,29,24,31),
5577 (2,7,8,30,20,30,25,32),
5578 (2,7,9,31,21,31,26,33),
5579 (2,7,10,32,21,32,27,34),
5580 (2,7,11,33,22,33,28,36),
5581 (2,7,12,34,22,34,29,37),
5582 (2,7,13,34,23,35,30,38),
5583 (2,7,14,35,23,36,31,39),
5584 (2,7,15,36,24,37,32,40),
5585 (2,7,16,37,24,39,33,41),
5586 (2,7,17,38,25,40,34,43),
5587 (2,7,18,39,25,41,35,44),
5588 (2,7,19,40,26,42,36,45),
5589 (2,7,20,41,26,43,37,46),
5590 (2,7,21,42,27,44,38,47),
5591 (2,7,22,43,27,45,39,49),
5592 (2,7,23,44,28,47,40,50),
5593 (2,7,24,45,28,48,41,51),
5594 (2,7,25,47,29,49,43,52),
5595 (2,7,26,48,30,50,44,54),
5596 (2,7,27,49,30,52,45,55),
5597 (2,7,28,50,31,53,46,56),
5598 (2,7,29,51,31,54,47,58),
5599 (2,7,30,52,32,55,48,59),
5600 (2,7,31,53,33,57,50,60),
5601 (2,7,32,54,33,58,51,62),
5602 (2,7,33,55,34,59,52,63),
5603 (2,7,34,57,34,61,53,65),
5604 (2,7,35,58,35,62,55,66),
5605 (2,7,36,59,36,63,56,67),
5606 (2,7,37,60,36,65,57,69),
5607 (2,7,38,61,37,66,58,70),
5608 (2,7,39,62,38,67,60,72),
5609 (2,7,40,64,38,69,61,73),
5610 (2,7,41,65,39,70,62,75),
5611 (2,7,42,66,40,72,64,76),
5612 (2,7,43,67,40,73,65,78),
5613 (2,7,44,69,41,74,66,79),
5614 (2,7,45,70,42,76,68,81),
5615 (2,7,46,71,42,77,69,82),
5616 (2,7,47,72,43,79,70,84),
5617 (2,7,48,74,44,80,72,85),
5618 (2,7,49,75,45,82,73,87),
5619 (2,7,50,76,45,83,75,89),
5620 (2,7,51,78,46,85,76,90),
5621 (2,7,52,79,47,86,77,92),
5622 (2,7,53,80,47,88,79,93),
5623 (2,7,54,82,48,90,80,95),
5624 (2,7,55,83,49,91,82,97),
5625 (2,7,56,85,50,93,83,98),
5626 (2,7,57,86,50,94,85,100),
5627 (2,7,58,87,51,96,86,102),
5628 (2,7,59,89,52,97,88,103),
5629 (2,7,60,90,53,99,89,105),
5630 (2,7,61,92,54,101,91,107),
5631 (2,7,62,93,54,102,92,109),
5632 (2,7,63,95,55,104,94,110),
5633 (2,7,64,96,56,106,95,112),
5634 (2,7,65,97,57,107,97,114),
5635 (2,7,66,99,58,109,99,116),
5636 (2,7,67,100,58,111,100,118),
5637 (2,7,68,102,59,113,102,119),
5638 (2,7,69,103,60,114,103,121),
5639 (2,7,70,105,61,116,105,123),
5640 (2,7,71,106,62,118,117,125),
5641 (2,7,72,108,63,120,119,128),
5642 (2,7,73,110,64,122,122,130),
5643 (2,7,74,112,65,125,124,132),
5644 (2,7,75,114,66,127,126,134),
5645 (2,7,76,116,67,129,128,137),
5646 (2,7,77,117,68,131,128,139),
5647 (2,7,78,119,69,133,133,141),
5648 (2,7,79,121,70,136,135,144),
5649 (2,7,80,123,71,138,137,146),
5650 (2,9,1,23,17,23,19,25),
5651 (2,9,2,23,17,24,20,26),
5652 (2,9,3,24,18,24,21,27),
5653 (2,9,4,24,18,25,23,28),
5654 (2,9,5,24,18,25,24,30),
5655 (2,9,6,24,19,26,25,31),
5656 (2,9,7,25,19,26,26,32),
5657 (2,9,8,25,20,27,27,33),
5658 (2,9,9,25,20,27,29,34),
5659 (2,9,10,26,20,28,30,36),
5660 (2,9,11,26,21,29,31,37),
5661 (2,9,12,26,21,29,33,38),
5662 (2,9,13,27,22,30,34,39),
5663 (2,9,14,27,22,31,35,41),
5664 (2,9,15,27,23,31,37,42),
5665 (2,9,16,28,23,32,38,43),
5666 (2,9,17,28,23,32,39,45),
5667 (2,9,18,28,24,33,41,46),
5668 (2,9,19,29,24,34,42,47),
5669 (2,9,20,29,25,34,43,49),
5670 (2,9,21,29,25,35,45,50),
5671 (2,9,22,30,26,36,46,51),
5672 (2,9,23,30,26,37,48,53),
5673 (2,9,24,30,27,37,49,54),
5674 (2,9,25,31,27,38,51,56),
5675 (2,9,26,31,28,39,52,57),
5676 (2,9,27,32,28,39,54,59),
5677 (2,9,28,32,29,40,55,60),
5678 (2,9,29,32,29,41,57,62),
5679 (2,9,30,33,30,42,58,63),
5680 (2,9,31,33,30,42,60,65),
5681 (2,9,32,34,31,43,61,66),
5682 (2,9,33,34,31,44,63,68),
5683 (2,9,34,35,32,45,64,69),
5684 (2,9,35,35,32,45,66,71),
5685 (2,9,36,36,33,46,68,72),
5686 (2,9,37,36,34,47,69,74),
5687 (2,9,38,36,34,48,71,76),
5688 (2,9,39,37,35,49,72,77),
5689 (2,9,40,37,35,50,74,79),
5690 (2,9,41,38,36,50,76,80),
5691 (2,9,42,38,36,51,77,82),
5692 (2,9,43,39,37,52,79,84),
5693 (2,9,44,39,38,53,81,85),
5694 (2,9,45,40,38,54,83,87),
5695 (2,9,46,40,39,55,84,89),
5696 (2,9,47,41,39,56,86,91),
5697 (2,9,48,41,40,56,88,92),
5698 (2,9,49,42,41,57,90,94),
5699 (2,9,50,42,41,58,91,96),
5700 (2,9,51,43,42,59,93,98),
5701 (2,9,52,43,43,60,95,99),
5702 (2,9,53,44,43,61,97,101),
5703 (2,9,54,45,44,62,99,103),
5704 (2,9,55,45,45,63,101,105),
5705 (2,9,56,46,45,64,102,107),
5706 (2,9,57,46,46,65,104,109),
5707 (2,9,58,47,47,66,106,110),
5708 (2,9,59,47,47,67,108,112),
5709 (2,9,60,48,48,68,110,114),
5710 (2,9,61,48,49,69,112,116),
5711 (2,9,62,49,49,70,114,118),
5712 (2,9,63,50,50,71,116,120),
5713 (2,9,64,50,51,72,118,122),
5714 (2,9,65,51,51,73,120,124),
5715 (2,9,66,52,52,74,122,126),
5716 (2,9,67,52,53,75,124,128),
5717 (2,9,68,53,54,76,126,130),
5718 (2,9,69,53,54,77,128,132),
5719 (2,9,70,54,55,78,130,134),
5720 (2,9,71,55,56,88,134,145),
5721 (2,9,72,56,56,89,135,147),
5722 (2,9,73,57,57,90,137,150),
5723 (2,9,74,57,58,91,142,153),
5724 (2,9,75,58,59,93,142,155),
5725 (2,9,76,59,60,94,145,158),
5726 (2,9,77,60,61,95,148,161),
5727 (2,9,78,60,62,97,150,164),
5728 (2,9,79,61,63,98,153,167),
5729 (2,9,80,62,64,99,156,169),
5730 (3,1,1,25,16,25,19,19),
5731 (3,1,2,26,17,26,19,19),
5732 (3,1,3,28,18,27,19,20),
5733 (3,1,4,29,18,28,19,20),
5734 (3,1,5,30,19,30,19,20),
5735 (3,1,6,31,20,31,19,20),
5736 (3,1,7,33,21,32,20,21),
5737 (3,1,8,34,22,33,20,21),
5738 (3,1,9,36,23,35,20,21),
5739 (3,1,10,37,23,36,20,22),
5740 (3,1,11,38,24,37,20,22),
5741 (3,1,12,40,25,38,20,22),
5742 (3,1,13,41,26,40,20,23),
5743 (3,1,14,43,27,41,20,23),
5744 (3,1,15,44,28,42,20,23),
5745 (3,1,16,46,29,44,21,24),
5746 (3,1,17,47,30,45,21,24),
5747 (3,1,18,49,31,46,21,24),
5748 (3,1,19,50,32,48,21,25),
5749 (3,1,20,52,33,49,21,25),
5750 (3,1,21,53,34,51,21,26),
5751 (3,1,22,55,34,52,21,26),
5752 (3,1,23,56,35,53,21,26),
5753 (3,1,24,58,36,55,22,27),
5754 (3,1,25,59,37,56,22,27),
5755 (3,1,26,61,38,58,22,27),
5756 (3,1,27,63,39,59,22,28),
5757 (3,1,28,64,41,61,22,28),
5758 (3,1,29,66,42,62,22,29),
5759 (3,1,30,68,43,64,23,29),
5760 (3,1,31,69,44,65,23,30),
5761 (3,1,32,71,45,67,23,30),
5762 (3,1,33,73,46,68,23,30),
5763 (3,1,34,75,47,70,23,31),
5764 (3,1,35,76,48,72,24,31),
5765 (3,1,36,78,49,73,24,32),
5766 (3,1,37,80,50,75,24,32),
5767 (3,1,38,82,51,76,24,33),
5768 (3,1,39,84,52,78,24,33),
5769 (3,1,40,85,54,80,24,34),
5770 (3,1,41,87,55,81,25,34),
5771 (3,1,42,89,56,83,25,35),
5772 (3,1,43,91,57,85,25,35),
5773 (3,1,44,93,58,87,25,36),
5774 (3,1,45,95,59,88,26,36),
5775 (3,1,46,97,61,90,26,37),
5776 (3,1,47,99,62,92,26,37),
5777 (3,1,48,101,63,94,26,38),
5778 (3,1,49,102,64,95,26,38),
5779 (3,1,50,104,65,97,27,39),
5780 (3,1,51,106,67,99,27,39),
5781 (3,1,52,108,68,101,27,40),
5782 (3,1,53,110,69,103,27,40),
5783 (3,1,54,112,70,104,28,41),
5784 (3,1,55,115,72,106,28,41),
5785 (3,1,56,117,73,108,28,42),
5786 (3,1,57,119,74,110,28,42),
5787 (3,1,58,121,76,112,29,43),
5788 (3,1,59,123,77,114,29,43),
5789 (3,1,60,125,78,116,29,44),
5790 (3,1,61,127,80,118,29,45),
5791 (3,1,62,129,81,120,30,45),
5792 (3,1,63,131,82,122,30,46),
5793 (3,1,64,134,84,124,30,46),
5794 (3,1,65,136,85,126,31,47),
5795 (3,1,66,138,86,128,31,48),
5796 (3,1,67,140,88,130,31,48),
5797 (3,1,68,142,89,132,31,49),
5798 (3,1,69,145,91,134,32,49),
5799 (3,1,70,147,92,136,32,50),
5800 (3,1,71,150,93,138,32,51),
5801 (3,1,72,152,95,141,32,52),
5802 (3,1,73,164,97,151,32,53),
5803 (3,1,74,164,98,151,33,53),
5804 (3,1,75,170,100,156,33,54),
5805 (3,1,76,173,102,160,33,55),
5806 (3,1,77,173,104,160,34,56),
5807 (3,1,78,176,105,162,34,56),
5808 (3,1,79,183,107,168,34,57),
5809 (3,1,80,186,109,171,35,58),
5810 (3,2,1,24,16,25,19,20),
5811 (3,2,2,25,17,26,20,21),
5812 (3,2,3,26,17,27,20,21),
5813 (3,2,4,27,18,28,21,22),
5814 (3,2,5,28,18,29,22,23),
5815 (3,2,6,29,19,30,22,24),
5816 (3,2,7,31,20,31,23,24),
5817 (3,2,8,32,20,32,24,25),
5818 (3,2,9,33,21,33,24,26),
5819 (3,2,10,34,21,34,25,26),
5820 (3,2,11,35,22,36,26,27),
5821 (3,2,12,36,23,37,26,28),
5822 (3,2,13,38,23,38,27,29),
5823 (3,2,14,39,24,39,28,30),
5824 (3,2,15,40,25,40,29,30),
5825 (3,2,16,41,25,41,29,31),
5826 (3,2,17,43,26,43,30,32),
5827 (3,2,18,44,27,44,31,33),
5828 (3,2,19,45,28,45,32,34),
5829 (3,2,20,47,28,46,32,35),
5830 (3,2,21,48,29,47,33,35),
5831 (3,2,22,49,30,49,34,36),
5832 (3,2,23,51,30,50,35,37),
5833 (3,2,24,52,31,51,36,38),
5834 (3,2,25,53,32,52,36,39),
5835 (3,2,26,55,33,54,37,40),
5836 (3,2,27,56,33,55,38,41),
5837 (3,2,28,57,34,56,39,42),
5838 (3,2,29,59,35,58,40,43),
5839 (3,2,30,60,36,59,41,43),
5840 (3,2,31,62,37,60,42,44),
5841 (3,2,32,63,37,62,42,45),
5842 (3,2,33,65,38,63,43,46),
5843 (3,2,34,66,39,65,44,47),
5844 (3,2,35,68,40,66,45,48),
5845 (3,2,36,69,41,67,46,49),
5846 (3,2,37,71,41,69,47,50),
5847 (3,2,38,72,42,70,48,51),
5848 (3,2,39,74,43,72,49,52),
5849 (3,2,40,75,44,73,50,53),
5850 (3,2,41,77,45,75,51,54),
5851 (3,2,42,78,46,76,52,55),
5852 (3,2,43,80,47,78,53,56),
5853 (3,2,44,82,47,79,54,57),
5854 (3,2,45,83,48,81,55,59),
5855 (3,2,46,85,49,82,56,60),
5856 (3,2,47,87,50,84,57,61),
5857 (3,2,48,88,51,85,58,62),
5858 (3,2,49,90,52,87,59,63),
5859 (3,2,50,92,53,89,60,64),
5860 (3,2,51,93,54,90,61,65),
5861 (3,2,52,95,55,92,62,66),
5862 (3,2,53,97,56,93,63,67),
5863 (3,2,54,98,57,95,64,69),
5864 (3,2,55,100,58,97,65,70),
5865 (3,2,56,102,59,98,66,71),
5866 (3,2,57,104,60,100,67,72),
5867 (3,2,58,106,61,102,68,73),
5868 (3,2,59,107,62,103,69,74),
5869 (3,2,60,109,63,105,70,76),
5870 (3,2,61,111,64,107,72,77),
5871 (3,2,62,113,65,109,73,78),
5872 (3,2,63,115,66,110,74,79),
5873 (3,2,64,117,67,112,75,80),
5874 (3,2,65,118,68,114,76,82),
5875 (3,2,66,120,69,116,77,83),
5876 (3,2,67,122,70,118,78,84),
5877 (3,2,68,124,71,119,80,85),
5878 (3,2,69,126,72,121,81,87),
5879 (3,2,70,128,73,123,82,88),
5880 (3,2,71,150,74,125,83,89),
5881 (3,2,72,152,75,128,85,91),
5882 (3,2,73,156,76,130,86,93),
5883 (3,2,74,158,78,132,88,94),
5884 (3,2,75,161,79,134,89,96),
5885 (3,2,76,164,80,137,91,97),
5886 (3,2,77,166,82,139,92,99),
5887 (3,2,78,170,83,141,94,101),
5888 (3,2,79,172,84,144,95,102),
5889 (3,2,80,175,86,146,97,104),
5890 (3,3,1,22,19,24,19,20),
5891 (3,3,2,22,20,25,20,21),
5892 (3,3,3,23,22,26,20,21),
5893 (3,3,4,23,23,27,21,22),
5894 (3,3,5,24,25,28,21,23),
5895 (3,3,6,24,26,29,22,23),
5896 (3,3,7,25,27,29,23,24),
5897 (3,3,8,25,29,30,23,25),
5898 (3,3,9,25,30,31,24,25),
5899 (3,3,10,26,32,32,24,26),
5900 (3,3,11,26,33,33,25,27),
5901 (3,3,12,27,35,34,26,27),
5902 (3,3,13,27,36,35,26,28),
5903 (3,3,14,28,38,36,27,29),
5904 (3,3,15,28,39,37,28,29),
5905 (3,3,16,29,41,38,28,30),
5906 (3,3,17,29,42,39,29,31),
5907 (3,3,18,30,44,41,30,32),
5908 (3,3,19,30,46,42,30,32),
5909 (3,3,20,31,47,43,31,33),
5910 (3,3,21,32,49,44,32,34),
5911 (3,3,22,32,51,45,33,35),
5912 (3,3,23,33,52,46,33,36),
5913 (3,3,24,33,54,47,34,36),
5914 (3,3,25,34,56,48,35,37),
5915 (3,3,26,34,57,49,35,38),
5916 (3,3,27,35,59,51,36,39),
5917 (3,3,28,35,61,52,37,40),
5918 (3,3,29,36,63,53,38,40),
5919 (3,3,30,37,64,54,39,41),
5920 (3,3,31,37,66,55,39,42),
5921 (3,3,32,38,68,57,40,43),
5922 (3,3,33,38,70,58,41,44),
5923 (3,3,34,39,71,59,42,45),
5924 (3,3,35,40,73,60,43,46),
5925 (3,3,36,40,75,62,43,47),
5926 (3,3,37,41,77,63,44,47),
5927 (3,3,38,42,79,64,45,48),
5928 (3,3,39,42,81,65,46,49),
5929 (3,3,40,43,83,67,47,50),
5930 (3,3,41,44,85,68,48,51),
5931 (3,3,42,44,87,69,49,52),
5932 (3,3,43,45,89,71,49,53),
5933 (3,3,44,46,91,72,50,54),
5934 (3,3,45,46,93,73,51,55),
5935 (3,3,46,47,95,75,52,56),
5936 (3,3,47,48,97,76,53,57),
5937 (3,3,48,49,99,78,54,58),
5938 (3,3,49,49,101,79,55,59),
5939 (3,3,50,50,103,80,56,60),
5940 (3,3,51,51,105,82,57,61),
5941 (3,3,52,51,107,83,58,62),
5942 (3,3,53,52,109,85,59,63),
5943 (3,3,54,53,111,86,60,64),
5944 (3,3,55,54,113,88,61,65),
5945 (3,3,56,55,115,89,62,66),
5946 (3,3,57,55,118,91,62,67),
5947 (3,3,58,56,120,92,63,68),
5948 (3,3,59,57,122,94,64,70),
5949 (3,3,60,58,124,95,65,71),
5950 (3,3,61,58,126,97,67,72),
5951 (3,3,62,59,129,98,68,73),
5952 (3,3,63,60,131,100,69,74),
5953 (3,3,64,61,133,101,70,75),
5954 (3,3,65,62,135,103,71,76),
5955 (3,3,66,63,138,105,72,77),
5956 (3,3,67,63,140,106,73,78),
5957 (3,3,68,64,142,108,74,80),
5958 (3,3,69,65,145,109,75,81),
5959 (3,3,70,66,147,111,76,82),
5960 (3,3,71,67,150,113,77,83),
5961 (3,3,72,68,153,115,78,84),
5962 (3,3,73,69,156,117,79,86),
5963 (3,3,74,70,159,119,81,87),
5964 (3,3,75,71,162,121,82,89),
5965 (3,3,76,72,165,123,83,90),
5966 (3,3,77,73,168,125,85,92),
5967 (3,3,78,74,171,127,86,93),
5968 (3,3,79,75,174,129,87,95),
5969 (3,3,80,76,177,131,89,96),
5970 (3,4,1,23,19,24,19,19),
5971 (3,4,2,24,20,25,19,19),
5972 (3,4,3,24,22,25,19,20),
5973 (3,4,4,25,23,26,19,20),
5974 (3,4,5,26,25,27,20,20),
5975 (3,4,6,27,26,27,20,21),
5976 (3,4,7,28,28,28,20,21),
5977 (3,4,8,28,29,29,20,22),
5978 (3,4,9,29,31,30,20,22),
5979 (3,4,10,30,32,30,20,22),
5980 (3,4,11,31,34,31,21,23),
5981 (3,4,12,32,36,32,21,23),
5982 (3,4,13,33,37,33,21,24),
5983 (3,4,14,33,39,33,21,24),
5984 (3,4,15,34,40,34,21,25),
5985 (3,4,16,35,42,35,22,25),
5986 (3,4,17,36,44,36,22,25),
5987 (3,4,18,37,45,37,22,26),
5988 (3,4,19,38,47,38,22,26),
5989 (3,4,20,39,49,38,22,27),
5990 (3,4,21,40,51,39,23,27),
5991 (3,4,22,41,52,40,23,28),
5992 (3,4,23,42,54,41,23,28),
5993 (3,4,24,43,56,42,23,29),
5994 (3,4,25,44,58,43,24,29),
5995 (3,4,26,44,59,44,24,30),
5996 (3,4,27,45,61,44,24,30),
5997 (3,4,28,46,63,45,24,31),
5998 (3,4,29,47,65,46,25,31),
5999 (3,4,30,48,67,47,25,32),
6000 (3,4,31,49,69,48,25,32),
6001 (3,4,32,51,71,49,25,33),
6002 (3,4,33,52,72,50,26,33),
6003 (3,4,34,53,74,51,26,34),
6004 (3,4,35,54,76,52,26,34),
6005 (3,4,36,55,78,53,26,35),
6006 (3,4,37,56,80,54,27,35),
6007 (3,4,38,57,82,55,27,36),
6008 (3,4,39,58,84,56,27,37),
6009 (3,4,40,59,86,57,28,37),
6010 (3,4,41,60,88,58,28,38),
6011 (3,4,42,61,90,59,28,38),
6012 (3,4,43,63,92,60,28,39),
6013 (3,4,44,64,95,61,29,39),
6014 (3,4,45,65,97,62,29,40),
6015 (3,4,46,66,99,63,29,41),
6016 (3,4,47,67,101,64,30,41),
6017 (3,4,48,68,103,66,30,42),
6018 (3,4,49,70,105,67,30,43),
6019 (3,4,50,71,107,68,31,43),
6020 (3,4,51,72,110,69,31,44),
6021 (3,4,52,73,112,70,31,44),
6022 (3,4,53,74,114,71,32,45),
6023 (3,4,54,76,116,72,32,46),
6024 (3,4,55,77,118,73,32,46),
6025 (3,4,56,78,121,75,33,47),
6026 (3,4,57,80,123,76,33,48),
6027 (3,4,58,81,125,77,33,48),
6028 (3,4,59,82,128,78,34,49),
6029 (3,4,60,83,130,79,34,50),
6030 (3,4,61,85,132,81,34,51),
6031 (3,4,62,86,135,82,35,51),
6032 (3,4,63,87,137,83,35,52),
6033 (3,4,64,89,139,84,36,53),
6034 (3,4,65,90,142,86,36,53),
6035 (3,4,66,91,144,87,36,54),
6036 (3,4,67,93,147,88,37,55),
6037 (3,4,68,94,149,89,37,56),
6038 (3,4,69,96,152,91,38,56),
6039 (3,4,70,97,154,92,38,57),
6040 (3,4,71,99,157,93,38,58),
6041 (3,4,72,101,160,96,39,58),
6042 (3,4,73,102,163,97,39,59),
6043 (3,4,74,104,166,98,40,60),
6044 (3,4,75,106,169,100,40,61),
6045 (3,4,76,107,172,101,40,62),
6046 (3,4,77,109,175,103,41,63),
6047 (3,4,78,111,179,105,41,64),
6048 (3,4,79,113,182,106,42,65),
6049 (3,4,80,115,185,108,42,66),
6050 (3,5,1,22,16,23,21,22),
6051 (3,5,2,22,16,23,22,23),
6052 (3,5,3,22,16,24,24,25),
6053 (3,5,4,22,17,24,25,26),
6054 (3,5,5,23,17,24,26,27),
6055 (3,5,6,23,17,25,28,29),
6056 (3,5,7,23,17,25,29,30),
6057 (3,5,8,23,18,26,30,32),
6058 (3,5,9,23,18,26,32,33),
6059 (3,5,10,23,18,26,33,35),
6060 (3,5,11,24,18,27,35,36),
6061 (3,5,12,24,19,27,36,38),
6062 (3,5,13,24,19,28,37,39),
6063 (3,5,14,24,19,28,39,41),
6064 (3,5,15,24,19,28,40,42),
6065 (3,5,16,24,20,29,42,44),
6066 (3,5,17,25,20,29,43,45),
6067 (3,5,18,25,20,30,45,47),
6068 (3,5,19,25,21,30,46,49),
6069 (3,5,20,25,21,31,48,50),
6070 (3,5,21,25,21,31,50,52),
6071 (3,5,22,26,22,31,51,53),
6072 (3,5,23,26,22,32,53,55),
6073 (3,5,24,26,22,32,54,57),
6074 (3,5,25,26,22,33,56,58),
6075 (3,5,26,27,23,33,58,60),
6076 (3,5,27,27,23,34,59,62),
6077 (3,5,28,27,23,34,61,64),
6078 (3,5,29,27,24,35,63,65),
6079 (3,5,30,28,24,35,64,67),
6080 (3,5,31,28,24,36,66,69),
6081 (3,5,32,28,25,36,68,71),
6082 (3,5,33,28,25,37,70,72),
6083 (3,5,34,29,26,38,71,74),
6084 (3,5,35,29,26,38,73,76),
6085 (3,5,36,29,26,39,75,78),
6086 (3,5,37,29,27,39,77,80),
6087 (3,5,38,30,27,40,78,82),
6088 (3,5,39,30,27,40,80,84),
6089 (3,5,40,30,28,41,82,86),
6090 (3,5,41,31,28,41,84,88),
6091 (3,5,42,31,29,42,86,89),
6092 (3,5,43,31,29,43,88,91),
6093 (3,5,44,32,29,43,90,93),
6094 (3,5,45,32,30,44,92,95),
6095 (3,5,46,32,30,44,93,97),
6096 (3,5,47,32,30,45,95,99),
6097 (3,5,48,33,31,46,97,101),
6098 (3,5,49,33,31,46,99,103),
6099 (3,5,50,33,32,47,101,106),
6100 (3,5,51,34,32,48,103,108),
6101 (3,5,52,34,33,48,105,110),
6102 (3,5,53,35,33,49,107,112),
6103 (3,5,54,35,33,50,109,114),
6104 (3,5,55,35,34,50,111,116),
6105 (3,5,56,36,34,51,113,118),
6106 (3,5,57,36,35,52,116,120),
6107 (3,5,58,36,35,52,118,123),
6108 (3,5,59,37,36,53,120,125),
6109 (3,5,60,37,36,54,122,127),
6110 (3,5,61,37,37,54,124,129),
6111 (3,5,62,38,37,55,126,131),
6112 (3,5,63,38,38,56,128,134),
6113 (3,5,64,39,38,57,131,136),
6114 (3,5,65,39,39,57,133,138),
6115 (3,5,66,39,39,58,135,141),
6116 (3,5,67,40,40,59,137,143),
6117 (3,5,68,40,40,59,139,145),
6118 (3,5,69,41,40,60,142,148),
6119 (3,5,70,41,41,61,144,150),
6120 (3,5,71,41,42,62,147,153),
6121 (3,5,72,42,42,62,150,163),
6122 (3,5,73,42,43,63,153,166),
6123 (3,5,74,43,43,64,155,170),
6124 (3,5,75,43,44,65,158,173),
6125 (3,5,76,43,45,66,161,176),
6126 (3,5,77,44,45,67,164,179),
6127 (3,5,78,44,46,68,167,182),
6128 (3,5,79,45,46,69,170,184),
6129 (3,5,80,45,47,70,173,189),
6130 (3,6,1,25,16,25,19,19),
6131 (3,6,2,26,17,26,19,19),
6132 (3,6,3,28,18,27,19,20),
6133 (3,6,4,29,18,28,19,20),
6134 (3,6,5,30,19,30,19,20),
6135 (3,6,6,31,20,31,19,20),
6136 (3,6,7,33,21,32,20,21),
6137 (3,6,8,34,22,33,20,21),
6138 (3,6,9,36,23,35,20,21),
6139 (3,6,10,37,23,36,20,22),
6140 (3,6,11,38,24,37,20,22),
6141 (3,6,12,40,25,38,20,22),
6142 (3,6,13,41,26,40,20,23),
6143 (3,6,14,43,27,41,20,23),
6144 (3,6,15,44,28,42,20,23),
6145 (3,6,16,46,29,44,21,24),
6146 (3,6,17,47,30,45,21,24),
6147 (3,6,18,49,31,46,21,24),
6148 (3,6,19,50,32,48,21,25),
6149 (3,6,20,52,33,49,21,25),
6150 (3,6,21,53,34,51,21,26),
6151 (3,6,22,55,34,52,21,26),
6152 (3,6,23,56,35,53,21,26),
6153 (3,6,24,58,36,55,22,27),
6154 (3,6,25,59,37,56,22,27),
6155 (3,6,26,61,38,58,22,27),
6156 (3,6,27,63,39,59,22,28),
6157 (3,6,28,64,41,61,22,28),
6158 (3,6,29,66,42,62,22,29),
6159 (3,6,30,68,43,64,23,29),
6160 (3,6,31,69,44,65,23,30),
6161 (3,6,32,71,45,67,23,30),
6162 (3,6,33,73,46,68,23,30),
6163 (3,6,34,75,47,70,23,31),
6164 (3,6,35,76,48,72,24,31),
6165 (3,6,36,78,49,73,24,32),
6166 (3,6,37,80,50,75,24,32),
6167 (3,6,38,82,51,76,24,33),
6168 (3,6,39,84,52,78,24,33),
6169 (3,6,40,85,54,80,24,34),
6170 (3,6,41,87,55,81,25,34),
6171 (3,6,42,89,56,83,25,35),
6172 (3,6,43,91,57,85,25,35),
6173 (3,6,44,93,58,87,25,36),
6174 (3,6,45,95,59,88,26,36),
6175 (3,6,46,97,61,90,26,37),
6176 (3,6,47,99,62,92,26,37),
6177 (3,6,48,101,63,94,26,38),
6178 (3,6,49,102,64,95,26,38),
6179 (3,6,50,104,65,97,27,39),
6180 (3,6,51,106,67,99,27,39),
6181 (3,6,52,108,68,99,27,40),
6182 (3,6,53,109,68,101,27,40),
6183 (3,6,54,110,69,101,28,41),
6184 (3,6,55,110,69,102,28,41),
6185 (3,6,56,113,71,105,28,42),
6186 (3,6,57,118,72,107,28,42),
6187 (3,6,58,120,73,109,29,43),
6188 (3,6,59,123,75,111,29,43),
6189 (3,6,60,125,76,113,29,44),
6190 (3,6,61,126,77,115,29,45),
6191 (3,6,62,127,79,117,29,45),
6192 (3,6,63,129,80,120,30,46),
6193 (3,6,64,132,82,122,30,46),
6194 (3,6,65,135,83,124,30,47),
6195 (3,6,66,137,85,127,30,48),
6196 (3,6,67,144,86,129,31,48),
6197 (3,6,68,146,88,131,31,49),
6198 (3,6,69,149,89,133,31,50),
6199 (3,6,70,152,91,136,31,50),
6200 (3,6,71,154,93,139,32,51),
6201 (3,6,72,157,94,141,32,52),
6202 (3,6,73,160,96,144,32,53),
6203 (3,6,74,163,98,146,32,53),
6204 (3,6,75,166,99,150,33,54),
6205 (3,6,76,169,101,152,33,55),
6206 (3,6,77,172,103,155,33,56),
6207 (3,6,78,176,104,157,33,56),
6208 (3,6,79,179,106,160,34,57),
6209 (3,6,80,182,108,163,34,58),
6210 (4,1,1,20,25,21,20,20),
6211 (4,1,2,21,26,22,20,20),
6212 (4,1,3,23,27,23,20,21),
6213 (4,1,4,24,27,25,20,21),
6214 (4,1,5,25,28,26,20,21),
6215 (4,1,6,27,29,27,20,21),
6216 (4,1,7,28,30,28,21,22),
6217 (4,1,8,29,31,29,21,22),
6218 (4,1,9,31,31,31,21,22),
6219 (4,1,10,32,32,32,21,23),
6220 (4,1,11,33,33,33,21,23),
6221 (4,1,12,35,34,34,21,23),
6222 (4,1,13,36,35,36,21,24),
6223 (4,1,14,38,36,37,21,24),
6224 (4,1,15,39,37,38,21,24),
6225 (4,1,16,41,37,40,21,25),
6226 (4,1,17,42,38,41,22,25),
6227 (4,1,18,44,39,43,22,25),
6228 (4,1,19,45,40,44,22,26),
6229 (4,1,20,47,41,45,22,26),
6230 (4,1,21,48,42,47,22,26),
6231 (4,1,22,50,43,48,22,27),
6232 (4,1,23,52,44,50,22,27),
6233 (4,1,24,53,45,51,23,28),
6234 (4,1,25,55,46,52,23,28),
6235 (4,1,26,56,47,54,23,28),
6236 (4,1,27,58,48,55,23,29),
6237 (4,1,28,60,49,57,23,29),
6238 (4,1,29,61,50,58,23,30),
6239 (4,1,30,63,51,60,24,30),
6240 (4,1,31,65,52,62,24,30),
6241 (4,1,32,66,53,63,24,31),
6242 (4,1,33,68,54,65,24,31),
6243 (4,1,34,70,55,66,24,32),
6244 (4,1,35,72,56,68,24,32),
6245 (4,1,36,73,58,69,25,33),
6246 (4,1,37,75,59,71,25,33),
6247 (4,1,38,77,60,73,25,34),
6248 (4,1,39,79,61,74,25,34),
6249 (4,1,40,81,62,76,25,35),
6250 (4,1,41,82,63,78,26,35),
6251 (4,1,42,84,64,79,26,35),
6252 (4,1,43,86,66,81,26,36),
6253 (4,1,44,88,67,83,26,36),
6254 (4,1,45,90,68,85,26,37),
6255 (4,1,46,92,69,86,27,37),
6256 (4,1,47,94,70,88,27,38),
6257 (4,1,48,96,72,90,27,38),
6258 (4,1,49,98,73,92,27,39),
6259 (4,1,50,100,74,93,28,40),
6260 (4,1,51,102,75,95,28,40),
6261 (4,1,52,104,77,97,28,41),
6262 (4,1,53,106,78,99,28,41),
6263 (4,1,54,108,79,101,29,42),
6264 (4,1,55,110,80,103,29,42),
6265 (4,1,56,112,82,104,29,43),
6266 (4,1,57,114,83,106,29,43),
6267 (4,1,58,116,84,108,30,44),
6268 (4,1,59,118,86,110,30,44),
6269 (4,1,60,120,87,112,30,45),
6270 (4,1,61,122,88,114,30,46),
6271 (4,1,62,124,90,116,31,46),
6272 (4,1,63,127,91,118,31,47),
6273 (4,1,64,129,92,120,31,47),
6274 (4,1,65,131,94,122,32,48),
6275 (4,1,66,133,95,124,32,49),
6276 (4,1,67,135,97,126,32,49),
6277 (4,1,68,138,98,128,32,50),
6278 (4,1,69,140,100,130,33,50),
6279 (4,1,70,142,101,132,33,51),
6280 (4,1,71,145,102,134,33,52),
6281 (4,1,72,147,104,137,33,53),
6282 (4,1,73,150,106,139,33,54),
6283 (4,1,74,153,107,142,34,54),
6284 (4,1,75,156,109,144,34,55),
6285 (4,1,76,159,111,148,34,56),
6286 (4,1,77,162,113,150,35,57),
6287 (4,1,78,165,114,152,35,57),
6288 (4,1,79,178,116,164,35,58),
6289 (4,1,80,181,118,167,36,59),
6290 (4,3,1,17,28,20,20,21),
6291 (4,3,2,17,29,21,21,22),
6292 (4,3,3,18,31,22,21,22),
6293 (4,3,4,18,32,23,22,23),
6294 (4,3,5,19,33,24,22,24),
6295 (4,3,6,19,35,25,23,24),
6296 (4,3,7,20,36,26,24,25),
6297 (4,3,8,20,38,27,24,25),
6298 (4,3,9,21,39,27,25,26),
6299 (4,3,10,21,40,28,25,27),
6300 (4,3,11,22,42,29,26,28),
6301 (4,3,12,22,43,30,27,28),
6302 (4,3,13,23,45,31,27,29),
6303 (4,3,14,23,46,32,28,30),
6304 (4,3,15,24,48,34,29,30),
6305 (4,3,16,24,50,35,29,31),
6306 (4,3,17,25,51,36,30,32),
6307 (4,3,18,25,53,37,31,33),
6308 (4,3,19,26,54,38,31,33),
6309 (4,3,20,26,56,39,32,34),
6310 (4,3,21,27,57,40,33,35),
6311 (4,3,22,27,59,41,33,36),
6312 (4,3,23,28,61,42,34,36),
6313 (4,3,24,28,62,43,35,37),
6314 (4,3,25,29,64,44,36,38),
6315 (4,3,26,30,66,46,36,39),
6316 (4,3,27,30,68,47,37,40),
6317 (4,3,28,31,69,48,38,41),
6318 (4,3,29,31,71,49,39,41),
6319 (4,3,30,32,73,50,39,42),
6320 (4,3,31,33,75,52,40,43),
6321 (4,3,32,33,76,53,41,44),
6322 (4,3,33,34,78,54,42,45),
6323 (4,3,34,34,80,55,43,46),
6324 (4,3,35,35,82,57,44,47),
6325 (4,3,36,36,84,58,44,48),
6326 (4,3,37,36,86,59,45,48),
6327 (4,3,38,37,87,60,46,49),
6328 (4,3,39,38,89,62,47,50),
6329 (4,3,40,38,91,63,48,51),
6330 (4,3,41,39,93,64,49,52),
6331 (4,3,42,40,95,66,49,53),
6332 (4,3,43,40,97,67,50,54),
6333 (4,3,44,41,99,68,51,55),
6334 (4,3,45,42,101,70,52,56),
6335 (4,3,46,42,103,71,53,57),
6336 (4,3,47,43,105,72,54,58),
6337 (4,3,48,44,107,74,55,59),
6338 (4,3,49,45,109,75,56,60),
6339 (4,3,50,45,111,77,57,61),
6340 (4,3,51,46,113,78,58,62),
6341 (4,3,52,47,115,79,59,63),
6342 (4,3,53,47,118,81,60,64),
6343 (4,3,54,48,120,82,61,65),
6344 (4,3,55,49,122,84,61,66),
6345 (4,3,56,50,124,85,62,67),
6346 (4,3,57,50,126,87,63,68),
6347 (4,3,58,51,128,88,64,69),
6348 (4,3,59,52,131,90,65,70),
6349 (4,3,60,53,133,91,66,72),
6350 (4,3,61,54,135,93,67,73),
6351 (4,3,62,54,137,94,69,74),
6352 (4,3,63,55,140,96,70,75),
6353 (4,3,64,56,142,97,71,76),
6354 (4,3,65,57,144,99,72,77),
6355 (4,3,66,58,147,101,73,78),
6356 (4,3,67,58,149,102,74,79),
6357 (4,3,68,59,151,104,75,81),
6358 (4,3,69,60,154,105,76,82),
6359 (4,3,70,61,156,107,77,83),
6360 (4,3,71,62,159,109,78,84),
6361 (4,3,72,63,162,111,79,85),
6362 (4,3,73,64,165,113,80,87),
6363 (4,3,74,65,168,115,82,88),
6364 (4,3,75,66,171,117,83,90),
6365 (4,3,76,67,174,119,84,91),
6366 (4,3,77,68,177,121,86,93),
6367 (4,3,78,69,180,123,87,94),
6368 (4,3,79,70,190,125,91,96),
6369 (4,3,80,71,193,127,93,97),
6370 (4,4,1,18,28,20,20,20),
6371 (4,4,2,19,29,21,20,20),
6372 (4,4,3,20,31,21,20,21),
6373 (4,4,4,20,32,22,20,21),
6374 (4,4,5,21,34,23,21,21),
6375 (4,4,6,22,35,24,21,22),
6376 (4,4,7,23,37,24,21,22),
6377 (4,4,8,24,38,25,21,23),
6378 (4,4,9,24,40,26,21,23),
6379 (4,4,10,25,41,26,21,23),
6380 (4,4,11,26,43,27,22,24),
6381 (4,4,12,27,44,28,22,24),
6382 (4,4,13,28,46,29,22,25),
6383 (4,4,14,29,48,30,22,25),
6384 (4,4,15,29,49,30,22,25),
6385 (4,4,16,30,51,31,23,26),
6386 (4,4,17,31,52,32,23,26),
6387 (4,4,18,32,54,33,23,27),
6388 (4,4,19,33,56,34,23,27),
6389 (4,4,20,34,57,35,23,28),
6390 (4,4,21,35,59,35,24,28),
6391 (4,4,22,36,61,36,24,29),
6392 (4,4,23,37,63,37,24,29),
6393 (4,4,24,38,64,38,24,30),
6394 (4,4,25,39,66,39,25,30),
6395 (4,4,26,40,68,40,25,31),
6396 (4,4,27,41,70,41,25,31),
6397 (4,4,28,42,72,42,25,32),
6398 (4,4,29,43,73,43,25,32),
6399 (4,4,30,44,75,43,26,33),
6400 (4,4,31,45,77,44,26,33),
6401 (4,4,32,46,79,45,26,34),
6402 (4,4,33,47,81,46,27,34),
6403 (4,4,34,48,83,47,27,35),
6404 (4,4,35,49,85,48,27,35),
6405 (4,4,36,50,87,49,27,36),
6406 (4,4,37,51,89,50,28,36),
6407 (4,4,38,52,91,51,28,37),
6408 (4,4,39,53,93,52,28,38),
6409 (4,4,40,54,95,53,28,38),
6410 (4,4,41,56,97,54,29,39),
6411 (4,4,42,57,99,55,29,39),
6412 (4,4,43,58,101,56,29,40),
6413 (4,4,44,59,103,57,30,40),
6414 (4,4,45,60,105,59,30,41),
6415 (4,4,46,61,107,60,30,42),
6416 (4,4,47,62,109,61,31,42),
6417 (4,4,48,64,112,62,31,43),
6418 (4,4,49,65,114,63,31,44),
6419 (4,4,50,66,116,64,32,44),
6420 (4,4,51,67,118,65,32,45),
6421 (4,4,52,68,120,66,32,45),
6422 (4,4,53,70,123,67,33,46),
6423 (4,4,54,71,125,69,33,47),
6424 (4,4,55,72,127,70,33,47),
6425 (4,4,56,73,129,71,34,48),
6426 (4,4,57,75,132,72,34,49),
6427 (4,4,58,76,134,73,34,49),
6428 (4,4,59,77,136,74,35,50),
6429 (4,4,60,79,139,76,35,51),
6430 (4,4,61,80,141,77,35,51),
6431 (4,4,62,81,143,78,36,52),
6432 (4,4,63,82,146,79,36,53),
6433 (4,4,64,84,148,80,37,54),
6434 (4,4,65,85,151,82,37,54),
6435 (4,4,66,87,153,83,37,55),
6436 (4,4,67,88,156,84,38,56),
6437 (4,4,68,89,158,85,38,57),
6438 (4,4,69,91,160,87,39,57),
6439 (4,4,70,92,163,88,39,58),
6440 (4,4,71,94,166,90,39,59),
6441 (4,4,72,96,169,91,40,59),
6442 (4,4,73,97,172,93,40,60),
6443 (4,4,74,99,175,94,41,61),
6444 (4,4,75,101,178,96,41,62),
6445 (4,4,76,102,181,97,41,63),
6446 (4,4,77,104,184,99,42,64),
6447 (4,4,78,106,188,101,42,65),
6448 (4,4,79,108,191,102,43,66),
6449 (4,4,80,110,194,104,43,67),
6450 (4,5,1,17,25,19,22,23),
6451 (4,5,2,17,25,19,23,24),
6452 (4,5,3,17,25,20,25,26),
6453 (4,5,4,17,26,20,26,27),
6454 (4,5,5,18,26,20,27,28),
6455 (4,5,6,18,26,21,29,30),
6456 (4,5,7,18,26,21,30,31),
6457 (4,5,8,18,26,22,31,33),
6458 (4,5,9,18,27,22,33,34),
6459 (4,5,10,19,27,22,34,36),
6460 (4,5,11,19,27,23,36,37),
6461 (4,5,12,19,27,23,37,39),
6462 (4,5,13,19,28,24,38,40),
6463 (4,5,14,19,28,24,40,42),
6464 (4,5,15,19,28,25,41,43),
6465 (4,5,16,20,28,25,43,45),
6466 (4,5,17,20,29,25,44,46),
6467 (4,5,18,20,29,26,46,48),
6468 (4,5,19,20,29,26,47,49),
6469 (4,5,20,21,30,27,49,51),
6470 (4,5,21,21,30,27,51,53),
6471 (4,5,22,21,30,28,52,54),
6472 (4,5,23,21,30,28,54,56),
6473 (4,5,24,21,31,29,55,58),
6474 (4,5,25,22,31,29,57,59),
6475 (4,5,26,22,31,30,59,61),
6476 (4,5,27,22,32,30,60,63),
6477 (4,5,28,22,32,31,62,65),
6478 (4,5,29,23,32,31,64,66),
6479 (4,5,30,23,33,32,65,68),
6480 (4,5,31,23,33,32,67,70),
6481 (4,5,32,23,33,33,69,72),
6482 (4,5,33,24,34,33,70,73),
6483 (4,5,34,24,34,34,72,75),
6484 (4,5,35,24,34,34,74,77),
6485 (4,5,36,24,35,35,76,79),
6486 (4,5,37,25,35,35,78,81),
6487 (4,5,38,25,35,36,79,83),
6488 (4,5,39,25,36,37,81,85),
6489 (4,5,40,26,36,37,83,87),
6490 (4,5,41,26,37,38,85,88),
6491 (4,5,42,26,37,38,87,90),
6492 (4,5,43,27,37,39,89,92),
6493 (4,5,44,27,38,39,91,94),
6494 (4,5,45,27,38,40,92,96),
6495 (4,5,46,27,39,41,94,98),
6496 (4,5,47,28,39,41,96,100),
6497 (4,5,48,28,39,42,98,102),
6498 (4,5,49,28,40,43,100,104),
6499 (4,5,50,29,40,43,102,106),
6500 (4,5,51,29,41,44,104,109),
6501 (4,5,52,29,41,44,106,111),
6502 (4,5,53,30,42,45,108,113),
6503 (4,5,54,30,42,46,110,115),
6504 (4,5,55,30,43,46,112,117),
6505 (4,5,56,31,43,47,114,119),
6506 (4,5,57,31,43,48,117,121),
6507 (4,5,58,31,44,48,119,124),
6508 (4,5,59,32,44,49,121,126),
6509 (4,5,60,32,45,50,123,128),
6510 (4,5,61,33,45,51,125,130),
6511 (4,5,62,33,46,51,127,132),
6512 (4,5,63,33,46,52,129,135),
6513 (4,5,64,34,47,53,132,137),
6514 (4,5,65,34,47,53,134,139),
6515 (4,5,66,34,48,54,136,142),
6516 (4,5,67,35,48,55,138,144),
6517 (4,5,68,35,49,56,140,146),
6518 (4,5,69,36,49,56,143,149),
6519 (4,5,70,36,50,57,145,151),
6520 (4,5,71,36,51,58,148,161),
6521 (4,5,72,37,51,58,151,164),
6522 (4,5,73,37,52,59,154,168),
6523 (4,5,74,38,52,60,156,171),
6524 (4,5,75,38,53,61,159,174),
6525 (4,5,76,38,54,62,162,177),
6526 (4,5,77,39,54,63,165,180),
6527 (4,5,78,39,55,64,168,183),
6528 (4,5,79,40,55,65,171,186),
6529 (4,5,80,40,56,66,200,191),
6530 (4,6,1,20,25,21,20,20),
6531 (4,6,2,21,26,22,20,20),
6532 (4,6,3,23,27,23,20,21),
6533 (4,6,4,24,27,25,20,21),
6534 (4,6,5,25,28,26,20,21),
6535 (4,6,6,27,29,27,20,21),
6536 (4,6,7,28,30,28,21,22),
6537 (4,6,8,29,31,29,21,22),
6538 (4,6,9,31,31,31,21,22),
6539 (4,6,10,32,32,32,21,23),
6540 (4,6,11,33,33,33,21,23),
6541 (4,6,12,35,34,34,21,23),
6542 (4,6,13,36,35,36,21,24),
6543 (4,6,14,38,36,37,21,24),
6544 (4,6,15,39,37,38,21,24),
6545 (4,6,16,41,37,40,21,25),
6546 (4,6,17,42,38,41,22,25),
6547 (4,6,18,44,39,43,22,25),
6548 (4,6,19,45,40,44,22,26),
6549 (4,6,20,47,41,45,22,26),
6550 (4,6,21,48,42,47,22,26),
6551 (4,6,22,50,43,48,22,27),
6552 (4,6,23,52,44,50,22,27),
6553 (4,6,24,53,45,51,23,28),
6554 (4,6,25,55,46,52,23,28),
6555 (4,6,26,56,47,54,23,28),
6556 (4,6,27,58,48,55,23,29),
6557 (4,6,28,60,49,57,23,29),
6558 (4,6,29,61,50,58,23,30),
6559 (4,6,30,63,51,60,24,30),
6560 (4,6,31,65,52,62,24,30),
6561 (4,6,32,66,53,63,24,31),
6562 (4,6,33,68,54,65,24,31),
6563 (4,6,34,70,55,66,24,32),
6564 (4,6,35,72,56,68,24,32),
6565 (4,6,36,73,58,69,25,33),
6566 (4,6,37,75,59,71,25,33),
6567 (4,6,38,77,60,73,25,34),
6568 (4,6,39,79,61,74,25,34),
6569 (4,6,40,81,62,76,25,35),
6570 (4,6,41,82,63,78,26,35),
6571 (4,6,42,84,64,79,26,35),
6572 (4,6,43,86,66,81,26,36),
6573 (4,6,44,88,67,83,26,36),
6574 (4,6,45,90,68,85,26,37),
6575 (4,6,46,92,69,86,27,37),
6576 (4,6,47,94,70,88,27,38),
6577 (4,6,48,96,72,90,27,38),
6578 (4,6,49,98,73,92,27,39),
6579 (4,6,50,100,74,93,28,40),
6580 (4,6,51,101,75,94,28,40),
6581 (4,6,52,102,76,95,28,41),
6582 (4,6,53,103,77,96,28,41),
6583 (4,6,54,104,77,97,29,42),
6584 (4,6,55,105,78,98,29,42),
6585 (4,6,56,108,80,101,29,43),
6586 (4,6,57,113,81,103,29,43),
6587 (4,6,58,115,82,105,30,44),
6588 (4,6,59,115,84,107,30,44),
6589 (4,6,60,120,85,109,30,45),
6590 (4,6,61,122,86,111,30,46),
6591 (4,6,62,122,88,113,30,46),
6592 (4,6,63,127,89,116,31,47),
6593 (4,6,64,127,91,118,31,47),
6594 (4,6,65,133,92,120,31,48),
6595 (4,6,66,135,94,123,31,49),
6596 (4,6,67,136,95,125,32,49),
6597 (4,6,68,137,97,127,32,50),
6598 (4,6,69,140,98,130,32,51),
6599 (4,6,70,147,100,132,32,51),
6600 (4,6,71,154,102,135,33,52),
6601 (4,6,72,156,103,137,33,53),
6602 (4,6,73,157,105,140,33,54),
6603 (4,6,74,158,107,142,33,54),
6604 (4,6,75,161,108,145,34,55),
6605 (4,6,76,164,110,148,34,56),
6606 (4,6,77,167,112,150,34,57),
6607 (4,6,78,170,113,153,34,57),
6608 (4,6,79,172,115,156,35,58),
6609 (4,6,80,177,117,159,35,59),
6610 (4,11,1,18,25,19,22,22),
6611 (4,11,2,19,25,20,23,23),
6612 (4,11,3,19,26,20,24,24),
6613 (4,11,4,20,26,21,25,26),
6614 (4,11,5,20,27,22,26,27),
6615 (4,11,6,21,27,22,27,28),
6616 (4,11,7,21,28,23,28,29),
6617 (4,11,8,22,28,24,29,30),
6618 (4,11,9,23,29,24,30,32),
6619 (4,11,10,23,29,25,32,33),
6620 (4,11,11,24,30,26,33,34),
6621 (4,11,12,24,31,26,34,35),
6622 (4,11,13,25,31,27,35,37),
6623 (4,11,14,26,32,28,36,38),
6624 (4,11,15,26,32,29,37,39),
6625 (4,11,16,27,33,29,38,41),
6626 (4,11,17,28,33,30,40,42),
6627 (4,11,18,28,34,31,41,43),
6628 (4,11,19,29,35,32,42,45),
6629 (4,11,20,30,35,32,43,46),
6630 (4,11,21,30,36,33,45,48),
6631 (4,11,22,31,36,34,46,49),
6632 (4,11,23,32,37,35,47,51),
6633 (4,11,24,32,38,36,48,52),
6634 (4,11,25,33,38,36,50,53),
6635 (4,11,26,34,39,37,51,55),
6636 (4,11,27,35,40,38,52,56),
6637 (4,11,28,35,40,39,54,58),
6638 (4,11,29,36,41,40,55,59),
6639 (4,11,30,37,42,41,56,61),
6640 (4,11,31,38,42,42,58,62),
6641 (4,11,32,38,43,42,59,64),
6642 (4,11,33,39,44,43,60,66),
6643 (4,11,34,40,44,44,62,67),
6644 (4,11,35,41,45,45,63,69),
6645 (4,11,36,42,46,46,65,70),
6646 (4,11,37,42,47,47,66,72),
6647 (4,11,38,43,47,48,67,74),
6648 (4,11,39,44,48,49,69,75),
6649 (4,11,40,45,49,50,70,77),
6650 (4,11,41,46,50,51,72,79),
6651 (4,11,42,46,50,52,73,80),
6652 (4,11,43,47,51,53,75,82),
6653 (4,11,44,48,52,54,76,84),
6654 (4,11,45,49,53,55,78,85),
6655 (4,11,46,50,54,56,79,87),
6656 (4,11,47,51,54,57,81,89),
6657 (4,11,48,52,55,58,83,91),
6658 (4,11,49,53,56,59,84,93),
6659 (4,11,50,53,57,60,86,94),
6660 (4,11,51,54,58,61,87,96),
6661 (4,11,52,55,59,62,89,98),
6662 (4,11,53,56,59,63,91,100),
6663 (4,11,54,57,60,64,92,102),
6664 (4,11,55,58,61,65,94,103),
6665 (4,11,56,59,62,66,95,105),
6666 (4,11,57,60,63,67,97,107),
6667 (4,11,58,61,64,68,99,109),
6668 (4,11,59,62,65,69,101,111),
6669 (4,11,60,63,66,70,102,113),
6670 (4,11,61,64,66,72,104,115),
6671 (4,11,62,65,67,73,106,117),
6672 (4,11,63,66,68,74,107,119),
6673 (4,11,64,67,69,75,109,121),
6674 (4,11,65,68,70,76,111,123),
6675 (4,11,66,69,71,77,113,125),
6676 (4,11,67,70,72,78,115,127),
6677 (4,11,68,71,73,80,116,129),
6678 (4,11,69,72,74,81,118,131),
6679 (4,11,70,73,75,82,120,133),
6680 (4,11,71,75,76,83,122,135),
6681 (4,11,72,76,78,85,125,138),
6682 (4,11,73,77,79,86,127,140),
6683 (4,11,74,78,80,88,131,143),
6684 (4,11,75,80,81,89,133,145),
6685 (4,11,76,81,82,91,134,148),
6686 (4,11,77,82,83,92,136,151),
6687 (4,11,78,84,85,94,138,153),
6688 (4,11,79,85,86,95,141,156),
6689 (4,11,80,86,87,97,143,159),
6690 (5,1,1,22,18,23,18,25),
6691 (5,1,2,23,19,24,18,25),
6692 (5,1,3,25,20,25,18,26),
6693 (5,1,4,26,20,26,18,26),
6694 (5,1,5,27,21,28,18,26),
6695 (5,1,6,29,22,29,18,26),
6696 (5,1,7,30,23,30,19,27),
6697 (5,1,8,31,24,31,19,27),
6698 (5,1,9,33,25,33,19,27),
6699 (5,1,10,34,25,34,19,28),
6700 (5,1,11,35,26,35,19,28),
6701 (5,1,12,37,27,36,19,28),
6702 (5,1,13,38,28,38,19,28),
6703 (5,1,14,40,29,39,19,29),
6704 (5,1,15,41,30,40,19,29),
6705 (5,1,16,43,31,42,20,29),
6706 (5,1,17,44,32,43,20,30),
6707 (5,1,18,46,33,44,20,30),
6708 (5,1,19,47,34,46,20,31),
6709 (5,1,20,49,34,47,20,31),
6710 (5,1,21,50,35,49,20,31),
6711 (5,1,22,52,36,50,20,32),
6712 (5,1,23,53,37,51,21,32),
6713 (5,1,24,55,38,53,21,32),
6714 (5,1,25,57,39,54,21,33),
6715 (5,1,26,58,40,56,21,33),
6716 (5,1,27,60,41,57,21,34),
6717 (5,1,28,62,42,59,21,34),
6718 (5,1,29,63,43,60,21,34),
6719 (5,1,30,65,44,62,22,35),
6720 (5,1,31,67,46,63,22,35),
6721 (5,1,32,68,47,65,22,36),
6722 (5,1,33,70,48,67,22,36),
6723 (5,1,34,72,49,68,22,36),
6724 (5,1,35,74,50,70,23,37),
6725 (5,1,36,75,51,71,23,37),
6726 (5,1,37,77,52,73,23,38),
6727 (5,1,38,79,53,75,23,38),
6728 (5,1,39,81,54,76,23,39),
6729 (5,1,40,83,55,78,24,39),
6730 (5,1,41,84,57,80,24,40),
6731 (5,1,42,86,58,81,24,40),
6732 (5,1,43,88,59,83,24,41),
6733 (5,1,44,90,60,85,24,41),
6734 (5,1,45,92,61,86,25,42),
6735 (5,1,46,94,62,88,25,42),
6736 (5,1,47,96,64,90,25,43),
6737 (5,1,48,98,65,92,25,43),
6738 (5,1,49,100,66,93,25,44),
6739 (5,1,50,102,67,95,26,44),
6740 (5,1,51,104,69,97,26,45),
6741 (5,1,52,106,70,99,26,45),
6742 (5,1,53,108,71,101,26,46),
6743 (5,1,54,110,72,103,27,46),
6744 (5,1,55,112,74,104,27,47),
6745 (5,1,56,114,75,106,27,48),
6746 (5,1,57,116,76,108,27,48),
6747 (5,1,58,118,78,110,28,49),
6748 (5,1,59,120,79,112,28,49),
6749 (5,1,60,122,80,114,28,50),
6750 (5,1,61,124,82,116,28,50),
6751 (5,1,62,126,83,118,29,51),
6752 (5,1,63,128,84,120,29,52),
6753 (5,1,64,131,86,122,29,52),
6754 (5,1,65,133,87,124,30,53),
6755 (5,1,66,135,88,126,30,53),
6756 (5,1,67,137,90,128,30,54),
6757 (5,1,68,139,91,130,30,55),
6758 (5,1,69,142,93,132,31,55),
6759 (5,1,70,144,94,134,31,56),
6760 (5,1,71,147,95,136,31,57),
6761 (5,1,72,150,97,139,31,58),
6762 (5,1,73,152,99,141,31,59),
6763 (5,1,74,155,100,144,32,59),
6764 (5,1,75,158,102,146,32,60),
6765 (5,1,76,163,104,149,32,61),
6766 (5,1,77,167,106,152,33,62),
6767 (5,1,78,167,107,154,33,62),
6768 (5,1,79,170,109,157,33,63),
6769 (5,1,80,173,111,160,34,64),
6770 (5,4,1,20,21,22,18,25),
6771 (5,4,2,21,22,23,18,25),
6772 (5,4,3,22,24,23,18,26),
6773 (5,4,4,22,25,24,18,26),
6774 (5,4,5,23,27,25,19,26),
6775 (5,4,6,24,28,25,19,27),
6776 (5,4,7,25,30,26,19,27),
6777 (5,4,8,25,31,27,19,27),
6778 (5,4,9,26,33,28,19,28),
6779 (5,4,10,27,34,28,19,28),
6780 (5,4,11,28,36,29,20,29),
6781 (5,4,12,29,38,30,20,29),
6782 (5,4,13,30,39,31,20,29),
6783 (5,4,14,31,41,32,20,30),
6784 (5,4,15,31,42,32,20,30),
6785 (5,4,16,32,44,33,21,31),
6786 (5,4,17,33,46,34,21,31),
6787 (5,4,18,34,47,35,21,32),
6788 (5,4,19,35,49,36,21,32),
6789 (5,4,20,36,51,36,21,32),
6790 (5,4,21,37,52,37,22,33),
6791 (5,4,22,38,54,38,22,33),
6792 (5,4,23,39,56,39,22,34),
6793 (5,4,24,40,58,40,22,34),
6794 (5,4,25,41,60,41,23,35),
6795 (5,4,26,42,61,42,23,35),
6796 (5,4,27,43,63,43,23,36),
6797 (5,4,28,44,65,44,23,36),
6798 (5,4,29,45,67,44,24,37),
6799 (5,4,30,46,69,45,24,37),
6800 (5,4,31,47,71,46,24,38),
6801 (5,4,32,48,72,47,24,38),
6802 (5,4,33,49,74,48,25,39),
6803 (5,4,34,50,76,49,25,39),
6804 (5,4,35,51,78,50,25,40),
6805 (5,4,36,52,80,51,25,41),
6806 (5,4,37,53,82,52,26,41),
6807 (5,4,38,54,84,53,26,42),
6808 (5,4,39,55,86,54,26,42),
6809 (5,4,40,56,88,55,27,43),
6810 (5,4,41,57,90,56,27,43),
6811 (5,4,42,59,92,57,27,44),
6812 (5,4,43,60,94,58,27,45),
6813 (5,4,44,61,96,59,28,45),
6814 (5,4,45,62,99,60,28,46),
6815 (5,4,46,63,101,61,28,46),
6816 (5,4,47,64,103,63,29,47),
6817 (5,4,48,66,105,64,29,48),
6818 (5,4,49,67,107,65,29,48),
6819 (5,4,50,68,109,66,30,49),
6820 (5,4,51,69,111,67,30,50),
6821 (5,4,52,70,114,68,30,50),
6822 (5,4,53,72,116,69,31,51),
6823 (5,4,54,73,118,70,31,52),
6824 (5,4,55,74,120,72,31,52),
6825 (5,4,56,75,123,73,32,53),
6826 (5,4,57,77,125,74,32,54),
6827 (5,4,58,78,127,75,32,54),
6828 (5,4,59,79,130,76,33,55),
6829 (5,4,60,81,132,77,33,56),
6830 (5,4,61,82,134,79,34,56),
6831 (5,4,62,83,137,80,34,57),
6832 (5,4,63,84,139,81,34,58),
6833 (5,4,64,86,141,82,35,59),
6834 (5,4,65,87,144,84,35,59),
6835 (5,4,66,88,146,85,35,60),
6836 (5,4,67,90,149,86,36,61),
6837 (5,4,68,91,151,87,36,61),
6838 (5,4,69,93,154,89,37,62),
6839 (5,4,70,94,156,90,37,63),
6840 (5,4,71,96,159,91,37,64),
6841 (5,4,72,98,162,93,38,64),
6842 (5,4,73,99,165,95,38,65),
6843 (5,4,74,101,168,96,39,66),
6844 (5,4,75,103,171,98,39,67),
6845 (5,4,76,104,174,99,39,68),
6846 (5,4,77,106,177,101,40,69),
6847 (5,4,78,108,181,103,40,70),
6848 (5,4,79,110,184,104,41,71),
6849 (5,4,80,112,187,106,41,72),
6850 (5,5,1,19,18,21,20,28),
6851 (5,5,2,19,18,21,21,29),
6852 (5,5,3,19,18,22,23,31),
6853 (5,5,4,19,19,22,24,32),
6854 (5,5,5,20,19,22,25,33),
6855 (5,5,6,20,19,23,27,35),
6856 (5,5,7,20,19,23,28,36),
6857 (5,5,8,20,20,24,29,38),
6858 (5,5,9,20,20,24,31,39),
6859 (5,5,10,20,20,24,32,40),
6860 (5,5,11,21,20,25,34,42),
6861 (5,5,12,21,21,25,35,43),
6862 (5,5,13,21,21,26,37,45),
6863 (5,5,14,21,21,26,38,46),
6864 (5,5,15,21,21,26,39,48),
6865 (5,5,16,22,22,27,41,50),
6866 (5,5,17,22,22,27,42,51),
6867 (5,5,18,22,22,28,44,53),
6868 (5,5,19,22,23,28,46,54),
6869 (5,5,20,22,23,29,47,56),
6870 (5,5,21,23,23,29,49,57),
6871 (5,5,22,23,23,30,50,59),
6872 (5,5,23,23,24,30,52,61),
6873 (5,5,24,23,24,31,53,62),
6874 (5,5,25,24,24,31,55,64),
6875 (5,5,26,24,25,32,57,66),
6876 (5,5,27,24,25,32,58,68),
6877 (5,5,28,24,25,33,60,69),
6878 (5,5,29,25,26,33,62,71),
6879 (5,5,30,25,26,34,63,73),
6880 (5,5,31,25,26,34,65,75),
6881 (5,5,32,25,27,35,67,76),
6882 (5,5,33,26,27,35,69,78),
6883 (5,5,34,26,27,36,70,80),
6884 (5,5,35,26,28,36,72,82),
6885 (5,5,36,26,28,37,74,84),
6886 (5,5,37,27,28,37,76,86),
6887 (5,5,38,27,29,38,77,87),
6888 (5,5,39,27,29,38,79,89),
6889 (5,5,40,28,30,39,81,91),
6890 (5,5,41,28,30,40,83,93),
6891 (5,5,42,28,30,40,85,95),
6892 (5,5,43,28,31,41,87,97),
6893 (5,5,44,29,31,41,89,99),
6894 (5,5,45,29,32,42,91,101),
6895 (5,5,46,29,32,43,92,103),
6896 (5,5,47,30,32,43,94,105),
6897 (5,5,48,30,33,44,96,107),
6898 (5,5,49,30,33,44,98,109),
6899 (5,5,50,31,34,45,100,111),
6900 (5,5,51,31,34,46,102,113),
6901 (5,5,52,31,35,46,104,115),
6902 (5,5,53,32,35,47,106,118),
6903 (5,5,54,32,35,48,108,120),
6904 (5,5,55,32,36,48,110,122),
6905 (5,5,56,33,36,49,113,124),
6906 (5,5,57,33,37,50,115,126),
6907 (5,5,58,33,37,50,117,128),
6908 (5,5,59,34,38,51,119,131),
6909 (5,5,60,34,38,52,121,133),
6910 (5,5,61,34,39,52,123,135),
6911 (5,5,62,35,39,53,125,137),
6912 (5,5,63,35,40,54,127,140),
6913 (5,5,64,36,40,55,130,142),
6914 (5,5,65,36,41,55,132,144),
6915 (5,5,66,36,41,56,134,147),
6916 (5,5,67,37,41,57,136,149),
6917 (5,5,68,37,42,58,138,151),
6918 (5,5,69,38,42,58,141,154),
6919 (5,5,70,38,43,59,143,156),
6920 (5,5,71,38,44,60,146,159),
6921 (5,5,72,39,44,60,149,162),
6922 (5,5,73,39,45,61,152,165),
6923 (5,5,74,40,45,62,157,168),
6924 (5,5,75,40,46,63,157,171),
6925 (5,5,76,40,47,64,160,174),
6926 (5,5,77,41,47,65,163,177),
6927 (5,5,78,41,48,66,166,180),
6928 (5,5,79,42,48,67,169,183),
6929 (5,5,80,42,49,68,172,186),
6930 (5,6,1,22,18,23,18,25),
6931 (5,6,2,23,19,24,18,25),
6932 (5,6,3,25,20,25,18,26),
6933 (5,6,4,26,20,26,18,26),
6934 (5,6,5,27,21,28,18,26),
6935 (5,6,6,29,22,29,18,26),
6936 (5,6,7,30,23,30,19,27),
6937 (5,6,8,31,24,31,19,27),
6938 (5,6,9,33,25,33,19,27),
6939 (5,6,10,34,25,34,19,28),
6940 (5,6,11,35,26,35,19,28),
6941 (5,6,12,37,27,36,19,28),
6942 (5,6,13,38,28,38,19,28),
6943 (5,6,14,40,29,39,19,29),
6944 (5,6,15,41,30,40,19,29),
6945 (5,6,16,43,31,42,20,29),
6946 (5,6,17,44,32,43,20,30),
6947 (5,6,18,46,33,44,20,30),
6948 (5,6,19,47,34,46,20,31),
6949 (5,6,20,49,34,47,20,31),
6950 (5,6,21,50,35,49,20,31),
6951 (5,6,22,52,36,50,20,32),
6952 (5,6,23,53,37,51,21,32),
6953 (5,6,24,55,38,53,21,32),
6954 (5,6,25,57,39,54,21,33),
6955 (5,6,26,58,40,56,21,33),
6956 (5,6,27,60,41,57,21,34),
6957 (5,6,28,62,42,59,21,34),
6958 (5,6,29,63,43,60,21,34),
6959 (5,6,30,65,44,62,22,35),
6960 (5,6,31,67,46,63,22,35),
6961 (5,6,32,68,47,65,22,36),
6962 (5,6,33,70,48,67,22,36),
6963 (5,6,34,72,49,68,22,36),
6964 (5,6,35,74,50,70,23,37),
6965 (5,6,36,75,51,71,23,37),
6966 (5,6,37,77,52,73,23,38),
6967 (5,6,38,79,53,75,23,38),
6968 (5,6,39,81,54,76,23,39),
6969 (5,6,40,83,55,78,24,39),
6970 (5,6,41,84,57,80,24,40),
6971 (5,6,42,86,58,81,24,40),
6972 (5,6,43,88,59,83,24,41),
6973 (5,6,44,90,60,85,24,41),
6974 (5,6,45,92,61,86,25,42),
6975 (5,6,46,94,62,88,25,42),
6976 (5,6,47,96,64,90,25,43),
6977 (5,6,48,98,65,92,25,43),
6978 (5,6,49,100,66,93,25,44),
6979 (5,6,50,102,67,95,26,44),
6980 (5,6,51,103,67,96,26,45),
6981 (5,6,52,104,68,97,26,45),
6982 (5,6,53,105,69,98,26,46),
6983 (5,6,54,106,70,99,27,46),
6984 (5,6,55,107,71,100,27,47),
6985 (5,6,56,110,73,103,27,48),
6986 (5,6,57,112,74,105,27,48),
6987 (5,6,58,114,75,107,28,49),
6988 (5,6,59,119,77,109,28,49),
6989 (5,6,60,122,78,111,28,50),
6990 (5,6,61,124,79,113,28,51),
6991 (5,6,62,127,81,115,28,51),
6992 (5,6,63,129,82,118,29,52),
6993 (5,6,64,136,84,120,29,52),
6994 (5,6,65,137,85,123,29,53),
6995 (5,6,66,138,87,125,29,54),
6996 (5,6,67,141,88,127,30,54),
6997 (5,6,68,143,90,129,30,55),
6998 (5,6,69,146,91,132,30,56),
6999 (5,6,70,149,93,134,30,56),
7000 (5,6,71,152,95,137,31,57),
7001 (5,6,72,154,96,139,31,58),
7002 (5,6,73,157,98,142,31,59),
7003 (5,6,74,158,100,145,31,59),
7004 (5,6,75,159,101,147,32,60),
7005 (5,6,76,162,103,150,32,61),
7006 (5,6,77,167,105,152,32,62),
7007 (5,6,78,173,106,155,32,62),
7008 (5,6,79,174,108,158,33,63),
7009 (5,6,80,174,110,161,33,64),
7010 (5,8,1,19,18,21,21,27),
7011 (5,8,2,19,18,21,22,28),
7012 (5,8,3,19,18,22,24,30),
7013 (5,8,4,19,18,22,25,31),
7014 (5,8,5,19,19,22,26,32),
7015 (5,8,6,19,19,22,28,34),
7016 (5,8,7,20,19,23,29,35),
7017 (5,8,8,20,19,23,31,36),
7018 (5,8,9,20,19,23,32,38),
7019 (5,8,10,20,19,24,34,39),
7020 (5,8,11,20,20,24,35,40),
7021 (5,8,12,20,20,24,37,42),
7022 (5,8,13,20,20,25,38,43),
7023 (5,8,14,20,20,25,40,45),
7024 (5,8,15,20,20,25,41,46),
7025 (5,8,16,21,21,26,43,48),
7026 (5,8,17,21,21,26,44,49),
7027 (5,8,18,21,21,26,46,51),
7028 (5,8,19,21,21,27,48,52),
7029 (5,8,20,21,21,27,49,54),
7030 (5,8,21,21,22,27,51,55),
7031 (5,8,22,21,22,28,52,57),
7032 (5,8,23,21,22,28,54,58),
7033 (5,8,24,22,22,29,56,60),
7034 (5,8,25,22,23,29,57,62),
7035 (5,8,26,22,23,29,59,63),
7036 (5,8,27,22,23,30,61,65),
7037 (5,8,28,22,23,30,63,67),
7038 (5,8,29,22,24,31,64,68),
7039 (5,8,30,23,24,31,66,70),
7040 (5,8,31,23,24,31,68,72),
7041 (5,8,32,23,24,32,70,73),
7042 (5,8,33,23,25,32,72,75),
7043 (5,8,34,23,25,33,73,77),
7044 (5,8,35,24,25,33,75,79),
7045 (5,8,36,24,25,34,77,80),
7046 (5,8,37,24,26,34,79,82),
7047 (5,8,38,24,26,35,81,84),
7048 (5,8,39,24,26,35,83,86),
7049 (5,8,40,24,27,35,85,88),
7050 (5,8,41,25,27,36,87,90),
7051 (5,8,42,25,27,36,89,91),
7052 (5,8,43,25,27,37,90,93),
7053 (5,8,44,25,28,37,92,95),
7054 (5,8,45,26,28,38,94,97),
7055 (5,8,46,26,28,38,96,99),
7056 (5,8,47,26,29,39,98,101),
7057 (5,8,48,26,29,39,100,103),
7058 (5,8,49,26,29,40,103,105),
7059 (5,8,50,27,30,40,105,107),
7060 (5,8,51,27,30,41,107,109),
7061 (5,8,52,27,30,42,109,111),
7062 (5,8,53,27,31,42,111,113),
7063 (5,8,54,28,31,43,113,115),
7064 (5,8,55,28,31,43,115,117),
7065 (5,8,56,28,32,44,117,119),
7066 (5,8,57,28,32,44,119,121),
7067 (5,8,58,29,32,45,122,123),
7068 (5,8,59,29,33,45,124,126),
7069 (5,8,60,29,33,46,126,128),
7070 (5,8,61,29,34,47,128,130),
7071 (5,8,62,30,34,47,131,132),
7072 (5,8,63,30,34,48,133,134),
7073 (5,8,64,30,35,48,135,136),
7074 (5,8,65,31,35,49,137,139),
7075 (5,8,66,31,35,50,140,141),
7076 (5,8,67,31,36,50,142,143),
7077 (5,8,68,31,36,51,144,145),
7078 (5,8,69,32,37,51,147,148),
7079 (5,8,70,32,37,52,149,150),
7080 (5,8,71,32,37,53,152,153),
7081 (5,8,72,32,38,54,155,156),
7082 (5,8,73,32,38,55,158,159),
7083 (5,8,74,33,39,55,161,161),
7084 (5,8,75,33,39,56,164,164),
7085 (5,8,76,33,39,57,167,167),
7086 (5,8,77,34,40,58,170,170),
7087 (5,8,78,34,40,58,173,173),
7088 (5,8,79,34,41,59,176,176),
7089 (5,8,80,35,41,60,179,179),
7090 (5,9,1,19,18,22,20,27),
7091 (5,9,2,19,18,23,21,28),
7092 (5,9,3,20,19,23,22,29),
7093 (5,9,4,20,19,24,24,30),
7094 (5,9,5,20,19,24,25,32),
7095 (5,9,6,20,20,25,26,33),
7096 (5,9,7,21,20,25,27,34),
7097 (5,9,8,21,21,26,28,35),
7098 (5,9,9,21,21,26,30,36),
7099 (5,9,10,22,21,27,31,38),
7100 (5,9,11,22,22,28,32,39),
7101 (5,9,12,22,22,28,34,40),
7102 (5,9,13,23,23,29,35,41),
7103 (5,9,14,23,23,30,36,43),
7104 (5,9,15,23,24,30,37,44),
7105 (5,9,16,24,24,31,39,45),
7106 (5,9,17,24,24,31,40,47),
7107 (5,9,18,24,25,32,42,48),
7108 (5,9,19,25,25,33,43,49),
7109 (5,9,20,25,26,33,44,51),
7110 (5,9,21,26,26,34,46,52),
7111 (5,9,22,26,27,35,47,53),
7112 (5,9,23,26,27,36,49,55),
7113 (5,9,24,27,28,36,50,56),
7114 (5,9,25,27,28,37,52,58),
7115 (5,9,26,27,29,38,53,59),
7116 (5,9,27,28,29,38,55,60),
7117 (5,9,28,28,30,39,56,62),
7118 (5,9,29,29,30,40,58,63),
7119 (5,9,30,29,31,41,59,65),
7120 (5,9,31,30,31,41,61,66),
7121 (5,9,32,30,32,42,62,68),
7122 (5,9,33,30,32,43,64,69),
7123 (5,9,34,31,33,44,65,71),
7124 (5,9,35,31,33,45,67,73),
7125 (5,9,36,32,34,45,69,74),
7126 (5,9,37,32,34,46,70,76),
7127 (5,9,38,33,35,47,72,77),
7128 (5,9,39,33,36,48,73,79),
7129 (5,9,40,34,36,49,75,81),
7130 (5,9,41,34,37,49,77,82),
7131 (5,9,42,35,37,50,78,84),
7132 (5,9,43,35,38,51,80,86),
7133 (5,9,44,36,39,52,82,87),
7134 (5,9,45,36,39,53,84,89),
7135 (5,9,46,37,40,54,85,91),
7136 (5,9,47,37,40,55,87,92),
7137 (5,9,48,38,41,55,89,94),
7138 (5,9,49,38,42,56,91,96),
7139 (5,9,50,39,42,57,92,98),
7140 (5,9,51,39,43,58,94,100),
7141 (5,9,52,40,44,59,96,101),
7142 (5,9,53,40,44,60,98,103),
7143 (5,9,54,41,45,61,100,105),
7144 (5,9,55,41,45,62,102,107),
7145 (5,9,56,42,46,63,103,109),
7146 (5,9,57,42,47,64,105,111),
7147 (5,9,58,43,47,65,107,112),
7148 (5,9,59,43,48,66,109,114),
7149 (5,9,60,44,49,67,111,116),
7150 (5,9,61,45,50,68,113,118),
7151 (5,9,62,45,50,69,115,120),
7152 (5,9,63,46,51,70,117,122),
7153 (5,9,64,46,52,71,119,124),
7154 (5,9,65,47,52,72,121,126),
7155 (5,9,66,48,53,73,123,128),
7156 (5,9,67,48,54,74,125,130),
7157 (5,9,68,49,55,75,127,132),
7158 (5,9,69,49,55,76,129,134),
7159 (5,9,70,50,56,77,131,136),
7160 (5,9,71,51,57,86,135,147),
7161 (5,9,72,52,57,88,136,149),
7162 (5,9,73,53,58,89,138,152),
7163 (5,9,74,53,59,90,141,155),
7164 (5,9,75,54,60,92,143,157),
7165 (5,9,76,55,61,93,146,160),
7166 (5,9,77,56,62,94,149,163),
7167 (5,9,78,56,63,96,151,166),
7168 (5,9,79,57,64,97,154,169),
7169 (5,9,80,58,65,99,157,171),
7170 (6,1,1,28,15,24,15,22),
7171 (6,1,2,29,16,25,15,22),
7172 (6,1,3,31,17,26,15,23),
7173 (6,1,4,32,17,27,15,23),
7174 (6,1,5,33,18,29,15,23),
7175 (6,1,6,34,19,30,15,23),
7176 (6,1,7,36,20,31,16,24),
7177 (6,1,8,37,21,32,16,24),
7178 (6,1,9,38,22,34,16,24),
7179 (6,1,10,40,22,35,16,25),
7180 (6,1,11,41,23,36,16,25),
7181 (6,1,12,43,24,37,16,25),
7182 (6,1,13,44,25,39,16,26),
7183 (6,1,14,46,26,40,16,26),
7184 (6,1,15,47,27,41,17,26),
7185 (6,1,16,48,28,43,17,27),
7186 (6,1,17,50,29,44,17,27),
7187 (6,1,18,51,30,45,17,27),
7188 (6,1,19,53,31,47,17,28),
7189 (6,1,20,54,32,48,17,28),
7190 (6,1,21,56,33,50,17,28),
7191 (6,1,22,58,34,51,18,29),
7192 (6,1,23,59,35,52,18,29),
7193 (6,1,24,61,36,54,18,30),
7194 (6,1,25,62,37,55,18,30),
7195 (6,1,26,64,38,57,18,30),
7196 (6,1,27,66,39,58,18,31),
7197 (6,1,28,67,40,60,18,31),
7198 (6,1,29,69,41,61,19,32),
7199 (6,1,30,71,42,63,19,32),
7200 (6,1,31,72,43,64,19,32),
7201 (6,1,32,74,44,66,19,33),
7202 (6,1,33,76,45,67,19,33),
7203 (6,1,34,77,46,69,20,34),
7204 (6,1,35,79,47,71,20,34),
7205 (6,1,36,81,48,72,20,35),
7206 (6,1,37,83,49,74,20,35),
7207 (6,1,38,85,50,76,20,35),
7208 (6,1,39,86,51,77,21,36),
7209 (6,1,40,88,53,79,21,36),
7210 (6,1,41,90,54,81,21,37),
7211 (6,1,42,92,55,82,21,37),
7212 (6,1,43,94,56,84,21,38),
7213 (6,1,44,96,57,86,22,38),
7214 (6,1,45,98,58,87,22,39),
7215 (6,1,46,99,60,89,22,39),
7216 (6,1,47,101,61,91,22,40),
7217 (6,1,48,103,62,93,22,40),
7218 (6,1,49,105,63,94,23,41),
7219 (6,1,50,107,65,96,23,41),
7220 (6,1,51,109,66,98,23,42),
7221 (6,1,52,111,67,100,23,42),
7222 (6,1,53,113,68,102,24,43),
7223 (6,1,54,115,70,104,24,44),
7224 (6,1,55,117,71,105,24,44),
7225 (6,1,56,119,72,107,24,45),
7226 (6,1,57,122,73,109,25,45),
7227 (6,1,58,124,75,111,25,46),
7228 (6,1,59,126,76,113,25,46),
7229 (6,1,60,128,77,115,25,47),
7230 (6,1,61,130,79,117,26,48),
7231 (6,1,62,132,80,119,26,48),
7232 (6,1,63,134,81,121,26,49),
7233 (6,1,64,137,83,123,26,49),
7234 (6,1,65,139,84,125,27,50),
7235 (6,1,66,141,85,127,27,51),
7236 (6,1,67,143,87,129,27,51),
7237 (6,1,68,145,88,131,27,52),
7238 (6,1,69,148,90,133,28,52),
7239 (6,1,70,150,91,135,28,53),
7240 (6,1,71,153,92,137,28,54),
7241 (6,1,72,155,94,140,28,55),
7242 (6,1,73,158,96,142,28,56),
7243 (6,1,74,161,97,145,29,56),
7244 (6,1,75,164,99,147,29,57),
7245 (6,1,76,167,101,150,29,58),
7246 (6,1,77,170,103,153,30,59),
7247 (6,1,78,173,104,155,30,59),
7248 (6,1,79,176,106,164,30,60),
7249 (6,1,80,179,108,170,31,61),
7250 (6,3,1,25,18,23,15,23),
7251 (6,3,2,25,19,24,16,24),
7252 (6,3,3,26,21,25,16,24),
7253 (6,3,4,26,22,26,17,25),
7254 (6,3,5,27,24,27,17,25),
7255 (6,3,6,27,25,28,18,26),
7256 (6,3,7,28,26,28,19,27),
7257 (6,3,8,28,28,29,19,27),
7258 (6,3,9,28,29,30,20,28),
7259 (6,3,10,29,31,31,20,29),
7260 (6,3,11,29,32,32,21,29),
7261 (6,3,12,30,34,33,22,30),
7262 (6,3,13,30,35,34,22,31),
7263 (6,3,14,31,37,35,23,32),
7264 (6,3,15,31,38,36,24,32),
7265 (6,3,16,32,40,37,24,33),
7266 (6,3,17,32,41,39,25,34),
7267 (6,3,18,33,43,40,26,35),
7268 (6,3,19,33,45,41,27,35),
7269 (6,3,20,34,46,42,27,36),
7270 (6,3,21,34,48,43,28,37),
7271 (6,3,22,35,50,44,29,38),
7272 (6,3,23,35,51,45,29,38),
7273 (6,3,24,36,53,46,30,39),
7274 (6,3,25,37,55,47,31,40),
7275 (6,3,26,37,56,48,32,41),
7276 (6,3,27,38,58,50,32,42),
7277 (6,3,28,38,60,51,33,42),
7278 (6,3,29,39,62,52,34,43),
7279 (6,3,30,39,63,53,35,44),
7280 (6,3,31,40,65,54,36,45),
7281 (6,3,32,41,67,56,36,46),
7282 (6,3,33,41,69,57,37,47),
7283 (6,3,34,42,71,58,38,48),
7284 (6,3,35,43,72,59,39,48),
7285 (6,3,36,43,74,61,40,49),
7286 (6,3,37,44,76,62,40,50),
7287 (6,3,38,45,78,63,41,51),
7288 (6,3,39,45,80,64,42,52),
7289 (6,3,40,46,82,66,43,53),
7290 (6,3,41,47,84,67,44,54),
7291 (6,3,42,47,86,68,45,55),
7292 (6,3,43,48,88,70,46,56),
7293 (6,3,44,49,90,71,46,57),
7294 (6,3,45,49,92,72,47,58),
7295 (6,3,46,50,94,74,48,59),
7296 (6,3,47,51,96,75,49,60),
7297 (6,3,48,51,98,77,50,61),
7298 (6,3,49,52,100,78,51,62),
7299 (6,3,50,53,102,79,52,63),
7300 (6,3,51,54,104,81,53,64),
7301 (6,3,52,54,106,82,54,65),
7302 (6,3,53,55,108,84,55,66),
7303 (6,3,54,56,110,85,56,67),
7304 (6,3,55,57,112,87,57,68),
7305 (6,3,56,57,114,88,58,69),
7306 (6,3,57,58,117,90,59,70),
7307 (6,3,58,59,119,91,60,71),
7308 (6,3,59,60,121,93,61,72),
7309 (6,3,60,61,123,94,62,74),
7310 (6,3,61,61,125,96,63,75),
7311 (6,3,62,62,128,97,64,76),
7312 (6,3,63,63,130,99,65,77),
7313 (6,3,64,64,132,100,66,78),
7314 (6,3,65,65,134,102,67,79),
7315 (6,3,66,66,137,104,68,80),
7316 (6,3,67,66,139,105,69,81),
7317 (6,3,68,67,141,107,70,83),
7318 (6,3,69,68,144,108,71,84),
7319 (6,3,70,69,146,110,72,85),
7320 (6,3,71,70,149,112,73,86),
7321 (6,3,72,71,152,114,74,87),
7322 (6,3,73,72,155,116,75,89),
7323 (6,3,74,73,158,118,77,90),
7324 (6,3,75,74,161,120,78,92),
7325 (6,3,76,75,164,122,79,93),
7326 (6,3,77,76,167,124,81,95),
7327 (6,3,78,77,176,126,85,96),
7328 (6,3,79,78,179,128,86,98),
7329 (6,3,80,79,183,130,88,99),
7330 (6,6,1,28,15,24,15,22),
7331 (6,6,2,29,16,25,15,22),
7332 (6,6,3,31,17,26,15,23),
7333 (6,6,4,32,17,27,15,23),
7334 (6,6,5,33,18,29,15,23),
7335 (6,6,6,34,19,30,15,23),
7336 (6,6,7,36,20,31,16,24),
7337 (6,6,8,37,21,32,16,24),
7338 (6,6,9,38,22,34,16,24),
7339 (6,6,10,40,22,35,16,25),
7340 (6,6,11,41,23,36,16,25),
7341 (6,6,12,43,24,37,16,25),
7342 (6,6,13,44,25,39,16,26),
7343 (6,6,14,46,26,40,16,26),
7344 (6,6,15,47,27,41,17,26),
7345 (6,6,16,48,28,43,17,27),
7346 (6,6,17,50,29,44,17,27),
7347 (6,6,18,51,30,45,17,27),
7348 (6,6,19,53,31,47,17,28),
7349 (6,6,20,54,32,48,17,28),
7350 (6,6,21,56,33,50,17,28),
7351 (6,6,22,58,34,51,18,29),
7352 (6,6,23,59,35,52,18,29),
7353 (6,6,24,61,36,54,18,30),
7354 (6,6,25,62,37,55,18,30),
7355 (6,6,26,64,38,57,18,30),
7356 (6,6,27,66,39,58,18,31),
7357 (6,6,28,67,40,60,18,31),
7358 (6,6,29,69,41,61,19,32),
7359 (6,6,30,71,42,63,19,32),
7360 (6,6,31,72,43,64,19,32),
7361 (6,6,32,74,44,66,19,33),
7362 (6,6,33,76,45,67,19,33),
7363 (6,6,34,77,46,69,20,34),
7364 (6,6,35,79,47,71,20,34),
7365 (6,6,36,81,48,72,20,35),
7366 (6,6,37,83,49,74,20,35),
7367 (6,6,38,85,50,76,20,35),
7368 (6,6,39,86,51,77,21,36),
7369 (6,6,40,88,53,79,21,36),
7370 (6,6,41,90,54,81,21,37),
7371 (6,6,42,92,55,82,21,37),
7372 (6,6,43,94,56,84,21,38),
7373 (6,6,44,96,57,86,22,38),
7374 (6,6,45,98,58,87,22,39),
7375 (6,6,46,99,60,89,22,39),
7376 (6,6,47,101,60,91,22,40),
7377 (6,6,48,103,61,93,22,40),
7378 (6,6,49,105,62,94,23,41),
7379 (6,6,50,107,63,96,23,41),
7380 (6,6,51,109,64,97,23,42),
7381 (6,6,52,110,65,98,23,42),
7382 (6,6,53,111,66,99,24,43),
7383 (6,6,54,112,67,100,24,44),
7384 (6,6,55,113,68,101,24,44),
7385 (6,6,56,116,70,104,24,45),
7386 (6,6,57,121,71,106,24,45),
7387 (6,6,58,123,72,108,25,46),
7388 (6,6,59,123,74,110,25,46),
7389 (6,6,60,125,75,112,25,47),
7390 (6,6,61,127,76,114,25,48),
7391 (6,6,62,133,78,116,25,48),
7392 (6,6,63,135,79,119,26,49),
7393 (6,6,64,139,81,121,26,49),
7394 (6,6,65,142,82,123,26,50),
7395 (6,6,66,146,84,126,26,51),
7396 (6,6,67,150,85,132,27,51),
7397 (6,6,68,153,87,137,27,52),
7398 (6,6,69,157,88,140,27,53),
7399 (6,6,70,160,90,143,27,53),
7400 (6,6,71,163,92,146,28,54),
7401 (6,6,72,165,93,148,28,55),
7402 (6,6,73,167,95,150,28,56),
7403 (6,6,74,171,97,153,28,56),
7404 (6,6,75,174,98,156,29,57),
7405 (6,6,76,178,100,156,29,58),
7406 (6,6,77,179,102,156,29,59),
7407 (6,6,78,179,103,156,29,59),
7408 (6,6,79,182,105,159,30,60),
7409 (6,6,80,185,107,162,30,61),
7410 (6,7,1,26,15,23,16,24),
7411 (6,7,2,27,15,24,17,25),
7412 (6,7,3,28,16,25,18,26),
7413 (6,7,4,28,16,26,19,27),
7414 (6,7,5,29,17,27,20,28),
7415 (6,7,6,30,17,28,21,29),
7416 (6,7,7,31,18,29,22,30),
7417 (6,7,8,32,18,30,23,31),
7418 (6,7,9,33,19,31,24,32),
7419 (6,7,10,34,19,32,25,33),
7420 (6,7,11,35,20,33,26,35),
7421 (6,7,12,35,20,34,27,36),
7422 (6,7,13,36,21,35,28,37),
7423 (6,7,14,37,21,36,29,38),
7424 (6,7,15,38,22,37,30,39),
7425 (6,7,16,39,22,39,31,40),
7426 (6,7,17,40,23,40,32,42),
7427 (6,7,18,41,23,41,33,43),
7428 (6,7,19,42,24,42,34,44),
7429 (6,7,20,43,24,43,35,45),
7430 (6,7,21,44,25,44,36,46),
7431 (6,7,22,45,25,45,37,48),
7432 (6,7,23,46,26,47,38,49),
7433 (6,7,24,47,27,48,40,50),
7434 (6,7,25,48,27,49,41,51),
7435 (6,7,26,49,28,50,42,53),
7436 (6,7,27,51,28,52,43,54),
7437 (6,7,28,52,29,53,44,55),
7438 (6,7,29,53,29,54,45,57),
7439 (6,7,30,54,30,55,47,58),
7440 (6,7,31,55,31,57,48,59),
7441 (6,7,32,56,31,58,49,61),
7442 (6,7,33,57,32,59,50,62),
7443 (6,7,34,58,33,61,51,64),
7444 (6,7,35,60,33,62,53,65),
7445 (6,7,36,61,34,63,54,66),
7446 (6,7,37,62,34,65,55,68),
7447 (6,7,38,63,35,66,57,69),
7448 (6,7,39,64,36,67,58,71),
7449 (6,7,40,66,36,69,59,72),
7450 (6,7,41,67,37,70,60,74),
7451 (6,7,42,68,38,72,62,75),
7452 (6,7,43,69,38,73,63,77),
7453 (6,7,44,70,39,74,64,78),
7454 (6,7,45,72,40,76,66,80),
7455 (6,7,46,73,41,77,67,81),
7456 (6,7,47,74,41,79,69,83),
7457 (6,7,48,76,42,80,70,84),
7458 (6,7,49,77,43,82,71,86),
7459 (6,7,50,78,43,83,73,88),
7460 (6,7,51,80,44,85,74,89),
7461 (6,7,52,81,45,86,76,91),
7462 (6,7,53,82,46,88,77,92),
7463 (6,7,54,84,46,90,78,94),
7464 (6,7,55,85,47,91,80,96),
7465 (6,7,56,86,48,93,81,97),
7466 (6,7,57,88,49,94,83,99),
7467 (6,7,58,89,49,96,84,101),
7468 (6,7,59,91,50,97,86,102),
7469 (6,7,60,92,51,99,87,104),
7470 (6,7,61,94,52,101,89,106),
7471 (6,7,62,95,52,102,90,108),
7472 (6,7,63,96,53,104,92,109),
7473 (6,7,64,98,54,106,93,111),
7474 (6,7,65,99,55,107,95,113),
7475 (6,7,66,101,56,109,97,115),
7476 (6,7,67,102,57,111,98,117),
7477 (6,7,68,104,57,113,100,118),
7478 (6,7,69,105,58,114,101,120),
7479 (6,7,70,107,59,116,103,122),
7480 (6,7,71,108,60,118,113,124),
7481 (6,7,72,110,61,120,117,127),
7482 (6,7,73,112,62,122,119,129),
7483 (6,7,74,114,63,125,122,131),
7484 (6,7,75,116,64,127,124,133),
7485 (6,7,76,118,65,129,126,136),
7486 (6,7,77,119,66,131,128,138),
7487 (6,7,78,121,67,133,130,140),
7488 (6,7,79,123,68,136,133,143),
7489 (6,7,80,125,69,138,135,145),
7490 (6,11,1,26,15,22,17,24),
7491 (6,11,2,27,16,23,18,25),
7492 (6,11,3,27,16,23,19,26),
7493 (6,11,4,28,17,24,20,27),
7494 (6,11,5,28,17,25,21,29),
7495 (6,11,6,29,18,25,22,30),
7496 (6,11,7,29,18,26,23,31),
7497 (6,11,8,30,19,27,24,32),
7498 (6,11,9,30,19,27,26,34),
7499 (6,11,10,31,20,28,27,35),
7500 (6,11,11,32,20,29,28,36),
7501 (6,11,12,32,21,29,29,37),
7502 (6,11,13,33,21,30,30,39),
7503 (6,11,14,33,22,31,31,40),
7504 (6,11,15,34,23,32,32,41),
7505 (6,11,16,35,23,32,34,43),
7506 (6,11,17,35,24,33,35,44),
7507 (6,11,18,36,24,34,36,45),
7508 (6,11,19,37,25,35,37,47),
7509 (6,11,20,37,26,35,39,48),
7510 (6,11,21,38,26,36,40,50),
7511 (6,11,22,39,27,37,41,51),
7512 (6,11,23,39,28,38,42,52),
7513 (6,11,24,40,28,39,44,54),
7514 (6,11,25,41,29,39,45,55),
7515 (6,11,26,41,30,40,46,57),
7516 (6,11,27,42,30,41,47,58),
7517 (6,11,28,43,31,42,49,60),
7518 (6,11,29,44,32,43,50,61),
7519 (6,11,30,44,32,44,52,63),
7520 (6,11,31,45,33,44,53,64),
7521 (6,11,32,46,34,45,54,66),
7522 (6,11,33,47,34,46,56,67),
7523 (6,11,34,47,35,47,57,69),
7524 (6,11,35,48,36,48,58,71),
7525 (6,11,36,49,36,49,60,72),
7526 (6,11,37,50,37,50,61,74),
7527 (6,11,38,51,38,51,63,76),
7528 (6,11,39,52,39,52,64,77),
7529 (6,11,40,52,39,53,66,79),
7530 (6,11,41,53,40,54,67,81),
7531 (6,11,42,54,41,55,69,82),
7532 (6,11,43,55,42,56,70,84),
7533 (6,11,44,56,43,57,72,86),
7534 (6,11,45,57,43,57,73,87),
7535 (6,11,46,57,44,58,75,89),
7536 (6,11,47,58,45,60,76,91),
7537 (6,11,48,59,46,61,78,93),
7538 (6,11,49,60,47,62,79,94),
7539 (6,11,50,61,47,63,81,96),
7540 (6,11,51,62,48,64,83,98),
7541 (6,11,52,63,49,65,84,100),
7542 (6,11,53,64,50,66,86,102),
7543 (6,11,54,65,51,67,87,104),
7544 (6,11,55,66,51,68,89,105),
7545 (6,11,56,67,52,69,91,107),
7546 (6,11,57,68,53,70,92,109),
7547 (6,11,58,69,54,71,94,111),
7548 (6,11,59,70,55,72,96,113),
7549 (6,11,60,71,56,73,97,115),
7550 (6,11,61,72,57,74,99,117),
7551 (6,11,62,73,58,76,101,119),
7552 (6,11,63,74,59,77,103,121),
7553 (6,11,64,75,59,78,104,123),
7554 (6,11,65,76,60,79,106,125),
7555 (6,11,66,77,61,80,108,127),
7556 (6,11,67,78,62,81,110,129),
7557 (6,11,68,79,63,83,111,131),
7558 (6,11,69,80,64,84,113,133),
7559 (6,11,70,81,65,85,115,135),
7560 (6,11,71,83,66,86,117,137),
7561 (6,11,72,84,68,88,120,140),
7562 (6,11,73,85,69,89,122,142),
7563 (6,11,74,86,70,91,124,145),
7564 (6,11,75,88,71,92,126,147),
7565 (6,11,76,89,72,94,128,150),
7566 (6,11,77,90,73,95,131,153),
7567 (6,11,78,92,75,97,133,155),
7568 (6,11,79,93,76,98,136,158),
7569 (6,11,80,94,77,100,138,185),
7570 (7,1,1,18,23,21,24,20),
7571 (7,1,2,19,24,22,24,20),
7572 (7,1,3,21,25,23,24,21),
7573 (7,1,4,22,25,25,24,21),
7574 (7,1,5,23,26,26,24,21),
7575 (7,1,6,25,27,27,24,21),
7576 (7,1,7,26,28,28,24,22),
7577 (7,1,8,27,29,29,25,22),
7578 (7,1,9,29,29,31,25,22),
7579 (7,1,10,30,30,32,25,23),
7580 (7,1,11,32,31,33,25,23),
7581 (7,1,12,33,32,34,25,23),
7582 (7,1,13,34,33,36,25,24),
7583 (7,1,14,36,34,37,25,24),
7584 (7,1,15,37,35,38,25,24),
7585 (7,1,16,39,36,40,25,25),
7586 (7,1,17,40,36,41,25,25),
7587 (7,1,18,42,37,43,26,25),
7588 (7,1,19,43,38,44,26,26),
7589 (7,1,20,45,39,45,26,26),
7590 (7,1,21,47,40,47,26,26),
7591 (7,1,22,48,41,48,26,27),
7592 (7,1,23,50,42,50,26,27),
7593 (7,1,24,51,43,51,26,28),
7594 (7,1,25,53,44,52,27,28),
7595 (7,1,26,55,45,54,27,28),
7596 (7,1,27,56,46,55,27,29),
7597 (7,1,28,58,47,57,27,29),
7598 (7,1,29,59,48,58,27,30),
7599 (7,1,30,61,49,60,27,30),
7600 (7,1,31,63,50,62,27,30),
7601 (7,1,32,65,51,63,28,31),
7602 (7,1,33,66,52,65,28,31),
7603 (7,1,34,68,53,66,28,32),
7604 (7,1,35,70,55,68,28,32),
7605 (7,1,36,72,56,69,28,33),
7606 (7,1,37,73,57,71,29,33),
7607 (7,1,38,75,58,73,29,34),
7608 (7,1,39,77,59,74,29,34),
7609 (7,1,40,79,60,76,29,35),
7610 (7,1,41,81,61,78,29,35),
7611 (7,1,42,82,62,79,30,35),
7612 (7,1,43,84,64,81,30,36),
7613 (7,1,44,86,65,83,30,36),
7614 (7,1,45,88,66,85,30,37),
7615 (7,1,46,90,67,86,30,37),
7616 (7,1,47,92,68,88,31,38),
7617 (7,1,48,94,70,90,31,38),
7618 (7,1,49,96,71,92,31,39),
7619 (7,1,50,98,72,93,31,40),
7620 (7,1,51,100,73,95,32,40),
7621 (7,1,52,102,75,97,32,41),
7622 (7,1,53,104,76,99,32,41),
7623 (7,1,54,106,77,101,32,42),
7624 (7,1,55,108,78,103,33,42),
7625 (7,1,56,110,80,104,33,43),
7626 (7,1,57,112,81,106,33,43),
7627 (7,1,58,114,82,108,33,44),
7628 (7,1,59,116,84,110,34,44),
7629 (7,1,60,118,85,112,34,45),
7630 (7,1,61,120,86,114,34,46),
7631 (7,1,62,122,88,116,35,46),
7632 (7,1,63,125,89,118,35,47),
7633 (7,1,64,127,91,120,35,47),
7634 (7,1,65,129,92,122,35,48),
7635 (7,1,66,131,93,124,36,49),
7636 (7,1,67,133,95,126,36,49),
7637 (7,1,68,136,96,128,36,50),
7638 (7,1,69,138,98,130,37,50),
7639 (7,1,70,140,99,132,37,51),
7640 (7,1,71,143,100,134,37,52),
7641 (7,1,72,145,102,137,37,53),
7642 (7,1,73,148,104,139,37,54),
7643 (7,1,74,151,105,142,38,54),
7644 (7,1,75,154,107,144,38,55),
7645 (7,1,76,157,109,147,38,56),
7646 (7,1,77,163,111,153,39,57),
7647 (7,1,78,169,112,158,39,57),
7648 (7,1,79,172,114,161,39,58),
7649 (7,1,80,175,116,164,40,59),
7650 (7,4,1,16,26,20,24,20),
7651 (7,4,2,17,27,21,24,20),
7652 (7,4,3,18,29,21,24,21),
7653 (7,4,4,18,30,22,24,21),
7654 (7,4,5,19,32,23,25,21),
7655 (7,4,6,20,33,24,25,22),
7656 (7,4,7,21,35,24,25,22),
7657 (7,4,8,22,36,25,25,23),
7658 (7,4,9,22,38,26,25,23),
7659 (7,4,10,23,39,26,25,23),
7660 (7,4,11,24,41,27,25,24),
7661 (7,4,12,25,42,28,26,24),
7662 (7,4,13,26,44,29,26,25),
7663 (7,4,14,27,46,30,26,25),
7664 (7,4,15,28,47,30,26,25),
7665 (7,4,16,28,49,31,26,26),
7666 (7,4,17,29,50,32,27,26),
7667 (7,4,18,30,52,33,27,27),
7668 (7,4,19,31,54,34,27,27),
7669 (7,4,20,32,56,35,27,28),
7670 (7,4,21,33,57,35,27,28),
7671 (7,4,22,34,59,36,28,29),
7672 (7,4,23,35,61,37,28,29),
7673 (7,4,24,36,62,38,28,30),
7674 (7,4,25,37,64,39,28,30),
7675 (7,4,26,38,66,40,29,31),
7676 (7,4,27,39,68,41,29,31),
7677 (7,4,28,40,70,42,29,32),
7678 (7,4,29,41,72,43,29,32),
7679 (7,4,30,42,73,43,29,33),
7680 (7,4,31,43,75,44,30,33),
7681 (7,4,32,44,77,45,30,34),
7682 (7,4,33,45,79,46,30,34),
7683 (7,4,34,46,81,47,31,35),
7684 (7,4,35,47,83,48,31,35),
7685 (7,4,36,48,85,49,31,36),
7686 (7,4,37,49,87,50,31,36),
7687 (7,4,38,50,89,51,32,37),
7688 (7,4,39,51,91,52,32,38),
7689 (7,4,40,53,93,53,32,38),
7690 (7,4,41,54,95,54,33,39),
7691 (7,4,42,55,97,55,33,39),
7692 (7,4,43,56,99,56,33,40),
7693 (7,4,44,57,101,57,33,40),
7694 (7,4,45,58,103,59,34,41),
7695 (7,4,46,59,105,60,34,42),
7696 (7,4,47,61,107,61,34,42),
7697 (7,4,48,62,110,62,35,43),
7698 (7,4,49,63,112,63,35,44),
7699 (7,4,50,64,114,64,35,44),
7700 (7,4,51,65,116,65,36,45),
7701 (7,4,52,67,118,66,36,45),
7702 (7,4,53,68,121,67,36,46),
7703 (7,4,54,69,123,69,37,47),
7704 (7,4,55,70,125,70,37,47),
7705 (7,4,56,72,127,71,37,48),
7706 (7,4,57,73,130,72,38,49),
7707 (7,4,58,74,132,73,38,49),
7708 (7,4,59,75,134,74,39,50),
7709 (7,4,60,77,137,76,39,51),
7710 (7,4,61,78,139,77,39,51),
7711 (7,4,62,79,141,78,40,52),
7712 (7,4,63,81,144,79,40,53),
7713 (7,4,64,82,146,80,41,54),
7714 (7,4,65,83,149,82,41,54),
7715 (7,4,66,85,151,83,41,55),
7716 (7,4,67,86,154,84,42,56),
7717 (7,4,68,87,156,85,42,57),
7718 (7,4,69,89,158,87,43,57),
7719 (7,4,70,90,161,88,43,58),
7720 (7,4,71,92,164,89,44,59),
7721 (7,4,72,94,167,91,45,59),
7722 (7,4,73,95,170,93,45,60),
7723 (7,4,74,97,173,94,46,61),
7724 (7,4,75,99,176,96,46,62),
7725 (7,4,76,100,179,97,46,63),
7726 (7,4,77,102,182,102,47,64),
7727 (7,4,78,104,186,105,47,65),
7728 (7,4,79,106,189,106,48,66),
7729 (7,4,80,108,192,108,48,67),
7730 (7,6,1,18,23,21,24,20),
7731 (7,6,2,19,24,22,24,20),
7732 (7,6,3,21,25,23,24,21),
7733 (7,6,4,22,25,25,24,21),
7734 (7,6,5,23,26,26,24,21),
7735 (7,6,6,25,27,27,24,21),
7736 (7,6,7,26,28,28,24,22),
7737 (7,6,8,27,29,29,25,22),
7738 (7,6,9,29,29,31,25,22),
7739 (7,6,10,30,30,32,25,23),
7740 (7,6,11,32,31,33,25,23),
7741 (7,6,12,33,32,34,25,23),
7742 (7,6,13,34,33,36,25,24),
7743 (7,6,14,36,34,37,25,24),
7744 (7,6,15,37,35,38,25,24),
7745 (7,6,16,39,36,40,25,25),
7746 (7,6,17,40,36,41,25,25),
7747 (7,6,18,42,37,43,26,25),
7748 (7,6,19,43,38,44,26,26),
7749 (7,6,20,45,39,45,26,26),
7750 (7,6,21,47,40,47,26,26),
7751 (7,6,22,48,41,48,26,27),
7752 (7,6,23,50,42,50,26,27),
7753 (7,6,24,51,43,51,26,28),
7754 (7,6,25,53,44,52,27,28),
7755 (7,6,26,55,45,54,27,28),
7756 (7,6,27,56,46,55,27,29),
7757 (7,6,28,58,47,57,27,29),
7758 (7,6,29,59,48,58,27,30),
7759 (7,6,30,61,49,60,27,30),
7760 (7,6,31,63,50,62,27,30),
7761 (7,6,32,65,51,63,28,31),
7762 (7,6,33,66,52,65,28,31),
7763 (7,6,34,68,53,66,28,32),
7764 (7,6,35,70,55,68,28,32),
7765 (7,6,36,72,56,69,28,33),
7766 (7,6,37,73,57,71,29,33),
7767 (7,6,38,75,58,73,29,34),
7768 (7,6,39,77,59,74,29,34),
7769 (7,6,40,79,60,76,29,35),
7770 (7,6,41,81,61,78,29,35),
7771 (7,6,42,82,62,79,30,35),
7772 (7,6,43,84,64,81,30,36),
7773 (7,6,44,86,65,83,30,36),
7774 (7,6,45,88,66,85,30,37),
7775 (7,6,46,90,67,86,30,37),
7776 (7,6,47,92,68,88,31,38),
7777 (7,6,48,94,70,90,31,38),
7778 (7,6,49,96,71,92,31,39),
7779 (7,6,50,98,72,93,31,40),
7780 (7,6,51,99,72,93,32,40),
7781 (7,6,52,100,73,95,32,41),
7782 (7,6,53,101,74,96,32,41),
7783 (7,6,54,102,75,97,32,42),
7784 (7,6,55,103,76,98,33,42),
7785 (7,6,56,106,78,101,33,43),
7786 (7,6,57,111,79,103,33,43),
7787 (7,6,58,113,80,105,34,44),
7788 (7,6,59,116,82,107,34,44),
7789 (7,6,60,118,83,109,34,45),
7790 (7,6,61,120,84,111,34,46),
7791 (7,6,62,127,86,119,34,46),
7792 (7,6,63,129,87,122,35,47),
7793 (7,6,64,132,89,125,35,47),
7794 (7,6,65,135,90,127,35,48),
7795 (7,6,66,137,92,130,35,49),
7796 (7,6,67,138,93,130,36,49),
7797 (7,6,68,140,95,131,36,50),
7798 (7,6,69,142,96,131,36,51),
7799 (7,6,70,145,98,132,36,51),
7800 (7,6,71,148,100,135,37,52),
7801 (7,6,72,150,101,137,37,53),
7802 (7,6,73,153,103,140,37,54),
7803 (7,6,74,154,105,142,37,54),
7804 (7,6,75,155,106,145,38,55),
7805 (7,6,76,158,108,151,38,56),
7806 (7,6,77,161,110,157,38,57),
7807 (7,6,78,164,111,162,38,57),
7808 (7,6,79,167,113,165,39,58),
7809 (7,6,80,170,115,168,39,59),
7810 (7,8,1,15,23,19,27,22),
7811 (7,8,2,15,23,19,28,23),
7812 (7,8,3,15,23,20,30,25),
7813 (7,8,4,15,23,20,31,26),
7814 (7,8,5,15,24,20,32,27),
7815 (7,8,6,15,24,20,34,29),
7816 (7,8,7,16,24,21,35,30),
7817 (7,8,8,16,24,21,37,31),
7818 (7,8,9,16,24,21,38,33),
7819 (7,8,10,16,24,22,40,34),
7820 (7,8,11,16,25,22,41,36),
7821 (7,8,12,16,25,22,42,37),
7822 (7,8,13,16,25,23,44,38),
7823 (7,8,14,16,25,23,45,40),
7824 (7,8,15,17,25,23,47,41),
7825 (7,8,16,17,25,24,49,43),
7826 (7,8,17,17,26,24,50,44),
7827 (7,8,18,17,26,24,52,46),
7828 (7,8,19,17,26,25,53,47),
7829 (7,8,20,17,26,25,55,49),
7830 (7,8,21,17,26,26,57,51),
7831 (7,8,22,18,27,26,58,52),
7832 (7,8,23,18,27,26,60,54),
7833 (7,8,24,18,27,27,61,55),
7834 (7,8,25,18,27,27,63,57),
7835 (7,8,26,18,28,27,65,59),
7836 (7,8,27,18,28,28,67,60),
7837 (7,8,28,18,28,28,68,62),
7838 (7,8,29,19,28,29,70,64),
7839 (7,8,30,19,29,29,72,65),
7840 (7,8,31,19,29,30,74,67),
7841 (7,8,32,19,29,30,75,69),
7842 (7,8,33,19,29,30,77,70),
7843 (7,8,34,20,30,31,79,72),
7844 (7,8,35,20,30,31,81,74),
7845 (7,8,36,20,30,32,83,76),
7846 (7,8,37,20,30,32,85,78),
7847 (7,8,38,20,31,33,86,79),
7848 (7,8,39,21,31,33,88,81),
7849 (7,8,40,21,31,34,90,83),
7850 (7,8,41,21,32,34,92,85),
7851 (7,8,42,21,32,35,94,87),
7852 (7,8,43,21,32,35,96,89),
7853 (7,8,44,22,32,36,98,91),
7854 (7,8,45,22,33,36,100,92),
7855 (7,8,46,22,33,37,102,94),
7856 (7,8,47,22,33,37,104,96),
7857 (7,8,48,22,34,38,106,98),
7858 (7,8,49,23,34,38,108,100),
7859 (7,8,50,23,34,39,110,102),
7860 (7,8,51,23,35,39,112,104),
7861 (7,8,52,23,35,40,114,106),
7862 (7,8,53,24,35,40,117,108),
7863 (7,8,54,24,36,41,119,110),
7864 (7,8,55,24,36,41,121,112),
7865 (7,8,56,24,37,42,123,114),
7866 (7,8,57,25,37,42,125,117),
7867 (7,8,58,25,37,43,127,119),
7868 (7,8,59,25,38,43,130,121),
7869 (7,8,60,25,38,44,132,123),
7870 (7,8,61,26,38,45,134,125),
7871 (7,8,62,26,39,45,136,127),
7872 (7,8,63,26,39,46,139,129),
7873 (7,8,64,26,40,46,141,132),
7874 (7,8,65,27,40,47,143,134),
7875 (7,8,66,27,40,48,146,136),
7876 (7,8,67,27,41,48,148,138),
7877 (7,8,68,27,41,49,150,140),
7878 (7,8,69,28,42,49,153,143),
7879 (7,8,70,28,42,50,155,145),
7880 (7,8,71,28,42,51,168,148),
7881 (7,8,72,28,43,52,168,151),
7882 (7,8,73,28,43,53,171,154),
7883 (7,8,74,29,44,53,174,156),
7884 (7,8,75,29,44,54,177,159),
7885 (7,8,76,29,44,55,180,162),
7886 (7,8,77,30,45,56,183,165),
7887 (7,8,78,30,45,56,186,168),
7888 (7,8,79,30,46,57,190,171),
7889 (7,8,80,31,46,58,193,174),
7890 (7,9,1,15,23,20,26,22),
7891 (7,9,2,15,23,21,27,23),
7892 (7,9,3,16,24,21,28,24),
7893 (7,9,4,16,24,22,29,25),
7894 (7,9,5,16,24,22,31,27),
7895 (7,9,6,17,25,23,32,28),
7896 (7,9,7,17,25,23,33,29),
7897 (7,9,8,17,26,24,34,30),
7898 (7,9,9,17,26,25,36,31),
7899 (7,9,10,18,26,25,37,33),
7900 (7,9,11,18,27,26,38,34),
7901 (7,9,12,18,27,26,39,35),
7902 (7,9,13,19,28,27,41,36),
7903 (7,9,14,19,28,28,42,38),
7904 (7,9,15,20,28,28,43,39),
7905 (7,9,16,20,29,29,45,40),
7906 (7,9,17,20,29,30,46,42),
7907 (7,9,18,21,30,30,47,43),
7908 (7,9,19,21,30,31,49,44),
7909 (7,9,20,21,31,32,50,46),
7910 (7,9,21,22,31,32,51,47),
7911 (7,9,22,22,31,33,53,49),
7912 (7,9,23,23,32,34,54,50),
7913 (7,9,24,23,32,34,56,51),
7914 (7,9,25,23,33,35,57,53),
7915 (7,9,26,24,33,36,59,54),
7916 (7,9,27,24,34,37,60,56),
7917 (7,9,28,25,34,37,62,57),
7918 (7,9,29,25,35,38,63,59),
7919 (7,9,30,25,35,39,65,60),
7920 (7,9,31,26,36,40,66,62),
7921 (7,9,32,26,36,40,68,63),
7922 (7,9,33,27,37,41,69,65),
7923 (7,9,34,27,38,42,71,66),
7924 (7,9,35,28,38,43,73,68),
7925 (7,9,36,28,39,43,74,69),
7926 (7,9,37,28,39,44,76,71),
7927 (7,9,38,29,40,45,77,73),
7928 (7,9,39,29,40,46,79,74),
7929 (7,9,40,30,41,47,81,76),
7930 (7,9,41,30,41,48,82,78),
7931 (7,9,42,31,42,48,84,79),
7932 (7,9,43,31,43,49,86,81),
7933 (7,9,44,32,43,50,88,83),
7934 (7,9,45,32,44,51,89,84),
7935 (7,9,46,33,44,52,91,86),
7936 (7,9,47,33,45,53,93,88),
7937 (7,9,48,34,46,54,95,89),
7938 (7,9,49,34,46,54,96,91),
7939 (7,9,50,35,47,55,98,93),
7940 (7,9,51,35,48,56,100,95),
7941 (7,9,52,36,48,57,102,97),
7942 (7,9,53,36,49,58,104,98),
7943 (7,9,54,37,50,59,105,100),
7944 (7,9,55,37,50,60,107,102),
7945 (7,9,56,38,51,61,109,104),
7946 (7,9,57,38,52,62,111,106),
7947 (7,9,58,39,52,63,113,108),
7948 (7,9,59,40,53,64,115,109),
7949 (7,9,60,40,54,65,117,111),
7950 (7,9,61,41,54,66,119,113),
7951 (7,9,62,41,55,67,121,115),
7952 (7,9,63,42,56,68,123,117),
7953 (7,9,64,42,57,69,125,119),
7954 (7,9,65,43,57,70,127,121),
7955 (7,9,66,44,58,71,129,123),
7956 (7,9,67,44,59,72,131,125),
7957 (7,9,68,45,59,73,133,127),
7958 (7,9,69,45,60,74,135,129),
7959 (7,9,70,46,61,75,137,131),
7960 (7,9,71,47,62,84,147,142),
7961 (7,9,72,48,62,85,148,144),
7962 (7,9,73,49,63,85,153,147),
7963 (7,9,74,49,64,88,153,150),
7964 (7,9,75,50,65,90,155,152),
7965 (7,9,76,51,66,91,158,155),
7966 (7,9,77,52,67,92,161,158),
7967 (7,9,78,52,68,93,163,161),
7968 (7,9,79,53,69,95,166,164),
7969 (7,9,80,54,70,96,170,166),
7970 (8,1,1,24,22,23,16,21),
7971 (8,1,2,25,23,24,16,21),
7972 (8,1,3,27,24,25,16,22),
7973 (8,1,4,28,24,26,16,22),
7974 (8,1,5,29,25,28,16,22),
7975 (8,1,6,31,26,29,16,22),
7976 (8,1,7,32,27,30,17,23),
7977 (8,1,8,33,28,31,17,23),
7978 (8,1,9,35,28,33,17,23),
7979 (8,1,10,36,29,34,17,24),
7980 (8,1,11,37,30,35,17,24),
7981 (8,1,12,39,31,36,17,24),
7982 (8,1,13,40,32,38,17,25),
7983 (8,1,14,42,33,39,17,25),
7984 (8,1,15,43,34,40,18,25),
7985 (8,1,16,45,35,42,18,26),
7986 (8,1,17,46,35,43,18,26),
7987 (8,1,18,48,36,44,18,26),
7988 (8,1,19,49,37,46,18,27),
7989 (8,1,20,51,38,47,18,27),
7990 (8,1,21,52,39,49,18,27),
7991 (8,1,22,54,40,50,18,28),
7992 (8,1,23,55,41,51,19,28),
7993 (8,1,24,57,42,53,19,29),
7994 (8,1,25,59,43,54,19,29),
7995 (8,1,26,60,44,56,19,29),
7996 (8,1,27,62,45,57,19,30),
7997 (8,1,28,63,46,59,19,30),
7998 (8,1,29,65,47,60,20,31),
7999 (8,1,30,67,48,62,20,31),
8000 (8,1,31,69,49,63,20,31),
8001 (8,1,32,70,50,65,20,32),
8002 (8,1,33,72,51,67,20,32),
8003 (8,1,34,74,53,68,20,33),
8004 (8,1,35,75,54,70,21,33),
8005 (8,1,36,77,55,71,21,34),
8006 (8,1,37,79,56,73,21,34),
8007 (8,1,38,81,57,75,21,35),
8008 (8,1,39,83,58,76,21,35),
8009 (8,1,40,84,59,78,22,35),
8010 (8,1,41,86,60,80,22,36),
8011 (8,1,42,88,62,81,22,36),
8012 (8,1,43,90,63,83,22,37),
8013 (8,1,44,92,64,85,22,37),
8014 (8,1,45,94,65,86,23,38),
8015 (8,1,46,96,66,88,23,38),
8016 (8,1,47,98,67,90,23,39),
8017 (8,1,48,100,69,92,23,39),
8018 (8,1,49,102,70,93,24,40),
8019 (8,1,50,103,71,95,24,40),
8020 (8,1,51,105,72,97,24,41),
8021 (8,1,52,107,74,99,24,42),
8022 (8,1,53,109,75,101,25,42),
8023 (8,1,54,112,76,103,25,43),
8024 (8,1,55,114,78,104,25,43),
8025 (8,1,56,116,79,106,25,44),
8026 (8,1,57,118,80,108,25,44),
8027 (8,1,58,120,81,110,26,45),
8028 (8,1,59,122,83,112,26,45),
8029 (8,1,60,124,84,114,26,46),
8030 (8,1,61,126,85,116,27,47),
8031 (8,1,62,128,87,118,27,47),
8032 (8,1,63,130,88,120,27,48),
8033 (8,1,64,133,90,122,27,48),
8034 (8,1,65,135,91,124,28,49),
8035 (8,1,66,137,92,126,28,50),
8036 (8,1,67,139,94,128,28,50),
8037 (8,1,68,141,95,130,28,51),
8038 (8,1,69,144,97,132,29,51),
8039 (8,1,70,146,98,134,29,52),
8040 (8,1,71,149,99,136,29,53),
8041 (8,1,72,151,101,139,29,54),
8042 (8,1,73,154,103,141,29,55),
8043 (8,1,74,157,104,144,30,55),
8044 (8,1,75,166,106,151,30,56),
8045 (8,1,76,172,108,157,30,57),
8046 (8,1,77,175,110,161,31,58),
8047 (8,1,78,179,111,163,31,58),
8048 (8,1,79,182,113,164,31,59),
8049 (8,1,80,185,115,169,32,60),
8050 (8,3,1,21,25,22,16,22),
8051 (8,3,2,21,26,23,17,23),
8052 (8,3,3,22,28,24,17,23),
8053 (8,3,4,22,29,25,18,24),
8054 (8,3,5,23,30,26,18,25),
8055 (8,3,6,23,32,27,19,25),
8056 (8,3,7,24,33,28,20,26),
8057 (8,3,8,24,35,28,20,26),
8058 (8,3,9,25,36,29,21,27),
8059 (8,3,10,25,38,30,21,28),
8060 (8,3,11,25,39,31,22,29),
8061 (8,3,12,26,41,32,23,29),
8062 (8,3,13,26,42,33,23,30),
8063 (8,3,14,27,44,34,24,31),
8064 (8,3,15,27,45,35,25,31),
8065 (8,3,16,28,47,36,25,32),
8066 (8,3,17,28,48,38,26,33),
8067 (8,3,18,29,50,39,27,34),
8068 (8,3,19,29,51,40,28,34),
8069 (8,3,20,30,53,41,28,35),
8070 (8,3,21,31,55,42,29,36),
8071 (8,3,22,31,56,43,30,37),
8072 (8,3,23,32,58,44,30,37),
8073 (8,3,24,32,60,45,31,38),
8074 (8,3,25,33,61,46,32,39),
8075 (8,3,26,33,63,48,33,40),
8076 (8,3,27,34,65,49,33,41),
8077 (8,3,28,35,66,50,34,41),
8078 (8,3,29,35,68,51,35,42),
8079 (8,3,30,36,70,52,36,43),
8080 (8,3,31,36,72,53,37,44),
8081 (8,3,32,37,73,55,37,45),
8082 (8,3,33,38,75,56,38,46),
8083 (8,3,34,38,77,57,39,47),
8084 (8,3,35,39,79,58,40,48),
8085 (8,3,36,39,81,60,41,48),
8086 (8,3,37,40,83,61,41,49),
8087 (8,3,38,41,85,62,42,50),
8088 (8,3,39,41,86,63,43,51),
8089 (8,3,40,42,88,65,44,52),
8090 (8,3,41,43,90,66,45,53),
8091 (8,3,42,43,92,67,46,54),
8092 (8,3,43,44,94,69,47,55),
8093 (8,3,44,45,96,70,47,56),
8094 (8,3,45,45,98,71,48,57),
8095 (8,3,46,46,100,73,49,58),
8096 (8,3,47,47,102,74,50,59),
8097 (8,3,48,48,104,76,51,60),
8098 (8,3,49,48,106,77,52,61),
8099 (8,3,50,49,108,78,53,62),
8100 (8,3,51,50,110,80,54,63),
8101 (8,3,52,51,113,81,55,64),
8102 (8,3,53,51,115,83,56,65),
8103 (8,3,54,52,117,84,57,66),
8104 (8,3,55,53,119,86,58,67),
8105 (8,3,56,54,121,87,59,68),
8106 (8,3,57,54,123,89,60,69),
8107 (8,3,58,55,126,90,61,70),
8108 (8,3,59,56,128,92,62,71),
8109 (8,3,60,57,130,93,63,73),
8110 (8,3,61,58,132,95,64,74),
8111 (8,3,62,58,134,96,65,75),
8112 (8,3,63,59,137,98,66,76),
8113 (8,3,64,60,139,99,67,77),
8114 (8,3,65,61,141,101,68,78),
8115 (8,3,66,62,144,103,69,79),
8116 (8,3,67,62,146,104,70,80),
8117 (8,3,68,63,148,106,71,82),
8118 (8,3,69,64,151,107,72,83),
8119 (8,3,70,65,153,109,73,84),
8120 (8,3,71,66,156,111,74,85),
8121 (8,3,72,67,159,113,75,86),
8122 (8,3,73,68,162,115,76,88),
8123 (8,3,74,69,165,117,78,89),
8124 (8,3,75,70,174,119,82,91),
8125 (8,3,76,71,177,121,83,92),
8126 (8,3,77,72,180,123,85,94),
8127 (8,3,78,73,184,125,86,95),
8128 (8,3,79,74,187,127,87,97),
8129 (8,3,80,75,190,129,89,98),
8130 (8,4,1,22,25,22,16,21),
8131 (8,4,2,23,26,23,16,21),
8132 (8,4,3,24,28,23,16,22),
8133 (8,4,4,24,29,24,16,22),
8134 (8,4,5,25,31,25,17,22),
8135 (8,4,6,26,32,25,17,23),
8136 (8,4,7,27,34,26,17,23),
8137 (8,4,8,27,35,27,17,24),
8138 (8,4,9,28,37,28,17,24),
8139 (8,4,10,29,38,28,18,24),
8140 (8,4,11,30,40,29,18,25),
8141 (8,4,12,31,41,30,18,25),
8142 (8,4,13,32,43,31,18,26),
8143 (8,4,14,32,45,32,18,26),
8144 (8,4,15,33,46,32,19,26),
8145 (8,4,16,34,48,33,19,27),
8146 (8,4,17,35,50,34,19,27),
8147 (8,4,18,36,51,35,19,28),
8148 (8,4,19,37,53,36,19,28),
8149 (8,4,20,38,55,36,20,29),
8150 (8,4,21,39,56,37,20,29),
8151 (8,4,22,40,58,38,20,30),
8152 (8,4,23,41,60,39,20,30),
8153 (8,4,24,42,62,40,20,31),
8154 (8,4,25,43,63,41,21,31),
8155 (8,4,26,44,65,42,21,32),
8156 (8,4,27,45,67,43,21,32),
8157 (8,4,28,46,69,44,21,33),
8158 (8,4,29,47,71,44,22,33),
8159 (8,4,30,48,72,45,22,34),
8160 (8,4,31,49,74,46,22,34),
8161 (8,4,32,50,76,47,22,35),
8162 (8,4,33,51,78,48,23,35),
8163 (8,4,34,52,80,49,23,36),
8164 (8,4,35,53,82,50,23,36),
8165 (8,4,36,54,84,51,24,37),
8166 (8,4,37,55,86,52,24,37),
8167 (8,4,38,56,88,53,24,38),
8168 (8,4,39,57,90,54,24,38),
8169 (8,4,40,58,92,55,25,39),
8170 (8,4,41,59,94,56,25,40),
8171 (8,4,42,60,96,57,25,40),
8172 (8,4,43,62,98,58,26,41),
8173 (8,4,44,63,100,59,26,41),
8174 (8,4,45,64,102,60,26,42),
8175 (8,4,46,65,104,61,27,43),
8176 (8,4,47,66,107,63,27,43),
8177 (8,4,48,67,109,64,27,44),
8178 (8,4,49,69,111,65,27,44),
8179 (8,4,50,70,113,66,28,45),
8180 (8,4,51,71,115,67,28,46),
8181 (8,4,52,72,117,68,28,46),
8182 (8,4,53,74,120,69,29,47),
8183 (8,4,54,75,122,70,29,48),
8184 (8,4,55,76,124,72,29,48),
8185 (8,4,56,77,126,73,30,49),
8186 (8,4,57,79,129,74,30,50),
8187 (8,4,58,80,131,75,30,50),
8188 (8,4,59,81,133,76,31,51),
8189 (8,4,60,82,136,77,31,52),
8190 (8,4,61,84,138,79,32,52),
8191 (8,4,62,85,140,80,32,53),
8192 (8,4,63,86,143,81,32,54),
8193 (8,4,64,88,145,82,33,55),
8194 (8,4,65,89,148,84,33,55),
8195 (8,4,66,90,150,85,33,56),
8196 (8,4,67,92,153,86,34,57),
8197 (8,4,68,93,155,87,34,58),
8198 (8,4,69,95,157,89,35,58),
8199 (8,4,70,96,160,90,35,59),
8200 (8,4,71,98,163,94,35,60),
8201 (8,4,72,100,166,96,36,60),
8202 (8,4,73,101,169,96,36,61),
8203 (8,4,74,103,172,97,37,62),
8204 (8,4,75,105,175,98,37,63),
8205 (8,4,76,106,178,99,37,64),
8206 (8,4,77,108,181,105,38,65),
8207 (8,4,78,110,185,107,38,66),
8208 (8,4,79,112,188,109,39,67),
8209 (8,4,80,114,191,110,39,68),
8210 (8,5,1,21,22,21,18,24),
8211 (8,5,2,21,22,21,19,25),
8212 (8,5,3,21,22,22,21,27),
8213 (8,5,4,21,23,22,22,28),
8214 (8,5,5,22,23,22,23,29),
8215 (8,5,6,22,23,23,25,31),
8216 (8,5,7,22,23,23,26,32),
8217 (8,5,8,22,24,24,27,34),
8218 (8,5,9,22,24,24,29,35),
8219 (8,5,10,22,24,24,30,37),
8220 (8,5,11,23,24,25,32,38),
8221 (8,5,12,23,24,25,33,40),
8222 (8,5,13,23,25,26,35,41),
8223 (8,5,14,23,25,26,36,43),
8224 (8,5,15,23,25,26,38,44),
8225 (8,5,16,24,26,27,39,46),
8226 (8,5,17,24,26,27,41,47),
8227 (8,5,18,24,26,28,42,49),
8228 (8,5,19,24,26,28,44,50),
8229 (8,5,20,24,27,29,45,52),
8230 (8,5,21,25,27,29,47,54),
8231 (8,5,22,25,27,30,48,55),
8232 (8,5,23,25,28,30,50,57),
8233 (8,5,24,25,28,31,52,59),
8234 (8,5,25,25,28,31,53,60),
8235 (8,5,26,26,28,32,55,62),
8236 (8,5,27,26,29,32,56,64),
8237 (8,5,28,26,29,33,58,65),
8238 (8,5,29,26,29,33,60,67),
8239 (8,5,30,27,30,34,62,69),
8240 (8,5,31,27,30,34,63,71),
8241 (8,5,32,27,30,35,65,73),
8242 (8,5,33,27,31,35,67,74),
8243 (8,5,34,28,31,36,68,76),
8244 (8,5,35,28,32,36,70,78),
8245 (8,5,36,28,32,37,72,80),
8246 (8,5,37,29,32,37,74,82),
8247 (8,5,38,29,33,38,76,84),
8248 (8,5,39,29,33,38,77,86),
8249 (8,5,40,29,33,39,79,87),
8250 (8,5,41,30,34,40,81,89),
8251 (8,5,42,30,34,40,83,91),
8252 (8,5,43,30,35,41,85,93),
8253 (8,5,44,31,35,41,87,95),
8254 (8,5,45,31,35,42,89,97),
8255 (8,5,46,31,36,43,91,99),
8256 (8,5,47,32,36,43,93,101),
8257 (8,5,48,32,37,44,94,103),
8258 (8,5,49,32,37,44,96,105),
8259 (8,5,50,33,37,45,98,107),
8260 (8,5,51,33,38,46,100,110),
8261 (8,5,52,33,38,46,102,112),
8262 (8,5,53,34,39,47,104,114),
8263 (8,5,54,34,39,48,106,116),
8264 (8,5,55,34,40,48,109,118),
8265 (8,5,56,35,40,49,111,120),
8266 (8,5,57,35,41,50,113,122),
8267 (8,5,58,35,41,50,115,125),
8268 (8,5,59,36,42,51,117,127),
8269 (8,5,60,36,42,52,119,129),
8270 (8,5,61,36,42,52,121,131),
8271 (8,5,62,37,43,53,123,133),
8272 (8,5,63,37,43,54,125,136),
8273 (8,5,64,38,44,55,128,138),
8274 (8,5,65,38,44,55,130,140),
8275 (8,5,66,38,45,56,132,143),
8276 (8,5,67,39,45,57,134,145),
8277 (8,5,68,39,46,58,136,147),
8278 (8,5,69,40,46,58,139,150),
8279 (8,5,70,40,47,59,141,152),
8280 (8,5,71,40,48,60,144,155),
8281 (8,5,72,41,48,60,147,158),
8282 (8,5,73,41,49,61,150,161),
8283 (8,5,74,42,49,62,152,164),
8284 (8,5,75,42,50,63,155,167),
8285 (8,5,76,42,51,64,158,170),
8286 (8,5,77,43,51,65,161,173),
8287 (8,5,78,43,52,66,164,176),
8288 (8,5,79,44,52,67,167,179),
8289 (8,5,80,44,53,68,170,182),
8290 (8,6,1,24,22,23,16,21),
8291 (8,6,2,25,23,24,16,21),
8292 (8,6,3,27,24,25,16,22),
8293 (8,6,4,28,24,26,16,22),
8294 (8,6,5,29,25,28,16,22),
8295 (8,6,6,31,26,29,16,22),
8296 (8,6,7,32,27,30,17,23),
8297 (8,6,8,33,28,31,17,23),
8298 (8,6,9,35,28,33,17,23),
8299 (8,6,10,36,29,34,17,24),
8300 (8,6,11,37,30,35,17,24),
8301 (8,6,12,39,31,36,17,24),
8302 (8,6,13,40,32,38,17,25),
8303 (8,6,14,42,33,39,17,25),
8304 (8,6,15,43,34,40,18,25),
8305 (8,6,16,45,35,42,18,26),
8306 (8,6,17,46,35,43,18,26),
8307 (8,6,18,48,36,44,18,26),
8308 (8,6,19,49,37,46,18,27),
8309 (8,6,20,51,38,47,18,27),
8310 (8,6,21,52,39,49,18,27),
8311 (8,6,22,54,40,50,18,28),
8312 (8,6,23,55,41,51,19,28),
8313 (8,6,24,57,42,53,19,29),
8314 (8,6,25,59,43,54,19,29),
8315 (8,6,26,60,44,56,19,29),
8316 (8,6,27,62,45,57,19,30),
8317 (8,6,28,63,46,59,19,30),
8318 (8,6,29,65,47,60,20,31),
8319 (8,6,30,67,48,62,20,31),
8320 (8,6,31,69,49,63,20,31),
8321 (8,6,32,70,50,65,20,32),
8322 (8,6,33,72,51,67,20,32),
8323 (8,6,34,74,53,68,20,33),
8324 (8,6,35,75,54,70,21,33),
8325 (8,6,36,77,55,71,21,34),
8326 (8,6,37,79,56,73,21,34),
8327 (8,6,38,81,57,75,21,35),
8328 (8,6,39,83,58,76,21,35),
8329 (8,6,40,84,59,78,22,35),
8330 (8,6,41,86,60,80,22,36),
8331 (8,6,42,88,62,81,22,36),
8332 (8,6,43,90,63,83,22,37),
8333 (8,6,44,92,64,85,22,37),
8334 (8,6,45,94,65,86,23,38),
8335 (8,6,46,96,66,88,23,38),
8336 (8,6,47,98,67,90,23,39),
8337 (8,6,48,100,69,92,23,39),
8338 (8,6,49,102,70,93,24,40),
8339 (8,6,50,103,71,95,24,40),
8340 (8,6,51,105,72,96,24,41),
8341 (8,6,52,106,74,97,24,42),
8342 (8,6,53,107,73,98,25,42),
8343 (8,6,54,108,74,99,25,43),
8344 (8,6,55,109,75,100,25,43),
8345 (8,6,56,112,77,103,25,44),
8346 (8,6,57,114,78,105,25,44),
8347 (8,6,58,118,79,107,26,45),
8348 (8,6,59,119,81,109,26,45),
8349 (8,6,60,121,82,111,26,46),
8350 (8,6,61,123,83,113,26,47),
8351 (8,6,62,126,85,115,26,47),
8352 (8,6,63,128,86,118,27,48),
8353 (8,6,64,131,88,120,27,48),
8354 (8,6,65,138,89,122,27,49),
8355 (8,6,66,140,91,125,27,50),
8356 (8,6,67,143,92,127,28,50),
8357 (8,6,68,145,94,129,28,51),
8358 (8,6,69,148,95,132,28,52),
8359 (8,6,70,151,97,134,28,52),
8360 (8,6,71,154,99,137,29,53),
8361 (8,6,72,156,100,139,29,54),
8362 (8,6,73,159,102,142,29,55),
8363 (8,6,74,162,104,144,29,55),
8364 (8,6,75,165,105,147,30,56),
8365 (8,6,76,168,107,150,30,57),
8366 (8,6,77,169,109,153,30,58),
8367 (8,6,78,170,110,155,30,58),
8368 (8,6,79,178,112,158,31,59),
8369 (8,6,80,181,114,161,31,60),
8370 (8,7,1,22,22,22,17,23),
8371 (8,7,2,23,22,23,18,24),
8372 (8,7,3,24,23,24,19,25),
8373 (8,7,4,25,23,25,20,26),
8374 (8,7,5,25,24,26,21,27),
8375 (8,7,6,26,24,27,22,28),
8376 (8,7,7,27,25,28,23,29),
8377 (8,7,8,28,25,29,24,30),
8378 (8,7,9,29,25,30,25,31),
8379 (8,7,10,30,26,31,26,33),
8380 (8,7,11,31,26,32,27,34),
8381 (8,7,12,32,27,33,28,35),
8382 (8,7,13,33,27,34,29,36),
8383 (8,7,14,34,28,35,30,37),
8384 (8,7,15,34,28,36,31,38),
8385 (8,7,16,35,29,38,32,39),
8386 (8,7,17,36,29,39,33,41),
8387 (8,7,18,37,30,40,34,42),
8388 (8,7,19,38,30,41,35,43),
8389 (8,7,20,39,31,42,36,44),
8390 (8,7,21,40,32,43,37,45),
8391 (8,7,22,41,32,45,38,47),
8392 (8,7,23,43,33,46,39,48),
8393 (8,7,24,44,33,47,40,49),
8394 (8,7,25,45,34,48,42,51),
8395 (8,7,26,46,34,49,43,52),
8396 (8,7,27,47,35,51,44,53),
8397 (8,7,28,48,35,52,45,54),
8398 (8,7,29,49,36,53,46,56),
8399 (8,7,30,50,37,54,48,57),
8400 (8,7,31,51,37,56,49,59),
8401 (8,7,32,52,38,57,50,60),
8402 (8,7,33,53,38,58,51,61),
8403 (8,7,34,55,39,60,52,63),
8404 (8,7,35,56,40,61,54,64),
8405 (8,7,36,57,40,62,55,66),
8406 (8,7,37,58,41,64,56,67),
8407 (8,7,38,59,42,65,57,68),
8408 (8,7,39,61,42,66,59,70),
8409 (8,7,40,62,43,68,60,71),
8410 (8,7,41,63,44,69,61,73),
8411 (8,7,42,64,44,71,63,74),
8412 (8,7,43,65,45,72,64,76),
8413 (8,7,44,67,46,74,65,77),
8414 (8,7,45,68,46,75,67,79),
8415 (8,7,46,69,47,76,68,80),
8416 (8,7,47,71,48,78,69,82),
8417 (8,7,48,72,49,79,71,83),
8418 (8,7,49,73,49,81,72,85),
8419 (8,7,50,74,50,82,74,87),
8420 (8,7,51,76,51,84,75,88),
8421 (8,7,52,77,51,85,77,90),
8422 (8,7,53,78,52,87,78,92),
8423 (8,7,54,80,53,89,79,93),
8424 (8,7,55,81,54,90,81,95),
8425 (8,7,56,83,55,92,82,96),
8426 (8,7,57,84,55,93,84,98),
8427 (8,7,58,85,56,95,85,100),
8428 (8,7,59,87,57,97,87,102),
8429 (8,7,60,88,58,98,88,103),
8430 (8,7,61,90,58,100,90,105),
8431 (8,7,62,91,59,101,91,107),
8432 (8,7,63,93,60,103,93,108),
8433 (8,7,64,94,61,105,94,110),
8434 (8,7,65,95,62,106,96,112),
8435 (8,7,66,97,63,108,98,114),
8436 (8,7,67,98,63,110,99,116),
8437 (8,7,68,100,64,112,101,117),
8438 (8,7,69,101,65,113,102,119),
8439 (8,7,70,103,66,115,104,121),
8440 (8,7,71,104,67,117,116,123),
8441 (8,7,72,106,68,119,118,126),
8442 (8,7,73,108,69,121,121,128),
8443 (8,7,74,110,70,124,123,130),
8444 (8,7,75,112,71,126,125,132),
8445 (8,7,76,114,72,128,127,135),
8446 (8,7,77,115,73,130,129,137),
8447 (8,7,78,117,74,132,132,139),
8448 (8,7,79,119,75,135,134,142),
8449 (8,7,80,121,76,137,136,144),
8450 (8,8,1,21,22,21,19,23),
8451 (8,8,2,21,22,21,20,24),
8452 (8,8,3,21,22,22,22,26),
8453 (8,8,4,21,22,22,23,27),
8454 (8,8,5,21,23,22,25,28),
8455 (8,8,6,21,23,22,26,30),
8456 (8,8,7,21,23,23,27,31),
8457 (8,8,8,22,23,23,29,32),
8458 (8,8,9,22,23,23,30,34),
8459 (8,8,10,22,23,24,32,35),
8460 (8,8,11,22,24,24,33,37),
8461 (8,8,12,22,24,24,35,38),
8462 (8,8,13,22,24,25,36,39),
8463 (8,8,14,22,24,25,38,41),
8464 (8,8,15,22,24,25,39,42),
8465 (8,8,16,22,24,26,41,44),
8466 (8,8,17,23,25,26,42,45),
8467 (8,8,18,23,25,26,44,47),
8468 (8,8,19,23,25,27,46,48),
8469 (8,8,20,23,25,27,47,50),
8470 (8,8,21,23,25,27,49,51),
8471 (8,8,22,23,26,28,51,53),
8472 (8,8,23,23,26,28,52,55),
8473 (8,8,24,24,26,29,54,56),
8474 (8,8,25,24,26,29,56,58),
8475 (8,8,26,24,27,29,57,60),
8476 (8,8,27,24,27,30,59,61),
8477 (8,8,28,24,27,30,61,63),
8478 (8,8,29,24,27,31,63,65),
8479 (8,8,30,24,28,31,64,66),
8480 (8,8,31,25,28,31,66,68),
8481 (8,8,32,25,28,32,68,70),
8482 (8,8,33,25,28,32,70,71),
8483 (8,8,34,25,29,33,71,73),
8484 (8,8,35,25,29,33,73,75),
8485 (8,8,36,26,29,34,75,77),
8486 (8,8,37,26,29,34,77,79),
8487 (8,8,38,26,30,35,79,80),
8488 (8,8,39,26,30,35,81,82),
8489 (8,8,40,26,30,35,83,84),
8490 (8,8,41,27,31,36,85,86),
8491 (8,8,42,27,31,36,87,88),
8492 (8,8,43,27,31,37,89,90),
8493 (8,8,44,27,32,37,91,91),
8494 (8,8,45,27,32,38,93,93),
8495 (8,8,46,28,32,38,95,95),
8496 (8,8,47,28,32,39,97,97),
8497 (8,8,48,28,33,39,99,99),
8498 (8,8,49,28,33,40,101,101),
8499 (8,8,50,29,33,40,103,103),
8500 (8,8,51,29,34,41,105,105),
8501 (8,8,52,29,34,42,107,107),
8502 (8,8,53,29,35,42,109,109),
8503 (8,8,54,30,35,43,111,111),
8504 (8,8,55,30,35,43,113,113),
8505 (8,8,56,30,36,44,115,115),
8506 (8,8,57,30,36,44,118,118),
8507 (8,8,58,31,36,45,120,120),
8508 (8,8,59,31,37,45,122,122),
8509 (8,8,60,31,37,46,124,124),
8510 (8,8,61,31,37,47,126,126),
8511 (8,8,62,32,38,47,129,128),
8512 (8,8,63,32,38,48,131,130),
8513 (8,8,64,32,39,48,133,133),
8514 (8,8,65,33,39,49,135,135),
8515 (8,8,66,33,39,50,138,137),
8516 (8,8,67,33,40,50,140,139),
8517 (8,8,68,33,40,51,142,141),
8518 (8,8,69,34,41,51,145,144),
8519 (8,8,70,34,41,52,147,146),
8520 (8,8,71,34,41,53,150,149),
8521 (8,8,72,34,42,54,153,152),
8522 (8,8,73,34,42,55,156,155),
8523 (8,8,74,35,43,55,159,157),
8524 (8,8,75,35,43,56,162,160),
8525 (8,8,76,35,43,57,168,163),
8526 (8,8,77,36,44,58,168,166),
8527 (8,8,78,36,44,58,171,169),
8528 (8,8,79,36,45,59,177,172),
8529 (8,8,80,37,45,60,177,175),
8530 (10,2,1,19,22,21,24,20),
8531 (10,2,2,20,23,22,25,21),
8532 (10,2,3,21,23,23,25,21),
8533 (10,2,4,22,24,24,26,22),
8534 (10,2,5,23,24,25,27,23),
8535 (10,2,6,25,25,26,27,24),
8536 (10,2,7,26,25,27,28,24),
8537 (10,2,8,27,26,28,29,25),
8538 (10,2,9,28,27,29,29,26),
8539 (10,2,10,29,27,31,30,26),
8540 (10,2,11,30,28,32,31,27),
8541 (10,2,12,32,29,33,31,28),
8542 (10,2,13,33,29,34,32,29),
8543 (10,2,14,34,30,35,33,30),
8544 (10,2,15,35,31,36,33,30),
8545 (10,2,16,37,31,37,34,31),
8546 (10,2,17,38,32,39,35,32),
8547 (10,2,18,39,33,40,36,33),
8548 (10,2,19,40,33,41,36,34),
8549 (10,2,20,42,34,42,37,35),
8550 (10,2,21,43,35,44,38,35),
8551 (10,2,22,44,35,45,39,36),
8552 (10,2,23,46,36,46,40,37),
8553 (10,2,24,47,37,47,40,38),
8554 (10,2,25,49,38,49,41,39),
8555 (10,2,26,50,38,50,42,40),
8556 (10,2,27,51,39,51,43,41),
8557 (10,2,28,53,40,53,44,42),
8558 (10,2,29,54,41,54,45,43),
8559 (10,2,30,56,41,55,45,43),
8560 (10,2,31,57,42,57,46,44),
8561 (10,2,32,58,43,58,47,45),
8562 (10,2,33,60,44,59,48,46),
8563 (10,2,34,61,45,61,49,47),
8564 (10,2,35,63,45,62,50,48),
8565 (10,2,36,64,46,64,51,49),
8566 (10,2,37,66,47,65,52,50),
8567 (10,2,38,67,48,67,53,51),
8568 (10,2,39,69,49,68,54,52),
8569 (10,2,40,71,50,69,55,53),
8570 (10,2,41,72,50,71,55,54),
8571 (10,2,42,74,51,72,56,55),
8572 (10,2,43,75,52,74,57,56),
8573 (10,2,44,77,53,75,58,57),
8574 (10,2,45,79,54,77,59,59),
8575 (10,2,46,80,55,78,60,60),
8576 (10,2,47,82,56,80,61,61),
8577 (10,2,48,83,57,82,62,62),
8578 (10,2,49,85,58,83,63,63),
8579 (10,2,50,87,59,85,64,64),
8580 (10,2,51,89,60,86,66,65),
8581 (10,2,52,90,61,88,67,66),
8582 (10,2,53,92,61,90,68,67),
8583 (10,2,54,94,62,91,69,69),
8584 (10,2,55,95,63,93,70,70),
8585 (10,2,56,97,64,95,71,71),
8586 (10,2,57,99,65,96,72,72),
8587 (10,2,58,101,66,98,73,73),
8588 (10,2,59,102,67,100,74,74),
8589 (10,2,60,104,68,101,75,76),
8590 (10,2,61,106,69,103,76,77),
8591 (10,2,62,108,70,105,78,78),
8592 (10,2,63,110,72,106,79,79),
8593 (10,2,64,112,73,108,80,80),
8594 (10,2,65,113,74,110,81,82),
8595 (10,2,66,115,75,112,82,83),
8596 (10,2,67,117,76,114,83,84),
8597 (10,2,68,119,77,115,85,85),
8598 (10,2,69,121,78,117,86,87),
8599 (10,2,70,123,79,119,87,88),
8600 (10,2,71,125,80,120,88,89),
8601 (10,2,72,128,81,123,90,91),
8602 (10,2,73,130,82,125,91,93),
8603 (10,2,74,133,84,127,93,94),
8604 (10,2,75,135,85,129,94,96),
8605 (10,2,76,137,86,132,96,97),
8606 (10,2,77,140,88,134,97,99),
8607 (10,2,78,143,89,136,99,101),
8608 (10,2,79,145,90,139,100,102),
8609 (10,2,80,148,92,141,102,104),
8610 (10,3,1,17,25,20,24,20),
8611 (10,3,2,17,26,21,25,21),
8612 (10,3,3,18,28,22,25,21),
8613 (10,3,4,18,29,23,26,22),
8614 (10,3,5,19,30,24,26,23),
8615 (10,3,6,19,32,25,27,23),
8616 (10,3,7,20,33,26,27,24),
8617 (10,3,8,20,35,27,28,25),
8618 (10,3,9,21,36,27,29,25),
8619 (10,3,10,21,38,28,29,26),
8620 (10,3,11,22,39,29,30,27),
8621 (10,3,12,22,41,30,31,27),
8622 (10,3,13,23,42,31,31,28),
8623 (10,3,14,23,44,32,32,29),
8624 (10,3,15,24,45,34,32,29),
8625 (10,3,16,24,47,35,33,30),
8626 (10,3,17,25,48,36,34,31),
8627 (10,3,18,25,50,37,34,32),
8628 (10,3,19,26,51,38,35,32),
8629 (10,3,20,26,53,39,36,33),
8630 (10,3,21,27,55,40,37,34),
8631 (10,3,22,27,56,41,37,35),
8632 (10,3,23,28,58,42,38,36),
8633 (10,3,24,28,60,43,39,36),
8634 (10,3,25,29,61,44,39,37),
8635 (10,3,26,30,63,46,40,38),
8636 (10,3,27,30,65,47,41,39),
8637 (10,3,28,31,66,48,42,40),
8638 (10,3,29,31,68,49,42,40),
8639 (10,3,30,32,70,50,43,41),
8640 (10,3,31,33,72,52,44,42),
8641 (10,3,32,33,73,53,45,43),
8642 (10,3,33,34,75,54,46,44),
8643 (10,3,34,34,77,55,46,45),
8644 (10,3,35,35,79,57,47,46),
8645 (10,3,36,36,81,58,48,47),
8646 (10,3,37,36,83,59,49,47),
8647 (10,3,38,37,85,60,50,48),
8648 (10,3,39,38,86,62,51,49),
8649 (10,3,40,38,88,63,51,50),
8650 (10,3,41,39,90,64,52,51),
8651 (10,3,42,40,92,66,53,52),
8652 (10,3,43,40,94,67,54,53),
8653 (10,3,44,41,96,68,55,54),
8654 (10,3,45,42,98,70,56,55),
8655 (10,3,46,42,100,71,57,56),
8656 (10,3,47,43,102,72,58,57),
8657 (10,3,48,44,104,74,59,58),
8658 (10,3,49,45,106,75,60,59),
8659 (10,3,50,45,108,77,61,60),
8660 (10,3,51,46,110,78,61,61),
8661 (10,3,52,47,113,79,62,62),
8662 (10,3,53,47,115,81,63,63),
8663 (10,3,54,48,117,82,64,64),
8664 (10,3,55,49,119,84,65,65),
8665 (10,3,56,50,121,85,66,66),
8666 (10,3,57,50,123,87,67,67),
8667 (10,3,58,51,126,88,68,68),
8668 (10,3,59,52,128,90,69,70),
8669 (10,3,60,53,130,91,70,71),
8670 (10,3,61,54,132,93,71,72),
8671 (10,3,62,54,134,94,72,73),
8672 (10,3,63,55,137,96,73,74),
8673 (10,3,64,56,139,97,75,75),
8674 (10,3,65,57,141,99,76,76),
8675 (10,3,66,58,144,101,77,77),
8676 (10,3,67,58,146,102,78,78),
8677 (10,3,68,59,148,104,79,80),
8678 (10,3,69,60,151,105,80,81),
8679 (10,3,70,61,153,107,81,82),
8680 (10,3,71,62,156,108,82,83),
8681 (10,3,72,63,159,110,83,84),
8682 (10,3,73,64,162,112,84,86),
8683 (10,3,74,65,165,114,86,87),
8684 (10,3,75,66,168,116,87,89),
8685 (10,3,76,67,171,118,89,90),
8686 (10,3,77,68,174,120,90,92),
8687 (10,3,78,69,177,122,91,93),
8688 (10,3,79,70,180,124,92,95),
8689 (10,3,80,71,183,126,94,96),
8690 (10,4,1,18,25,20,24,19),
8691 (10,4,2,19,26,21,24,19),
8692 (10,4,3,20,28,21,24,20),
8693 (10,4,4,20,29,22,24,20),
8694 (10,4,5,21,31,23,25,20),
8695 (10,4,6,22,32,24,25,21),
8696 (10,4,7,23,34,24,25,21),
8697 (10,4,8,24,35,25,25,22),
8698 (10,4,9,24,37,26,25,22),
8699 (10,4,10,25,38,26,25,22),
8700 (10,4,11,26,40,27,25,23),
8701 (10,4,12,27,41,28,26,23),
8702 (10,4,13,28,43,29,26,24),
8703 (10,4,14,29,45,30,26,24),
8704 (10,4,15,29,46,30,26,25),
8705 (10,4,16,30,48,31,26,25),
8706 (10,4,17,31,50,32,27,25),
8707 (10,4,18,32,51,33,27,26),
8708 (10,4,19,33,53,34,27,26),
8709 (10,4,20,34,55,35,27,27),
8710 (10,4,21,35,56,35,27,27),
8711 (10,4,22,36,58,36,28,28),
8712 (10,4,23,37,60,37,28,28),
8713 (10,4,24,38,62,38,28,29),
8714 (10,4,25,39,63,39,28,29),
8715 (10,4,26,40,65,40,29,30),
8716 (10,4,27,41,67,41,29,30),
8717 (10,4,28,42,69,42,29,31),
8718 (10,4,29,43,71,43,29,31),
8719 (10,4,30,44,72,43,29,32),
8720 (10,4,31,45,74,44,30,32),
8721 (10,4,32,46,76,45,30,33),
8722 (10,4,33,47,78,46,30,33),
8723 (10,4,34,48,80,47,31,34),
8724 (10,4,35,49,82,48,31,34),
8725 (10,4,36,50,84,49,31,35),
8726 (10,4,37,51,86,50,31,35),
8727 (10,4,38,52,88,51,32,36),
8728 (10,4,39,53,90,52,32,37),
8729 (10,4,40,54,92,53,32,37),
8730 (10,4,41,56,94,54,33,38),
8731 (10,4,42,57,96,55,33,38),
8732 (10,4,43,58,98,56,33,39),
8733 (10,4,44,59,100,57,33,39),
8734 (10,4,45,60,102,59,34,40),
8735 (10,4,46,61,104,60,34,41),
8736 (10,4,47,62,107,61,34,41),
8737 (10,4,48,64,109,62,35,42),
8738 (10,4,49,65,111,63,35,43),
8739 (10,4,50,66,113,64,35,43),
8740 (10,4,51,67,115,65,36,44),
8741 (10,4,52,68,117,66,36,44),
8742 (10,4,53,70,120,67,36,45),
8743 (10,4,54,71,122,69,37,46),
8744 (10,4,55,72,124,70,37,46),
8745 (10,4,56,73,126,71,37,47),
8746 (10,4,57,75,129,72,38,48),
8747 (10,4,58,76,131,73,38,48),
8748 (10,4,59,77,133,74,39,49),
8749 (10,4,60,79,136,76,39,50),
8750 (10,4,61,80,138,77,39,51),
8751 (10,4,62,81,140,78,40,51),
8752 (10,4,63,82,143,79,40,52),
8753 (10,4,64,84,145,80,41,53),
8754 (10,4,65,85,148,82,41,53),
8755 (10,4,66,87,150,83,41,54),
8756 (10,4,67,88,153,84,42,55),
8757 (10,4,68,89,155,85,42,56),
8758 (10,4,69,91,157,87,43,56),
8759 (10,4,70,92,160,88,43,57),
8760 (10,4,71,94,163,88,43,58),
8761 (10,4,72,96,166,90,44,58),
8762 (10,4,73,97,169,92,44,59),
8763 (10,4,74,99,172,93,45,60),
8764 (10,4,75,101,175,95,45,61),
8765 (10,4,76,102,178,96,45,62),
8766 (10,4,77,104,181,101,46,63),
8767 (10,4,78,106,185,104,46,64),
8768 (10,4,79,108,188,105,47,65),
8769 (10,4,80,110,191,107,47,66),
8770 (10,5,1,17,22,19,26,22),
8771 (10,5,2,17,22,19,27,23),
8772 (10,5,3,17,22,20,29,25),
8773 (10,5,4,17,23,20,30,26),
8774 (10,5,5,18,23,20,31,27),
8775 (10,5,6,18,23,21,33,29),
8776 (10,5,7,18,23,21,34,30),
8777 (10,5,8,18,24,22,35,32),
8778 (10,5,9,18,24,22,37,33),
8779 (10,5,10,19,24,22,38,35),
8780 (10,5,11,19,24,23,39,36),
8781 (10,5,12,19,24,23,41,38),
8782 (10,5,13,19,25,24,42,39),
8783 (10,5,14,19,25,24,44,41),
8784 (10,5,15,19,25,25,45,42),
8785 (10,5,16,20,26,25,47,44),
8786 (10,5,17,20,26,25,48,45),
8787 (10,5,18,20,26,26,50,47),
8788 (10,5,19,20,26,26,51,49),
8789 (10,5,20,21,27,27,53,50),
8790 (10,5,21,21,27,27,54,52),
8791 (10,5,22,21,27,28,56,53),
8792 (10,5,23,21,28,28,58,55),
8793 (10,5,24,21,28,29,59,57),
8794 (10,5,25,22,28,29,61,58),
8795 (10,5,26,22,28,30,62,60),
8796 (10,5,27,22,29,30,64,62),
8797 (10,5,28,22,29,31,66,64),
8798 (10,5,29,23,29,31,67,65),
8799 (10,5,30,23,30,32,69,67),
8800 (10,5,31,23,30,32,71,69),
8801 (10,5,32,23,30,33,72,71),
8802 (10,5,33,24,31,33,74,72),
8803 (10,5,34,24,31,34,76,74),
8804 (10,5,35,24,32,34,78,76),
8805 (10,5,36,24,32,35,80,78),
8806 (10,5,37,25,32,35,81,80),
8807 (10,5,38,25,33,36,83,82),
8808 (10,5,39,25,33,37,85,84),
8809 (10,5,40,26,33,37,87,86),
8810 (10,5,41,26,34,38,89,88),
8811 (10,5,42,26,34,38,91,89),
8812 (10,5,43,27,35,39,92,91),
8813 (10,5,44,27,35,39,94,93),
8814 (10,5,45,27,35,40,96,95),
8815 (10,5,46,27,36,41,98,97),
8816 (10,5,47,28,36,41,100,99),
8817 (10,5,48,28,37,42,102,101),
8818 (10,5,49,28,37,43,104,103),
8819 (10,5,50,29,37,43,106,106),
8820 (10,5,51,29,38,44,108,108),
8821 (10,5,52,29,38,44,110,110),
8822 (10,5,53,30,39,45,112,112),
8823 (10,5,54,30,39,46,114,114),
8824 (10,5,55,30,40,46,116,116),
8825 (10,5,56,31,40,47,118,118),
8826 (10,5,57,31,41,48,120,120),
8827 (10,5,58,31,41,48,123,123),
8828 (10,5,59,32,42,49,125,125),
8829 (10,5,60,32,42,50,127,127),
8830 (10,5,61,33,42,51,129,129),
8831 (10,5,62,33,43,51,131,131),
8832 (10,5,63,33,43,52,133,134),
8833 (10,5,64,34,44,53,135,136),
8834 (10,5,65,34,44,53,138,138),
8835 (10,5,66,34,45,54,140,141),
8836 (10,5,67,35,45,55,142,143),
8837 (10,5,68,35,46,56,144,145),
8838 (10,5,69,36,46,56,147,148),
8839 (10,5,70,36,47,57,149,150),
8840 (10,5,71,36,48,57,152,153),
8841 (10,5,72,37,48,57,155,156),
8842 (10,5,73,37,49,58,158,159),
8843 (10,5,74,38,49,59,160,163),
8844 (10,5,75,38,50,60,163,165),
8845 (10,5,76,38,51,61,166,170),
8846 (10,5,77,39,51,62,168,175),
8847 (10,5,78,39,52,63,172,174),
8848 (10,5,79,40,52,64,175,177),
8849 (10,5,80,40,53,65,178,180),
8850 (10,6,1,18,23,21,24,20),
8851 (10,6,2,19,24,22,24,20),
8852 (10,6,3,21,25,23,24,21),
8853 (10,6,4,22,25,25,24,21),
8854 (10,6,5,23,26,26,24,21),
8855 (10,6,6,25,27,27,24,21),
8856 (10,6,7,26,28,28,24,22),
8857 (10,6,8,27,29,29,25,22),
8858 (10,6,9,29,29,31,25,22),
8859 (10,6,10,30,30,32,25,23),
8860 (10,6,11,32,31,33,25,23),
8861 (10,6,12,33,32,34,25,23),
8862 (10,6,13,34,33,36,25,24),
8863 (10,6,14,36,34,37,25,24),
8864 (10,6,15,37,35,38,25,24),
8865 (10,6,16,39,36,40,25,25),
8866 (10,6,17,40,36,41,25,25),
8867 (10,6,18,42,37,43,26,25),
8868 (10,6,19,43,38,44,26,26),
8869 (10,6,20,45,39,45,26,26),
8870 (10,6,21,47,40,47,26,26),
8871 (10,6,22,48,41,48,26,27),
8872 (10,6,23,50,42,50,26,27),
8873 (10,6,24,51,43,51,26,28),
8874 (10,6,25,53,44,52,27,28),
8875 (10,6,26,55,45,54,27,28),
8876 (10,6,27,56,46,55,27,29),
8877 (10,6,28,58,47,57,27,29),
8878 (10,6,29,59,48,58,27,30),
8879 (10,6,30,61,49,60,27,30),
8880 (10,6,31,63,50,62,27,30),
8881 (10,6,32,65,51,63,28,31),
8882 (10,6,33,66,52,65,28,31),
8883 (10,6,34,68,53,66,28,32),
8884 (10,6,35,70,55,68,28,32),
8885 (10,6,36,72,56,69,28,33),
8886 (10,6,37,73,57,71,29,33),
8887 (10,6,38,75,58,73,29,34),
8888 (10,6,39,77,59,74,29,34),
8889 (10,6,40,79,60,76,29,35),
8890 (10,6,41,81,61,78,29,35),
8891 (10,6,42,82,62,79,30,35),
8892 (10,6,43,84,64,81,30,36),
8893 (10,6,44,86,65,83,30,36),
8894 (10,6,45,88,66,85,30,37),
8895 (10,6,46,90,67,86,30,37),
8896 (10,6,47,92,68,88,31,38),
8897 (10,6,48,94,69,90,31,38),
8898 (10,6,49,96,69,92,31,39),
8899 (10,6,50,98,70,93,31,40),
8900 (10,6,51,100,71,95,32,40),
8901 (10,6,52,102,72,96,32,41),
8902 (10,6,53,103,73,97,32,41),
8903 (10,6,54,104,74,98,32,41),
8904 (10,6,55,105,75,97,33,41),
8905 (10,6,56,108,77,100,33,42),
8906 (10,6,57,113,78,102,33,42),
8907 (10,6,58,115,79,104,34,43),
8908 (10,6,59,117,81,106,34,43),
8909 (10,6,60,118,82,108,34,44),
8910 (10,6,61,119,83,110,34,45),
8911 (10,6,62,121,85,112,34,45),
8912 (10,6,63,124,86,115,35,46),
8913 (10,6,64,127,88,117,35,46),
8914 (10,6,65,133,89,119,35,47),
8915 (10,6,66,135,91,122,35,48),
8916 (10,6,67,139,92,124,36,48),
8917 (10,6,68,141,94,126,36,49),
8918 (10,6,69,142,95,129,36,50),
8919 (10,6,70,145,97,131,36,50),
8920 (10,6,71,150,99,134,37,51),
8921 (10,6,72,152,100,136,37,52),
8922 (10,6,73,155,102,139,37,53),
8923 (10,6,74,158,104,141,37,53),
8924 (10,6,75,159,105,144,38,54),
8925 (10,6,76,160,107,147,38,55),
8926 (10,6,77,163,109,149,38,56),
8927 (10,6,78,166,110,152,38,56),
8928 (10,6,79,169,112,155,39,57),
8929 (10,6,80,172,114,158,39,58),
8930 (10,8,1,17,22,19,27,21),
8931 (10,8,2,17,22,19,28,22),
8932 (10,8,3,17,22,20,30,24),
8933 (10,8,4,17,22,20,31,25),
8934 (10,8,5,17,23,20,32,26),
8935 (10,8,6,17,23,20,34,28),
8936 (10,8,7,18,23,21,35,29),
8937 (10,8,8,18,23,21,37,30),
8938 (10,8,9,18,23,21,38,32),
8939 (10,8,10,18,23,22,40,33),
8940 (10,8,11,18,24,22,41,35),
8941 (10,8,12,18,24,22,42,36),
8942 (10,8,13,18,24,23,44,37),
8943 (10,8,14,18,24,23,45,39),
8944 (10,8,15,18,24,23,47,40),
8945 (10,8,16,19,24,24,49,42),
8946 (10,8,17,19,25,24,50,43),
8947 (10,8,18,19,25,24,52,45),
8948 (10,8,19,19,25,25,53,46),
8949 (10,8,20,19,25,25,55,48),
8950 (10,8,21,19,25,26,57,50),
8951 (10,8,22,19,26,26,58,51),
8952 (10,8,23,20,26,26,60,53),
8953 (10,8,24,20,26,27,61,54),
8954 (10,8,25,20,26,27,63,56),
8955 (10,8,26,20,27,27,65,58),
8956 (10,8,27,20,27,28,67,59),
8957 (10,8,28,20,27,28,68,61),
8958 (10,8,29,21,27,29,70,63),
8959 (10,8,30,21,28,29,72,64),
8960 (10,8,31,21,28,30,74,66),
8961 (10,8,32,21,28,30,75,68),
8962 (10,8,33,21,28,30,77,70),
8963 (10,8,34,21,29,31,79,71),
8964 (10,8,35,22,29,31,81,73),
8965 (10,8,36,22,29,32,83,75),
8966 (10,8,37,22,29,32,85,77),
8967 (10,8,38,22,30,33,86,78),
8968 (10,8,39,22,30,33,88,80),
8969 (10,8,40,23,30,34,90,82),
8970 (10,8,41,23,31,34,92,84),
8971 (10,8,42,23,31,35,94,86),
8972 (10,8,43,23,31,35,96,88),
8973 (10,8,44,23,32,36,98,90),
8974 (10,8,45,24,32,36,100,92),
8975 (10,8,46,24,32,37,102,93),
8976 (10,8,47,24,32,37,104,95),
8977 (10,8,48,24,33,38,106,97),
8978 (10,8,49,25,33,38,108,99),
8979 (10,8,50,25,33,39,110,101),
8980 (10,8,51,25,34,39,112,103),
8981 (10,8,52,25,34,40,114,105),
8982 (10,8,53,25,35,40,117,107),
8983 (10,8,54,26,35,41,119,109),
8984 (10,8,55,26,35,41,121,111),
8985 (10,8,56,26,36,42,123,113),
8986 (10,8,57,26,36,42,125,116),
8987 (10,8,58,27,36,43,127,118),
8988 (10,8,59,27,37,43,130,120),
8989 (10,8,60,27,37,44,132,122),
8990 (10,8,61,27,37,45,134,124),
8991 (10,8,62,28,38,45,136,126),
8992 (10,8,63,28,38,46,139,128),
8993 (10,8,64,28,39,46,141,131),
8994 (10,8,65,29,39,47,143,133),
8995 (10,8,66,29,39,48,146,135),
8996 (10,8,67,29,40,48,148,137),
8997 (10,8,68,29,40,49,150,139),
8998 (10,8,69,30,41,49,153,142),
8999 (10,8,70,30,41,50,155,144),
9000 (10,8,71,30,41,50,158,147),
9001 (10,8,72,30,42,51,161,150),
9002 (10,8,73,30,42,52,164,153),
9003 (10,8,74,31,43,52,167,155),
9004 (10,8,75,31,43,53,170,158),
9005 (10,8,76,31,43,54,173,161),
9006 (10,8,77,32,44,55,176,164),
9007 (10,8,78,32,44,55,179,167),
9008 (10,8,79,32,45,56,182,170),
9009 (10,8,80,33,45,57,185,173),
9010 (10,9,1,17,22,20,26,21),
9011 (10,9,2,17,22,21,27,22),
9012 (10,9,3,18,23,21,28,23),
9013 (10,9,4,18,23,22,29,24),
9014 (10,9,5,18,23,22,31,26),
9015 (10,9,6,18,24,23,32,27),
9016 (10,9,7,19,24,23,33,28),
9017 (10,9,8,19,25,24,34,29),
9018 (10,9,9,19,25,25,36,30),
9019 (10,9,10,20,25,25,37,32),
9020 (10,9,11,20,26,26,38,33),
9021 (10,9,12,20,26,26,39,34),
9022 (10,9,13,21,27,27,41,36),
9023 (10,9,14,21,27,28,42,37),
9024 (10,9,15,21,27,28,43,38),
9025 (10,9,16,22,28,29,45,39),
9026 (10,9,17,22,28,30,46,41),
9027 (10,9,18,23,29,30,47,42),
9028 (10,9,19,23,29,31,49,43),
9029 (10,9,20,23,30,32,50,45),
9030 (10,9,21,24,30,32,51,46),
9031 (10,9,22,24,31,33,53,48),
9032 (10,9,23,24,31,34,54,49),
9033 (10,9,24,25,31,34,56,50),
9034 (10,9,25,25,32,35,57,52),
9035 (10,9,26,26,32,36,59,53),
9036 (10,9,27,26,33,37,60,55),
9037 (10,9,28,26,33,37,62,56),
9038 (10,9,29,27,34,38,63,58),
9039 (10,9,30,27,34,39,65,59),
9040 (10,9,31,28,35,40,66,61),
9041 (10,9,32,28,36,40,68,62),
9042 (10,9,33,29,36,41,69,64),
9043 (10,9,34,29,37,42,71,65),
9044 (10,9,35,29,37,43,73,67),
9045 (10,9,36,30,38,43,74,69),
9046 (10,9,37,30,38,44,76,70),
9047 (10,9,38,31,39,45,77,72),
9048 (10,9,39,31,39,46,79,73),
9049 (10,9,40,32,40,47,81,75),
9050 (10,9,41,32,41,48,82,77),
9051 (10,9,42,33,41,48,84,78),
9052 (10,9,43,33,42,49,86,80),
9053 (10,9,44,34,42,50,88,82),
9054 (10,9,45,34,43,51,89,83),
9055 (10,9,46,35,44,52,91,85),
9056 (10,9,47,35,44,53,93,87),
9057 (10,9,48,36,45,54,95,89),
9058 (10,9,49,36,45,54,96,90),
9059 (10,9,50,37,46,55,98,92),
9060 (10,9,51,37,47,56,100,94),
9061 (10,9,52,38,47,57,102,96),
9062 (10,9,53,38,48,58,104,97),
9063 (10,9,54,39,49,59,105,99),
9064 (10,9,55,39,49,60,107,101),
9065 (10,9,56,40,50,61,109,103),
9066 (10,9,57,40,51,62,111,105),
9067 (10,9,58,41,51,63,113,107),
9068 (10,9,59,42,52,64,115,108),
9069 (10,9,60,42,53,65,117,110),
9070 (10,9,61,43,53,66,119,112),
9071 (10,9,62,43,54,67,121,114),
9072 (10,9,63,44,55,68,123,116),
9073 (10,9,64,44,56,69,125,118),
9074 (10,9,65,45,56,70,127,120),
9075 (10,9,66,46,57,71,129,122),
9076 (10,9,67,46,58,72,131,124),
9077 (10,9,68,47,58,73,133,126),
9078 (10,9,69,47,59,74,135,128),
9079 (10,9,70,48,60,75,137,130),
9080 (10,9,71,49,61,83,139,141),
9081 (10,9,72,50,61,84,142,143),
9082 (10,9,73,51,62,84,144,146),
9083 (10,9,74,51,63,86,147,149),
9084 (10,9,75,52,64,89,149,151),
9085 (10,9,76,53,65,90,155,154),
9086 (10,9,77,54,66,91,155,157),
9087 (10,9,78,54,67,93,157,160),
9088 (10,9,79,55,68,94,160,163),
9089 (10,9,80,56,69,95,163,165),
9090 (11,1,1,24,17,21,21,22),
9091 (11,1,2,25,18,22,21,22),
9092 (11,1,3,27,19,23,21,23),
9093 (11,1,4,28,19,25,21,23),
9094 (11,1,5,29,20,26,21,23),
9095 (11,1,6,31,21,27,21,23),
9096 (11,1,7,32,22,28,21,24),
9097 (11,1,8,33,23,29,22,24),
9098 (11,1,9,35,24,31,22,24),
9099 (11,1,10,36,24,32,22,25),
9100 (11,1,11,37,25,33,22,25),
9101 (11,1,12,39,26,34,22,25),
9102 (11,1,13,40,27,36,22,26),
9103 (11,1,14,42,28,37,22,26),
9104 (11,1,15,43,29,38,22,26),
9105 (11,1,16,45,30,40,22,27),
9106 (11,1,17,46,31,41,23,27),
9107 (11,1,18,48,32,43,23,27),
9108 (11,1,19,49,33,44,23,28),
9109 (11,1,20,51,34,45,23,28),
9110 (11,1,21,52,34,47,23,28),
9111 (11,1,22,54,35,48,23,29),
9112 (11,1,23,55,36,50,23,29),
9113 (11,1,24,57,37,51,24,30),
9114 (11,1,25,59,38,52,24,30),
9115 (11,1,26,60,39,54,24,30),
9116 (11,1,27,62,40,55,24,31),
9117 (11,1,28,63,41,57,24,31),
9118 (11,1,29,65,43,58,24,32),
9119 (11,1,30,67,44,60,24,32),
9120 (11,1,31,69,45,62,25,32),
9121 (11,1,32,70,46,63,25,33),
9122 (11,1,33,72,47,65,25,33),
9123 (11,1,34,74,48,66,25,34),
9124 (11,1,35,75,49,68,25,34),
9125 (11,1,36,77,50,69,26,35),
9126 (11,1,37,79,51,71,26,35),
9127 (11,1,38,81,52,73,26,35),
9128 (11,1,39,83,53,74,26,36),
9129 (11,1,40,84,55,76,26,36),
9130 (11,1,41,86,56,78,27,37),
9131 (11,1,42,88,57,79,27,37),
9132 (11,1,43,90,58,81,27,38),
9133 (11,1,44,92,59,83,27,38),
9134 (11,1,45,94,60,85,27,39),
9135 (11,1,46,96,62,86,28,39),
9136 (11,1,47,98,63,88,28,40),
9137 (11,1,48,100,64,90,28,40),
9138 (11,1,49,102,65,92,28,41),
9139 (11,1,50,103,66,93,29,41),
9140 (11,1,51,105,68,95,29,42),
9141 (11,1,52,107,69,97,29,42),
9142 (11,1,53,109,70,99,29,43),
9143 (11,1,54,112,71,101,30,44),
9144 (11,1,55,114,73,103,30,44),
9145 (11,1,56,116,74,104,30,45),
9146 (11,1,57,118,75,106,30,45),
9147 (11,1,58,120,77,108,31,46),
9148 (11,1,59,122,78,110,31,46),
9149 (11,1,60,124,79,112,31,47),
9150 (11,1,61,126,81,114,31,48),
9151 (11,1,62,128,82,116,32,48),
9152 (11,1,63,130,83,118,32,49),
9153 (11,1,64,133,85,120,32,49),
9154 (11,1,65,135,86,122,33,50),
9155 (11,1,66,137,87,124,33,51),
9156 (11,1,67,139,89,126,33,51),
9157 (11,1,68,141,90,128,33,52),
9158 (11,1,69,144,92,130,34,52),
9159 (11,1,70,146,93,132,34,53),
9160 (11,1,71,149,94,134,34,54),
9161 (11,1,72,151,96,137,34,55),
9162 (11,1,73,154,98,139,34,56),
9163 (11,1,74,157,99,142,35,56),
9164 (11,1,75,166,101,149,35,57),
9165 (11,1,76,172,103,155,35,58),
9166 (11,1,77,175,105,159,36,59),
9167 (11,1,78,179,106,161,36,59),
9168 (11,1,79,182,108,164,36,60),
9169 (11,1,80,185,110,167,37,61),
9170 (11,2,1,23,17,21,21,23),
9171 (11,2,2,24,18,22,22,24),
9172 (11,2,3,25,18,23,22,24),
9173 (11,2,4,26,19,24,23,25),
9174 (11,2,5,27,19,25,24,26),
9175 (11,2,6,29,20,26,24,26),
9176 (11,2,7,30,21,27,25,27),
9177 (11,2,8,31,21,28,26,28),
9178 (11,2,9,32,22,29,26,29),
9179 (11,2,10,33,22,31,27,29),
9180 (11,2,11,34,23,32,28,30),
9181 (11,2,12,36,24,33,28,31),
9182 (11,2,13,37,24,34,29,32),
9183 (11,2,14,38,25,35,30,32),
9184 (11,2,15,39,26,36,31,33),
9185 (11,2,16,40,26,37,31,34),
9186 (11,2,17,42,27,39,32,35),
9187 (11,2,18,43,28,40,33,36),
9188 (11,2,19,44,28,41,34,37),
9189 (11,2,20,46,29,42,34,37),
9190 (11,2,21,47,30,44,35,38),
9191 (11,2,22,48,31,45,36,39),
9192 (11,2,23,50,31,46,37,40),
9193 (11,2,24,51,32,47,38,41),
9194 (11,2,25,52,33,49,38,42),
9195 (11,2,26,54,34,50,39,43),
9196 (11,2,27,55,34,51,40,44),
9197 (11,2,28,56,35,53,41,44),
9198 (11,2,29,58,36,54,42,45),
9199 (11,2,30,59,37,55,43,46),
9200 (11,2,31,61,37,57,43,47),
9201 (11,2,32,62,38,58,44,48),
9202 (11,2,33,64,39,59,45,49),
9203 (11,2,34,65,40,61,46,50),
9204 (11,2,35,67,41,62,47,51),
9205 (11,2,36,68,42,64,48,52),
9206 (11,2,37,70,42,65,49,53),
9207 (11,2,38,71,43,67,50,54),
9208 (11,2,39,73,44,68,51,55),
9209 (11,2,40,74,45,69,52,56),
9210 (11,2,41,76,46,71,53,57),
9211 (11,2,42,78,47,72,54,58),
9212 (11,2,43,79,47,74,55,59),
9213 (11,2,44,81,48,75,56,60),
9214 (11,2,45,82,49,77,57,61),
9215 (11,2,46,84,50,78,58,62),
9216 (11,2,47,86,51,80,59,64),
9217 (11,2,48,87,52,82,60,65),
9218 (11,2,49,89,53,83,61,66),
9219 (11,2,50,91,54,85,62,67),
9220 (11,2,51,92,55,86,63,68),
9221 (11,2,52,94,56,88,64,69),
9222 (11,2,53,96,57,90,65,70),
9223 (11,2,54,97,58,91,66,71),
9224 (11,2,55,99,59,93,67,73),
9225 (11,2,56,101,60,95,68,74),
9226 (11,2,57,103,61,96,69,75),
9227 (11,2,58,105,62,98,70,76),
9228 (11,2,59,106,63,100,71,77),
9229 (11,2,60,108,64,101,72,78),
9230 (11,2,61,110,65,103,74,80),
9231 (11,2,62,112,66,105,75,81),
9232 (11,2,63,114,67,106,76,82),
9233 (11,2,64,116,68,108,77,83),
9234 (11,2,65,117,69,110,78,85),
9235 (11,2,66,119,70,112,79,86),
9236 (11,2,67,121,71,114,80,87),
9237 (11,2,68,123,72,115,82,88),
9238 (11,2,69,125,73,117,83,90),
9239 (11,2,70,127,74,119,84,91),
9240 (11,2,71,130,75,121,87,92),
9241 (11,2,72,132,76,124,90,94),
9242 (11,2,73,134,77,126,93,96),
9243 (11,2,74,137,79,128,97,97),
9244 (11,2,75,139,80,130,101,99),
9245 (11,2,76,142,81,133,106,100),
9246 (11,2,77,144,83,135,108,102),
9247 (11,2,78,147,84,137,110,104),
9248 (11,2,79,149,85,140,111,105),
9249 (11,2,80,152,87,142,113,107),
9250 (11,3,1,21,20,20,21,23),
9251 (11,3,2,21,21,21,22,24),
9252 (11,3,3,22,23,22,22,24),
9253 (11,3,4,22,24,23,23,25),
9254 (11,3,5,23,25,24,23,25),
9255 (11,3,6,23,27,25,24,26),
9256 (11,3,7,24,28,26,24,27),
9257 (11,3,8,24,30,27,25,27),
9258 (11,3,9,25,31,27,26,28),
9259 (11,3,10,25,33,28,26,29),
9260 (11,3,11,25,34,29,27,29),
9261 (11,3,12,26,36,30,28,30),
9262 (11,3,13,26,37,31,28,31),
9263 (11,3,14,27,39,32,29,32),
9264 (11,3,15,27,40,34,30,32),
9265 (11,3,16,28,42,35,30,33),
9266 (11,3,17,28,43,36,31,34),
9267 (11,3,18,29,45,37,32,35),
9268 (11,3,19,29,47,38,32,35),
9269 (11,3,20,30,48,39,33,36),
9270 (11,3,21,31,50,40,34,37),
9271 (11,3,22,31,51,41,34,38),
9272 (11,3,23,32,53,42,35,38),
9273 (11,3,24,32,55,43,36,39),
9274 (11,3,25,33,57,44,37,40),
9275 (11,3,26,33,58,46,37,41),
9276 (11,3,27,34,60,47,38,42),
9277 (11,3,28,35,62,48,39,42),
9278 (11,3,29,35,63,49,40,43),
9279 (11,3,30,36,65,50,40,44),
9280 (11,3,31,36,67,52,41,45),
9281 (11,3,32,37,69,53,42,46),
9282 (11,3,33,38,71,54,43,47),
9283 (11,3,34,38,72,55,44,48),
9284 (11,3,35,39,74,57,44,48),
9285 (11,3,36,39,76,58,45,49),
9286 (11,3,37,40,78,59,46,50),
9287 (11,3,38,41,80,60,47,51),
9288 (11,3,39,41,82,62,48,52),
9289 (11,3,40,42,84,63,49,53),
9290 (11,3,41,43,86,64,50,54),
9291 (11,3,42,43,88,66,50,55),
9292 (11,3,43,44,90,67,51,56),
9293 (11,3,44,45,91,68,52,57),
9294 (11,3,45,45,93,70,53,58),
9295 (11,3,46,46,95,71,54,59),
9296 (11,3,47,47,98,72,55,60),
9297 (11,3,48,48,100,74,56,61),
9298 (11,3,49,48,102,75,57,62),
9299 (11,3,50,49,104,77,58,63),
9300 (11,3,51,50,106,78,59,64),
9301 (11,3,52,51,108,79,60,65),
9302 (11,3,53,51,110,81,61,66),
9303 (11,3,54,52,112,82,61,67),
9304 (11,3,55,53,114,84,62,68),
9305 (11,3,56,54,116,85,63,69),
9306 (11,3,57,54,118,87,64,70),
9307 (11,3,58,55,121,88,65,71),
9308 (11,3,59,56,123,90,66,72),
9309 (11,3,60,57,125,91,67,74),
9310 (11,3,61,58,127,93,68,75),
9311 (11,3,62,58,130,94,69,76),
9312 (11,3,63,59,132,96,71,77),
9313 (11,3,64,60,134,97,72,78),
9314 (11,3,65,61,136,99,73,79),
9315 (11,3,66,62,139,101,74,80),
9316 (11,3,67,62,141,102,75,81),
9317 (11,3,68,63,143,104,76,83),
9318 (11,3,69,64,146,105,77,84),
9319 (11,3,70,65,148,107,78,85),
9320 (11,3,71,66,151,109,79,86),
9321 (11,3,72,67,154,111,80,87),
9322 (11,3,73,68,157,113,81,89),
9323 (11,3,74,69,160,115,83,90),
9324 (11,3,75,70,163,117,84,92),
9325 (11,3,76,71,166,119,85,93),
9326 (11,3,77,72,169,121,87,95),
9327 (11,3,78,73,172,123,88,96),
9328 (11,3,79,74,175,125,89,98),
9329 (11,3,80,75,178,127,91,99),
9330 (11,5,1,21,17,19,23,25),
9331 (11,5,2,21,17,19,24,26),
9332 (11,5,3,21,17,20,26,28),
9333 (11,5,4,21,18,20,27,29),
9334 (11,5,5,22,18,20,28,30),
9335 (11,5,6,22,18,21,30,32),
9336 (11,5,7,22,18,21,31,33),
9337 (11,5,8,22,19,22,32,35),
9338 (11,5,9,22,19,22,34,36),
9339 (11,5,10,22,19,22,35,38),
9340 (11,5,11,23,19,23,37,39),
9341 (11,5,12,23,20,23,38,41),
9342 (11,5,13,23,20,24,39,42),
9343 (11,5,14,23,20,24,41,44),
9344 (11,5,15,23,20,25,42,45),
9345 (11,5,16,24,21,25,44,47),
9346 (11,5,17,24,21,25,45,48),
9347 (11,5,18,24,21,26,47,50),
9348 (11,5,19,24,22,26,48,51),
9349 (11,5,20,24,22,27,50,53),
9350 (11,5,21,25,22,27,51,55),
9351 (11,5,22,25,22,28,53,56),
9352 (11,5,23,25,23,28,55,58),
9353 (11,5,24,25,23,29,56,60),
9354 (11,5,25,25,23,29,58,61),
9355 (11,5,26,26,24,30,60,63),
9356 (11,5,27,26,24,30,61,65),
9357 (11,5,28,26,24,31,63,66),
9358 (11,5,29,26,25,31,65,68),
9359 (11,5,30,27,25,32,66,70),
9360 (11,5,31,27,25,32,68,72),
9361 (11,5,32,27,26,33,70,73),
9362 (11,5,33,27,26,33,71,75),
9363 (11,5,34,28,26,34,73,77),
9364 (11,5,35,28,27,34,75,79),
9365 (11,5,36,28,27,35,77,81),
9366 (11,5,37,29,28,35,79,83),
9367 (11,5,38,29,28,36,80,85),
9368 (11,5,39,29,28,37,82,86),
9369 (11,5,40,29,29,37,84,88),
9370 (11,5,41,30,29,38,86,90),
9371 (11,5,42,30,29,38,88,92),
9372 (11,5,43,30,30,39,90,94),
9373 (11,5,44,31,30,39,91,96),
9374 (11,5,45,31,31,40,93,98),
9375 (11,5,46,31,31,41,95,100),
9376 (11,5,47,32,31,41,97,102),
9377 (11,5,48,32,32,42,99,104),
9378 (11,5,49,32,32,43,101,106),
9379 (11,5,50,33,33,43,103,108),
9380 (11,5,51,33,33,44,105,110),
9381 (11,5,52,33,34,44,107,113),
9382 (11,5,53,34,34,45,109,115),
9383 (11,5,54,34,34,46,111,117),
9384 (11,5,55,34,35,46,113,119),
9385 (11,5,56,35,35,47,115,121),
9386 (11,5,57,35,36,48,118,123),
9387 (11,5,58,35,36,48,120,126),
9388 (11,5,59,36,37,49,122,128),
9389 (11,5,60,36,37,50,124,130),
9390 (11,5,61,36,38,51,126,132),
9391 (11,5,62,37,38,51,128,134),
9392 (11,5,63,37,39,52,130,137),
9393 (11,5,64,38,39,53,133,139),
9394 (11,5,65,38,40,53,135,141),
9395 (11,5,66,38,40,54,137,144),
9396 (11,5,67,39,40,55,139,146),
9397 (11,5,68,39,41,56,141,148),
9398 (11,5,69,40,41,56,144,151),
9399 (11,5,70,40,42,57,146,153),
9400 (11,5,71,40,43,58,149,156),
9401 (11,5,72,41,43,58,155,159),
9402 (11,5,73,41,44,59,157,160),
9403 (11,5,74,42,44,61,160,163),
9404 (11,5,75,42,45,62,164,166),
9405 (11,5,76,42,46,62,167,169),
9406 (11,5,77,43,46,63,168,172),
9407 (11,5,78,43,47,64,169,177),
9408 (11,5,79,44,47,65,172,180),
9409 (11,5,80,44,48,66,175,183),
9410 (11,6,1,24,17,21,21,22),
9411 (11,6,2,25,18,22,21,22),
9412 (11,6,3,27,19,23,21,23),
9413 (11,6,4,28,19,25,21,23),
9414 (11,6,5,29,20,26,21,23),
9415 (11,6,6,31,21,27,21,23),
9416 (11,6,7,32,22,28,21,24),
9417 (11,6,8,33,23,29,22,24),
9418 (11,6,9,35,24,31,22,24),
9419 (11,6,10,36,24,32,22,25),
9420 (11,6,11,37,25,33,22,25),
9421 (11,6,12,39,26,34,22,25),
9422 (11,6,13,40,27,36,22,26),
9423 (11,6,14,42,28,37,22,26),
9424 (11,6,15,43,29,38,22,26),
9425 (11,6,16,45,30,40,22,27),
9426 (11,6,17,46,31,41,23,27),
9427 (11,6,18,48,32,43,23,27),
9428 (11,6,19,49,33,44,23,28),
9429 (11,6,20,51,34,45,23,28),
9430 (11,6,21,52,34,47,23,28),
9431 (11,6,22,54,35,48,23,29),
9432 (11,6,23,55,36,50,23,29),
9433 (11,6,24,57,37,51,24,30),
9434 (11,6,25,59,38,52,24,30),
9435 (11,6,26,60,39,54,24,30),
9436 (11,6,27,62,40,55,24,31),
9437 (11,6,28,63,41,57,24,31),
9438 (11,6,29,65,43,58,24,32),
9439 (11,6,30,67,44,60,24,32),
9440 (11,6,31,69,45,62,25,32),
9441 (11,6,32,70,46,63,25,33),
9442 (11,6,33,72,47,65,25,33),
9443 (11,6,34,74,48,66,25,34),
9444 (11,6,35,75,49,68,25,34),
9445 (11,6,36,77,50,69,26,35),
9446 (11,6,37,79,51,71,26,35),
9447 (11,6,38,81,52,73,26,35),
9448 (11,6,39,83,53,74,26,36),
9449 (11,6,40,84,55,76,26,36),
9450 (11,6,41,86,56,78,27,37),
9451 (11,6,42,88,57,79,27,37),
9452 (11,6,43,90,58,81,27,38),
9453 (11,6,44,92,59,83,27,38),
9454 (11,6,45,94,60,85,27,39),
9455 (11,6,46,96,62,86,28,39),
9456 (11,6,47,98,63,88,28,40),
9457 (11,6,48,100,64,90,28,40),
9458 (11,6,49,102,65,92,28,41),
9459 (11,6,50,103,65,93,29,41),
9460 (11,6,51,105,66,94,29,42),
9461 (11,6,52,106,67,95,29,42),
9462 (11,6,53,107,68,96,29,43),
9463 (11,6,54,108,69,97,30,44),
9464 (11,6,55,109,70,98,30,44),
9465 (11,6,56,112,72,101,30,45),
9466 (11,6,57,114,73,103,30,45),
9467 (11,6,58,117,74,105,31,46),
9468 (11,6,59,119,76,107,31,46),
9469 (11,6,60,121,77,109,31,47),
9470 (11,6,61,123,78,111,31,48),
9471 (11,6,62,126,80,113,31,48),
9472 (11,6,63,128,81,116,32,49),
9473 (11,6,64,131,83,118,32,49),
9474 (11,6,65,136,84,120,32,50),
9475 (11,6,66,140,86,123,32,51),
9476 (11,6,67,141,87,125,33,51),
9477 (11,6,68,141,89,127,33,52),
9478 (11,6,69,144,90,130,33,53),
9479 (11,6,70,147,92,132,33,53),
9480 (11,6,71,150,94,135,34,54),
9481 (11,6,72,152,95,137,34,55),
9482 (11,6,73,155,97,140,34,56),
9483 (11,6,74,162,99,142,34,56),
9484 (11,6,75,165,100,145,35,57),
9485 (11,6,76,167,102,146,35,58),
9486 (11,6,77,169,104,150,35,59),
9487 (11,6,78,170,105,152,35,59),
9488 (11,6,79,173,107,156,36,60),
9489 (11,6,80,176,109,159,36,61),
9490 (11,7,1,22,17,20,22,24),
9491 (11,7,2,23,17,21,23,25),
9492 (11,7,3,24,18,22,24,26),
9493 (11,7,4,25,18,23,25,27),
9494 (11,7,5,25,19,24,26,28),
9495 (11,7,6,26,19,25,27,29),
9496 (11,7,7,27,20,26,28,30),
9497 (11,7,8,28,20,27,28,31),
9498 (11,7,9,29,21,28,29,32),
9499 (11,7,10,30,21,29,30,33),
9500 (11,7,11,31,22,30,31,35),
9501 (11,7,12,32,22,31,32,36),
9502 (11,7,13,33,23,32,33,37),
9503 (11,7,14,34,23,33,34,38),
9504 (11,7,15,34,24,35,35,39),
9505 (11,7,16,35,24,36,36,40),
9506 (11,7,17,36,25,37,38,42),
9507 (11,7,18,37,25,38,39,43),
9508 (11,7,19,38,26,39,40,44),
9509 (11,7,20,39,26,40,41,45),
9510 (11,7,21,40,27,41,42,46),
9511 (11,7,22,41,27,43,43,48),
9512 (11,7,23,43,28,44,44,49),
9513 (11,7,24,44,28,45,45,50),
9514 (11,7,25,45,29,46,46,51),
9515 (11,7,26,46,30,47,48,53),
9516 (11,7,27,47,30,49,49,54),
9517 (11,7,28,48,31,50,50,55),
9518 (11,7,29,49,31,51,51,57),
9519 (11,7,30,50,32,53,52,58),
9520 (11,7,31,51,33,54,53,59),
9521 (11,7,32,52,33,55,55,61),
9522 (11,7,33,53,34,56,56,62),
9523 (11,7,34,55,34,58,57,64),
9524 (11,7,35,56,35,59,58,65),
9525 (11,7,36,57,36,60,60,66),
9526 (11,7,37,58,36,62,61,68),
9527 (11,7,38,59,37,63,62,69),
9528 (11,7,39,61,38,65,63,71),
9529 (11,7,40,62,38,66,65,72),
9530 (11,7,41,63,39,67,66,74),
9531 (11,7,42,64,40,69,67,75),
9532 (11,7,43,65,40,70,69,77),
9533 (11,7,44,67,41,72,70,78),
9534 (11,7,45,68,42,73,71,80),
9535 (11,7,46,69,42,75,73,81),
9536 (11,7,47,71,43,76,74,83),
9537 (11,7,48,72,44,78,76,84),
9538 (11,7,49,73,45,79,77,86),
9539 (11,7,50,74,45,81,78,88),
9540 (11,7,51,76,46,82,80,89),
9541 (11,7,52,77,47,84,81,91),
9542 (11,7,53,78,47,85,83,92),
9543 (11,7,54,80,48,87,84,94),
9544 (11,7,55,81,49,88,86,96),
9545 (11,7,56,83,50,90,87,97),
9546 (11,7,57,84,50,91,89,99),
9547 (11,7,58,85,51,93,90,101),
9548 (11,7,59,87,52,95,92,102),
9549 (11,7,60,88,53,96,93,104),
9550 (11,7,61,90,54,98,95,106),
9551 (11,7,62,91,54,99,96,108),
9552 (11,7,63,93,55,101,98,109),
9553 (11,7,64,94,56,103,99,111),
9554 (11,7,65,95,57,104,101,113),
9555 (11,7,66,97,58,106,103,115),
9556 (11,7,67,98,58,108,104,117),
9557 (11,7,68,100,59,110,106,118),
9558 (11,7,69,101,60,111,107,120),
9559 (11,7,70,103,61,113,109,122),
9560 (11,7,71,104,62,115,122,124),
9561 (11,7,72,106,63,117,124,127),
9562 (11,7,73,108,64,119,126,129),
9563 (11,7,74,110,65,122,128,131),
9564 (11,7,75,112,66,124,130,133),
9565 (11,7,76,114,67,126,133,136),
9566 (11,7,77,115,68,128,135,138),
9567 (11,7,78,117,69,130,137,140),
9568 (11,7,79,119,70,133,139,143),
9569 (11,7,80,121,71,135,141,145),
9570 (11,8,1,21,17,19,24,24),
9571 (11,8,2,21,17,19,25,25),
9572 (11,8,3,21,17,20,27,27),
9573 (11,8,4,21,17,20,28,28),
9574 (11,8,5,21,18,20,29,29),
9575 (11,8,6,21,18,20,31,31),
9576 (11,8,7,21,18,21,32,32),
9577 (11,8,8,22,18,21,34,33),
9578 (11,8,9,22,18,21,35,35),
9579 (11,8,10,22,19,22,37,36),
9580 (11,8,11,22,19,22,38,37),
9581 (11,8,12,22,19,22,40,39),
9582 (11,8,13,22,19,23,41,40),
9583 (11,8,14,22,19,23,43,42),
9584 (11,8,15,22,19,23,44,43),
9585 (11,8,16,22,20,24,46,45),
9586 (11,8,17,23,20,24,47,46),
9587 (11,8,18,23,20,24,49,48),
9588 (11,8,19,23,20,25,50,49),
9589 (11,8,20,23,21,25,52,51),
9590 (11,8,21,23,21,26,54,52),
9591 (11,8,22,23,21,26,55,54),
9592 (11,8,23,23,21,26,57,56),
9593 (11,8,24,24,21,27,59,57),
9594 (11,8,25,24,22,27,60,59),
9595 (11,8,26,24,22,27,62,60),
9596 (11,8,27,24,22,28,64,62),
9597 (11,8,28,24,22,28,65,64),
9598 (11,8,29,24,23,29,67,65),
9599 (11,8,30,24,23,29,69,67),
9600 (11,8,31,25,23,30,71,69),
9601 (11,8,32,25,23,30,73,71),
9602 (11,8,33,25,24,30,74,72),
9603 (11,8,34,25,24,31,76,74),
9604 (11,8,35,25,24,31,78,76),
9605 (11,8,36,26,24,32,80,78),
9606 (11,8,37,26,25,32,82,79),
9607 (11,8,38,26,25,33,84,81),
9608 (11,8,39,26,25,33,86,83),
9609 (11,8,40,26,26,34,87,85),
9610 (11,8,41,27,26,34,89,87),
9611 (11,8,42,27,26,35,91,89),
9612 (11,8,43,27,27,35,93,91),
9613 (11,8,44,27,27,36,95,92),
9614 (11,8,45,27,27,36,97,94),
9615 (11,8,46,28,27,37,99,96),
9616 (11,8,47,28,28,37,101,98),
9617 (11,8,48,28,28,38,103,100),
9618 (11,8,49,28,28,38,105,102),
9619 (11,8,50,29,29,39,107,104),
9620 (11,8,51,29,29,39,110,106),
9621 (11,8,52,29,29,40,112,108),
9622 (11,8,53,29,30,40,114,110),
9623 (11,8,54,30,30,41,116,112),
9624 (11,8,55,30,30,41,118,114),
9625 (11,8,56,30,31,42,120,116),
9626 (11,8,57,30,31,42,122,118),
9627 (11,8,58,31,31,43,125,121),
9628 (11,8,59,31,32,43,127,123),
9629 (11,8,60,31,32,44,129,125),
9630 (11,8,61,31,33,45,131,127),
9631 (11,8,62,32,33,45,133,129),
9632 (11,8,63,32,33,46,136,131),
9633 (11,8,64,32,34,46,138,134),
9634 (11,8,65,33,34,47,140,136),
9635 (11,8,66,33,34,48,143,138),
9636 (11,8,67,33,35,48,145,140),
9637 (11,8,68,33,35,49,147,142),
9638 (11,8,69,34,36,49,150,145),
9639 (11,8,70,34,36,50,152,147),
9640 (11,8,71,34,36,51,155,150),
9641 (11,8,72,34,37,52,161,153),
9642 (11,8,73,34,37,53,161,156),
9643 (11,8,74,35,38,53,164,158),
9644 (11,8,75,35,38,54,167,161),
9645 (11,8,76,35,38,55,170,164),
9646 (11,8,77,36,39,56,173,167),
9647 (11,8,78,36,39,56,176,170),
9648 (11,8,79,36,40,57,179,173),
9649 (11,8,80,37,40,58,182,176);
9650 /*!40000 ALTER TABLE `player_levelstats` ENABLE KEYS */;
9651 UNLOCK TABLES;
9653 -- ----------------------------
9654 -- Table structure for player_xp_for_level
9655 -- ----------------------------
9656 DROP TABLE IF EXISTS `player_xp_for_level`;
9657 CREATE TABLE `player_xp_for_level` (
9658   `lvl` int(3) unsigned NOT NULL,
9659   `xp_for_next_level` int(10) unsigned NOT NULL,
9660   PRIMARY KEY  (`lvl`)
9661 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
9664 -- Dumping data for table `player_xp_for_level`
9667 LOCK TABLES `player_xp_for_level` WRITE;
9668 /*!40000 ALTER TABLE `player_xp_for_level` DISABLE KEYS */;
9669 INSERT INTO `player_xp_for_level` VALUES
9670 ('1', '400'),
9671 ('2', '900'),
9672 ('3', '1400'),
9673 ('4', '2100'),
9674 ('5', '2800'),
9675 ('6', '3600'),
9676 ('7', '4500'),
9677 ('8', '5400'),
9678 ('9', '6500'),
9679 ('10', '7600'),
9680 ('11', '8700'),
9681 ('12', '9800'),
9682 ('13', '11000'),
9683 ('14', '12300'),
9684 ('15', '13600'),
9685 ('16', '15000'),
9686 ('17', '16400'),
9687 ('18', '17800'),
9688 ('19', '19300'),
9689 ('20', '20800'),
9690 ('21', '22400'),
9691 ('22', '24000'),
9692 ('23', '25500'),
9693 ('24', '27200'),
9694 ('25', '28900'),
9695 ('26', '30500'),
9696 ('27', '32200'),
9697 ('28', '33900'),
9698 ('29', '36300'),
9699 ('30', '38800'),
9700 ('31', '41600'),
9701 ('32', '44600'),
9702 ('33', '48000'),
9703 ('34', '51400'),
9704 ('35', '55000'),
9705 ('36', '58700'),
9706 ('37', '62400'),
9707 ('38', '66200'),
9708 ('39', '70200'),
9709 ('40', '74300'),
9710 ('41', '78500'),
9711 ('42', '82800'),
9712 ('43', '87100'),
9713 ('44', '91600'),
9714 ('45', '96300'),
9715 ('46', '101000'),
9716 ('47', '105800'),
9717 ('48', '110700'),
9718 ('49', '115700'),
9719 ('50', '120900'),
9720 ('51', '126100'),
9721 ('52', '131500'),
9722 ('53', '137000'),
9723 ('54', '142500'),
9724 ('55', '148200'),
9725 ('56', '154000'),
9726 ('57', '159900'),
9727 ('58', '165800'),
9728 ('59', '172000'),
9729 ('60', '290000'),
9730 ('61', '317000'),
9731 ('62', '349000'),
9732 ('63', '386000'),
9733 ('64', '428000'),
9734 ('65', '475000'),
9735 ('66', '527000'),
9736 ('67', '585000'),
9737 ('68', '648000'),
9738 ('69', '717000'),
9739 ('70', '1523800'),
9740 ('71', '1539600'),
9741 ('72', '1555700'),
9742 ('73', '1571800'),
9743 ('74', '1587900'),
9744 ('75', '1604200'),
9745 ('76', '1620700'),
9746 ('77', '1637400'),
9747 ('78', '1653900'),
9748 ('79', '1670800');
9749 /*!40000 ALTER TABLE `player_xp_for_level` ENABLE KEYS */;
9750 UNLOCK TABLES;
9753 -- Table structure for table `playercreateinfo`
9756 DROP TABLE IF EXISTS `playercreateinfo`;
9757 CREATE TABLE `playercreateinfo` (
9758   `race` tinyint(3) unsigned NOT NULL default '0',
9759   `class` tinyint(3) unsigned NOT NULL default '0',
9760   `map` smallint(5) unsigned NOT NULL default '0',
9761   `zone` mediumint(8) unsigned NOT NULL default '0',
9762   `position_x` float NOT NULL default '0',
9763   `position_y` float NOT NULL default '0',
9764   `position_z` float NOT NULL default '0',
9765   PRIMARY KEY  (`race`,`class`)
9766 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
9769 -- Dumping data for table `playercreateinfo`
9772 LOCK TABLES `playercreateinfo` WRITE;
9773 /*!40000 ALTER TABLE `playercreateinfo` DISABLE KEYS */;
9774 INSERT INTO `playercreateinfo` VALUES
9775 (1,1,0,12,-8949,-132,84),
9776 (1,2,0,12,-8949,-132,84),
9777 (1,4,0,12,-8949,-132,84),
9778 (1,5,0,12,-8949,-132,84),
9779 (1,6,609,4298,2355.84,-5664.77,426.028),
9780 (1,8,0,12,-8949,-132,84),
9781 (1,9,0,12,-8949,-132,84),
9782 (2,1,1,14,-618,-4251,39),
9783 (2,3,1,14,-618,-4251,39),
9784 (2,4,1,14,-618,-4251,39),
9785 (2,6,609,4298,2358.44,-5666.9,426.023),
9786 (2,7,1,14,-618,-4251,39),
9787 (2,9,1,14,-618,-4251,39),
9788 (3,1,0,1,-6240,331,383),
9789 (3,2,0,1,-6240,331,383),
9790 (3,3,0,1,-6240,331,383),
9791 (3,4,0,1,-6240,331,383),
9792 (3,5,0,1,-6240,331,383),
9793 (3,6,609,4298,2358.44,-5666.9,426.023),
9794 (4,1,1,141,10311,832,1327),
9795 (4,3,1,141,10311,832,1327),
9796 (4,4,1,141,10311,832,1327),
9797 (4,5,1,141,10311,832,1327),
9798 (4,6,609,4298,2356.21,-5662.21,426.026),
9799 (4,11,1,141,10311,832,1327),
9800 (5,1,0,85,1676,1677,122),
9801 (5,4,0,85,1676,1677,122),
9802 (5,5,0,85,1676,1677,122),
9803 (5,8,0,85,1676,1677,122),
9804 (5,9,0,85,1676,1677,122),
9805 (5,6,609,4298,2356.21,-5662.21,426.026),
9806 (6,1,1,215,-2917,-257,53),
9807 (6,3,1,215,-2917,-257,53),
9808 (6,6,609,4298,2358.17,-5663.21,426.027),
9809 (6,7,1,215,-2917,-257,53),
9810 (6,11,1,215,-2917,-257,53),
9811 (7,1,0,1,-6240,331,383),
9812 (7,4,0,1,-6240,331,383),
9813 (7,6,609,4298,2355.05,-5661.7, 426.026),
9814 (7,8,0,1,-6240,331,383),
9815 (7,9,0,1,-6240,331,383),
9816 (8,1,1,14,-618,-4251,39),
9817 (8,3,1,14,-618,-4251,39),
9818 (8,4,1,14,-618,-4251,39),
9819 (8,5,1,14,-618,-4251,39),
9820 (8,6,609,4298,2355.05,-5661.7, 426.026),
9821 (8,7,1,14,-618,-4251,39),
9822 (8,8,1,14,-618,-4251,39),
9823 (10,2,530,3431,10349.6,-6357.29,33.4026),
9824 (10,3,530,3431,10349.6,-6357.29,33.4026),
9825 (10,4,530,3431,10349.6,-6357.29,33.4026),
9826 (10,5,530,3431,10349.6,-6357.29,33.4026),
9827 (10,6,609,4298,2355.84,-5664.77,426.028),
9828 (10,8,530,3431,10349.6,-6357.29,33.4026),
9829 (10,9,530,3431,10349.6,-6357.29,33.4026),
9830 (11,1,530,3526,-3961.64,-13931.2,100.615),
9831 (11,2,530,3526,-3961.64,-13931.2,100.615),
9832 (11,3,530,3526,-3961.64,-13931.2,100.615),
9833 (11,5,530,3526,-3961.64,-13931.2,100.615),
9834 (11,6,609,4298,2358.17,-5663.21,426.027),
9835 (11,7,530,3526,-3961.64,-13931.2,100.615),
9836 (11,8,530,3526,-3961.64,-13931.2,100.615);
9837 /*!40000 ALTER TABLE `playercreateinfo` ENABLE KEYS */;
9838 UNLOCK TABLES;
9841 -- Table structure for table `playercreateinfo_action`
9844 DROP TABLE IF EXISTS `playercreateinfo_action`;
9845 CREATE TABLE `playercreateinfo_action` (
9846   `race` tinyint(3) unsigned NOT NULL default '0',
9847   `class` tinyint(3) unsigned NOT NULL default '0',
9848   `button` smallint(5) unsigned NOT NULL default '0',
9849   `action` int(11) unsigned NOT NULL default '0',
9850   `type` smallint(5) unsigned NOT NULL default '0',
9851   KEY `playercreateinfo_race_class_index` (`race`,`class`),
9852   PRIMARY KEY (`race`,`class`,`button`)
9853 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
9856 -- Dumping data for table `playercreateinfo_action`
9859 LOCK TABLES `playercreateinfo_action` WRITE;
9860 /*!40000 ALTER TABLE `playercreateinfo_action` DISABLE KEYS */;
9861 INSERT INTO `playercreateinfo_action` VALUES
9862 (1,1,0,6603,0),
9863 (1,1,11,117,128),
9864 (1,1,72,6603,0),
9865 (1,1,73,78,0),
9866 (1,1,82,59752,0),
9867 (1,1,83,117,128),
9868 (1,1,84,6603,0),
9869 (1,1,96,6603,0),
9870 (1,1,108,6603,0),
9871 (1,2,0,6603,0),
9872 (1,2,1,21084,0),
9873 (1,2,2,635,0),
9874 (1,2,9,59752,0),
9875 (1,2,10,159,128),
9876 (1,2,11,2070,128),
9877 (1,4,0,6603,0),
9878 (1,4,1,1752,0),
9879 (1,4,2,2098,0),
9880 (1,4,3,2764,0),
9881 (1,4,10,59752,0),
9882 (1,4,11,2070,128),
9883 (1,5,0,6603,0),
9884 (1,5,1,585,0),
9885 (1,5,2,2050,0),
9886 (1,5,9,59752,0),
9887 (1,5,10,159,128),
9888 (1,5,11,2070,128),
9889 (1,6,0,6603,0),
9890 (1,6,1,49576,0),
9891 (1,6,2,45477,0),
9892 (1,6,3,45462,0),
9893 (1,6,4,45902,0),
9894 (1,6,5,47541,0),
9895 (1,6,11,59752,0),
9896 (1,8,0,6603,0),
9897 (1,8,1,133,0),
9898 (1,8,2,168,0),
9899 (1,8,9,59752,0),
9900 (1,8,10,159,128),
9901 (1,8,11,2070,128),
9902 (1,9,0,6603,0),
9903 (1,9,1,686,0),
9904 (1,9,2,687,0),
9905 (1,9,9,59752,0),
9906 (1,9,10,159,128),
9907 (1,9,11,4604,128),
9908 (2,1,0,6603,0),
9909 (2,1,72,6603,0),
9910 (2,1,73,78,0),
9911 (2,1,74,20572,0),
9912 (2,1,83,117,128),
9913 (2,1,84,6603,0),
9914 (2,1,96,6603,0),
9915 (2,1,108,6603,0),
9916 (2,3,0,6603,0),
9917 (2,3,1,2973,0),
9918 (2,3,2,75,0),
9919 (2,3,9,20572,0),
9920 (2,3,10,159,128),
9921 (2,3,11,117,128),
9922 (2,4,0,6603,0),
9923 (2,4,1,1752,0),
9924 (2,4,2,2098,0),
9925 (2,4,3,2764,0),
9926 (2,4,4,20572,0),
9927 (2,4,11,117,128),
9928 (2,6,0,6603,0),
9929 (2,6,1,49576,0),
9930 (2,6,2,45477,0),
9931 (2,6,3,45462,0),
9932 (2,6,4,45902,0),
9933 (2,6,5,47541,0),
9934 (2,6,10,20572,0),
9935 (2,7,0,6603,0),
9936 (2,7,1,403,0),
9937 (2,7,2,331,0),
9938 (2,7,3,33697,0),
9939 (2,7,10,159,128),
9940 (2,7,11,117,128),
9941 (2,9,0,6603,0),
9942 (2,9,1,686,0),
9943 (2,9,2,687,0),
9944 (2,9,3,33702,0),
9945 (2,9,10,159,128),
9946 (2,9,11,117,128),
9947 (3,1,0,6603,0),
9948 (3,1,1,78,0),
9949 (3,1,11,117,128),
9950 (3,1,72,6603,0),
9951 (3,1,73,78,0),
9952 (3,1,74,20594,0),
9953 (3,1,75,2481,0),
9954 (3,1,83,117,128),
9955 (3,1,84,6603,0),
9956 (3,1,96,6603,0),
9957 (3,1,108,6603,0),
9958 (3,2,0,6603,0),
9959 (3,2,1,21084,0),
9960 (3,2,2,635,0),
9961 (3,2,3,20594,0),
9962 (3,2,4,2481,0),
9963 (3,2,10,159,128),
9964 (3,2,11,4540,128),
9965 (3,3,0,6603,0),
9966 (3,3,1,2973,0),
9967 (3,3,2,75,0),
9968 (3,3,3,20594,0),
9969 (3,3,4,2481,0),
9970 (3,3,10,159,128),
9971 (3,3,11,117,128),
9972 (3,3,75,20594,0),
9973 (3,3,76,2481,0),
9974 (3,4,0,6603,0),
9975 (3,4,1,1752,0),
9976 (3,4,2,2098,0),
9977 (3,4,3,2764,0),
9978 (3,4,4,20594,0),
9979 (3,4,5,2481,0),
9980 (3,4,11,4540,128),
9981 (3,5,0,6603,0),
9982 (3,5,1,585,0),
9983 (3,5,2,2050,0),
9984 (3,5,3,20594,0),
9985 (3,5,4,2481,0),
9986 (3,5,10,159,128),
9987 (3,5,11,4540,128),
9988 (3,6,0,6603,0),
9989 (3,6,1,49576,0),
9990 (3,6,2,45477,0),
9991 (3,6,3,45462,0),
9992 (3,6,4,45902,0),
9993 (3,6,5,47541,0),
9994 (3,6,10,2481,0),
9995 (4,1,72,6603,0),
9996 (4,1,73,78,0),
9997 (4,1,82,58984,0),
9998 (4,1,83,117,128),
9999 (4,1,85,6603,0),
10000 (4,1,97,6603,0),
10001 (4,1,109,6603,0),
10002 (4,3,0,6603,0),
10003 (4,3,1,2973,0),
10004 (4,3,2,75,0),
10005 (4,3,3,58984,0),
10006 (4,3,10,159,128),
10007 (4,3,11,117,128),
10008 (4,4,0,6603,0),
10009 (4,4,1,1752,0),
10010 (4,4,2,2098,0),
10011 (4,4,3,2764,0),
10012 (4,4,10,58984,0),
10013 (4,4,11,4540,128),
10014 (4,4,82,58984,0),
10015 (4,5,0,6603,0),
10016 (4,5,1,585,0),
10017 (4,5,2,2050,0),
10018 (4,5,3,58984,0),
10019 (4,5,10,159,128),
10020 (4,5,11,2070,128),
10021 (4,6,0,6603,0),
10022 (4,6,1,49576,0),
10023 (4,6,2,45477,0),
10024 (4,6,3,45462,0),
10025 (4,6,4,45902,0),
10026 (4,6,5,47541,0),
10027 (4,6,10,58984,0),
10028 (4,6,83,58984,0),
10029 (4,11,0,6603,0),
10030 (4,11,1,5176,0),
10031 (4,11,2,5185,0),
10032 (4,11,9,58984,0),
10033 (4,11,10,159,128),
10034 (4,11,11,4536,128),
10035 (5,1,0,6603,0),
10036 (5,1,72,6603,0),
10037 (5,1,73,78,0),
10038 (5,1,74,20577,0),
10039 (5,1,83,4604,128),
10040 (5,1,84,6603,0),
10041 (5,1,96,6603,0),
10042 (5,1,108,6603,0),
10043 (5,4,0,6603,0),
10044 (5,4,1,1752,0),
10045 (5,4,2,2098,0),
10046 (5,4,3,2764,0),
10047 (5,4,4,20577,0),
10048 (5,4,11,4604,128),
10049 (5,5,0,6603,0),
10050 (5,5,1,585,0),
10051 (5,5,2,2050,0),
10052 (5,5,3,20577,0),
10053 (5,5,10,159,128),
10054 (5,5,11,4604,128),
10055 (5,6,0,6603,0),
10056 (5,6,1,49576,0),
10057 (5,6,2,45477,0),
10058 (5,6,3,45462,0),
10059 (5,6,4,45902,0),
10060 (5,6,5,47541,0),
10061 (5,6,10,20577,0),
10062 (5,8,0,6603,0),
10063 (5,8,1,133,0),
10064 (5,8,2,168,0),
10065 (5,8,3,20577,0),
10066 (5,8,10,159,128),
10067 (5,8,11,4604,128),
10068 (5,9,0,6603,0),
10069 (5,9,1,686,0),
10070 (5,9,2,687,0),
10071 (5,9,3,20577,0),
10072 (5,9,10,159,128),
10073 (5,9,11,4604,128),
10074 (6,1,0,6603,0),
10075 (6,1,1,78,0),
10076 (6,1,3,20549,0),
10077 (6,1,72,6603,0),
10078 (6,1,73,78,0),
10079 (6,1,74,20549,0),
10080 (6,1,83,4540,128),
10081 (6,1,84,6603,0),
10082 (6,1,96,6603,0),
10083 (6,1,108,6603,0),
10084 (6,3,0,6603,0),
10085 (6,3,1,2973,0),
10086 (6,3,2,75,0),
10087 (6,3,3,20549,0),
10088 (6,3,10,159,128),
10089 (6,3,11,117,128),
10090 (6,3,76,20549,0),
10091 (6,6,0,6603,0),
10092 (6,6,1,49576,0),
10093 (6,6,2,45477,0),
10094 (6,6,3,45462,0),
10095 (6,6,4,45902,0),
10096 (6,6,5,47541,0),
10097 (6,6,10,20549,0),
10098 (6,6,75,20549,0),
10099 (6,7,0,6603,0),
10100 (6,7,1,403,0),
10101 (6,7,2,331,0),
10102 (6,7,3,20549,0),
10103 (6,7,10,159,128),
10104 (6,7,11,4604,128),
10105 (6,7,76,20549,0),
10106 (6,11,0,6603,0),
10107 (6,11,1,5176,0),
10108 (6,11,2,5185,0),
10109 (6,11,3,20549,0),
10110 (6,11,10,159,128),
10111 (6,11,11,4536,128),
10112 (6,11,73,6603,0),
10113 (6,11,76,20549,0),
10114 (6,11,85,6603,0),
10115 (6,11,97,6603,0),
10116 (6,11,109,6603,0),
10117 (7,1,0,6603,0),
10118 (7,1,1,78,0),
10119 (7,1,10,20589,0),
10120 (7,1,11,117,128),
10121 (7,1,72,6603,0),
10122 (7,1,73,78,0),
10123 (7,1,82,20589,0),
10124 (7,1,83,117,128),
10125 (7,1,84,6603,0),
10126 (7,1,96,6603,0),
10127 (7,1,108,6603,0),
10128 (7,4,0,6603,0),
10129 (7,4,1,1752,0),
10130 (7,4,2,2098,0),
10131 (7,4,3,2764,0),
10132 (7,4,10,20589,0),
10133 (7,4,11,117,128),
10134 (7,6,0,6603,0),
10135 (7,6,1,49576,0),
10136 (7,6,2,45477,0),
10137 (7,6,3,45462,0),
10138 (7,6,4,45902,0),
10139 (7,6,5,47541,0),
10140 (7,6,10,20589,0),
10141 (7,6,11,41751,128),
10142 (7,6,72,6603,0),
10143 (7,6,83,41751,128),
10144 (7,6,84,6603,0),
10145 (7,6,96,6603,0),
10146 (7,6,108,6603,0),
10147 (7,8,0,6603,0),
10148 (7,8,1,133,0),
10149 (7,8,2,168,0),
10150 (7,8,9,20589,0),
10151 (7,8,10,159,128),
10152 (7,8,11,4536,128),
10153 (7,9,0,6603,0),
10154 (7,9,1,686,0),
10155 (7,9,2,687,0),
10156 (7,9,9,20589,0),
10157 (7,9,10,159,128),
10158 (7,9,11,4604,128),
10159 (8,1,0,6603,0),
10160 (8,1,72,6603,0),
10161 (8,1,73,78,0),
10162 (8,1,74,2764,0),
10163 (8,1,75,26296,0),
10164 (8,1,83,117,128),
10165 (8,1,84,6603,0),
10166 (8,1,96,6603,0),
10167 (8,1,108,6603,0),
10168 (8,3,0,6603,0),
10169 (8,3,1,2973,0),
10170 (8,3,2,75,0),
10171 (8,3,3,20554,0),
10172 (8,3,10,159,128),
10173 (8,3,11,4604,128),
10174 (8,4,0,6603,0),
10175 (8,4,1,1752,0),
10176 (8,4,2,2098,0),
10177 (8,4,3,2764,0),
10178 (8,4,4,26297,0),
10179 (8,4,11,117,128),
10180 (8,5,0,6603,0),
10181 (8,5,1,585,0),
10182 (8,5,2,2050,0),
10183 (8,5,3,20554,0),
10184 (8,5,10,159,128),
10185 (8,5,11,4540,128),
10186 (8,6,0,6603,0),
10187 (8,6,1,49576,0),
10188 (8,6,2,45477,0),
10189 (8,6,3,45462,0),
10190 (8,6,4,45902,0),
10191 (8,6,5,47541,0),
10192 (8,6,10,50621,0),
10193 (8,7,0,6603,0),
10194 (8,7,1,403,0),
10195 (8,7,2,331,0),
10196 (8,7,3,20554,0),
10197 (8,7,10,159,128),
10198 (8,7,11,117,128),
10199 (8,8,0,6603,0),
10200 (8,8,1,133,0),
10201 (8,8,2,168,0),
10202 (8,8,3,20554,0),
10203 (8,8,10,159,128),
10204 (8,8,11,117,128),
10205 (10,2,0,6603,0),
10206 (10,2,1,21084,0),
10207 (10,2,2,635,0),
10208 (10,2,3,28730,0),
10209 (10,2,10,159,128),
10210 (10,2,11,20857,128),
10211 (10,3,0,6603,0),
10212 (10,3,1,2973,0),
10213 (10,3,2,75,0),
10214 (10,3,3,28730,0),
10215 (10,3,10,159,128),
10216 (10,3,11,20857,128),
10217 (10,4,0,6603,0),
10218 (10,4,1,1752,0),
10219 (10,4,2,2098,0),
10220 (10,4,3,2764,0),
10221 (10,4,4,25046,0),
10222 (10,4,11,20857,128),
10223 (10,5,0,6603,0),
10224 (10,5,1,585,0),
10225 (10,5,2,2050,0),
10226 (10,5,3,28730,0),
10227 (10,5,10,159,128),
10228 (10,5,11,20857,128),
10229 (10,6,0,6603,0),
10230 (10,6,1,49576,0),
10231 (10,6,2,45477,0),
10232 (10,6,3,45462,0),
10233 (10,6,4,45902,0),
10234 (10,6,5,47541,0),
10235 (10,6,6,50613,0),
10236 (10,8,0,6603,0),
10237 (10,8,1,133,0),
10238 (10,8,2,168,0),
10239 (10,8,3,28730,0),
10240 (10,8,10,159,128),
10241 (10,8,11,20857,128),
10242 (10,9,0,6603,0),
10243 (10,9,1,686,0),
10244 (10,9,2,687,0),
10245 (10,9,3,28730,0),
10246 (10,9,10,159,128),
10247 (10,9,11,20857,128),
10248 (11,1,0,6603,0),
10249 (11,1,72,6603,0),
10250 (11,1,73,78,0),
10251 (11,1,74,28880,0),
10252 (11,1,83,4540,128),
10253 (11,1,84,6603,0),
10254 (11,1,96,6603,0),
10255 (11,1,108,6603,0),
10256 (11,2,0,6603,0),
10257 (11,2,1,21084,0),
10258 (11,2,2,635,0),
10259 (11,2,3,59542,0),
10260 (11,2,10,159,128),
10261 (11,2,11,4540,128),
10262 (11,2,83,4540,128),
10263 (11,3,0,6603,0),
10264 (11,3,1,2973,0),
10265 (11,3,2,75,0),
10266 (11,3,3,59543,0),
10267 (11,3,10,159,128),
10268 (11,3,11,4540,128),
10269 (11,3,72,6603,0),
10270 (11,3,73,2973,0),
10271 (11,3,74,75,0),
10272 (11,3,82,159,128),
10273 (11,3,83,4540,128),
10274 (11,5,0,6603,0),
10275 (11,5,1,585,0),
10276 (11,5,2,2050,0),
10277 (11,5,3,59544,0),
10278 (11,5,10,159,128),
10279 (11,5,11,4540,128),
10280 (11,5,83,4540,128),
10281 (11,6,0,6603,0),
10282 (11,6,1,49576,0),
10283 (11,6,2,45477,0),
10284 (11,6,3,45462,0),
10285 (11,6,4,45902,0),
10286 (11,6,5,47541,0),
10287 (11,6,10,59545,0),
10288 (11,6,11,41751,128),
10289 (11,7,0,6603,0),
10290 (11,7,1,403,0),
10291 (11,7,2,331,0),
10292 (11,7,3,59547,0),
10293 (11,7,10,159,128),
10294 (11,7,11,4540,128),
10295 (11,8,0,6603,0),
10296 (11,8,1,133,0),
10297 (11,8,2,168,0),
10298 (11,8,3,59548,0),
10299 (11,8,10,159,128),
10300 (11,8,11,4540,128),
10301 (11,8,83,4540,128);
10302 /*!40000 ALTER TABLE `playercreateinfo_action` ENABLE KEYS */;
10303 UNLOCK TABLES;
10306 -- Table structure for table `playercreateinfo_item`
10309 DROP TABLE IF EXISTS `playercreateinfo_item`;
10310 CREATE TABLE `playercreateinfo_item` (
10311   `race` tinyint(3) unsigned NOT NULL default '0',
10312   `class` tinyint(3) unsigned NOT NULL default '0',
10313   `itemid` mediumint(8) unsigned NOT NULL default '0',
10314   `amount` tinyint(3) unsigned NOT NULL default '1',
10315   KEY `playercreateinfo_race_class_index` (`race`,`class`)
10316 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10319 -- Dumping data for table `playercreateinfo_item`
10322 LOCK TABLES `playercreateinfo_item` WRITE;
10323 /*!40000 ALTER TABLE `playercreateinfo_item` DISABLE KEYS */;
10324 /*!40000 ALTER TABLE `playercreateinfo_item` ENABLE KEYS */;
10325 UNLOCK TABLES;
10328 -- Table structure for table `playercreateinfo_spell`
10331 DROP TABLE IF EXISTS `playercreateinfo_spell`;
10332 CREATE TABLE `playercreateinfo_spell` (
10333   `race` tinyint(3) unsigned NOT NULL default '0',
10334   `class` tinyint(3) unsigned NOT NULL default '0',
10335   `Spell` mediumint(8) unsigned NOT NULL default '0',
10336   `Note` varchar(255) default NULL,
10337   PRIMARY KEY  (`race`,`class`,`Spell`)
10338 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
10341 -- Dumping data for table `playercreateinfo_spell`
10344 LOCK TABLES `playercreateinfo_spell` WRITE;
10345 /*!40000 ALTER TABLE `playercreateinfo_spell` DISABLE KEYS */;
10346 INSERT INTO `playercreateinfo_spell` VALUES
10347 (1,1,78,'Heroic Strike'),
10348 (1,1,81,'Dodge'),
10349 (1,1,107,'Block'),
10350 (1,1,196,'One-Handed Axes'),
10351 (1,1,198,'One-Handed Maces'),
10352 (1,1,201,'One-Handed Swords'),
10353 (1,1,203,'Unarmed'),
10354 (1,1,204,'Defense'),
10355 (1,1,522,'SPELLDEFENSE (DND)'),
10356 (1,1,668,'Language Common'),
10357 (1,1,1843,'Disarm'),
10358 (1,1,2382,'Generic'),
10359 (1,1,2457,'Battle Stance'),
10360 (1,1,2479,'Honorless Target'),
10361 (1,1,3050,'Detect'),
10362 (1,1,3365,'Opening'),
10363 (1,1,5301,'Defensive State (DND)'),
10364 (1,1,6233,'Closing'),
10365 (1,1,6246,'Closing'),
10366 (1,1,6247,'Opening'),
10367 (1,1,6477,'Opening'),
10368 (1,1,6478,'Opening'),
10369 (1,1,6603,'Attack'),
10370 (1,1,7266,'Duel'),
10371 (1,1,7267,'Grovel'),
10372 (1,1,7355,'Stuck'),
10373 (1,1,8386,'Attacking'),
10374 (1,1,8737,'Mail'),
10375 (1,1,9077,'Leather'),
10376 (1,1,9078,'Cloth'),
10377 (1,1,9116,'Shield'),
10378 (1,1,9125,'Generic'),
10379 (1,1,20597,'Sword Specialization'),
10380 (1,1,20598,'The Human Spirit'),
10381 (1,1,20599,'Diplomacy'),
10382 (1,1,20864,'Mace Specialization'),
10383 (1,1,21651,'Opening'),
10384 (1,1,21652,'Closing'),
10385 (1,1,22027,'Remove Insignia'),
10386 (1,1,22810,'Opening - No Text'),
10387 (1,1,32215,'Victorious State'),
10388 (1,1,45927,'Summon Friend'),
10389 (1,1,58985,'Perception'),
10390 (1,1,59752,'Every Man for Himself'),
10391 (1,1,61437,'Opening'),
10392 (1,2,81,'Dodge'),
10393 (1,2,107,'Block'),
10394 (1,2,198,'One-Handed Maces'),
10395 (1,2,199,'Two-Handed Maces'),
10396 (1,2,203,'Unarmed'),
10397 (1,2,204,'Defense'),
10398 (1,2,522,'SPELLDEFENSE (DND)'),
10399 (1,2,635,'Holy Light'),
10400 (1,2,668,'Language Common'),
10401 (1,2,1843,'Disarm'),
10402 (1,2,2382,'Generic'),
10403 (1,2,2479,'Honorless Target'),
10404 (1,2,3050,'Detect'),
10405 (1,2,3365,'Opening'),
10406 (1,2,6233,'Closing'),
10407 (1,2,6246,'Closing'),
10408 (1,2,6247,'Opening'),
10409 (1,2,6477,'Opening'),
10410 (1,2,6478,'Opening'),
10411 (1,2,6603,'Attack'),
10412 (1,2,7266,'Duel'),
10413 (1,2,7267,'Grovel'),
10414 (1,2,7355,'Stuck'),
10415 (1,2,8386,'Attacking'),
10416 (1,2,8737,'Mail'),
10417 (1,2,9077,'Leather'),
10418 (1,2,9078,'Cloth'),
10419 (1,2,9116,'Shield'),
10420 (1,2,9125,'Generic'),
10421 (1,2,21084,'Seal of Righteousness'),
10422 (1,2,20597,'Sword Specialization'),
10423 (1,2,20598,'The Human Spirit'),
10424 (1,2,20599,'Diplomacy'),
10425 (1,2,20864,'Mace Specialization'),
10426 (1,2,21651,'Opening'),
10427 (1,2,21652,'Closing'),
10428 (1,2,22027,'Remove Insignia'),
10429 (1,2,22810,'Opening - No Text'),
10430 (1,2,27762,'Libram'),
10431 (1,2,45927,'Summon Friend'),
10432 (1,2,58985,'Perception'),
10433 (1,2,59752,'Every Man for Himself'),
10434 (1,2,61437,'Opening'),
10435 (1,4,81,'Dodge'),
10436 (1,4,203,'Unarmed'),
10437 (1,4,204,'Defense'),
10438 (1,4,522,'SPELLDEFENSE (DND)'),
10439 (1,4,668,'Language Common'),
10440 (1,4,1180,'Daggers'),
10441 (1,4,1752,'Sinister Strike'),
10442 (1,4,1843,'Disarm'),
10443 (1,4,2098,'Eviscerate'),
10444 (1,4,2382,'Generic'),
10445 (1,4,2479,'Honorless Target'),
10446 (1,4,2567,'Thrown'),
10447 (1,4,2764,'Throw'),
10448 (1,4,3050,'Detect'),
10449 (1,4,3365,'Opening'),
10450 (1,4,6233,'Closing'),
10451 (1,4,6246,'Closing'),
10452 (1,4,6247,'Opening'),
10453 (1,4,6477,'Opening'),
10454 (1,4,6478,'Opening'),
10455 (1,4,6603,'Attack'),
10456 (1,4,7266,'Duel'),
10457 (1,4,7267,'Grovel'),
10458 (1,4,7355,'Stuck'),
10459 (1,4,8386,'Attacking'),
10460 (1,4,9077,'Leather'),
10461 (1,4,9078,'Cloth'),
10462 (1,4,9125,'Generic'),
10463 (1,4,16092,'Defensive State (DND)'),
10464 (1,4,20597,'Sword Specialization'),
10465 (1,4,20598,'The Human Spirit'),
10466 (1,4,20599,'Diplomacy'),
10467 (1,4,20864,'Mace Specialization'),
10468 (1,4,21184,'Rogue Passive (DND)'),
10469 (1,4,21651,'Opening'),
10470 (1,4,21652,'Closing'),
10471 (1,4,22027,'Remove Insignia'),
10472 (1,4,22810,'Opening - No Text'),
10473 (1,4,45927,'Summon Friend'),
10474 (1,4,58985,'Perception'),
10475 (1,4,59752,'Every Man for Himself'),
10476 (1,4,61437,'Opening'),
10477 (1,5,81,'Dodge'),
10478 (1,5,198,'One-Handed Maces'),
10479 (1,5,203,'Unarmed'),
10480 (1,5,204,'Defense'),
10481 (1,5,522,'SPELLDEFENSE (DND)'),
10482 (1,5,585,'Smite'),
10483 (1,5,668,'Language Common'),
10484 (1,5,1843,'Disarm'),
10485 (1,5,2050,'Lesser Heal'),
10486 (1,5,2382,'Generic'),
10487 (1,5,2479,'Honorless Target'),
10488 (1,5,3050,'Detect'),
10489 (1,5,3365,'Opening'),
10490 (1,5,5009,'Wands'),
10491 (1,5,5019,'Shoot'),
10492 (1,5,6233,'Closing'),
10493 (1,5,6246,'Closing'),
10494 (1,5,6247,'Opening'),
10495 (1,5,6477,'Opening'),
10496 (1,5,6478,'Opening'),
10497 (1,5,6603,'Attack'),
10498 (1,5,7266,'Duel'),
10499 (1,5,7267,'Grovel'),
10500 (1,5,7355,'Stuck'),
10501 (1,5,8386,'Attacking'),
10502 (1,5,9078,'Cloth'),
10503 (1,5,9125,'Generic'),
10504 (1,5,20597,'Sword Specialization'),
10505 (1,5,20598,'The Human Spirit'),
10506 (1,5,20599,'Diplomacy'),
10507 (1,5,20864,'Mace Specialization'),
10508 (1,5,21651,'Opening'),
10509 (1,5,21652,'Closing'),
10510 (1,5,22027,'Remove Insignia'),
10511 (1,5,22810,'Opening - No Text'),
10512 (1,5,45927,'Summon Friend'),
10513 (1,5,58985,'Perception'),
10514 (1,5,59752,'Every Man for Himself'),
10515 (1,5,61437,'Opening'),
10516 (1,6,81,'Dodge'),
10517 (1,6,196,'One-Handed Axes'),
10518 (1,6,197,'Two-Handed Axes'),
10519 (1,6,200,'Polearms'),
10520 (1,6,201,'One-Handed Swords'),
10521 (1,6,202,'Two-Handed Swords'),
10522 (1,6,203,'Unarmed'),
10523 (1,6,204,'Defense'),
10524 (1,6,522,'SPELLDEFENSE (DND)'),
10525 (1,6,668,'Language Common'),
10526 (1,6,674,'Dual Wield'),
10527 (1,6,750,'Plate Mail'),
10528 (1,6,1843,'Disarm'),
10529 (1,6,2382,'Generic'),
10530 (1,6,2479,'Honorless Target'),
10531 (1,6,3050,'Detect'),
10532 (1,6,3127,'Parry'),
10533 (1,6,3275,'Linen Bandage'),
10534 (1,6,3276,'Heavy Linen Bandage'),
10535 (1,6,3277,'Wool Bandage'),
10536 (1,6,3278,'Heavy Wool Bandage'),
10537 (1,6,3365,'Opening'),
10538 (1,6,6233,'Closing'),
10539 (1,6,6246,'Closing'),
10540 (1,6,6247,'Opening'),
10541 (1,6,6477,'Opening'),
10542 (1,6,6478,'Opening'),
10543 (1,6,6603,'Attack'),
10544 (1,6,7266,'Duel'),
10545 (1,6,7267,'Grovel'),
10546 (1,6,7355,'Stuck'),
10547 (1,6,7928,'Silk Bandage'),
10548 (1,6,7929,'Heavy Silk Bandage'),
10549 (1,6,7934,'Anti-Venom'),
10550 (1,6,8386,'Attacking'),
10551 (1,6,8737,'Mail'),
10552 (1,6,9077,'Leather'),
10553 (1,6,9078,'Cloth'),
10554 (1,6,9125,'Generic'),
10555 (1,6,10840,'Mageweave Bandage'),
10556 (1,6,10841,'Heavy Mageweave Bandage'),
10557 (1,6,10846,'First Aid'),
10558 (1,6,18629,'Runecloth Bandage'),
10559 (1,6,18630,'Heavy Runecloth Bandage'),
10560 (1,6,20597,'Sword Specialization'),
10561 (1,6,20598,'The Human Spirit'),
10562 (1,6,20599,'Diplomacy'),
10563 (1,6,20864,'Mace Specialization'),
10564 (1,6,21651,'Opening'),
10565 (1,6,21652,'Closing'),
10566 (1,6,22027,'Remove Insignia'),
10567 (1,6,22810,'Opening - No Text'),
10568 (1,6,33391,'Journeyman Riding'),
10569 (1,6,45462,'Plague Strike'),
10570 (1,6,45477,'Icy Touch'),
10571 (1,6,45902,'Blood Strike'),
10572 (1,6,45903,'Offensive State (DND)'),
10573 (1,6,45927,'Summon Friend'),
10574 (1,6,47541,'Death Coil'),
10575 (1,6,48266,'Blood Presence'),
10576 (1,6,49410,'Forceful Deflection'),
10577 (1,6,49576,'Death Grip'),
10578 (1,6,52665,'Sigil'),
10579 (1,6,58985,'Perception'),
10580 (1,6,59752,'Every Man for Himself'),
10581 (1,6,59879,'Blood Plague'),
10582 (1,6,59921,'Frost Fever'),
10583 (1,6,61437,'Opening'),
10584 (1,6,61455,'Runic Focus'),
10585 (1,8,81,'Dodge'),
10586 (1,8,133,'Fireball'),
10587 (1,8,168,'Frost Armor'),
10588 (1,8,203,'Unarmed'),
10589 (1,8,204,'Defense'),
10590 (1,8,227,'Staves'),
10591 (1,8,522,'SPELLDEFENSE (DND)'),
10592 (1,8,668,'Language Common'),
10593 (1,8,1843,'Disarm'),
10594 (1,8,2382,'Generic'),
10595 (1,8,2479,'Honorless Target'),
10596 (1,8,3050,'Detect'),
10597 (1,8,3365,'Opening'),
10598 (1,8,5009,'Wands'),
10599 (1,8,5019,'Shoot'),
10600 (1,8,6233,'Closing'),
10601 (1,8,6246,'Closing'),
10602 (1,8,6247,'Opening'),
10603 (1,8,6477,'Opening'),
10604 (1,8,6478,'Opening'),
10605 (1,8,6603,'Attack'),
10606 (1,8,7266,'Duel'),
10607 (1,8,7267,'Grovel'),
10608 (1,8,7355,'Stuck'),
10609 (1,8,8386,'Attacking'),
10610 (1,8,9078,'Cloth'),
10611 (1,8,9125,'Generic'),
10612 (1,8,20597,'Sword Specialization'),
10613 (1,8,20598,'The Human Spirit'),
10614 (1,8,20599,'Diplomacy'),
10615 (1,8,20864,'Mace Specialization'),
10616 (1,8,21651,'Opening'),
10617 (1,8,21652,'Closing'),
10618 (1,8,22027,'Remove Insignia'),
10619 (1,8,22810,'Opening - No Text'),
10620 (1,8,45927,'Summon Friend'),
10621 (1,8,58985,'Perception'),
10622 (1,8,59752,'Every Man for Himself'),
10623 (1,8,61437,'Opening'),
10624 (1,9,81,'Dodge'),
10625 (1,9,203,'Unarmed'),
10626 (1,9,204,'Defense'),
10627 (1,9,522,'SPELLDEFENSE (DND)'),
10628 (1,9,668,'Language Common'),
10629 (1,9,686,'Shadow Bolt'),
10630 (1,9,687,'Demon Skin'),
10631 (1,9,1180,'Daggers'),
10632 (1,9,1843,'Disarm'),
10633 (1,9,2382,'Generic'),
10634 (1,9,2479,'Honorless Target'),
10635 (1,9,3050,'Detect'),
10636 (1,9,3365,'Opening'),
10637 (1,9,5009,'Wands'),
10638 (1,9,5019,'Shoot'),
10639 (1,9,6233,'Closing'),
10640 (1,9,6246,'Closing'),
10641 (1,9,6247,'Opening'),
10642 (1,9,6477,'Opening'),
10643 (1,9,6478,'Opening'),
10644 (1,9,6603,'Attack'),
10645 (1,9,7266,'Duel'),
10646 (1,9,7267,'Grovel'),
10647 (1,9,7355,'Stuck'),
10648 (1,9,8386,'Attacking'),
10649 (1,9,9078,'Cloth'),
10650 (1,9,9125,'Generic'),
10651 (1,9,20597,'Sword Specialization'),
10652 (1,9,20598,'The Human Spirit'),
10653 (1,9,20599,'Diplomacy'),
10654 (1,9,20864,'Mace Specialization'),
10655 (1,9,21651,'Opening'),
10656 (1,9,21652,'Closing'),
10657 (1,9,22027,'Remove Insignia'),
10658 (1,9,22810,'Opening - No Text'),
10659 (1,9,45927,'Summon Friend'),
10660 (1,9,58284,'Chaos Bolt Passive'),
10661 (1,9,58985,'Perception'),
10662 (1,9,59752,'Every Man for Himself'),
10663 (1,9,61437,'Opening'),
10664 (2,1,78,'Heroic Strike'),
10665 (2,1,81,'Dodge'),
10666 (2,1,107,'Block'),
10667 (2,1,196,'One-Handed Axes'),
10668 (2,1,197,'Two-Handed Axes'),
10669 (2,1,201,'One-Handed Swords'),
10670 (2,1,203,'Unarmed'),
10671 (2,1,204,'Defense'),
10672 (2,1,522,'SPELLDEFENSE (DND)'),
10673 (2,1,669,'Language Orcish'),
10674 (2,1,1843,'Disarm'),
10675 (2,1,2382,'Generic'),
10676 (2,1,2457,'Battle Stance'),
10677 (2,1,2479,'Honorless Target'),
10678 (2,1,3050,'Detect'),
10679 (2,1,3365,'Opening'),
10680 (2,1,5301,'Defensive State (DND)'),
10681 (2,1,6233,'Closing'),
10682 (2,1,6246,'Closing'),
10683 (2,1,6247,'Opening'),
10684 (2,1,6477,'Opening'),
10685 (2,1,6478,'Opening'),
10686 (2,1,6603,'Attack'),
10687 (2,1,7266,'Duel'),
10688 (2,1,7267,'Grovel'),
10689 (2,1,7355,'Stuck'),
10690 (2,1,8386,'Attacking'),
10691 (2,1,8737,'Mail'),
10692 (2,1,9077,'Leather'),
10693 (2,1,9078,'Cloth'),
10694 (2,1,9116,'Shield'),
10695 (2,1,9125,'Generic'),
10696 (2,1,20572,'Blood Fury'),
10697 (2,1,20573,'Hardiness'),
10698 (2,1,20574,'Axe Specialization'),
10699 (2,1,21563,'Command'),
10700 (2,1,21651,'Opening'),
10701 (2,1,21652,'Closing'),
10702 (2,1,22027,'Remove Insignia'),
10703 (2,1,22810,'Opening - No Text'),
10704 (2,1,32215,'Victorious State'),
10705 (2,1,45927,'Summon Friend'),
10706 (2,1,61437,'Opening'),
10707 (2,3,75,'Auto Shot'),
10708 (2,3,81,'Dodge'),
10709 (2,3,196,'One-Handed Axes'),
10710 (2,3,203,'Unarmed'),
10711 (2,3,204,'Defense'),
10712 (2,3,264,'Bows'),
10713 (2,3,522,'SPELLDEFENSE (DND)'),
10714 (2,3,669,'Language Orcish'),
10715 (2,3,1843,'Disarm'),
10716 (2,3,2382,'Generic'),
10717 (2,3,2479,'Honorless Target'),
10718 (2,3,2973,'Raptor Strike'),
10719 (2,3,3050,'Detect'),
10720 (2,3,3365,'Opening'),
10721 (2,3,6233,'Closing'),
10722 (2,3,6246,'Closing'),
10723 (2,3,6247,'Opening'),
10724 (2,3,6477,'Opening'),
10725 (2,3,6478,'Opening'),
10726 (2,3,6603,'Attack'),
10727 (2,3,7266,'Duel'),
10728 (2,3,7267,'Grovel'),
10729 (2,3,7355,'Stuck'),
10730 (2,3,8386,'Attacking'),
10731 (2,3,9077,'Leather'),
10732 (2,3,9078,'Cloth'),
10733 (2,3,9125,'Generic'),
10734 (2,3,13358,'Defensive State (DND)'),
10735 (2,3,20572,'Blood Fury'),
10736 (2,3,20573,'Hardiness'),
10737 (2,3,20574,'Axe Specialization'),
10738 (2,3,20576,'Command'),
10739 (2,3,21651,'Opening'),
10740 (2,3,21652,'Closing'),
10741 (2,3,22027,'Remove Insignia'),
10742 (2,3,22810,'Opening - No Text'),
10743 (2,3,24949,'Defensive State 2 (DND)'),
10744 (2,3,34082,'Advantaged State (DND)'),
10745 (2,3,45927,'Summon Friend'),
10746 (2,3,61437,'Opening'),
10747 (2,4,81,'Dodge'),
10748 (2,4,203,'Unarmed'),
10749 (2,4,204,'Defense'),
10750 (2,4,522,'SPELLDEFENSE (DND)'),
10751 (2,4,669,'Language Orcish'),
10752 (2,4,1180,'Daggers'),
10753 (2,4,1752,'Sinister Strike'),
10754 (2,4,1843,'Disarm'),
10755 (2,4,2098,'Eviscerate'),
10756 (2,4,2382,'Generic'),
10757 (2,4,2479,'Honorless Target'),
10758 (2,4,2567,'Thrown'),
10759 (2,4,2764,'Throw'),
10760 (2,4,3050,'Detect'),
10761 (2,4,3365,'Opening'),
10762 (2,4,6233,'Closing'),
10763 (2,4,6246,'Closing'),
10764 (2,4,6247,'Opening'),
10765 (2,4,6477,'Opening'),
10766 (2,4,6478,'Opening'),
10767 (2,4,6603,'Attack'),
10768 (2,4,7266,'Duel'),
10769 (2,4,7267,'Grovel'),
10770 (2,4,7355,'Stuck'),
10771 (2,4,8386,'Attacking'),
10772 (2,4,9077,'Leather'),
10773 (2,4,9078,'Cloth'),
10774 (2,4,9125,'Generic'),
10775 (2,4,16092,'Defensive State (DND)'),
10776 (2,4,20572,'Blood Fury'),
10777 (2,4,20573,'Hardiness'),
10778 (2,4,20574,'Axe Specialization'),
10779 (2,4,21184,'Rogue Passive (DND)'),
10780 (2,4,21563,'Command'),
10781 (2,4,21651,'Opening'),
10782 (2,4,21652,'Closing'),
10783 (2,4,22027,'Remove Insignia'),
10784 (2,4,22810,'Opening - No Text'),
10785 (2,4,45927,'Summon Friend'),
10786 (2,4,61437,'Opening'),
10787 (2,6,81,'Dodge'),
10788 (2,6,196,'One-Handed Axes'),
10789 (2,6,197,'Two-Handed Axes'),
10790 (2,6,200,'Polearms'),
10791 (2,6,201,'One-Handed Swords'),
10792 (2,6,202,'Two-Handed Swords'),
10793 (2,6,203,'Unarmed'),
10794 (2,6,204,'Defense'),
10795 (2,6,522,'SPELLDEFENSE (DND)'),
10796 (2,6,669,'Language Orcish'),
10797 (2,6,674,'Dual Wield'),
10798 (2,6,750,'Plate Mail'),
10799 (2,6,1843,'Disarm'),
10800 (2,6,2382,'Generic'),
10801 (2,6,2479,'Honorless Target'),
10802 (2,6,3050,'Detect'),
10803 (2,6,3127,'Parry'),
10804 (2,6,3275,'Linen Bandage'),
10805 (2,6,3276,'Heavy Linen Bandage'),
10806 (2,6,3277,'Wool Bandage'),
10807 (2,6,3278,'Heavy Wool Bandage'),
10808 (2,6,3365,'Opening'),
10809 (2,6,6233,'Closing'),
10810 (2,6,6246,'Closing'),
10811 (2,6,6247,'Opening'),
10812 (2,6,6477,'Opening'),
10813 (2,6,6478,'Opening'),
10814 (2,6,6603,'Attack'),
10815 (2,6,7266,'Duel'),
10816 (2,6,7267,'Grovel'),
10817 (2,6,7355,'Stuck'),
10818 (2,6,7928,'Silk Bandage'),
10819 (2,6,7929,'Heavy Silk Bandage'),
10820 (2,6,7934,'Anti-Venom'),
10821 (2,6,8386,'Attacking'),
10822 (2,6,8737,'Mail'),
10823 (2,6,9077,'Leather'),
10824 (2,6,9078,'Cloth'),
10825 (2,6,9125,'Generic'),
10826 (2,6,10840,'Mageweave Bandage'),
10827 (2,6,10841,'Heavy Mageweave Bandage'),
10828 (2,6,10846,'First Aid'),
10829 (2,6,18629,'Runecloth Bandage'),
10830 (2,6,18630,'Heavy Runecloth Bandage'),
10831 (2,6,20572,'Blood Fury'),
10832 (2,6,20573,'Hardiness'),
10833 (2,6,20574,'Axe Specialization'),
10834 (2,6,21651,'Opening'),
10835 (2,6,21652,'Closing'),
10836 (2,6,22027,'Remove Insignia'),
10837 (2,6,22810,'Opening - No Text'),
10838 (2,6,33391,'Journeyman Riding'),
10839 (2,6,45462,'Plague Strike'),
10840 (2,6,45477,'Icy Touch'),
10841 (2,6,45902,'Blood Strike'),
10842 (2,6,45903,'Offensive State (DND)'),
10843 (2,6,45927,'Summon Friend'),
10844 (2,6,47541,'Death Coil'),
10845 (2,6,48266,'Blood Presence'),
10846 (2,6,49410,'Forceful Deflection'),
10847 (2,6,49576,'Death Grip'),
10848 (2,6,52665,'Sigil'),
10849 (2,6,54562,'Command'),
10850 (2,6,59879,'Blood Plague'),
10851 (2,6,59921,'Frost Fever'),
10852 (2,6,61437,'Opening'),
10853 (2,6,61455,'Runic Focus'),
10854 (2,7,81,'Dodge'),
10855 (2,7,107,'Block'),
10856 (2,7,198,'One-Handed Maces'),
10857 (2,7,203,'Unarmed'),
10858 (2,7,204,'Defense'),
10859 (2,7,227,'Staves'),
10860 (2,7,331,'Healing Wave'),
10861 (2,7,403,'Lightning Bolt'),
10862 (2,7,522,'SPELLDEFENSE (DND)'),
10863 (2,7,669,'Language Orcish'),
10864 (2,7,1843,'Disarm'),
10865 (2,7,2382,'Generic'),
10866 (2,7,2479,'Honorless Target'),
10867 (2,7,3050,'Detect'),
10868 (2,7,3365,'Opening'),
10869 (2,7,6233,'Closing'),
10870 (2,7,6246,'Closing'),
10871 (2,7,6247,'Opening'),
10872 (2,7,6477,'Opening'),
10873 (2,7,6478,'Opening'),
10874 (2,7,6603,'Attack'),
10875 (2,7,7266,'Duel'),
10876 (2,7,7267,'Grovel'),
10877 (2,7,7355,'Stuck'),
10878 (2,7,8386,'Attacking'),
10879 (2,7,9077,'Leather'),
10880 (2,7,9078,'Cloth'),
10881 (2,7,9116,'Shield'),
10882 (2,7,9125,'Generic'),
10883 (2,7,20573,'Hardiness'),
10884 (2,7,20574,'Axe Specialization'),
10885 (2,7,21563,'Command'),
10886 (2,7,21651,'Opening'),
10887 (2,7,21652,'Closing'),
10888 (2,7,22027,'Remove Insignia'),
10889 (2,7,22810,'Opening - No Text'),
10890 (2,7,27763,'Totem'),
10891 (2,7,33697,'Blood Fury'),
10892 (2,7,45927,'Summon Friend'),
10893 (2,7,61437,'Opening'),
10894 (2,9,81,'Dodge'),
10895 (2,9,203,'Unarmed'),
10896 (2,9,204,'Defense'),
10897 (2,9,522,'SPELLDEFENSE (DND)'),
10898 (2,9,669,'Language Orcish'),
10899 (2,9,686,'Shadow Bolt'),
10900 (2,9,687,'Demon Skin'),
10901 (2,9,1180,'Daggers'),
10902 (2,9,1843,'Disarm'),
10903 (2,9,2382,'Generic'),
10904 (2,9,2479,'Honorless Target'),
10905 (2,9,3050,'Detect'),
10906 (2,9,3365,'Opening'),
10907 (2,9,5009,'Wands'),
10908 (2,9,5019,'Shoot'),
10909 (2,9,6233,'Closing'),
10910 (2,9,6246,'Closing'),
10911 (2,9,6247,'Opening'),
10912 (2,9,6477,'Opening'),
10913 (2,9,6478,'Opening'),
10914 (2,9,6603,'Attack'),
10915 (2,9,7266,'Duel'),
10916 (2,9,7267,'Grovel'),
10917 (2,9,7355,'Stuck'),
10918 (2,9,8386,'Attacking'),
10919 (2,9,9078,'Cloth'),
10920 (2,9,9125,'Generic'),
10921 (2,9,20573,'Hardiness'),
10922 (2,9,20574,'Axe Specialization'),
10923 (2,9,20575,'Command'),
10924 (2,9,21651,'Opening'),
10925 (2,9,21652,'Closing'),
10926 (2,9,22027,'Remove Insignia'),
10927 (2,9,22810,'Opening - No Text'),
10928 (2,9,33702,'Blood Fury'),
10929 (2,9,45927,'Summon Friend'),
10930 (2,9,58284,'Chaos Bolt Passive'),
10931 (2,9,61437,'Opening'),
10932 (3,1,78,'Heroic Strike'),
10933 (3,1,81,'Dodge'),
10934 (3,1,107,'Block'),
10935 (3,1,196,'One-Handed Axes'),
10936 (3,1,197,'Two-Handed Axes'),
10937 (3,1,198,'One-Handed Maces'),
10938 (3,1,203,'Unarmed'),
10939 (3,1,204,'Defense'),
10940 (3,1,522,'SPELLDEFENSE (DND)'),
10941 (3,1,668,'Language Common'),
10942 (3,1,672,'Language Dwarven'),
10943 (3,1,1843,'Disarm'),
10944 (3,1,2382,'Generic'),
10945 (3,1,2457,'Battle Stance'),
10946 (3,1,2479,'Honorless Target'),
10947 (3,1,2481,'Find Treasure'),
10948 (3,1,3050,'Detect'),
10949 (3,1,3365,'Opening'),
10950 (3,1,5301,'Defensive State (DND)'),
10951 (3,1,6233,'Closing'),
10952 (3,1,6246,'Closing'),
10953 (3,1,6247,'Opening'),
10954 (3,1,6477,'Opening'),
10955 (3,1,6478,'Opening'),
10956 (3,1,6603,'Attack'),
10957 (3,1,7266,'Duel'),
10958 (3,1,7267,'Grovel'),
10959 (3,1,7355,'Stuck'),
10960 (3,1,8386,'Attacking'),
10961 (3,1,8737,'Mail'),
10962 (3,1,9077,'Leather'),
10963 (3,1,9078,'Cloth'),
10964 (3,1,9116,'Shield'),
10965 (3,1,9125,'Generic'),
10966 (3,1,20594,'Stoneform'),
10967 (3,1,20595,'Gun Specialization'),
10968 (3,1,20596,'Frost Resistance'),
10969 (3,1,21651,'Opening'),
10970 (3,1,21652,'Closing'),
10971 (3,1,22027,'Remove Insignia'),
10972 (3,1,22810,'Opening - No Text'),
10973 (3,1,32215,'Victorious State'),
10974 (3,1,45927,'Summon Friend'),
10975 (3,1,59224,'Mace Specialization'),
10976 (3,1,61437,'Opening'),
10977 (3,2,81,'Dodge'),
10978 (3,2,107,'Block'),
10979 (3,2,198,'One-Handed Maces'),
10980 (3,2,199,'Two-Handed Maces'),
10981 (3,2,203,'Unarmed'),
10982 (3,2,204,'Defense'),
10983 (3,2,522,'SPELLDEFENSE (DND)'),
10984 (3,2,635,'Holy Light'),
10985 (3,2,668,'Language Common'),
10986 (3,2,672,'Language Dwarven'),
10987 (3,2,1843,'Disarm'),
10988 (3,2,2382,'Generic'),
10989 (3,2,2479,'Honorless Target'),
10990 (3,2,2481,'Find Treasure'),
10991 (3,2,3050,'Detect'),
10992 (3,2,3365,'Opening'),
10993 (3,2,6233,'Closing'),
10994 (3,2,6246,'Closing'),
10995 (3,2,6247,'Opening'),
10996 (3,2,6477,'Opening'),
10997 (3,2,6478,'Opening'),
10998 (3,2,6603,'Attack'),
10999 (3,2,7266,'Duel'),
11000 (3,2,7267,'Grovel'),
11001 (3,2,7355,'Stuck'),
11002 (3,2,8386,'Attacking'),
11003 (3,2,8737,'Mail'),
11004 (3,2,9077,'Leather'),
11005 (3,2,9078,'Cloth'),
11006 (3,2,9116,'Shield'),
11007 (3,2,9125,'Generic'),
11008 (3,2,21084,'Seal of Righteousness'),
11009 (3,2,20594,'Stoneform'),
11010 (3,2,20595,'Gun Specialization'),
11011 (3,2,20596,'Frost Resistance'),
11012 (3,2,21651,'Opening'),
11013 (3,2,21652,'Closing'),
11014 (3,2,22027,'Remove Insignia'),
11015 (3,2,22810,'Opening - No Text'),
11016 (3,2,27762,'Libram'),
11017 (3,2,45927,'Summon Friend'),
11018 (3,2,59224,'Mace Specialization'),
11019 (3,2,61437,'Opening'),
11020 (3,3,75,'Auto Shot'),
11021 (3,3,81,'Dodge'),
11022 (3,3,196,'One-Handed Axes'),
11023 (3,3,203,'Unarmed'),
11024 (3,3,204,'Defense'),
11025 (3,3,266,'Guns'),
11026 (3,3,522,'SPELLDEFENSE (DND)'),
11027 (3,3,668,'Language Common'),
11028 (3,3,672,'Language Dwarven'),
11029 (3,3,1843,'Disarm'),
11030 (3,3,2382,'Generic'),
11031 (3,3,2479,'Honorless Target'),
11032 (3,3,2481,'Find Treasure'),
11033 (3,3,2973,'Raptor Strike'),
11034 (3,3,3050,'Detect'),
11035 (3,3,3365,'Opening'),
11036 (3,3,6233,'Closing'),
11037 (3,3,6246,'Closing'),
11038 (3,3,6247,'Opening'),
11039 (3,3,6477,'Opening'),
11040 (3,3,6478,'Opening'),
11041 (3,3,6603,'Attack'),
11042 (3,3,7266,'Duel'),
11043 (3,3,7267,'Grovel'),
11044 (3,3,7355,'Stuck'),
11045 (3,3,8386,'Attacking'),
11046 (3,3,9077,'Leather'),
11047 (3,3,9078,'Cloth'),
11048 (3,3,9125,'Generic'),
11049 (3,3,13358,'Defensive State (DND)'),
11050 (3,3,20594,'Stoneform'),
11051 (3,3,20595,'Gun Specialization'),
11052 (3,3,20596,'Frost Resistance'),
11053 (3,3,21651,'Opening'),
11054 (3,3,21652,'Closing'),
11055 (3,3,22027,'Remove Insignia'),
11056 (3,3,22810,'Opening - No Text'),
11057 (3,3,24949,'Defensive State 2 (DND)'),
11058 (3,3,34082,'Advantaged State (DND)'),
11059 (3,3,45927,'Summon Friend'),
11060 (3,3,59224,'Mace Specialization'),
11061 (3,3,61437,'Opening'),
11062 (3,4,81,'Dodge'),
11063 (3,4,203,'Unarmed'),
11064 (3,4,204,'Defense'),
11065 (3,4,522,'SPELLDEFENSE (DND)'),
11066 (3,4,668,'Language Common'),
11067 (3,4,672,'Language Dwarven'),
11068 (3,4,1180,'Daggers'),
11069 (3,4,1752,'Sinister Strike'),
11070 (3,4,1843,'Disarm'),
11071 (3,4,2098,'Eviscerate'),
11072 (3,4,2382,'Generic'),
11073 (3,4,2479,'Honorless Target'),
11074 (3,4,2481,'Find Treasure'),
11075 (3,4,2567,'Thrown'),
11076 (3,4,2764,'Throw'),
11077 (3,4,3050,'Detect'),
11078 (3,4,3365,'Opening'),
11079 (3,4,6233,'Closing'),
11080 (3,4,6246,'Closing'),
11081 (3,4,6247,'Opening'),
11082 (3,4,6477,'Opening'),
11083 (3,4,6478,'Opening'),
11084 (3,4,6603,'Attack'),
11085 (3,4,7266,'Duel'),
11086 (3,4,7267,'Grovel'),
11087 (3,4,7355,'Stuck'),
11088 (3,4,8386,'Attacking'),
11089 (3,4,9077,'Leather'),
11090 (3,4,9078,'Cloth'),
11091 (3,4,9125,'Generic'),
11092 (3,4,16092,'Defensive State (DND)'),
11093 (3,4,20594,'Stoneform'),
11094 (3,4,20595,'Gun Specialization'),
11095 (3,4,20596,'Frost Resistance'),
11096 (3,4,21184,'Rogue Passive (DND)'),
11097 (3,4,21651,'Opening'),
11098 (3,4,21652,'Closing'),
11099 (3,4,22027,'Remove Insignia'),
11100 (3,4,22810,'Opening - No Text'),
11101 (3,4,45927,'Summon Friend'),
11102 (3,4,59224,'Mace Specialization'),
11103 (3,4,61437,'Opening'),
11104 (3,5,81,'Dodge'),
11105 (3,5,198,'One-Handed Maces'),
11106 (3,5,203,'Unarmed'),
11107 (3,5,204,'Defense'),
11108 (3,5,522,'SPELLDEFENSE (DND)'),
11109 (3,5,585,'Smite'),
11110 (3,5,668,'Language Common'),
11111 (3,5,672,'Language Dwarven'),
11112 (3,5,1843,'Disarm'),
11113 (3,5,2050,'Lesser Heal'),
11114 (3,5,2382,'Generic'),
11115 (3,5,2479,'Honorless Target'),
11116 (3,5,2481,'Find Treasure'),
11117 (3,5,3050,'Detect'),
11118 (3,5,3365,'Opening'),
11119 (3,5,5009,'Wands'),
11120 (3,5,5019,'Shoot'),
11121 (3,5,6233,'Closing'),
11122 (3,5,6246,'Closing'),
11123 (3,5,6247,'Opening'),
11124 (3,5,6477,'Opening'),
11125 (3,5,6478,'Opening'),
11126 (3,5,6603,'Attack'),
11127 (3,5,7266,'Duel'),
11128 (3,5,7267,'Grovel'),
11129 (3,5,7355,'Stuck'),
11130 (3,5,8386,'Attacking'),
11131 (3,5,9078,'Cloth'),
11132 (3,5,9125,'Generic'),
11133 (3,5,20594,'Stoneform'),
11134 (3,5,20595,'Gun Specialization'),
11135 (3,5,20596,'Frost Resistance'),
11136 (3,5,21651,'Opening'),
11137 (3,5,21652,'Closing'),
11138 (3,5,22027,'Remove Insignia'),
11139 (3,5,22810,'Opening - No Text'),
11140 (3,5,45927,'Summon Friend'),
11141 (3,5,59224,'Mace Specialization'),
11142 (3,5,61437,'Opening'),
11143 (3,6,81,'Dodge'),
11144 (3,6,196,'One-Handed Axes'),
11145 (3,6,197,'Two-Handed Axes'),
11146 (3,6,200,'Polearms'),
11147 (3,6,201,'One-Handed Swords'),
11148 (3,6,202,'Two-Handed Swords'),
11149 (3,6,203,'Unarmed'),
11150 (3,6,204,'Defense'),
11151 (3,6,522,'SPELLDEFENSE (DND)'),
11152 (3,6,668,'Language Common'),
11153 (3,6,672,'Language Dwarven'),
11154 (3,6,674,'Dual Wield'),
11155 (3,6,750,'Plate Mail'),
11156 (3,6,1843,'Disarm'),
11157 (3,6,2382,'Generic'),
11158 (3,6,2479,'Honorless Target'),
11159 (3,6,2481,'Find Treasure'),
11160 (3,6,3050,'Detect'),
11161 (3,6,3127,'Parry'),
11162 (3,6,3275,'Linen Bandage'),
11163 (3,6,3276,'Heavy Linen Bandage'),
11164 (3,6,3277,'Wool Bandage'),
11165 (3,6,3278,'Heavy Wool Bandage'),
11166 (3,6,3365,'Opening'),
11167 (3,6,6233,'Closing'),
11168 (3,6,6246,'Closing'),
11169 (3,6,6247,'Opening'),
11170 (3,6,6477,'Opening'),
11171 (3,6,6478,'Opening'),
11172 (3,6,6603,'Attack'),
11173 (3,6,7266,'Duel'),
11174 (3,6,7267,'Grovel'),
11175 (3,6,7355,'Stuck'),
11176 (3,6,7928,'Silk Bandage'),
11177 (3,6,7929,'Heavy Silk Bandage'),
11178 (3,6,7934,'Anti-Venom'),
11179 (3,6,8386,'Attacking'),
11180 (3,6,8737,'Mail'),
11181 (3,6,9077,'Leather'),
11182 (3,6,9078,'Cloth'),
11183 (3,6,9125,'Generic'),
11184 (3,6,10840,'Mageweave Bandage'),
11185 (3,6,10841,'Heavy Mageweave Bandage'),
11186 (3,6,10846,'First Aid'),
11187 (3,6,18629,'Runecloth Bandage'),
11188 (3,6,18630,'Heavy Runecloth Bandage'),
11189 (3,6,20594,'Stoneform'),
11190 (3,6,20595,'Gun Specialization'),
11191 (3,6,20596,'Frost Resistance'),
11192 (3,6,21651,'Opening'),
11193 (3,6,21652,'Closing'),
11194 (3,6,22027,'Remove Insignia'),
11195 (3,6,22810,'Opening - No Text'),
11196 (3,6,33391,'Journeyman Riding'),
11197 (3,6,45462,'Plague Strike'),
11198 (3,6,45477,'Icy Touch'),
11199 (3,6,45902,'Blood Strike'),
11200 (3,6,45903,'Offensive State (DND)'),
11201 (3,6,45927,'Summon Friend'),
11202 (3,6,47541,'Death Coil'),
11203 (3,6,48266,'Blood Presence'),
11204 (3,6,49410,'Forceful Deflection'),
11205 (3,6,49576,'Death Grip'),
11206 (3,6,52665,'Sigil'),
11207 (3,6,59224,'Mace Specialization'),
11208 (3,6,59879,'Blood Plague'),
11209 (3,6,59921,'Frost Fever'),
11210 (3,6,61437,'Opening'),
11211 (3,6,61455,'Runic Focus'),
11212 (4,1,78,'Heroic Strike'),
11213 (4,1,81,'Dodge'),
11214 (4,1,107,'Block'),
11215 (4,1,198,'One-Handed Maces'),
11216 (4,1,201,'One-Handed Swords'),
11217 (4,1,203,'Unarmed'),
11218 (4,1,204,'Defense'),
11219 (4,1,522,'SPELLDEFENSE (DND)'),
11220 (4,1,668,'Language Common'),
11221 (4,1,671,'Language Darnassian'),
11222 (4,1,1180,'Daggers'),
11223 (4,1,1843,'Disarm'),
11224 (4,1,2382,'Generic'),
11225 (4,1,2457,'Battle Stance'),
11226 (4,1,2479,'Honorless Target'),
11227 (4,1,3050,'Detect'),
11228 (4,1,3365,'Opening'),
11229 (4,1,5301,'Defensive State (DND)'),
11230 (4,1,6233,'Closing'),
11231 (4,1,6246,'Closing'),
11232 (4,1,6247,'Opening'),
11233 (4,1,6477,'Opening'),
11234 (4,1,6478,'Opening'),
11235 (4,1,6603,'Attack'),
11236 (4,1,7266,'Duel'),
11237 (4,1,7267,'Grovel'),
11238 (4,1,7355,'Stuck'),
11239 (4,1,8386,'Attacking'),
11240 (4,1,8737,'Mail'),
11241 (4,1,9077,'Leather'),
11242 (4,1,9078,'Cloth'),
11243 (4,1,9116,'Shield'),
11244 (4,1,9125,'Generic'),
11245 (4,1,20582,'Quickness'),
11246 (4,1,20583,'Nature Resistance'),
11247 (4,1,20585,'Wisp Spirit'),
11248 (4,1,21651,'Opening'),
11249 (4,1,21652,'Closing'),
11250 (4,1,22027,'Remove Insignia'),
11251 (4,1,22810,'Opening - No Text'),
11252 (4,1,32215,'Victorious State'),
11253 (4,1,45927,'Summon Friend'),
11254 (4,1,58984,'Shadowmelt'),
11255 (4,1,61437,'Opening'),
11256 (4,3,75,'Auto Shot'),
11257 (4,3,81,'Dodge'),
11258 (4,3,203,'Unarmed'),
11259 (4,3,204,'Defense'),
11260 (4,3,264,'Bows'),
11261 (4,3,522,'SPELLDEFENSE (DND)'),
11262 (4,3,668,'Language Common'),
11263 (4,3,671,'Language Darnassian'),
11264 (4,3,1180,'Daggers'),
11265 (4,3,1843,'Disarm'),
11266 (4,3,2382,'Generic'),
11267 (4,3,2479,'Honorless Target'),
11268 (4,3,2973,'Raptor Strike'),
11269 (4,3,3050,'Detect'),
11270 (4,3,3365,'Opening'),
11271 (4,3,6233,'Closing'),
11272 (4,3,6246,'Closing'),
11273 (4,3,6247,'Opening'),
11274 (4,3,6477,'Opening'),
11275 (4,3,6478,'Opening'),
11276 (4,3,6603,'Attack'),
11277 (4,3,7266,'Duel'),
11278 (4,3,7267,'Grovel'),
11279 (4,3,7355,'Stuck'),
11280 (4,3,8386,'Attacking'),
11281 (4,3,9077,'Leather'),
11282 (4,3,9078,'Cloth'),
11283 (4,3,9125,'Generic'),
11284 (4,3,13358,'Defensive State (DND)'),
11285 (4,3,20582,'Quickness'),
11286 (4,3,20583,'Nature Resistance'),
11287 (4,3,20585,'Wisp Spirit'),
11288 (4,3,21651,'Opening'),
11289 (4,3,21652,'Closing'),
11290 (4,3,22027,'Remove Insignia'),
11291 (4,3,22810,'Opening - No Text'),
11292 (4,3,24949,'Defensive State 2 (DND)'),
11293 (4,3,34082,'Advantaged State (DND)'),
11294 (4,3,45927,'Summon Friend'),
11295 (4,3,58984,'Shadowmelt'),
11296 (4,3,61437,'Opening'),
11297 (4,4,81,'Dodge'),
11298 (4,4,203,'Unarmed'),
11299 (4,4,204,'Defense'),
11300 (4,4,522,'SPELLDEFENSE (DND)'),
11301 (4,4,668,'Language Common'),
11302 (4,4,671,'Language Darnassian'),
11303 (4,4,1180,'Daggers'),
11304 (4,4,1752,'Sinister Strike'),
11305 (4,4,1843,'Disarm'),
11306 (4,4,2098,'Eviscerate'),
11307 (4,4,2382,'Generic'),
11308 (4,4,2479,'Honorless Target'),
11309 (4,4,2567,'Thrown'),
11310 (4,4,2764,'Throw'),
11311 (4,4,3050,'Detect'),
11312 (4,4,3365,'Opening'),
11313 (4,4,6233,'Closing'),
11314 (4,4,6246,'Closing'),
11315 (4,4,6247,'Opening'),
11316 (4,4,6477,'Opening'),
11317 (4,4,6478,'Opening'),
11318 (4,4,6603,'Attack'),
11319 (4,4,7266,'Duel'),
11320 (4,4,7267,'Grovel'),
11321 (4,4,7355,'Stuck'),
11322 (4,4,8386,'Attacking'),
11323 (4,4,9077,'Leather'),
11324 (4,4,9078,'Cloth'),
11325 (4,4,9125,'Generic'),
11326 (4,4,16092,'Defensive State (DND)'),
11327 (4,4,20582,'Quickness'),
11328 (4,4,20583,'Nature Resistance'),
11329 (4,4,20585,'Wisp Spirit'),
11330 (4,4,21184,'Rogue Passive (DND)'),
11331 (4,4,21651,'Opening'),
11332 (4,4,21652,'Closing'),
11333 (4,4,22027,'Remove Insignia'),
11334 (4,4,22810,'Opening - No Text'),
11335 (4,4,45927,'Summon Friend'),
11336 (4,4,58984,'Shadowmelt'),
11337 (4,4,61437,'Opening'),
11338 (4,5,81,'Dodge'),
11339 (4,5,198,'One-Handed Maces'),
11340 (4,5,203,'Unarmed'),
11341 (4,5,204,'Defense'),
11342 (4,5,522,'SPELLDEFENSE (DND)'),
11343 (4,5,585,'Smite'),
11344 (4,5,668,'Language Common'),
11345 (4,5,671,'Language Darnassian'),
11346 (4,5,1843,'Disarm'),
11347 (4,5,2050,'Lesser Heal'),
11348 (4,5,2382,'Generic'),
11349 (4,5,2479,'Honorless Target'),
11350 (4,5,3050,'Detect'),
11351 (4,5,3365,'Opening'),
11352 (4,5,5009,'Wands'),
11353 (4,5,5019,'Shoot'),
11354 (4,5,6233,'Closing'),
11355 (4,5,6246,'Closing'),
11356 (4,5,6247,'Opening'),
11357 (4,5,6477,'Opening'),
11358 (4,5,6478,'Opening'),
11359 (4,5,6603,'Attack'),
11360 (4,5,7266,'Duel'),
11361 (4,5,7267,'Grovel'),
11362 (4,5,7355,'Stuck'),
11363 (4,5,8386,'Attacking'),
11364 (4,5,9078,'Cloth'),
11365 (4,5,9125,'Generic'),
11366 (4,5,20582,'Quickness'),
11367 (4,5,20583,'Nature Resistance'),
11368 (4,5,20585,'Wisp Spirit'),
11369 (4,5,21651,'Opening'),
11370 (4,5,21652,'Closing'),
11371 (4,5,22027,'Remove Insignia'),
11372 (4,5,22810,'Opening - No Text'),
11373 (4,5,45927,'Summon Friend'),
11374 (4,5,58984,'Shadowmelt'),
11375 (4,5,61437,'Opening'),
11376 (4,6,81,'Dodge'),
11377 (4,6,196,'One-Handed Axes'),
11378 (4,6,197,'Two-Handed Axes'),
11379 (4,6,200,'Polearms'),
11380 (4,6,201,'One-Handed Swords'),
11381 (4,6,202,'Two-Handed Swords'),
11382 (4,6,203,'Unarmed'),
11383 (4,6,204,'Defense'),
11384 (4,6,522,'SPELLDEFENSE (DND)'),
11385 (4,6,668,'Language Common'),
11386 (4,6,671,'Language Darnassian'),
11387 (4,6,674,'Dual Wield'),
11388 (4,6,750,'Plate Mail'),
11389 (4,6,1843,'Disarm'),
11390 (4,6,2382,'Generic'),
11391 (4,6,2479,'Honorless Target'),
11392 (4,6,3050,'Detect'),
11393 (4,6,3127,'Parry'),
11394 (4,6,3275,'Linen Bandage'),
11395 (4,6,3276,'Heavy Linen Bandage'),
11396 (4,6,3277,'Wool Bandage'),
11397 (4,6,3278,'Heavy Wool Bandage'),
11398 (4,6,3365,'Opening'),
11399 (4,6,6233,'Closing'),
11400 (4,6,6246,'Closing'),
11401 (4,6,6247,'Opening'),
11402 (4,6,6477,'Opening'),
11403 (4,6,6478,'Opening'),
11404 (4,6,6603,'Attack'),
11405 (4,6,7266,'Duel'),
11406 (4,6,7267,'Grovel'),
11407 (4,6,7355,'Stuck'),
11408 (4,6,7928,'Silk Bandage'),
11409 (4,6,7929,'Heavy Silk Bandage'),
11410 (4,6,7934,'Anti-Venom'),
11411 (4,6,8386,'Attacking'),
11412 (4,6,8737,'Mail'),
11413 (4,6,9077,'Leather'),
11414 (4,6,9078,'Cloth'),
11415 (4,6,9125,'Generic'),
11416 (4,6,10840,'Mageweave Bandage'),
11417 (4,6,10841,'Heavy Mageweave Bandage'),
11418 (4,6,10846,'First Aid'),
11419 (4,6,18629,'Runecloth Bandage'),
11420 (4,6,18630,'Heavy Runecloth Bandage'),
11421 (4,6,20582,'Quickness'),
11422 (4,6,20583,'Nature Resistance'),
11423 (4,6,20585,'Wisp Spirit'),
11424 (4,6,21651,'Opening'),
11425 (4,6,21652,'Closing'),
11426 (4,6,22027,'Remove Insignia'),
11427 (4,6,22810,'Opening - No Text'),
11428 (4,6,33391,'Journeyman Riding'),
11429 (4,6,45462,'Plague Strike'),
11430 (4,6,45477,'Icy Touch'),
11431 (4,6,45902,'Blood Strike'),
11432 (4,6,45903,'Offensive State (DND)'),
11433 (4,6,45927,'Summon Friend'),
11434 (4,6,47541,'Death Coil'),
11435 (4,6,48266,'Blood Presence'),
11436 (4,6,49410,'Forceful Deflection'),
11437 (4,6,49576,'Death Grip'),
11438 (4,6,52665,'Sigil'),
11439 (4,6,58984,'Shadowmeld'),
11440 (4,6,59879,'Blood Plague'),
11441 (4,6,59921,'Frost Fever'),
11442 (4,6,61437,'Opening'),
11443 (4,6,61455,'Runic Focus'),
11444 (4,11,81,'Dodge'),
11445 (4,11,203,'Unarmed'),
11446 (4,11,204,'Defense'),
11447 (4,11,227,'Staves'),
11448 (4,11,522,'SPELLDEFENSE (DND)'),
11449 (4,11,668,'Language Common'),
11450 (4,11,671,'Language Darnassian'),
11451 (4,11,1180,'Daggers'),
11452 (4,11,1843,'Disarm'),
11453 (4,11,2382,'Generic'),
11454 (4,11,2479,'Honorless Target'),
11455 (4,11,3050,'Detect'),
11456 (4,11,3365,'Opening'),
11457 (4,11,5176,'Wrath'),
11458 (4,11,5185,'Healing Touch'),
11459 (4,11,6233,'Closing'),
11460 (4,11,6246,'Closing'),
11461 (4,11,6247,'Opening'),
11462 (4,11,6477,'Opening'),
11463 (4,11,6478,'Opening'),
11464 (4,11,6603,'Attack'),
11465 (4,11,7266,'Duel'),
11466 (4,11,7267,'Grovel'),
11467 (4,11,7355,'Stuck'),
11468 (4,11,8386,'Attacking'),
11469 (4,11,9077,'Leather'),
11470 (4,11,9078,'Cloth'),
11471 (4,11,9125,'Generic'),
11472 (4,11,20582,'Quickness'),
11473 (4,11,20583,'Nature Resistance'),
11474 (4,11,20585,'Wisp Spirit'),
11475 (4,11,21651,'Opening'),
11476 (4,11,21652,'Closing'),
11477 (4,11,22027,'Remove Insignia'),
11478 (4,11,22810,'Opening - No Text'),
11479 (4,11,27764,'Fetish'),
11480 (4,11,45927,'Summon Friend'),
11481 (4,11,58984,'Shadowmelt'),
11482 (4,11,61437,'Opening'),
11483 (5,1,78,'Heroic Strike'),
11484 (5,1,81,'Dodge'),
11485 (5,1,107,'Block'),
11486 (5,1,201,'One-Handed Swords'),
11487 (5,1,202,'Two-Handed Swords'),
11488 (5,1,203,'Unarmed'),
11489 (5,1,204,'Defense'),
11490 (5,1,522,'SPELLDEFENSE (DND)'),
11491 (5,1,669,'Language Orcish'),
11492 (5,1,1180,'Daggers'),
11493 (5,1,1843,'Disarm'),
11494 (5,1,2382,'Generic'),
11495 (5,1,2457,'Battle Stance'),
11496 (5,1,2479,'Honorless Target'),
11497 (5,1,3050,'Detect'),
11498 (5,1,3365,'Opening'),
11499 (5,1,5227,'Underwater Breathing'),
11500 (5,1,5301,'Defensive State (DND)'),
11501 (5,1,6233,'Closing'),
11502 (5,1,6246,'Closing'),
11503 (5,1,6247,'Opening'),
11504 (5,1,6477,'Opening'),
11505 (5,1,6478,'Opening'),
11506 (5,1,6603,'Attack'),
11507 (5,1,7266,'Duel'),
11508 (5,1,7267,'Grovel'),
11509 (5,1,7355,'Stuck'),
11510 (5,1,7744,'Will of the Forsaken'),
11511 (5,1,8386,'Attacking'),
11512 (5,1,8737,'Mail'),
11513 (5,1,9077,'Leather'),
11514 (5,1,9078,'Cloth'),
11515 (5,1,9116,'Shield'),
11516 (5,1,9125,'Generic'),
11517 (5,1,17737,'Language Gutterspeak'),
11518 (5,1,20577,'Cannibalize'),
11519 (5,1,20579,'Shadow Resistance'),
11520 (5,1,21651,'Opening'),
11521 (5,1,21652,'Closing'),
11522 (5,1,22027,'Remove Insignia'),
11523 (5,1,22810,'Opening - No Text'),
11524 (5,1,32215,'Victorious State'),
11525 (5,1,45927,'Summon Friend'),
11526 (5,1,61437,'Opening'),
11527 (5,4,81,'Dodge'),
11528 (5,4,203,'Unarmed'),
11529 (5,4,204,'Defense'),
11530 (5,4,522,'SPELLDEFENSE (DND)'),
11531 (5,4,669,'Language Orcish'),
11532 (5,4,1180,'Daggers'),
11533 (5,4,1752,'Sinister Strike'),
11534 (5,4,1843,'Disarm'),
11535 (5,4,2098,'Eviscerate'),
11536 (5,4,2382,'Generic'),
11537 (5,4,2479,'Honorless Target'),
11538 (5,4,2567,'Thrown'),
11539 (5,4,2764,'Throw'),
11540 (5,4,3050,'Detect'),
11541 (5,4,3365,'Opening'),
11542 (5,4,5227,'Underwater Breathing'),
11543 (5,4,6233,'Closing'),
11544 (5,4,6246,'Closing'),
11545 (5,4,6247,'Opening'),
11546 (5,4,6477,'Opening'),
11547 (5,4,6478,'Opening'),
11548 (5,4,6603,'Attack'),
11549 (5,4,7266,'Duel'),
11550 (5,4,7267,'Grovel'),
11551 (5,4,7355,'Stuck'),
11552 (5,4,7744,'Will of the Forsaken'),
11553 (5,4,8386,'Attacking'),
11554 (5,4,9077,'Leather'),
11555 (5,4,9078,'Cloth'),
11556 (5,4,9125,'Generic'),
11557 (5,4,16092,'Defensive State (DND)'),
11558 (5,4,17737,'Language Gutterspeak'),
11559 (5,4,20577,'Cannibalize'),
11560 (5,4,20579,'Shadow Resistance'),
11561 (5,4,21184,'Rogue Passive (DND)'),
11562 (5,4,21651,'Opening'),
11563 (5,4,21652,'Closing'),
11564 (5,4,22027,'Remove Insignia'),
11565 (5,4,22810,'Opening - No Text'),
11566 (5,4,45927,'Summon Friend'),
11567 (5,4,61437,'Opening'),
11568 (5,5,81,'Dodge'),
11569 (5,5,198,'One-Handed Maces'),
11570 (5,5,203,'Unarmed'),
11571 (5,5,204,'Defense'),
11572 (5,5,522,'SPELLDEFENSE (DND)'),
11573 (5,5,585,'Smite'),
11574 (5,5,669,'Language Orcish'),
11575 (5,5,1843,'Disarm'),
11576 (5,5,2050,'Lesser Heal'),
11577 (5,5,2382,'Generic'),
11578 (5,5,2479,'Honorless Target'),
11579 (5,5,3050,'Detect'),
11580 (5,5,3365,'Opening'),
11581 (5,5,5009,'Wands'),
11582 (5,5,5019,'Shoot'),
11583 (5,5,5227,'Underwater Breathing'),
11584 (5,5,6233,'Closing'),
11585 (5,5,6246,'Closing'),
11586 (5,5,6247,'Opening'),
11587 (5,5,6477,'Opening'),
11588 (5,5,6478,'Opening'),
11589 (5,5,6603,'Attack'),
11590 (5,5,7266,'Duel'),
11591 (5,5,7267,'Grovel'),
11592 (5,5,7355,'Stuck'),
11593 (5,5,7744,'Will of the Forsaken'),
11594 (5,5,8386,'Attacking'),
11595 (5,5,9078,'Cloth'),
11596 (5,5,9125,'Generic'),
11597 (5,5,17737,'Language Gutterspeak'),
11598 (5,5,20577,'Cannibalize'),
11599 (5,5,20579,'Shadow Resistance'),
11600 (5,5,21651,'Opening'),
11601 (5,5,21652,'Closing'),
11602 (5,5,22027,'Remove Insignia'),
11603 (5,5,22810,'Opening - No Text'),
11604 (5,5,45927,'Summon Friend'),
11605 (5,5,61437,'Opening'),
11606 (5,6,81,'Dodge'),
11607 (5,6,196,'One-Handed Axes'),
11608 (5,6,197,'Two-Handed Axes'),
11609 (5,6,200,'Polearms'),
11610 (5,6,201,'One-Handed Swords'),
11611 (5,6,202,'Two-Handed Swords'),
11612 (5,6,203,'Unarmed'),
11613 (5,6,204,'Defense'),
11614 (5,6,522,'SPELLDEFENSE (DND)'),
11615 (5,6,669,'Language Orcish'),
11616 (5,6,674,'Dual Wield'),
11617 (5,6,750,'Plate Mail'),
11618 (5,6,1843,'Disarm'),
11619 (5,6,2382,'Generic'),
11620 (5,6,2479,'Honorless Target'),
11621 (5,6,3050,'Detect'),
11622 (5,6,3127,'Parry'),
11623 (5,6,3275,'Linen Bandage'),
11624 (5,6,3276,'Heavy Linen Bandage'),
11625 (5,6,3277,'Wool Bandage'),
11626 (5,6,3278,'Heavy Wool Bandage'),
11627 (5,6,3365,'Opening'),
11628 (5,6,5227,'Underwater Breathing'),
11629 (5,6,6233,'Closing'),
11630 (5,6,6246,'Closing'),
11631 (5,6,6247,'Opening'),
11632 (5,6,6477,'Opening'),
11633 (5,6,6478,'Opening'),
11634 (5,6,6603,'Attack'),
11635 (5,6,7266,'Duel'),
11636 (5,6,7267,'Grovel'),
11637 (5,6,7355,'Stuck'),
11638 (5,6,7744,'Will of the Forsaken'),
11639 (5,6,7928,'Silk Bandage'),
11640 (5,6,7929,'Heavy Silk Bandage'),
11641 (5,6,7934,'Anti-Venom'),
11642 (5,6,8386,'Attacking'),
11643 (5,6,8737,'Mail'),
11644 (5,6,9077,'Leather'),
11645 (5,6,9078,'Cloth'),
11646 (5,6,9125,'Generic'),
11647 (5,6,10840,'Mageweave Bandage'),
11648 (5,6,10841,'Heavy Mageweave Bandage'),
11649 (5,6,10846,'First Aid'),
11650 (5,6,17737,'Language Gutterspeak'),
11651 (5,6,18629,'Runecloth Bandage'),
11652 (5,6,18630,'Heavy Runecloth Bandage'),
11653 (5,6,20577,'Cannibalize'),
11654 (5,6,20579,'Shadow Resistance'),
11655 (5,6,21651,'Opening'),
11656 (5,6,21652,'Closing'),
11657 (5,6,22027,'Remove Insignia'),
11658 (5,6,22810,'Opening - No Text'),
11659 (5,6,33391,'Journeyman Riding'),
11660 (5,6,45462,'Plague Strike'),
11661 (5,6,45477,'Icy Touch'),
11662 (5,6,45902,'Blood Strike'),
11663 (5,6,45903,'Offensive State (DND)'),
11664 (5,6,45927,'Summon Friend'),
11665 (5,6,47541,'Death Coil'),
11666 (5,6,48266,'Blood Presence'),
11667 (5,6,49410,'Forceful Deflection'),
11668 (5,6,49576,'Death Grip'),
11669 (5,6,52665,'Sigil'),
11670 (5,6,59879,'Blood Plague'),
11671 (5,6,59921,'Frost Fever'),
11672 (5,6,61437,'Opening'),
11673 (5,6,61455,'Runic Focus'),
11674 (5,8,81,'Dodge'),
11675 (5,8,133,'Fireball'),
11676 (5,8,168,'Frost Armor'),
11677 (5,8,203,'Unarmed'),
11678 (5,8,204,'Defense'),
11679 (5,8,227,'Staves'),
11680 (5,8,522,'SPELLDEFENSE (DND)'),
11681 (5,8,669,'Language Orcish'),
11682 (5,8,1843,'Disarm'),
11683 (5,8,2382,'Generic'),
11684 (5,8,2479,'Honorless Target'),
11685 (5,8,3050,'Detect'),
11686 (5,8,3365,'Opening'),
11687 (5,8,5009,'Wands'),
11688 (5,8,5019,'Shoot'),
11689 (5,8,5227,'Underwater Breathing'),
11690 (5,8,6233,'Closing'),
11691 (5,8,6246,'Closing'),
11692 (5,8,6247,'Opening'),
11693 (5,8,6477,'Opening'),
11694 (5,8,6478,'Opening'),
11695 (5,8,6603,'Attack'),
11696 (5,8,7266,'Duel'),
11697 (5,8,7267,'Grovel'),
11698 (5,8,7355,'Stuck'),
11699 (5,8,7744,'Will of the Forsaken'),
11700 (5,8,8386,'Attacking'),
11701 (5,8,9078,'Cloth'),
11702 (5,8,9125,'Generic'),
11703 (5,8,17737,'Language Gutterspeak'),
11704 (5,8,20577,'Cannibalize'),
11705 (5,8,20579,'Shadow Resistance'),
11706 (5,8,21651,'Opening'),
11707 (5,8,21652,'Closing'),
11708 (5,8,22027,'Remove Insignia'),
11709 (5,8,22810,'Opening - No Text'),
11710 (5,8,45927,'Summon Friend'),
11711 (5,8,61437,'Opening'),
11712 (5,9,81,'Dodge'),
11713 (5,9,203,'Unarmed'),
11714 (5,9,204,'Defense'),
11715 (5,9,522,'SPELLDEFENSE (DND)'),
11716 (5,9,669,'Language Orcish'),
11717 (5,9,686,'Shadow Bolt'),
11718 (5,9,687,'Demon Skin'),
11719 (5,9,1180,'Daggers'),
11720 (5,9,1843,'Disarm'),
11721 (5,9,2382,'Generic'),
11722 (5,9,2479,'Honorless Target'),
11723 (5,9,3050,'Detect'),
11724 (5,9,3365,'Opening'),
11725 (5,9,5009,'Wands'),
11726 (5,9,5019,'Shoot'),
11727 (5,9,5227,'Underwater Breathing'),
11728 (5,9,6233,'Closing'),
11729 (5,9,6246,'Closing'),
11730 (5,9,6247,'Opening'),
11731 (5,9,6477,'Opening'),
11732 (5,9,6478,'Opening'),
11733 (5,9,6603,'Attack'),
11734 (5,9,7266,'Duel'),
11735 (5,9,7267,'Grovel'),
11736 (5,9,7355,'Stuck'),
11737 (5,9,7744,'Will of the Forsaken'),
11738 (5,9,8386,'Attacking'),
11739 (5,9,9078,'Cloth'),
11740 (5,9,9125,'Generic'),
11741 (5,9,17737,'Language Gutterspeak'),
11742 (5,9,20577,'Cannibalize'),
11743 (5,9,20579,'Shadow Resistance'),
11744 (5,9,21651,'Opening'),
11745 (5,9,21652,'Closing'),
11746 (5,9,22027,'Remove Insignia'),
11747 (5,9,22810,'Opening - No Text'),
11748 (5,9,45927,'Summon Friend'),
11749 (5,9,58284,'Chaos Bolt Passive'),
11750 (5,9,61437,'Opening'),
11751 (6,1,78,'Heroic Strike'),
11752 (6,1,81,'Dodge'),
11753 (6,1,107,'Block'),
11754 (6,1,196,'One-Handed Axes'),
11755 (6,1,198,'One-Handed Maces'),
11756 (6,1,199,'Two-Handed Maces'),
11757 (6,1,203,'Unarmed'),
11758 (6,1,204,'Defense'),
11759 (6,1,522,'SPELLDEFENSE (DND)'),
11760 (6,1,669,'Language Orcish'),
11761 (6,1,670,'Language Taurahe'),
11762 (6,1,1843,'Disarm'),
11763 (6,1,2382,'Generic'),
11764 (6,1,2457,'Battle Stance'),
11765 (6,1,2479,'Honorless Target'),
11766 (6,1,3050,'Detect'),
11767 (6,1,3365,'Opening'),
11768 (6,1,5301,'Defensive State (DND)'),
11769 (6,1,6233,'Closing'),
11770 (6,1,6246,'Closing'),
11771 (6,1,6247,'Opening'),
11772 (6,1,6477,'Opening'),
11773 (6,1,6478,'Opening'),
11774 (6,1,6603,'Attack'),
11775 (6,1,7266,'Duel'),
11776 (6,1,7267,'Grovel'),
11777 (6,1,7355,'Stuck'),
11778 (6,1,8386,'Attacking'),
11779 (6,1,8737,'Mail'),
11780 (6,1,9077,'Leather'),
11781 (6,1,9078,'Cloth'),
11782 (6,1,9116,'Shield'),
11783 (6,1,9125,'Generic'),
11784 (6,1,20549,'War Stomp'),
11785 (6,1,20550,'Endurance'),
11786 (6,1,20551,'Nature Resistance'),
11787 (6,1,20552,'Cultivation'),
11788 (6,1,21651,'Opening'),
11789 (6,1,21652,'Closing'),
11790 (6,1,22027,'Remove Insignia'),
11791 (6,1,22810,'Opening - No Text'),
11792 (6,1,32215,'Victorious State'),
11793 (6,1,45927,'Summon Friend'),
11794 (6,1,61437,'Opening'),
11795 (6,3,75,'Auto Shot'),
11796 (6,3,81,'Dodge'),
11797 (6,3,196,'One-Handed Axes'),
11798 (6,3,203,'Unarmed'),
11799 (6,3,204,'Defense'),
11800 (6,3,266,'Guns'),
11801 (6,3,522,'SPELLDEFENSE (DND)'),
11802 (6,3,669,'Language Orcish'),
11803 (6,3,670,'Language Taurahe'),
11804 (6,3,1843,'Disarm'),
11805 (6,3,2382,'Generic'),
11806 (6,3,2479,'Honorless Target'),
11807 (6,3,2973,'Raptor Strike'),
11808 (6,3,3050,'Detect'),
11809 (6,3,3365,'Opening'),
11810 (6,3,6233,'Closing'),
11811 (6,3,6246,'Closing'),
11812 (6,3,6247,'Opening'),
11813 (6,3,6477,'Opening'),
11814 (6,3,6478,'Opening'),
11815 (6,3,6603,'Attack'),
11816 (6,3,7266,'Duel'),
11817 (6,3,7267,'Grovel'),
11818 (6,3,7355,'Stuck'),
11819 (6,3,8386,'Attacking'),
11820 (6,3,9077,'Leather'),
11821 (6,3,9078,'Cloth'),
11822 (6,3,9125,'Generic'),
11823 (6,3,13358,'Defensive State (DND)'),
11824 (6,3,20549,'War Stomp'),
11825 (6,3,20550,'Endurance'),
11826 (6,3,20551,'Nature Resistance'),
11827 (6,3,20552,'Cultivation'),
11828 (6,3,21651,'Opening'),
11829 (6,3,21652,'Closing'),
11830 (6,3,22027,'Remove Insignia'),
11831 (6,3,22810,'Opening - No Text'),
11832 (6,3,24949,'Defensive State 2 (DND)'),
11833 (6,3,34082,'Advantaged State (DND)'),
11834 (6,3,45927,'Summon Friend'),
11835 (6,3,61437,'Opening'),
11836 (6,6,81,'Dodge'),
11837 (6,6,196,'One-Handed Axes'),
11838 (6,6,197,'Two-Handed Axes'),
11839 (6,6,200,'Polearms'),
11840 (6,6,201,'One-Handed Swords'),
11841 (6,6,202,'Two-Handed Swords'),
11842 (6,6,203,'Unarmed'),
11843 (6,6,204,'Defense'),
11844 (6,6,522,'SPELLDEFENSE (DND)'),
11845 (6,6,669,'Language Orcish'),
11846 (6,6,670,'Language Taurahe'),
11847 (6,6,674,'Dual Wield'),
11848 (6,6,750,'Plate Mail'),
11849 (6,6,1843,'Disarm'),
11850 (6,6,2382,'Generic'),
11851 (6,6,2479,'Honorless Target'),
11852 (6,6,3050,'Detect'),
11853 (6,6,3127,'Parry'),
11854 (6,6,3275,'Linen Bandage'),
11855 (6,6,3276,'Heavy Linen Bandage'),
11856 (6,6,3277,'Wool Bandage'),
11857 (6,6,3278,'Heavy Wool Bandage'),
11858 (6,6,3365,'Opening'),
11859 (6,6,6233,'Closing'),
11860 (6,6,6246,'Closing'),
11861 (6,6,6247,'Opening'),
11862 (6,6,6477,'Opening'),
11863 (6,6,6478,'Opening'),
11864 (6,6,6603,'Attack'),
11865 (6,6,7266,'Duel'),
11866 (6,6,7267,'Grovel'),
11867 (6,6,7355,'Stuck'),
11868 (6,6,7928,'Silk Bandage'),
11869 (6,6,7929,'Heavy Silk Bandage'),
11870 (6,6,7934,'Anti-Venom'),
11871 (6,6,8386,'Attacking'),
11872 (6,6,8737,'Mail'),
11873 (6,6,9077,'Leather'),
11874 (6,6,9078,'Cloth'),
11875 (6,6,9125,'Generic'),
11876 (6,6,10840,'Mageweave Bandage'),
11877 (6,6,10841,'Heavy Mageweave Bandage'),
11878 (6,6,10846,'First Aid'),
11879 (6,6,18629,'Runecloth Bandage'),
11880 (6,6,18630,'Heavy Runecloth Bandage'),
11881 (6,6,20549,'War Stomp'),
11882 (6,6,20550,'Endurance'),
11883 (6,6,20551,'Nature Resistance'),
11884 (6,6,20552,'Cultivation'),
11885 (6,6,21651,'Opening'),
11886 (6,6,21652,'Closing'),
11887 (6,6,22027,'Remove Insignia'),
11888 (6,6,22810,'Opening - No Text'),
11889 (6,6,33391,'Journeyman Riding'),
11890 (6,6,45462,'Plague Strike'),
11891 (6,6,45477,'Icy Touch'),
11892 (6,6,45902,'Blood Strike'),
11893 (6,6,45903,'Offensive State (DND)'),
11894 (6,6,45927,'Summon Friend'),
11895 (6,6,47541,'Death Coil'),
11896 (6,6,48266,'Blood Presence'),
11897 (6,6,49410,'Forceful Deflection'),
11898 (6,6,49576,'Death Grip'),
11899 (6,6,52665,'Sigil'),
11900 (6,6,59879,'Blood Plague'),
11901 (6,6,59921,'Frost Fever'),
11902 (6,6,61437,'Opening'),
11903 (6,6,61455,'Runic Focus'),
11904 (6,7,81,'Dodge'),
11905 (6,7,107,'Block'),
11906 (6,7,198,'One-Handed Maces'),
11907 (6,7,203,'Unarmed'),
11908 (6,7,204,'Defense'),
11909 (6,7,227,'Staves'),
11910 (6,7,331,'Healing Wave'),
11911 (6,7,403,'Lightning Bolt'),
11912 (6,7,522,'SPELLDEFENSE (DND)'),
11913 (6,7,669,'Language Orcish'),
11914 (6,7,670,'Language Taurahe'),
11915 (6,7,1843,'Disarm'),
11916 (6,7,2382,'Generic'),
11917 (6,7,2479,'Honorless Target'),
11918 (6,7,3050,'Detect'),
11919 (6,7,3365,'Opening'),
11920 (6,7,6233,'Closing'),
11921 (6,7,6246,'Closing'),
11922 (6,7,6247,'Opening'),
11923 (6,7,6477,'Opening'),
11924 (6,7,6478,'Opening'),
11925 (6,7,6603,'Attack'),
11926 (6,7,7266,'Duel'),
11927 (6,7,7267,'Grovel'),
11928 (6,7,7355,'Stuck'),
11929 (6,7,8386,'Attacking'),
11930 (6,7,9077,'Leather'),
11931 (6,7,9078,'Cloth'),
11932 (6,7,9116,'Shield'),
11933 (6,7,9125,'Generic'),
11934 (6,7,20549,'War Stomp'),
11935 (6,7,20550,'Endurance'),
11936 (6,7,20551,'Nature Resistance'),
11937 (6,7,20552,'Cultivation'),
11938 (6,7,21651,'Opening'),
11939 (6,7,21652,'Closing'),
11940 (6,7,22027,'Remove Insignia'),
11941 (6,7,22810,'Opening - No Text'),
11942 (6,7,27763,'Totem'),
11943 (6,7,45927,'Summon Friend'),
11944 (6,7,61437,'Opening'),
11945 (6,11,81,'Dodge'),
11946 (6,11,198,'One-Handed Maces'),
11947 (6,11,203,'Unarmed'),
11948 (6,11,204,'Defense'),
11949 (6,11,227,'Staves'),
11950 (6,11,522,'SPELLDEFENSE (DND)'),
11951 (6,11,669,'Language Orcish'),
11952 (6,11,670,'Language Taurahe'),
11953 (6,11,1843,'Disarm'),
11954 (6,11,2382,'Generic'),
11955 (6,11,2479,'Honorless Target'),
11956 (6,11,3050,'Detect'),
11957 (6,11,3365,'Opening'),
11958 (6,11,5176,'Wrath'),
11959 (6,11,5185,'Healing Touch'),
11960 (6,11,6233,'Closing'),
11961 (6,11,6246,'Closing'),
11962 (6,11,6247,'Opening'),
11963 (6,11,6477,'Opening'),
11964 (6,11,6478,'Opening'),
11965 (6,11,6603,'Attack'),
11966 (6,11,7266,'Duel'),
11967 (6,11,7267,'Grovel'),
11968 (6,11,7355,'Stuck'),
11969 (6,11,8386,'Attacking'),
11970 (6,11,9077,'Leather'),
11971 (6,11,9078,'Cloth'),
11972 (6,11,9125,'Generic'),
11973 (6,11,20549,'War Stomp'),
11974 (6,11,20550,'Endurance'),
11975 (6,11,20551,'Nature Resistance'),
11976 (6,11,20552,'Cultivation'),
11977 (6,11,21651,'Opening'),
11978 (6,11,21652,'Closing'),
11979 (6,11,22027,'Remove Insignia'),
11980 (6,11,22810,'Opening - No Text'),
11981 (6,11,27764,'Fetish'),
11982 (6,11,45927,'Summon Friend'),
11983 (6,11,61437,'Opening'),
11984 (7,1,78,'Heroic Strike'),
11985 (7,1,81,'Dodge'),
11986 (7,1,107,'Block'),
11987 (7,1,198,'One-Handed Maces'),
11988 (7,1,201,'One-Handed Swords'),
11989 (7,1,203,'Unarmed'),
11990 (7,1,204,'Defense'),
11991 (7,1,522,'SPELLDEFENSE (DND)'),
11992 (7,1,668,'Language Common'),
11993 (7,1,1180,'Daggers'),
11994 (7,1,1843,'Disarm'),
11995 (7,1,2382,'Generic'),
11996 (7,1,2457,'Battle Stance'),
11997 (7,1,2479,'Honorless Target'),
11998 (7,1,3050,'Detect'),
11999 (7,1,3365,'Opening'),
12000 (7,1,5301,'Defensive State (DND)'),
12001 (7,1,6233,'Closing'),
12002 (7,1,6246,'Closing'),
12003 (7,1,6247,'Opening'),
12004 (7,1,6477,'Opening'),
12005 (7,1,6478,'Opening'),
12006 (7,1,6603,'Attack'),
12007 (7,1,7266,'Duel'),
12008 (7,1,7267,'Grovel'),
12009 (7,1,7340,'Language Gnomish'),
12010 (7,1,7355,'Stuck'),
12011 (7,1,8386,'Attacking'),
12012 (7,1,8737,'Mail'),
12013 (7,1,9077,'Leather'),
12014 (7,1,9078,'Cloth'),
12015 (7,1,9116,'Shield'),
12016 (7,1,9125,'Generic'),
12017 (7,1,20589,'Escape Artist'),
12018 (7,1,20591,'Expansive Mind'),
12019 (7,1,20592,'Arcane Resistance'),
12020 (7,1,20593,'Engineering Specialization'),
12021 (7,1,21651,'Opening'),
12022 (7,1,21652,'Closing'),
12023 (7,1,22027,'Remove Insignia'),
12024 (7,1,22810,'Opening - No Text'),
12025 (7,1,32215,'Victorious State'),
12026 (7,1,45927,'Summon Friend'),
12027 (7,1,61437,'Opening'),
12028 (7,4,81,'Dodge'),
12029 (7,4,203,'Unarmed'),
12030 (7,4,204,'Defense'),
12031 (7,4,522,'SPELLDEFENSE (DND)'),
12032 (7,4,668,'Language Common'),
12033 (7,4,1180,'Daggers'),
12034 (7,4,1752,'Sinister Strike'),
12035 (7,4,1843,'Disarm'),
12036 (7,4,2098,'Eviscerate'),
12037 (7,4,2382,'Generic'),
12038 (7,4,2479,'Honorless Target'),
12039 (7,4,2567,'Thrown'),
12040 (7,4,2764,'Throw'),
12041 (7,4,3050,'Detect'),
12042 (7,4,3365,'Opening'),
12043 (7,4,6233,'Closing'),
12044 (7,4,6246,'Closing'),
12045 (7,4,6247,'Opening'),
12046 (7,4,6477,'Opening'),
12047 (7,4,6478,'Opening'),
12048 (7,4,6603,'Attack'),
12049 (7,4,7266,'Duel'),
12050 (7,4,7267,'Grovel'),
12051 (7,4,7340,'Language Gnomish'),
12052 (7,4,7355,'Stuck'),
12053 (7,4,8386,'Attacking'),
12054 (7,4,9077,'Leather'),
12055 (7,4,9078,'Cloth'),
12056 (7,4,9125,'Generic'),
12057 (7,4,16092,'Defensive State (DND)'),
12058 (7,4,20589,'Escape Artist'),
12059 (7,4,20591,'Expansive Mind'),
12060 (7,4,20592,'Arcane Resistance'),
12061 (7,4,20593,'Engineering Specialization'),
12062 (7,4,21184,'Rogue Passive (DND)'),
12063 (7,4,21651,'Opening'),
12064 (7,4,21652,'Closing'),
12065 (7,4,22027,'Remove Insignia'),
12066 (7,4,22810,'Opening - No Text'),
12067 (7,4,45927,'Summon Friend'),
12068 (7,4,61437,'Opening'),
12069 (7,6,81,'Dodge'),
12070 (7,6,196,'One-Handed Axes'),
12071 (7,6,197,'Two-Handed Axes'),
12072 (7,6,200,'Polearms'),
12073 (7,6,201,'One-Handed Swords'),
12074 (7,6,202,'Two-Handed Swords'),
12075 (7,6,203,'Unarmed'),
12076 (7,6,204,'Defense'),
12077 (7,6,522,'SPELLDEFENSE (DND)'),
12078 (7,6,668,'Language Common'),
12079 (7,6,674,'Dual Wield'),
12080 (7,6,750,'Plate Mail'),
12081 (7,6,1843,'Disarm'),
12082 (7,6,2382,'Generic'),
12083 (7,6,2479,'Honorless Target'),
12084 (7,6,3050,'Detect'),
12085 (7,6,3127,'Parry'),
12086 (7,6,3275,'Linen Bandage'),
12087 (7,6,3276,'Heavy Linen Bandage'),
12088 (7,6,3277,'Wool Bandage'),
12089 (7,6,3278,'Heavy Wool Bandage'),
12090 (7,6,3365,'Opening'),
12091 (7,6,6233,'Closing'),
12092 (7,6,6246,'Closing'),
12093 (7,6,6247,'Opening'),
12094 (7,6,6477,'Opening'),
12095 (7,6,6478,'Opening'),
12096 (7,6,6603,'Attack'),
12097 (7,6,7266,'Duel'),
12098 (7,6,7267,'Grovel'),
12099 (7,6,7340,'Language Gnomish'),
12100 (7,6,7355,'Stuck'),
12101 (7,6,7928,'Silk Bandage'),
12102 (7,6,7929,'Heavy Silk Bandage'),
12103 (7,6,7934,'Anti-Venom'),
12104 (7,6,8386,'Attacking'),
12105 (7,6,8737,'Mail'),
12106 (7,6,9077,'Leather'),
12107 (7,6,9078,'Cloth'),
12108 (7,6,9125,'Generic'),
12109 (7,6,10840,'Mageweave Bandage'),
12110 (7,6,10841,'Heavy Mageweave Bandage'),
12111 (7,6,10846,'First Aid'),
12112 (7,6,18629,'Runecloth Bandage'),
12113 (7,6,18630,'Heavy Runecloth Bandage'),
12114 (7,6,20589,'Escape Artist'),
12115 (7,6,20591,'Expansive Mind'),
12116 (7,6,20592,'Arcane Resistance'),
12117 (7,6,20593,'Engineering Specialization'),
12118 (7,6,21651,'Opening'),
12119 (7,6,21652,'Closing'),
12120 (7,6,22027,'Remove Insignia'),
12121 (7,6,22810,'Opening - No Text'),
12122 (7,6,33391,'Journeyman Riding'),
12123 (7,6,45462,'Plague Strike'),
12124 (7,6,45477,'Icy Touch'),
12125 (7,6,45902,'Blood Strike'),
12126 (7,6,45903,'Offensive State (DND)'),
12127 (7,6,45927,'Summon Friend'),
12128 (7,6,47541,'Death Coil'),
12129 (7,6,48266,'Blood Presence'),
12130 (7,6,49410,'Forceful Deflection'),
12131 (7,6,49576,'Death Grip'),
12132 (7,6,52665,'Sigil'),
12133 (7,6,59879,'Blood Plague'),
12134 (7,6,59921,'Frost Fever'),
12135 (7,6,61437,'Opening'),
12136 (7,6,61455,'Runic Focus'),
12137 (7,8,81,'Dodge'),
12138 (7,8,133,'Fireball'),
12139 (7,8,168,'Frost Armor'),
12140 (7,8,203,'Unarmed'),
12141 (7,8,204,'Defense'),
12142 (7,8,227,'Staves'),
12143 (7,8,522,'SPELLDEFENSE (DND)'),
12144 (7,8,668,'Language Common'),
12145 (7,8,1843,'Disarm'),
12146 (7,8,2382,'Generic'),
12147 (7,8,2479,'Honorless Target'),
12148 (7,8,3050,'Detect'),
12149 (7,8,3365,'Opening'),
12150 (7,8,5009,'Wands'),
12151 (7,8,5019,'Shoot'),
12152 (7,8,6233,'Closing'),
12153 (7,8,6246,'Closing'),
12154 (7,8,6247,'Opening'),
12155 (7,8,6477,'Opening'),
12156 (7,8,6478,'Opening'),
12157 (7,8,6603,'Attack'),
12158 (7,8,7266,'Duel'),
12159 (7,8,7267,'Grovel'),
12160 (7,8,7340,'Language Gnomish'),
12161 (7,8,7355,'Stuck'),
12162 (7,8,8386,'Attacking'),
12163 (7,8,9078,'Cloth'),
12164 (7,8,9125,'Generic'),
12165 (7,8,20589,'Escape Artist'),
12166 (7,8,20591,'Expansive Mind'),
12167 (7,8,20592,'Arcane Resistance'),
12168 (7,8,20593,'Engineering Specialization'),
12169 (7,8,21651,'Opening'),
12170 (7,8,21652,'Closing'),
12171 (7,8,22027,'Remove Insignia'),
12172 (7,8,22810,'Opening - No Text'),
12173 (7,8,45927,'Summon Friend'),
12174 (7,8,61437,'Opening'),
12175 (7,9,81,'Dodge'),
12176 (7,9,203,'Unarmed'),
12177 (7,9,204,'Defense'),
12178 (7,9,522,'SPELLDEFENSE (DND)'),
12179 (7,9,668,'Language Common'),
12180 (7,9,686,'Shadow Bolt'),
12181 (7,9,687,'Demon Skin'),
12182 (7,9,1180,'Daggers'),
12183 (7,9,1843,'Disarm'),
12184 (7,9,2382,'Generic'),
12185 (7,9,2479,'Honorless Target'),
12186 (7,9,3050,'Detect'),
12187 (7,9,3365,'Opening'),
12188 (7,9,5009,'Wands'),
12189 (7,9,5019,'Shoot'),
12190 (7,9,6233,'Closing'),
12191 (7,9,6246,'Closing'),
12192 (7,9,6247,'Opening'),
12193 (7,9,6477,'Opening'),
12194 (7,9,6478,'Opening'),
12195 (7,9,6603,'Attack'),
12196 (7,9,7266,'Duel'),
12197 (7,9,7267,'Grovel'),
12198 (7,9,7340,'Language Gnomish'),
12199 (7,9,7355,'Stuck'),
12200 (7,9,8386,'Attacking'),
12201 (7,9,9078,'Cloth'),
12202 (7,9,9125,'Generic'),
12203 (7,9,20589,'Escape Artist'),
12204 (7,9,20591,'Expansive Mind'),
12205 (7,9,20592,'Arcane Resistance'),
12206 (7,9,20593,'Engineering Specialization'),
12207 (7,9,21651,'Opening'),
12208 (7,9,21652,'Closing'),
12209 (7,9,22027,'Remove Insignia'),
12210 (7,9,22810,'Opening - No Text'),
12211 (7,9,45927,'Summon Friend'),
12212 (7,9,58284,'Chaos Bolt Passive'),
12213 (7,9,61437,'Opening'),
12214 (8,1,78,'Heroic Strike'),
12215 (8,1,81,'Dodge'),
12216 (8,1,107,'Block'),
12217 (8,1,196,'One-Handed Axes'),
12218 (8,1,203,'Unarmed'),
12219 (8,1,204,'Defense'),
12220 (8,1,522,'SPELLDEFENSE (DND)'),
12221 (8,1,669,'Language Orcish'),
12222 (8,1,1180,'Daggers'),
12223 (8,1,1843,'Disarm'),
12224 (8,1,2382,'Generic'),
12225 (8,1,2457,'Battle Stance'),
12226 (8,1,2479,'Honorless Target'),
12227 (8,1,2567,'Thrown'),
12228 (8,1,2764,'Throw'),
12229 (8,1,3050,'Detect'),
12230 (8,1,3365,'Opening'),
12231 (8,1,5301,'Defensive State (DND)'),
12232 (8,1,6233,'Closing'),
12233 (8,1,6246,'Closing'),
12234 (8,1,6247,'Opening'),
12235 (8,1,6477,'Opening'),
12236 (8,1,6478,'Opening'),
12237 (8,1,6603,'Attack'),
12238 (8,1,7266,'Duel'),
12239 (8,1,7267,'Grovel'),
12240 (8,1,7341,'Language Troll'),
12241 (8,1,7355,'Stuck'),
12242 (8,1,8386,'Attacking'),
12243 (8,1,8737,'Mail'),
12244 (8,1,9077,'Leather'),
12245 (8,1,9078,'Cloth'),
12246 (8,1,9116,'Shield'),
12247 (8,1,9125,'Generic'),
12248 (8,1,20555,'Regeneration'),
12249 (8,1,20557,'Beast Slaying'),
12250 (8,1,20558,'Throwing Specialization'),
12251 (8,1,21651,'Opening'),
12252 (8,1,21652,'Closing'),
12253 (8,1,22027,'Remove Insignia'),
12254 (8,1,22810,'Opening - No Text'),
12255 (8,1,26290,'Bow Specialization'),
12256 (8,1,26296,'Berserking'),
12257 (8,1,32215,'Victorious State'),
12258 (8,1,45927,'Summon Friend'),
12259 (8,1,58943,'Da Voodoo Shuffle'),
12260 (8,1,61437,'Opening'),
12261 (8,3,75,'Auto Shot'),
12262 (8,3,81,'Dodge'),
12263 (8,3,196,'One-Handed Axes'),
12264 (8,3,203,'Unarmed'),
12265 (8,3,204,'Defense'),
12266 (8,3,264,'Bows'),
12267 (8,3,522,'SPELLDEFENSE (DND)'),
12268 (8,3,669,'Language Orcish'),
12269 (8,3,1843,'Disarm'),
12270 (8,3,2382,'Generic'),
12271 (8,3,2479,'Honorless Target'),
12272 (8,3,2973,'Raptor Strike'),
12273 (8,3,3050,'Detect'),
12274 (8,3,3365,'Opening'),
12275 (8,3,6233,'Closing'),
12276 (8,3,6246,'Closing'),
12277 (8,3,6247,'Opening'),
12278 (8,3,6477,'Opening'),
12279 (8,3,6478,'Opening'),
12280 (8,3,6603,'Attack'),
12281 (8,3,7266,'Duel'),
12282 (8,3,7267,'Grovel'),
12283 (8,3,7341,'Language Troll'),
12284 (8,3,7355,'Stuck'),
12285 (8,3,8386,'Attacking'),
12286 (8,3,9077,'Leather'),
12287 (8,3,9078,'Cloth'),
12288 (8,3,9125,'Generic'),
12289 (8,3,13358,'Defensive State (DND)'),
12290 (8,3,20554,'Berserking'),
12291 (8,3,20555,'Regeneration'),
12292 (8,3,20557,'Beast Slaying'),
12293 (8,3,20558,'Throwing Specialization'),
12294 (8,3,21651,'Opening'),
12295 (8,3,21652,'Closing'),
12296 (8,3,22027,'Remove Insignia'),
12297 (8,3,22810,'Opening - No Text'),
12298 (8,3,24949,'Defensive State 2 (DND)'),
12299 (8,3,26290,'Bow Specialization'),
12300 (8,3,34082,'Advantaged State (DND)'),
12301 (8,3,45927,'Summon Friend'),
12302 (8,3,58943,'Da Voodoo Shuffle'),
12303 (8,3,61437,'Opening'),
12304 (8,4,81,'Dodge'),
12305 (8,4,203,'Unarmed'),
12306 (8,4,204,'Defense'),
12307 (8,4,522,'SPELLDEFENSE (DND)'),
12308 (8,4,669,'Language Orcish'),
12309 (8,4,1180,'Daggers'),
12310 (8,4,1752,'Sinister Strike'),
12311 (8,4,1843,'Disarm'),
12312 (8,4,2098,'Eviscerate'),
12313 (8,4,2382,'Generic'),
12314 (8,4,2479,'Honorless Target'),
12315 (8,4,2567,'Thrown'),
12316 (8,4,2764,'Throw'),
12317 (8,4,3050,'Detect'),
12318 (8,4,3365,'Opening'),
12319 (8,4,6233,'Closing'),
12320 (8,4,6246,'Closing'),
12321 (8,4,6247,'Opening'),
12322 (8,4,6477,'Opening'),
12323 (8,4,6478,'Opening'),
12324 (8,4,6603,'Attack'),
12325 (8,4,7266,'Duel'),
12326 (8,4,7267,'Grovel'),
12327 (8,4,7341,'Language Troll'),
12328 (8,4,7355,'Stuck'),
12329 (8,4,8386,'Attacking'),
12330 (8,4,9077,'Leather'),
12331 (8,4,9078,'Cloth'),
12332 (8,4,9125,'Generic'),
12333 (8,4,16092,'Defensive State (DND)'),
12334 (8,4,20555,'Regeneration'),
12335 (8,4,20557,'Beast Slaying'),
12336 (8,4,20558,'Throwing Specialization'),
12337 (8,4,21184,'Rogue Passive (DND)'),
12338 (8,4,21651,'Opening'),
12339 (8,4,21652,'Closing'),
12340 (8,4,22027,'Remove Insignia'),
12341 (8,4,22810,'Opening - No Text'),
12342 (8,4,26290,'Bow Specialization'),
12343 (8,4,26297,'Berserking'),
12344 (8,4,45927,'Summon Friend'),
12345 (8,4,58943,'Da Voodoo Shuffle'),
12346 (8,4,61437,'Opening'),
12347 (8,5,81,'Dodge'),
12348 (8,5,198,'One-Handed Maces'),
12349 (8,5,203,'Unarmed'),
12350 (8,5,204,'Defense'),
12351 (8,5,522,'SPELLDEFENSE (DND)'),
12352 (8,5,585,'Smite'),
12353 (8,5,669,'Language Orcish'),
12354 (8,5,1843,'Disarm'),
12355 (8,5,2050,'Lesser Heal'),
12356 (8,5,2382,'Generic'),
12357 (8,5,2479,'Honorless Target'),
12358 (8,5,3050,'Detect'),
12359 (8,5,3365,'Opening'),
12360 (8,5,5009,'Wands'),
12361 (8,5,5019,'Shoot'),
12362 (8,5,6233,'Closing'),
12363 (8,5,6246,'Closing'),
12364 (8,5,6247,'Opening'),
12365 (8,5,6477,'Opening'),
12366 (8,5,6478,'Opening'),
12367 (8,5,6603,'Attack'),
12368 (8,5,7266,'Duel'),
12369 (8,5,7267,'Grovel'),
12370 (8,5,7341,'Language Troll'),
12371 (8,5,7355,'Stuck'),
12372 (8,5,8386,'Attacking'),
12373 (8,5,9078,'Cloth'),
12374 (8,5,9125,'Generic'),
12375 (8,5,20554,'Berserking'),
12376 (8,5,20555,'Regeneration'),
12377 (8,5,20557,'Beast Slaying'),
12378 (8,5,20558,'Throwing Specialization'),
12379 (8,5,21651,'Opening'),
12380 (8,5,21652,'Closing'),
12381 (8,5,22027,'Remove Insignia'),
12382 (8,5,22810,'Opening - No Text'),
12383 (8,5,26290,'Bow Specialization'),
12384 (8,5,45927,'Summon Friend'),
12385 (8,5,58943,'Da Voodoo Shuffle'),
12386 (8,5,61437,'Opening'),
12387 (8,6,81,'Dodge'),
12388 (8,6,196,'One-Handed Axes'),
12389 (8,6,197,'Two-Handed Axes'),
12390 (8,6,200,'Polearms'),
12391 (8,6,201,'One-Handed Swords'),
12392 (8,6,202,'Two-Handed Swords'),
12393 (8,6,203,'Unarmed'),
12394 (8,6,204,'Defense'),
12395 (8,6,522,'SPELLDEFENSE (DND)'),
12396 (8,6,669,'Language Orcish'),
12397 (8,6,674,'Dual Wield'),
12398 (8,6,750,'Plate Mail'),
12399 (8,6,1843,'Disarm'),
12400 (8,6,2382,'Generic'),
12401 (8,6,2479,'Honorless Target'),
12402 (8,6,3050,'Detect'),
12403 (8,6,3127,'Parry'),
12404 (8,6,3275,'Linen Bandage'),
12405 (8,6,3276,'Heavy Linen Bandage'),
12406 (8,6,3277,'Wool Bandage'),
12407 (8,6,3278,'Heavy Wool Bandage'),
12408 (8,6,3365,'Opening'),
12409 (8,6,6233,'Closing'),
12410 (8,6,6246,'Closing'),
12411 (8,6,6247,'Opening'),
12412 (8,6,6477,'Opening'),
12413 (8,6,6478,'Opening'),
12414 (8,6,6603,'Attack'),
12415 (8,6,7266,'Duel'),
12416 (8,6,7267,'Grovel'),
12417 (8,6,7341,'Language Troll'),
12418 (8,6,7355,'Stuck'),
12419 (8,6,7928,'Silk Bandage'),
12420 (8,6,7929,'Heavy Silk Bandage'),
12421 (8,6,7934,'Anti-Venom'),
12422 (8,6,8386,'Attacking'),
12423 (8,6,8737,'Mail'),
12424 (8,6,9077,'Leather'),
12425 (8,6,9078,'Cloth'),
12426 (8,6,9125,'Generic'),
12427 (8,6,10840,'Mageweave Bandage'),
12428 (8,6,10841,'Heavy Mageweave Bandage'),
12429 (8,6,10846,'First Aid'),
12430 (8,6,18629,'Runecloth Bandage'),
12431 (8,6,18630,'Heavy Runecloth Bandage'),
12432 (8,6,20555,'Regeneration'),
12433 (8,6,20557,'Beast Slaying'),
12434 (8,6,20558,'Throwing Specialization'),
12435 (8,6,21651,'Opening'),
12436 (8,6,21652,'Closing'),
12437 (8,6,22027,'Remove Insignia'),
12438 (8,6,22810,'Opening - No Text'),
12439 (8,6,26290,'Bow Specialization'),
12440 (8,6,33391,'Journeyman Riding'),
12441 (8,6,45462,'Plague Strike'),
12442 (8,6,45477,'Icy Touch'),
12443 (8,6,45902,'Blood Strike'),
12444 (8,6,45903,'Offensive State (DND)'),
12445 (8,6,45927,'Summon Friend'),
12446 (8,6,47541,'Death Coil'),
12447 (8,6,48266,'Blood Presence'),
12448 (8,6,49410,'Forceful Deflection'),
12449 (8,6,49576,'Death Grip'),
12450 (8,6,50621,'Berserking'),
12451 (8,6,52665,'Sigil'),
12452 (8,6,58943,'Da Voodoo Shuffle'),
12453 (8,6,59879,'Blood Plague'),
12454 (8,6,59921,'Frost Fever'),
12455 (8,6,61437,'Opening'),
12456 (8,6,61455,'Runic Focus'),
12457 (8,7,81,'Dodge'),
12458 (8,7,107,'Block'),
12459 (8,7,198,'One-Handed Maces'),
12460 (8,7,203,'Unarmed'),
12461 (8,7,204,'Defense'),
12462 (8,7,227,'Staves'),
12463 (8,7,331,'Healing Wave'),
12464 (8,7,403,'Lightning Bolt'),
12465 (8,7,522,'SPELLDEFENSE (DND)'),
12466 (8,7,669,'Language Orcish'),
12467 (8,7,1843,'Disarm'),
12468 (8,7,2382,'Generic'),
12469 (8,7,2479,'Honorless Target'),
12470 (8,7,3050,'Detect'),
12471 (8,7,3365,'Opening'),
12472 (8,7,6233,'Closing'),
12473 (8,7,6246,'Closing'),
12474 (8,7,6247,'Opening'),
12475 (8,7,6477,'Opening'),
12476 (8,7,6478,'Opening'),
12477 (8,7,6603,'Attack'),
12478 (8,7,7266,'Duel'),
12479 (8,7,7267,'Grovel'),
12480 (8,7,7341,'Language Troll'),
12481 (8,7,7355,'Stuck'),
12482 (8,7,8386,'Attacking'),
12483 (8,7,9077,'Leather'),
12484 (8,7,9078,'Cloth'),
12485 (8,7,9116,'Shield'),
12486 (8,7,9125,'Generic'),
12487 (8,7,20554,'Berserking'),
12488 (8,7,20555,'Regeneration'),
12489 (8,7,20557,'Beast Slaying'),
12490 (8,7,20558,'Throwing Specialization'),
12491 (8,7,21651,'Opening'),
12492 (8,7,21652,'Closing'),
12493 (8,7,22027,'Remove Insignia'),
12494 (8,7,22810,'Opening - No Text'),
12495 (8,7,26290,'Bow Specialization'),
12496 (8,7,27763,'Totem'),
12497 (8,7,45927,'Summon Friend'),
12498 (8,7,58943,'Da Voodoo Shuffle'),
12499 (8,7,61437,'Opening'),
12500 (8,8,81,'Dodge'),
12501 (8,8,133,'Fireball'),
12502 (8,8,168,'Frost Armor'),
12503 (8,8,203,'Unarmed'),
12504 (8,8,204,'Defense'),
12505 (8,8,227,'Staves'),
12506 (8,8,522,'SPELLDEFENSE (DND)'),
12507 (8,8,669,'Language Orcish'),
12508 (8,8,1843,'Disarm'),
12509 (8,8,2382,'Generic'),
12510 (8,8,2479,'Honorless Target'),
12511 (8,8,3050,'Detect'),
12512 (8,8,3365,'Opening'),
12513 (8,8,5009,'Wands'),
12514 (8,8,5019,'Shoot'),
12515 (8,8,6233,'Closing'),
12516 (8,8,6246,'Closing'),
12517 (8,8,6247,'Opening'),
12518 (8,8,6477,'Opening'),
12519 (8,8,6478,'Opening'),
12520 (8,8,6603,'Attack'),
12521 (8,8,7266,'Duel'),
12522 (8,8,7267,'Grovel'),
12523 (8,8,7341,'Language Troll'),
12524 (8,8,7355,'Stuck'),
12525 (8,8,8386,'Attacking'),
12526 (8,8,9078,'Cloth'),
12527 (8,8,9125,'Generic'),
12528 (8,8,20554,'Berserking'),
12529 (8,8,20555,'Regeneration'),
12530 (8,8,20557,'Beast Slaying'),
12531 (8,8,20558,'Throwing Specialization'),
12532 (8,8,21651,'Opening'),
12533 (8,8,21652,'Closing'),
12534 (8,8,22027,'Remove Insignia'),
12535 (8,8,22810,'Opening - No Text'),
12536 (8,8,26290,'Bow Specialization'),
12537 (8,8,45927,'Summon Friend'),
12538 (8,8,58943,'Da Voodoo Shuffle'),
12539 (8,8,61437,'Opening'),
12540 (10,2,81,'Dodge'),
12541 (10,2,107,'Block'),
12542 (10,2,201,'One-Handed Swords'),
12543 (10,2,202,'Two-Handed Swords'),
12544 (10,2,203,'Unarmed'),
12545 (10,2,204,'Defense'),
12546 (10,2,522,'SPELLDEFENSE (DND)'),
12547 (10,2,635,'Holy Light'),
12548 (10,2,669,'Language Orcish'),
12549 (10,2,813,'Language Thalassian'),
12550 (10,2,822,'Magic Resistance'),
12551 (10,2,2382,'Generic'),
12552 (10,2,2479,'Honorless Target'),
12553 (10,2,3050,'Detect'),
12554 (10,2,3365,'Opening'),
12555 (10,2,6233,'Closing'),
12556 (10,2,6246,'Closing'),
12557 (10,2,6247,'Opening'),
12558 (10,2,6477,'Opening'),
12559 (10,2,6478,'Opening'),
12560 (10,2,6603,'Attack'),
12561 (10,2,7266,'Duel'),
12562 (10,2,7267,'Grovel'),
12563 (10,2,7355,'Stuck'),
12564 (10,2,8386,'Attacking'),
12565 (10,2,8737,'Mail'),
12566 (10,2,9077,'Leather'),
12567 (10,2,9078,'Cloth'),
12568 (10,2,9116,'Shield'),
12569 (10,2,9125,'Generic'),
12570 (10,2,21084,'Seal of Righteousness'),
12571 (10,2,21651,'Opening'),
12572 (10,2,21652,'Closing'),
12573 (10,2,22027,'Remove Insignia'),
12574 (10,2,22810,'Opening - No Text'),
12575 (10,2,27762,'Libram'),
12576 (10,2,28730,'Arcane Torrent'),
12577 (10,2,28734,'Mana Tap'),
12578 (10,2,28877,'Arcane Affinity'),
12579 (10,3,75,'Auto Shot'),
12580 (10,3,81,'Dodge'),
12581 (10,3,203,'Unarmed'),
12582 (10,3,204,'Defense'),
12583 (10,3,264,'Bows'),
12584 (10,3,522,'SPELLDEFENSE (DND)'),
12585 (10,3,669,'Language Orcish'),
12586 (10,3,813,'Language Thalassian'),
12587 (10,3,822,'Magic Resistance'),
12588 (10,3,1180,'Daggers'),
12589 (10,3,2382,'Generic'),
12590 (10,3,2479,'Honorless Target'),
12591 (10,3,2973,'Raptor Strike'),
12592 (10,3,3050,'Detect'),
12593 (10,3,3365,'Opening'),
12594 (10,3,6233,'Closing'),
12595 (10,3,6246,'Closing'),
12596 (10,3,6247,'Opening'),
12597 (10,3,6477,'Opening'),
12598 (10,3,6478,'Opening'),
12599 (10,3,6603,'Attack'),
12600 (10,3,7266,'Duel'),
12601 (10,3,7267,'Grovel'),
12602 (10,3,7355,'Stuck'),
12603 (10,3,8386,'Attacking'),
12604 (10,3,9077,'Leather'),
12605 (10,3,9078,'Cloth'),
12606 (10,3,9125,'Generic'),
12607 (10,3,13358,'Defensive State (DND)'),
12608 (10,3,21651,'Opening'),
12609 (10,3,21652,'Closing'),
12610 (10,3,22027,'Remove Insignia'),
12611 (10,3,22810,'Opening - No Text'),
12612 (10,3,24949,'Defensive State 2 (DND)'),
12613 (10,3,28730,'Arcane Torrent'),
12614 (10,3,28734,'Mana Tap'),
12615 (10,3,28877,'Arcane Affinity'),
12616 (10,3,34082,'Advantaged State (DND)'),
12617 (10,4,81,'Dodge'),
12618 (10,4,203,'Unarmed'),
12619 (10,4,204,'Defense'),
12620 (10,4,522,'SPELLDEFENSE (DND)'),
12621 (10,4,669,'Language Orcish'),
12622 (10,4,813,'Language Thalassian'),
12623 (10,4,822,'Magic Resistance'),
12624 (10,4,1180,'Daggers'),
12625 (10,4,1752,'Sinister Strike'),
12626 (10,4,2098,'Eviscerate'),
12627 (10,4,2382,'Generic'),
12628 (10,4,2479,'Honorless Target'),
12629 (10,4,2567,'Thrown'),
12630 (10,4,2764,'Throw'),
12631 (10,4,3050,'Detect'),
12632 (10,4,3365,'Opening'),
12633 (10,4,6233,'Closing'),
12634 (10,4,6246,'Closing'),
12635 (10,4,6247,'Opening'),
12636 (10,4,6477,'Opening'),
12637 (10,4,6478,'Opening'),
12638 (10,4,6603,'Attack'),
12639 (10,4,7266,'Duel'),
12640 (10,4,7267,'Grovel'),
12641 (10,4,7355,'Stuck'),
12642 (10,4,8386,'Attacking'),
12643 (10,4,9077,'Leather'),
12644 (10,4,9078,'Cloth'),
12645 (10,4,9125,'Generic'),
12646 (10,4,16092,'Defensive State (DND)'),
12647 (10,4,21184,'Rogue Passive (DND)'),
12648 (10,4,21651,'Opening'),
12649 (10,4,21652,'Closing'),
12650 (10,4,22027,'Remove Insignia'),
12651 (10,4,22810,'Opening - No Text'),
12652 (10,4,25046,'Arcane Torrent'),
12653 (10,4,28734,'Mana Tap'),
12654 (10,4,28877,'Arcane Affinity'),
12655 (10,5,81,'Dodge'),
12656 (10,5,198,'One-Handed Maces'),
12657 (10,5,203,'Unarmed'),
12658 (10,5,204,'Defense'),
12659 (10,5,522,'SPELLDEFENSE (DND)'),
12660 (10,5,585,'Smite'),
12661 (10,5,669,'Language Orcish'),
12662 (10,5,813,'Language Thalassian'),
12663 (10,5,822,'Magic Resistance'),
12664 (10,5,2050,'Lesser Heal'),
12665 (10,5,2382,'Generic'),
12666 (10,5,2479,'Honorless Target'),
12667 (10,5,3050,'Detect'),
12668 (10,5,3365,'Opening'),
12669 (10,5,5009,'Wands'),
12670 (10,5,5019,'Shoot'),
12671 (10,5,6233,'Closing'),
12672 (10,5,6246,'Closing'),
12673 (10,5,6247,'Opening'),
12674 (10,5,6477,'Opening'),
12675 (10,5,6478,'Opening'),
12676 (10,5,6603,'Attack'),
12677 (10,5,7266,'Duel'),
12678 (10,5,7267,'Grovel'),
12679 (10,5,7355,'Stuck'),
12680 (10,5,8386,'Attacking'),
12681 (10,5,9078,'Cloth'),
12682 (10,5,9125,'Generic'),
12683 (10,5,21651,'Opening'),
12684 (10,5,21652,'Closing'),
12685 (10,5,22027,'Remove Insignia'),
12686 (10,5,22810,'Opening - No Text'),
12687 (10,5,28730,'Arcane Torrent'),
12688 (10,5,28734,'Mana Tap'),
12689 (10,5,28877,'Arcane Affinity'),
12690 (10,6,81,'Dodge'),
12691 (10,6,196,'One-Handed Axes'),
12692 (10,6,197,'Two-Handed Axes'),
12693 (10,6,200,'Polearms'),
12694 (10,6,201,'One-Handed Swords'),
12695 (10,6,202,'Two-Handed Swords'),
12696 (10,6,203,'Unarmed'),
12697 (10,6,204,'Defense'),
12698 (10,6,522,'SPELLDEFENSE (DND)'),
12699 (10,6,669,'Language Orcish'),
12700 (10,6,674,'Dual Wield'),
12701 (10,6,750,'Plate Mail'),
12702 (10,6,813,'Language Thalassian'),
12703 (10,6,822,'Magic Resistance'),
12704 (10,6,1843,'Disarm'),
12705 (10,6,2382,'Generic'),
12706 (10,6,2479,'Honorless Target'),
12707 (10,6,3050,'Detect'),
12708 (10,6,3127,'Parry'),
12709 (10,6,3275,'Linen Bandage'),
12710 (10,6,3276,'Heavy Linen Bandage'),
12711 (10,6,3277,'Wool Bandage'),
12712 (10,6,3278,'Heavy Wool Bandage'),
12713 (10,6,3365,'Opening'),
12714 (10,6,6233,'Closing'),
12715 (10,6,6246,'Closing'),
12716 (10,6,6247,'Opening'),
12717 (10,6,6477,'Opening'),
12718 (10,6,6478,'Opening'),
12719 (10,6,6603,'Attack'),
12720 (10,6,7266,'Duel'),
12721 (10,6,7267,'Grovel'),
12722 (10,6,7355,'Stuck'),
12723 (10,6,7928,'Silk Bandage'),
12724 (10,6,7929,'Heavy Silk Bandage'),
12725 (10,6,7934,'Anti-Venom'),
12726 (10,6,8386,'Attacking'),
12727 (10,6,8737,'Mail'),
12728 (10,6,9077,'Leather'),
12729 (10,6,9078,'Cloth'),
12730 (10,6,9125,'Generic'),
12731 (10,6,10840,'Mageweave Bandage'),
12732 (10,6,10841,'Heavy Mageweave Bandage'),
12733 (10,6,10846,'First Aid'),
12734 (10,6,18629,'Runecloth Bandage'),
12735 (10,6,18630,'Heavy Runecloth Bandage'),
12736 (10,6,21651,'Opening'),
12737 (10,6,21652,'Closing'),
12738 (10,6,22027,'Remove Insignia'),
12739 (10,6,22810,'Opening - No Text'),
12740 (10,6,28877,'Arcane Affinity'),
12741 (10,6,33391,'Journeyman Riding'),
12742 (10,6,45462,'Plague Strike'),
12743 (10,6,45477,'Icy Touch'),
12744 (10,6,45902,'Blood Strike'),
12745 (10,6,45903,'Offensive State (DND)'),
12746 (10,6,45927,'Summon Friend'),
12747 (10,6,47541,'Death Coil'),
12748 (10,6,48266,'Blood Presence'),
12749 (10,6,49410,'Forceful Deflection'),
12750 (10,6,49576,'Death Grip'),
12751 (10,6,50613,'Arcane Torrent'),
12752 (10,6,52665,'Sigil'),
12753 (10,6,59879,'Blood Plague'),
12754 (10,6,59921,'Frost Fever'),
12755 (10,6,61437,'Opening'),
12756 (10,6,61455,'Runic Focus'),
12757 (10,8,81,'Dodge'),
12758 (10,8,133,'Fireball'),
12759 (10,8,168,'Frost Armor'),
12760 (10,8,203,'Unarmed'),
12761 (10,8,204,'Defense'),
12762 (10,8,227,'Staves'),
12763 (10,8,522,'SPELLDEFENSE (DND)'),
12764 (10,8,669,'Language Orcish'),
12765 (10,8,813,'Language Thalassian'),
12766 (10,8,822,'Magic Resistance'),
12767 (10,8,2382,'Generic'),
12768 (10,8,2479,'Honorless Target'),
12769 (10,8,3050,'Detect'),
12770 (10,8,3365,'Opening'),
12771 (10,8,5009,'Wands'),
12772 (10,8,5019,'Shoot'),
12773 (10,8,6233,'Closing'),
12774 (10,8,6246,'Closing'),
12775 (10,8,6247,'Opening'),
12776 (10,8,6477,'Opening'),
12777 (10,8,6478,'Opening'),
12778 (10,8,6603,'Attack'),
12779 (10,8,7266,'Duel'),
12780 (10,8,7267,'Grovel'),
12781 (10,8,7355,'Stuck'),
12782 (10,8,8386,'Attacking'),
12783 (10,8,9078,'Cloth'),
12784 (10,8,9125,'Generic'),
12785 (10,8,21651,'Opening'),
12786 (10,8,21652,'Closing'),
12787 (10,8,22027,'Remove Insignia'),
12788 (10,8,22810,'Opening - No Text'),
12789 (10,8,28730,'Arcane Torrent'),
12790 (10,8,28734,'Mana Tap'),
12791 (10,8,28877,'Arcane Affinity'),
12792 (10,9,81,'Dodge'),
12793 (10,9,203,'Unarmed'),
12794 (10,9,204,'Defense'),
12795 (10,9,522,'SPELLDEFENSE (DND)'),
12796 (10,9,669,'Language Orcish'),
12797 (10,9,686,'Shadow Bolt'),
12798 (10,9,687,'Demon Skin'),
12799 (10,9,813,'Language Thalassian'),
12800 (10,9,822,'Magic Resistance'),
12801 (10,9,1180,'Daggers'),
12802 (10,9,2382,'Generic'),
12803 (10,9,2479,'Honorless Target'),
12804 (10,9,3050,'Detect'),
12805 (10,9,3365,'Opening'),
12806 (10,9,5009,'Wands'),
12807 (10,9,5019,'Shoot'),
12808 (10,9,6233,'Closing'),
12809 (10,9,6246,'Closing'),
12810 (10,9,6247,'Opening'),
12811 (10,9,6477,'Opening'),
12812 (10,9,6478,'Opening'),
12813 (10,9,6603,'Attack'),
12814 (10,9,7266,'Duel'),
12815 (10,9,7267,'Grovel'),
12816 (10,9,7355,'Stuck'),
12817 (10,9,8386,'Attacking'),
12818 (10,9,9078,'Cloth'),
12819 (10,9,9125,'Generic'),
12820 (10,9,21651,'Opening'),
12821 (10,9,21652,'Closing'),
12822 (10,9,22027,'Remove Insignia'),
12823 (10,9,22810,'Opening - No Text'),
12824 (10,9,28730,'Arcane Torrent'),
12825 (10,9,28734,'Mana Tap'),
12826 (10,9,28877,'Arcane Affinity'),
12827 (10,9,58284,'Chaos Bolt Passive'),
12828 (11,1,78,'Heroic Strike'),
12829 (11,1,81,'Dodge'),
12830 (11,1,107,'Block'),
12831 (11,1,198,'One-Handed Maces'),
12832 (11,1,201,'One-Handed Swords'),
12833 (11,1,202,'Two-Handed Swords'),
12834 (11,1,203,'Unarmed'),
12835 (11,1,204,'Defense'),
12836 (11,1,522,'SPELLDEFENSE (DND)'),
12837 (11,1,668,'Language Common'),
12838 (11,1,1843,'Disarm'),
12839 (11,1,2382,'Generic'),
12840 (11,1,2457,'Battle Stance'),
12841 (11,1,2479,'Honorless Target'),
12842 (11,1,3050,'Detect'),
12843 (11,1,3365,'Opening'),
12844 (11,1,5301,'Defensive State (DND)'),
12845 (11,1,6233,'Closing'),
12846 (11,1,6246,'Closing'),
12847 (11,1,6247,'Opening'),
12848 (11,1,6477,'Opening'),
12849 (11,1,6478,'Opening'),
12850 (11,1,6562,'Heroic Presence'),
12851 (11,1,6603,'Attack'),
12852 (11,1,7266,'Duel'),
12853 (11,1,7267,'Grovel'),
12854 (11,1,7355,'Stuck'),
12855 (11,1,8386,'Attacking'),
12856 (11,1,8737,'Mail'),
12857 (11,1,9077,'Leather'),
12858 (11,1,9078,'Cloth'),
12859 (11,1,9116,'Shield'),
12860 (11,1,9125,'Generic'),
12861 (11,1,21651,'Opening'),
12862 (11,1,21652,'Closing'),
12863 (11,1,22027,'Remove Insignia'),
12864 (11,1,22810,'Opening - No Text'),
12865 (11,1,28875,'Gemcutting'),
12866 (11,1,28880,'Gift of the Naaru'),
12867 (11,1,29932,'Language Draenei'),
12868 (11,1,32215,'Victorious State'),
12869 (11,1,45927,'Summon Friend'),
12870 (11,1,59221,'Shadow Resistance'),
12871 (11,1,61437,'Opening'),
12872 (11,2,81,'Dodge'),
12873 (11,2,107,'Block'),
12874 (11,2,198,'One-Handed Maces'),
12875 (11,2,199,'Two-Handed Maces'),
12876 (11,2,203,'Unarmed'),
12877 (11,2,204,'Defense'),
12878 (11,2,522,'SPELLDEFENSE (DND)'),
12879 (11,2,635,'Holy Light'),
12880 (11,2,668,'Language Common'),
12881 (11,2,1843,'Disarm'),
12882 (11,2,2382,'Generic'),
12883 (11,2,2479,'Honorless Target'),
12884 (11,2,3050,'Detect'),
12885 (11,2,3365,'Opening'),
12886 (11,2,6233,'Closing'),
12887 (11,2,6246,'Closing'),
12888 (11,2,6247,'Opening'),
12889 (11,2,6477,'Opening'),
12890 (11,2,6478,'Opening'),
12891 (11,2,6562,'Heroic Presence'),
12892 (11,2,6603,'Attack'),
12893 (11,2,7266,'Duel'),
12894 (11,2,7267,'Grovel'),
12895 (11,2,7355,'Stuck'),
12896 (11,2,8386,'Attacking'),
12897 (11,2,8737,'Mail'),
12898 (11,2,9077,'Leather'),
12899 (11,2,9078,'Cloth'),
12900 (11,2,9116,'Shield'),
12901 (11,2,9125,'Generic'),
12902 (11,2,21084,'Seal of Righteousness'),
12903 (11,2,21651,'Opening'),
12904 (11,2,21652,'Closing'),
12905 (11,2,22027,'Remove Insignia'),
12906 (11,2,22810,'Opening - No Text'),
12907 (11,2,27762,'Libram'),
12908 (11,2,28875,'Gemcutting'),
12909 (11,2,29932,'Language Draenei'),
12910 (11,2,45927,'Summon Friend'),
12911 (11,2,59221,'Shadow Resistance'),
12912 (11,2,59542,'Gift of the Naaru'),
12913 (11,2,61437,'Opening'),
12914 (11,3,75,'Auto Shot'),
12915 (11,3,81,'Dodge'),
12916 (11,3,201,'One-Handed Swords'),
12917 (11,3,203,'Unarmed'),
12918 (11,3,204,'Defense'),
12919 (11,3,522,'SPELLDEFENSE (DND)'),
12920 (11,3,668,'Language Common'),
12921 (11,3,1843,'Disarm'),
12922 (11,3,2382,'Generic'),
12923 (11,3,2479,'Honorless Target'),
12924 (11,3,2973,'Raptor Strike'),
12925 (11,3,3050,'Detect'),
12926 (11,3,3365,'Opening'),
12927 (11,3,5011,'Crossbows'),
12928 (11,3,6233,'Closing'),
12929 (11,3,6246,'Closing'),
12930 (11,3,6247,'Opening'),
12931 (11,3,6477,'Opening'),
12932 (11,3,6478,'Opening'),
12933 (11,3,6562,'Heroic Presence'),
12934 (11,3,6603,'Attack'),
12935 (11,3,7266,'Duel'),
12936 (11,3,7267,'Grovel'),
12937 (11,3,7355,'Stuck'),
12938 (11,3,8386,'Attacking'),
12939 (11,3,9077,'Leather'),
12940 (11,3,9078,'Cloth'),
12941 (11,3,9125,'Generic'),
12942 (11,3,13358,'Defensive State (DND)'),
12943 (11,3,21651,'Opening'),
12944 (11,3,21652,'Closing'),
12945 (11,3,22027,'Remove Insignia'),
12946 (11,3,22810,'Opening - No Text'),
12947 (11,3,24949,'Defensive State 2 (DND)'),
12948 (11,3,28875,'Gemcutting'),
12949 (11,3,29932,'Language Draenei'),
12950 (11,3,34082,'Advantaged State (DND)'),
12951 (11,3,45927,'Summon Friend'),
12952 (11,3,59221,'Shadow Resistance'),
12953 (11,3,59543,'Gift of the Naaru'),
12954 (11,3,61437,'Opening'),
12955 (11,5,81,'Dodge'),
12956 (11,5,198,'One-Handed Maces'),
12957 (11,5,203,'Unarmed'),
12958 (11,5,204,'Defense'),
12959 (11,5,522,'SPELLDEFENSE (DND)'),
12960 (11,5,585,'Smite'),
12961 (11,5,668,'Language Common'),
12962 (11,5,1843,'Disarm'),
12963 (11,5,2050,'Lesser Heal'),
12964 (11,5,2382,'Generic'),
12965 (11,5,2479,'Honorless Target'),
12966 (11,5,3050,'Detect'),
12967 (11,5,3365,'Opening'),
12968 (11,5,5009,'Wands'),
12969 (11,5,5019,'Shoot'),
12970 (11,5,6233,'Closing'),
12971 (11,5,6246,'Closing'),
12972 (11,5,6247,'Opening'),
12973 (11,5,6477,'Opening'),
12974 (11,5,6478,'Opening'),
12975 (11,5,6603,'Attack'),
12976 (11,5,7266,'Duel'),
12977 (11,5,7267,'Grovel'),
12978 (11,5,7355,'Stuck'),
12979 (11,5,8386,'Attacking'),
12980 (11,5,9078,'Cloth'),
12981 (11,5,9125,'Generic'),
12982 (11,5,21651,'Opening'),
12983 (11,5,21652,'Closing'),
12984 (11,5,22027,'Remove Insignia'),
12985 (11,5,22810,'Opening - No Text'),
12986 (11,5,28875,'Gemcutting'),
12987 (11,5,28878,'Inspiring Presence'),
12988 (11,5,29932,'Language Draenei'),
12989 (11,5,45927,'Summon Friend'),
12990 (11,5,59221,'Shadow Resistance'),
12991 (11,5,59544,'Gift of the Naaru'),
12992 (11,5,61437,'Opening'),
12993 (11,6,81,'Dodge'),
12994 (11,6,196,'One-Handed Axes'),
12995 (11,6,197,'Two-Handed Axes'),
12996 (11,6,200,'Polearms'),
12997 (11,6,201,'One-Handed Swords'),
12998 (11,6,202,'Two-Handed Swords'),
12999 (11,6,203,'Unarmed'),
13000 (11,6,204,'Defense'),
13001 (11,6,522,'SPELLDEFENSE (DND)'),
13002 (11,6,668,'Language Common'),
13003 (11,6,674,'Dual Wield'),
13004 (11,6,750,'Plate Mail'),
13005 (11,6,1843,'Disarm'),
13006 (11,6,2382,'Generic'),
13007 (11,6,2479,'Honorless Target'),
13008 (11,6,3050,'Detect'),
13009 (11,6,3127,'Parry'),
13010 (11,6,3275,'Linen Bandage'),
13011 (11,6,3276,'Heavy Linen Bandage'),
13012 (11,6,3277,'Wool Bandage'),
13013 (11,6,3278,'Heavy Wool Bandage'),
13014 (11,6,3365,'Opening'),
13015 (11,6,6233,'Closing'),
13016 (11,6,6246,'Closing'),
13017 (11,6,6247,'Opening'),
13018 (11,6,6477,'Opening'),
13019 (11,6,6478,'Opening'),
13020 (11,6,6562,'Heroic Presence'),
13021 (11,6,6603,'Attack'),
13022 (11,6,7266,'Duel'),
13023 (11,6,7267,'Grovel'),
13024 (11,6,7355,'Stuck'),
13025 (11,6,7928,'Silk Bandage'),
13026 (11,6,7929,'Heavy Silk Bandage'),
13027 (11,6,7934,'Anti-Venom'),
13028 (11,6,8386,'Attacking'),
13029 (11,6,8737,'Mail'),
13030 (11,6,9077,'Leather'),
13031 (11,6,9078,'Cloth'),
13032 (11,6,9125,'Generic'),
13033 (11,6,10840,'Mageweave Bandage'),
13034 (11,6,10841,'Heavy Mageweave Bandage'),
13035 (11,6,10846,'First Aid'),
13036 (11,6,18629,'Runecloth Bandage'),
13037 (11,6,18630,'Heavy Runecloth Bandage'),
13038 (11,6,21651,'Opening'),
13039 (11,6,21652,'Closing'),
13040 (11,6,22027,'Remove Insignia'),
13041 (11,6,22810,'Opening - No Text'),
13042 (11,6,28875,'Gemcutting'),
13043 (11,6,29932,'Language Draenei'),
13044 (11,6,33391,'Journeyman Riding'),
13045 (11,6,45462,'Plague Strike'),
13046 (11,6,45477,'Icy Touch'),
13047 (11,6,45902,'Blood Strike'),
13048 (11,6,45903,'Offensive State (DND)'),
13049 (11,6,45927,'Summon Friend'),
13050 (11,6,47541,'Death Coil'),
13051 (11,6,48266,'Blood Presence'),
13052 (11,6,49410,'Forceful Deflection'),
13053 (11,6,49576,'Death Grip'),
13054 (11,6,52665,'Sigil'),
13055 (11,6,59221,'Shadow Resistance'),
13056 (11,6,59539,'Shadow Resistance'),
13057 (11,6,59545,'Gift of the Naaru'),
13058 (11,6,59879,'Blood Plague'),
13059 (11,6,59921,'Frost Fever'),
13060 (11,6,61437,'Opening'),
13061 (11,6,61455,'Runic Focus'),
13062 (11,7,81,'Dodge'),
13063 (11,7,107,'Block'),
13064 (11,7,198,'One-Handed Maces'),
13065 (11,7,203,'Unarmed'),
13066 (11,7,204,'Defense'),
13067 (11,7,227,'Staves'),
13068 (11,7,331,'Healing Wave'),
13069 (11,7,403,'Lightning Bolt'),
13070 (11,7,522,'SPELLDEFENSE (DND)'),
13071 (11,7,668,'Language Common'),
13072 (11,7,1843,'Disarm'),
13073 (11,7,2382,'Generic'),
13074 (11,7,2479,'Honorless Target'),
13075 (11,7,3050,'Detect'),
13076 (11,7,3365,'Opening'),
13077 (11,7,6233,'Closing'),
13078 (11,7,6246,'Closing'),
13079 (11,7,6247,'Opening'),
13080 (11,7,6477,'Opening'),
13081 (11,7,6478,'Opening'),
13082 (11,7,6603,'Attack'),
13083 (11,7,7266,'Duel'),
13084 (11,7,7267,'Grovel'),
13085 (11,7,7355,'Stuck'),
13086 (11,7,8386,'Attacking'),
13087 (11,7,9077,'Leather'),
13088 (11,7,9078,'Cloth'),
13089 (11,7,9116,'Shield'),
13090 (11,7,9125,'Generic'),
13091 (11,7,21651,'Opening'),
13092 (11,7,21652,'Closing'),
13093 (11,7,22027,'Remove Insignia'),
13094 (11,7,22810,'Opening - No Text'),
13095 (11,7,27763,'Totem'),
13096 (11,7,28875,'Gemcutting'),
13097 (11,7,28878,'Inspiring Presence'),
13098 (11,7,29932,'Language Draenei'),
13099 (11,7,45927,'Summon Friend'),
13100 (11,7,59221,'Shadow Resistance'),
13101 (11,7,59547,'Gift of the Naaru'),
13102 (11,7,61437,'Opening'),
13103 (11,8,81,'Dodge'),
13104 (11,8,133,'Fireball'),
13105 (11,8,168,'Frost Armor'),
13106 (11,8,203,'Unarmed'),
13107 (11,8,204,'Defense'),
13108 (11,8,227,'Staves'),
13109 (11,8,522,'SPELLDEFENSE (DND)'),
13110 (11,8,668,'Language Common'),
13111 (11,8,1843,'Disarm'),
13112 (11,8,2382,'Generic'),
13113 (11,8,2479,'Honorless Target'),
13114 (11,8,3050,'Detect'),
13115 (11,8,3365,'Opening'),
13116 (11,8,5009,'Wands'),
13117 (11,8,5019,'Shoot'),
13118 (11,8,6233,'Closing'),
13119 (11,8,6246,'Closing'),
13120 (11,8,6247,'Opening'),
13121 (11,8,6477,'Opening'),
13122 (11,8,6478,'Opening'),
13123 (11,8,6603,'Attack'),
13124 (11,8,7266,'Duel'),
13125 (11,8,7267,'Grovel'),
13126 (11,8,7355,'Stuck'),
13127 (11,8,8386,'Attacking'),
13128 (11,8,9078,'Cloth'),
13129 (11,8,9125,'Generic'),
13130 (11,8,21651,'Opening'),
13131 (11,8,21652,'Closing'),
13132 (11,8,22027,'Remove Insignia'),
13133 (11,8,22810,'Opening - No Text'),
13134 (11,8,28875,'Gemcutting'),
13135 (11,8,28878,'Inspiring Presence'),
13136 (11,8,29932,'Language Draenei'),
13137 (11,8,45927,'Summon Friend'),
13138 (11,8,59221,'Shadow Resistance'),
13139 (11,8,59548,'Gift of the Naaru'),
13140 (11,8,61437,'Opening');
13141 /*!40000 ALTER TABLE `playercreateinfo_spell` ENABLE KEYS */;
13142 UNLOCK TABLES;
13145 -- Table structure for table `points_of_interest`
13148 DROP TABLE IF EXISTS `points_of_interest`;
13149 CREATE TABLE `points_of_interest` (
13150   `entry` mediumint(8) unsigned NOT NULL default '0',
13151   `x` float NOT NULL default '0',
13152   `y` float NOT NULL default '0',
13153   `icon` mediumint(8) unsigned NOT NULL default '0',
13154   `flags` mediumint(8) unsigned NOT NULL default '0',
13155   `data` mediumint(8) unsigned NOT NULL default '0',
13156   `icon_name` text NOT NULL,
13157   PRIMARY KEY  (`entry`)
13158 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13161 -- Dumping data for table `points_of_interest`
13164 LOCK TABLES `points_of_interest` WRITE;
13165 /*!40000 ALTER TABLE `points_of_interest` DISABLE KEYS */;
13166 /*!40000 ALTER TABLE `points_of_interest` ENABLE KEYS */;
13167 UNLOCK TABLES;
13171 -- Table structure for table `pool_creature`
13174 DROP TABLE IF EXISTS `pool_creature`;
13175 CREATE TABLE `pool_creature` (
13176   `guid` int(10) unsigned NOT NULL default '0',
13177   `pool_entry` mediumint(8) unsigned NOT NULL default '0',
13178   `chance` float unsigned NOT NULL default '0',
13179   `description` varchar(255) NOT NULL,
13180   PRIMARY KEY  (`pool_entry`,`guid`),
13181   INDEX `idx_guid`(`guid`)
13182 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13186 -- Dumping data for table `pool_creature`
13189 LOCK TABLES `pool_creature` WRITE;
13190 /*!40000 ALTER TABLE `pool_creature` DISABLE KEYS */;
13191 /*!40000 ALTER TABLE `pool_creature` ENABLE KEYS */;
13192 UNLOCK TABLES;
13195 -- Table structure for table `pool_gameobject`
13198 DROP TABLE IF EXISTS `pool_gameobject`;
13199 CREATE TABLE `pool_gameobject` (
13200   `guid` int(10) unsigned NOT NULL default '0',
13201   `pool_entry` mediumint(8) unsigned NOT NULL default '0',
13202   `chance` float unsigned NOT NULL default '0',
13203   `description` varchar(255) NOT NULL,
13204   PRIMARY KEY  (`guid`,`pool_entry`),
13205   INDEX `idx_guid`(`guid`)
13206 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13209 -- Dumping data for table `pool_gameobject`
13212 LOCK TABLES `pool_gameobject` WRITE;
13213 /*!40000 ALTER TABLE `pool_gameobject` DISABLE KEYS */;
13214 /*!40000 ALTER TABLE `pool_gameobject` ENABLE KEYS */;
13215 UNLOCK TABLES;
13218 -- Table structure for table `pool_pool`
13221 DROP TABLE IF EXISTS `pool_pool`;
13222 CREATE TABLE `pool_pool` (
13223   `pool_id` mediumint(8) unsigned NOT NULL default '0',
13224   `mother_pool` mediumint(8) unsigned NOT NULL default '0',
13225   `chance` float NOT NULL default '0',
13226   `description` varchar(255) NOT NULL,
13227   PRIMARY KEY  (`pool_id`,`mother_pool`)
13228 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13231 -- Dumping data for table `pool_pool`
13234 LOCK TABLES `pool_pool` WRITE;
13235 /*!40000 ALTER TABLE `pool_pool` DISABLE KEYS */;
13236 /*!40000 ALTER TABLE `pool_pool` ENABLE KEYS */;
13237 UNLOCK TABLES;
13240 -- Table structure for table `pool_template`
13243 DROP TABLE IF EXISTS `pool_template`;
13244 CREATE TABLE `pool_template` (
13245   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Pool entry',
13246   `max_limit` int(10) unsigned NOT NULL default '0' COMMENT 'Max number of objects (0) is no limit',
13247   `description` varchar(255) NOT NULL,
13248   PRIMARY KEY  (`entry`)
13249 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13252 -- Dumping data for table `pool_template`
13255 LOCK TABLES `pool_template` WRITE;
13256 /*!40000 ALTER TABLE `pool_template` DISABLE KEYS */;
13257 /*!40000 ALTER TABLE `pool_template` ENABLE KEYS */;
13258 UNLOCK TABLES;
13261 -- Table structure for table `game_event_pool`
13264 DROP TABLE IF EXISTS `game_event_pool`;
13265 CREATE TABLE `game_event_pool` (
13266   `pool_entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Id of the pool',
13267   `event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
13268   PRIMARY KEY  (`pool_entry`)
13269 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13272 -- Dumping data for table `game_event_pool`
13275 LOCK TABLES `game_event_pool` WRITE;
13276 /*!40000 ALTER TABLE `game_event_pool` DISABLE KEYS */;
13277 /*!40000 ALTER TABLE `game_event_pool` ENABLE KEYS */;
13278 UNLOCK TABLES;
13281 -- Table structure for table `prospecting_loot_template`
13284 DROP TABLE IF EXISTS `prospecting_loot_template`;
13285 CREATE TABLE `prospecting_loot_template` (
13286   `entry` mediumint(8) unsigned NOT NULL default '0',
13287   `item` mediumint(8) unsigned NOT NULL default '0',
13288   `ChanceOrQuestChance` float NOT NULL default '100',
13289   `groupid` tinyint(3) unsigned NOT NULL default '0',
13290   `mincountOrRef` mediumint(9) NOT NULL default '1',
13291   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13292   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13293   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13294   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13295   PRIMARY KEY  (`entry`,`item`)
13296 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13299 -- Dumping data for table `prospecting_loot_template`
13302 LOCK TABLES `prospecting_loot_template` WRITE;
13303 /*!40000 ALTER TABLE `prospecting_loot_template` DISABLE KEYS */;
13304 /*!40000 ALTER TABLE `prospecting_loot_template` ENABLE KEYS */;
13305 UNLOCK TABLES;
13308 -- Table structure for table `quest_end_scripts`
13311 DROP TABLE IF EXISTS `quest_end_scripts`;
13312 CREATE TABLE `quest_end_scripts` (
13313   `id` mediumint(8) unsigned NOT NULL default '0',
13314   `delay` int(10) unsigned NOT NULL default '0',
13315   `command` mediumint(8) unsigned NOT NULL default '0',
13316   `datalong` mediumint(8) unsigned NOT NULL default '0',
13317   `datalong2` int(10) unsigned NOT NULL default '0',
13318   `dataint` int(11) NOT NULL default '0',
13319   `x` float NOT NULL default '0',
13320   `y` float NOT NULL default '0',
13321   `z` float NOT NULL default '0',
13322   `o` float NOT NULL default '0'
13323 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13326 -- Dumping data for table `quest_end_scripts`
13329 LOCK TABLES `quest_end_scripts` WRITE;
13330 /*!40000 ALTER TABLE `quest_end_scripts` DISABLE KEYS */;
13331 /*!40000 ALTER TABLE `quest_end_scripts` ENABLE KEYS */;
13332 UNLOCK TABLES;
13335 -- Table structure for table `quest_start_scripts`
13338 DROP TABLE IF EXISTS `quest_start_scripts`;
13339 CREATE TABLE `quest_start_scripts` (
13340   `id` mediumint(8) unsigned NOT NULL default '0',
13341   `delay` int(10) unsigned NOT NULL default '0',
13342   `command` mediumint(8) unsigned NOT NULL default '0',
13343   `datalong` mediumint(8) unsigned NOT NULL default '0',
13344   `datalong2` int(10) unsigned NOT NULL default '0',
13345   `dataint` int(11) NOT NULL default '0',
13346   `x` float NOT NULL default '0',
13347   `y` float NOT NULL default '0',
13348   `z` float NOT NULL default '0',
13349   `o` float NOT NULL default '0'
13350 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13353 -- Dumping data for table `quest_start_scripts`
13356 LOCK TABLES `quest_start_scripts` WRITE;
13357 /*!40000 ALTER TABLE `quest_start_scripts` DISABLE KEYS */;
13358 /*!40000 ALTER TABLE `quest_start_scripts` ENABLE KEYS */;
13359 UNLOCK TABLES;
13362 -- Table structure for table `quest_mail_loot_template`
13365 DROP TABLE IF EXISTS `quest_mail_loot_template`;
13366 CREATE TABLE `quest_mail_loot_template` (
13367   `entry` mediumint(8) unsigned NOT NULL default '0',
13368   `item` mediumint(8) unsigned NOT NULL default '0',
13369   `ChanceOrQuestChance` float NOT NULL default '100',
13370   `groupid` tinyint(3) unsigned NOT NULL default '0',
13371   `mincountOrRef` mediumint(9) NOT NULL default '1',
13372   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13373   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13374   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13375   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13376   PRIMARY KEY  (`entry`,`item`)
13377 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13380 -- Dumping data for table `quest_mail_loot_template`
13383 LOCK TABLES `quest_mail_loot_template` WRITE;
13384 /*!40000 ALTER TABLE `quest_mail_loot_template` DISABLE KEYS */;
13385 /*!40000 ALTER TABLE `quest_mail_loot_template` ENABLE KEYS */;
13386 UNLOCK TABLES;
13389 -- Table structure for table `quest_template`
13392 DROP TABLE IF EXISTS `quest_template`;
13393 CREATE TABLE `quest_template` (
13394   `entry` mediumint(8) unsigned NOT NULL default '0',
13395   `Method` tinyint(3) unsigned NOT NULL default '2',
13396   `ZoneOrSort` smallint(6) NOT NULL default '0',
13397   `SkillOrClass` smallint(6) NOT NULL default '0',
13398   `MinLevel` tinyint(3) unsigned NOT NULL default '0',
13399   `QuestLevel` tinyint(3) unsigned NOT NULL default '0',
13400   `Type` smallint(5) unsigned NOT NULL default '0',
13401   `RequiredRaces` smallint(5) unsigned NOT NULL default '0',
13402   `RequiredSkillValue` smallint(5) unsigned NOT NULL default '0',
13403   `RepObjectiveFaction` smallint(5) unsigned NOT NULL default '0',
13404   `RepObjectiveValue` mediumint(9) NOT NULL default '0',
13405   `RequiredMinRepFaction` smallint(5) unsigned NOT NULL default '0',
13406   `RequiredMinRepValue` mediumint(9) NOT NULL default '0',
13407   `RequiredMaxRepFaction` smallint(5) unsigned NOT NULL default '0',
13408   `RequiredMaxRepValue` mediumint(9) NOT NULL default '0',
13409   `SuggestedPlayers` tinyint(3) unsigned NOT NULL default '0',
13410   `LimitTime` int(10) unsigned NOT NULL default '0',
13411   `QuestFlags` smallint(5) unsigned NOT NULL default '0',
13412   `SpecialFlags` tinyint(3) unsigned NOT NULL default '0',
13413   `CharTitleId` tinyint(3) unsigned NOT NULL default '0',
13414   `PlayersSlain` tinyint(3) unsigned NOT NULL default '0',
13415   `BonusTalents` tinyint(3) unsigned NOT NULL default '0',
13416   `PrevQuestId` mediumint(9) NOT NULL default '0',
13417   `NextQuestId` mediumint(9) NOT NULL default '0',
13418   `ExclusiveGroup` mediumint(9) NOT NULL default '0',
13419   `NextQuestInChain` mediumint(8) unsigned NOT NULL default '0',
13420   `SrcItemId` mediumint(8) unsigned NOT NULL default '0',
13421   `SrcItemCount` tinyint(3) unsigned NOT NULL default '0',
13422   `SrcSpell` mediumint(8) unsigned NOT NULL default '0',
13423   `Title` text,
13424   `Details` text,
13425   `Objectives` text,
13426   `OfferRewardText` text,
13427   `RequestItemsText` text,
13428   `EndText` text,
13429   `ObjectiveText1` text,
13430   `ObjectiveText2` text,
13431   `ObjectiveText3` text,
13432   `ObjectiveText4` text,
13433   `ReqItemId1` mediumint(8) unsigned NOT NULL default '0',
13434   `ReqItemId2` mediumint(8) unsigned NOT NULL default '0',
13435   `ReqItemId3` mediumint(8) unsigned NOT NULL default '0',
13436   `ReqItemId4` mediumint(8) unsigned NOT NULL default '0',
13437   `ReqItemCount1` smallint(5) unsigned NOT NULL default '0',
13438   `ReqItemCount2` smallint(5) unsigned NOT NULL default '0',
13439   `ReqItemCount3` smallint(5) unsigned NOT NULL default '0',
13440   `ReqItemCount4` smallint(5) unsigned NOT NULL default '0',
13441   `ReqSourceId1` mediumint(8) unsigned NOT NULL default '0',
13442   `ReqSourceId2` mediumint(8) unsigned NOT NULL default '0',
13443   `ReqSourceId3` mediumint(8) unsigned NOT NULL default '0',
13444   `ReqSourceId4` mediumint(8) unsigned NOT NULL default '0',
13445   `ReqSourceCount1` smallint(5) unsigned NOT NULL default '0',
13446   `ReqSourceCount2` smallint(5) unsigned NOT NULL default '0',
13447   `ReqSourceCount3` smallint(5) unsigned NOT NULL default '0',
13448   `ReqSourceCount4` smallint(5) unsigned NOT NULL default '0',
13449   `ReqCreatureOrGOId1` mediumint(9) NOT NULL default '0',
13450   `ReqCreatureOrGOId2` mediumint(9) NOT NULL default '0',
13451   `ReqCreatureOrGOId3` mediumint(9) NOT NULL default '0',
13452   `ReqCreatureOrGOId4` mediumint(9) NOT NULL default '0',
13453   `ReqCreatureOrGOCount1` smallint(5) unsigned NOT NULL default '0',
13454   `ReqCreatureOrGOCount2` smallint(5) unsigned NOT NULL default '0',
13455   `ReqCreatureOrGOCount3` smallint(5) unsigned NOT NULL default '0',
13456   `ReqCreatureOrGOCount4` smallint(5) unsigned NOT NULL default '0',
13457   `ReqSpellCast1` mediumint(8) unsigned NOT NULL default '0',
13458   `ReqSpellCast2` mediumint(8) unsigned NOT NULL default '0',
13459   `ReqSpellCast3` mediumint(8) unsigned NOT NULL default '0',
13460   `ReqSpellCast4` mediumint(8) unsigned NOT NULL default '0',
13461   `RewChoiceItemId1` mediumint(8) unsigned NOT NULL default '0',
13462   `RewChoiceItemId2` mediumint(8) unsigned NOT NULL default '0',
13463   `RewChoiceItemId3` mediumint(8) unsigned NOT NULL default '0',
13464   `RewChoiceItemId4` mediumint(8) unsigned NOT NULL default '0',
13465   `RewChoiceItemId5` mediumint(8) unsigned NOT NULL default '0',
13466   `RewChoiceItemId6` mediumint(8) unsigned NOT NULL default '0',
13467   `RewChoiceItemCount1` smallint(5) unsigned NOT NULL default '0',
13468   `RewChoiceItemCount2` smallint(5) unsigned NOT NULL default '0',
13469   `RewChoiceItemCount3` smallint(5) unsigned NOT NULL default '0',
13470   `RewChoiceItemCount4` smallint(5) unsigned NOT NULL default '0',
13471   `RewChoiceItemCount5` smallint(5) unsigned NOT NULL default '0',
13472   `RewChoiceItemCount6` smallint(5) unsigned NOT NULL default '0',
13473   `RewItemId1` mediumint(8) unsigned NOT NULL default '0',
13474   `RewItemId2` mediumint(8) unsigned NOT NULL default '0',
13475   `RewItemId3` mediumint(8) unsigned NOT NULL default '0',
13476   `RewItemId4` mediumint(8) unsigned NOT NULL default '0',
13477   `RewItemCount1` smallint(5) unsigned NOT NULL default '0',
13478   `RewItemCount2` smallint(5) unsigned NOT NULL default '0',
13479   `RewItemCount3` smallint(5) unsigned NOT NULL default '0',
13480   `RewItemCount4` smallint(5) unsigned NOT NULL default '0',
13481   `RewRepFaction1` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13482   `RewRepFaction2` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13483   `RewRepFaction3` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13484   `RewRepFaction4` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13485   `RewRepFaction5` smallint(5) unsigned NOT NULL default '0' COMMENT 'faction id from Faction.dbc in this case',
13486   `RewRepValue1` mediumint(9) NOT NULL default '0',
13487   `RewRepValue2` mediumint(9) NOT NULL default '0',
13488   `RewRepValue3` mediumint(9) NOT NULL default '0',
13489   `RewRepValue4` mediumint(9) NOT NULL default '0',
13490   `RewRepValue5` mediumint(9) NOT NULL default '0',
13491   `RewHonorableKills` int unsigned NOT NULL default '0',
13492   `RewOrReqMoney` int(11) NOT NULL default '0',
13493   `RewMoneyMaxLevel` int(10) unsigned NOT NULL default '0',
13494   `RewSpell` mediumint(8) unsigned NOT NULL default '0',
13495   `RewSpellCast` mediumint(8) unsigned NOT NULL default '0',
13496   `RewMailTemplateId` mediumint(8) unsigned NOT NULL default '0',
13497   `RewMailDelaySecs` int(11) unsigned NOT NULL default '0',
13498   `PointMapId` smallint(5) unsigned NOT NULL default '0',
13499   `PointX` float NOT NULL default '0',
13500   `PointY` float NOT NULL default '0',
13501   `PointOpt` mediumint(8) unsigned NOT NULL default '0',
13502   `DetailsEmote1` smallint(5) unsigned NOT NULL default '0',
13503   `DetailsEmote2` smallint(5) unsigned NOT NULL default '0',
13504   `DetailsEmote3` smallint(5) unsigned NOT NULL default '0',
13505   `DetailsEmote4` smallint(5) unsigned NOT NULL default '0',
13506   `DetailsEmoteDelay1` int(11) unsigned NOT NULL default '0',
13507   `DetailsEmoteDelay2` int(11) unsigned NOT NULL default '0',
13508   `DetailsEmoteDelay3` int(11) unsigned NOT NULL default '0',
13509   `DetailsEmoteDelay4` int(11) unsigned NOT NULL default '0',
13510   `IncompleteEmote` smallint(5) unsigned NOT NULL default '0',
13511   `CompleteEmote` smallint(5) unsigned NOT NULL default '0',
13512   `OfferRewardEmote1` smallint(5) unsigned NOT NULL default '0',
13513   `OfferRewardEmote2` smallint(5) unsigned NOT NULL default '0',
13514   `OfferRewardEmote3` smallint(5) unsigned NOT NULL default '0',
13515   `OfferRewardEmote4` smallint(5) unsigned NOT NULL default '0',
13516   `OfferRewardEmoteDelay1` int(11) unsigned NOT NULL default '0',
13517   `OfferRewardEmoteDelay2` int(11) unsigned NOT NULL default '0',
13518   `OfferRewardEmoteDelay3` int(11) unsigned NOT NULL default '0',
13519   `OfferRewardEmoteDelay4` int(11) unsigned NOT NULL default '0',
13520   `StartScript` mediumint(8) unsigned NOT NULL default '0',
13521   `CompleteScript` mediumint(8) unsigned NOT NULL default '0',
13522   PRIMARY KEY  (`entry`)
13523 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Quest System';
13526 -- Dumping data for table `quest_template`
13529 LOCK TABLES `quest_template` WRITE;
13530 /*!40000 ALTER TABLE `quest_template` DISABLE KEYS */;
13531 /*!40000 ALTER TABLE `quest_template` ENABLE KEYS */;
13532 UNLOCK TABLES;
13535 -- Table structure for table `reference_loot_template`
13538 DROP TABLE IF EXISTS `reference_loot_template`;
13539 CREATE TABLE `reference_loot_template` (
13540   `entry` mediumint(8) unsigned NOT NULL default '0',
13541   `item` mediumint(8) unsigned NOT NULL default '0',
13542   `ChanceOrQuestChance` float NOT NULL default '100',
13543   `groupid` tinyint(3) unsigned NOT NULL default '0',
13544   `mincountOrRef` mediumint(9) NOT NULL default '1',
13545   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13546   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13547   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13548   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13549   PRIMARY KEY  (`entry`,`item`)
13550 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13553 -- Dumping data for table `reference_loot_template`
13556 LOCK TABLES `reference_loot_template` WRITE;
13557 /*!40000 ALTER TABLE `reference_loot_template` DISABLE KEYS */;
13558 /*!40000 ALTER TABLE `reference_loot_template` ENABLE KEYS */;
13559 UNLOCK TABLES;
13562 -- Table structure for table `reserved_name`
13565 DROP TABLE IF EXISTS `reserved_name`;
13566 CREATE TABLE `reserved_name` (
13567   `name` varchar(12) NOT NULL default '',
13568   PRIMARY KEY  (`name`)
13569 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player Reserved Names';
13572 -- Dumping data for table `reserved_name`
13575 LOCK TABLES `reserved_name` WRITE;
13576 /*!40000 ALTER TABLE `reserved_name` DISABLE KEYS */;
13577 /*!40000 ALTER TABLE `reserved_name` ENABLE KEYS */;
13578 UNLOCK TABLES;
13581 -- Table structure for table `skill_discovery_template`
13584 DROP TABLE IF EXISTS `skill_discovery_template`;
13585 CREATE TABLE `skill_discovery_template` (
13586   `spellId` mediumint(8) unsigned NOT NULL default '0' COMMENT 'SpellId of the discoverable spell',
13587   `reqSpell` mediumint(8) unsigned NOT NULL default '0' COMMENT 'spell requirement',
13588   `reqSkillValue` smallint(5) unsigned NOT NULL default '0' COMMENT 'skill points requirement',
13589   `chance` float NOT NULL default '0' COMMENT 'chance to discover',
13590   PRIMARY KEY (`spellId`,`reqSpell`)
13591 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Discovery System';
13594 -- Dumping data for table `skill_discovery_template`
13597 LOCK TABLES `skill_discovery_template` WRITE;
13598 /*!40000 ALTER TABLE `skill_discovery_template` DISABLE KEYS */;
13599 /*!40000 ALTER TABLE `skill_discovery_template` ENABLE KEYS */;
13600 UNLOCK TABLES;
13603 -- Table structure for table `skill_extra_item_template`
13606 DROP TABLE IF EXISTS `skill_extra_item_template`;
13607 CREATE TABLE `skill_extra_item_template` (
13608   `spellId` mediumint(8) unsigned NOT NULL default '0' COMMENT 'SpellId of the item creation spell',
13609   `requiredSpecialization` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Specialization spell id',
13610   `additionalCreateChance` float NOT NULL default '0' COMMENT 'chance to create add',
13611   `additionalMaxNum` tinyint(3) unsigned NOT NULL default '0' COMMENT 'max num of adds',
13612   PRIMARY KEY  (`spellId`)
13613 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Skill Specialization System';
13616 -- Dumping data for table `skill_extra_item_template`
13619 LOCK TABLES `skill_extra_item_template` WRITE;
13620 /*!40000 ALTER TABLE `skill_extra_item_template` DISABLE KEYS */;
13621 /*!40000 ALTER TABLE `skill_extra_item_template` ENABLE KEYS */;
13622 UNLOCK TABLES;
13625 -- Table structure for table `skill_fishing_base_level`
13628 DROP TABLE IF EXISTS `skill_fishing_base_level`;
13629 CREATE TABLE `skill_fishing_base_level` (
13630   `entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Area identifier',
13631   `skill` smallint(6) NOT NULL default '0' COMMENT 'Base skill level requirement',
13632   PRIMARY KEY  (`entry`)
13633 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Fishing system';
13636 -- Dumping data for table `skill_fishing_base_level`
13639 LOCK TABLES `skill_fishing_base_level` WRITE;
13640 /*!40000 ALTER TABLE `skill_fishing_base_level` DISABLE KEYS */;
13641 /*!40000 ALTER TABLE `skill_fishing_base_level` ENABLE KEYS */;
13642 UNLOCK TABLES;
13645 -- Table structure for table `skinning_loot_template`
13648 DROP TABLE IF EXISTS `skinning_loot_template`;
13649 CREATE TABLE `skinning_loot_template` (
13650   `entry` mediumint(8) unsigned NOT NULL default '0',
13651   `item` mediumint(8) unsigned NOT NULL default '0',
13652   `ChanceOrQuestChance` float NOT NULL default '100',
13653   `groupid` tinyint(3) unsigned NOT NULL default '0',
13654   `mincountOrRef` mediumint(9) NOT NULL default '1',
13655   `maxcount` tinyint(3) unsigned NOT NULL default '1',
13656   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
13657   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
13658   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
13659   PRIMARY KEY  (`entry`,`item`)
13660 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
13663 -- Dumping data for table `skinning_loot_template`
13666 LOCK TABLES `skinning_loot_template` WRITE;
13667 /*!40000 ALTER TABLE `skinning_loot_template` DISABLE KEYS */;
13668 /*!40000 ALTER TABLE `skinning_loot_template` ENABLE KEYS */;
13669 UNLOCK TABLES;
13672 -- Table structure for table `spell_area`
13675 DROP TABLE IF EXISTS `spell_area`;
13676 CREATE TABLE `spell_area` (
13677   `spell`              mediumint(8) unsigned NOT NULL default '0',
13678   `area`               mediumint(8) unsigned NOT NULL default '0',
13679   `quest_start`        mediumint(8) unsigned NOT NULL default '0',
13680   `quest_start_active` tinyint(1) unsigned NOT NULL default '0',
13681   `quest_end`          mediumint(8) unsigned NOT NULL default '0',
13682   `aura_spell`         mediumint(8) NOT NULL default '0',
13683   `racemask`           mediumint(8) unsigned NOT NULL default '0',
13684   `gender`             tinyint(1) unsigned NOT NULL default '2',
13685   `autocast`           tinyint(1) unsigned NOT NULL default '0',
13686   PRIMARY KEY  (`spell`,`area`,`quest_start`,`quest_start_active`,`aura_spell`,`racemask`,`gender`)
13687 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13690 -- Dumping data for table `spell_area`
13693 LOCK TABLES `spell_area` WRITE;
13694 /*!40000 ALTER TABLE `spell_area` DISABLE KEYS */;
13695 /*!40000 ALTER TABLE `spell_area` ENABLE KEYS */;
13696 UNLOCK TABLES;
13699 -- Table structure for `spell_bonus_data`
13702 DROP TABLE IF EXISTS `spell_bonus_data`;
13703 CREATE TABLE `spell_bonus_data` (
13704   `entry` smallint(5) unsigned NOT NULL,
13705   `direct_bonus` float NOT NULL default '0',
13706   `dot_bonus` float NOT NULL default '0',
13707   `ap_bonus` float NOT NULL default '0',
13708   `comments` varchar(255) default NULL,
13709   PRIMARY KEY  (`entry`)
13710 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
13713 -- Dumping data for table `spell_bonus_data`
13716 LOCK TABLES `spell_bonus_data` WRITE;
13717 /*!40000 ALTER TABLE `spell_bonus_data` DISABLE KEYS */;
13718 INSERT INTO `spell_bonus_data` VALUES
13719 /* Death Knight */
13720 (48721, 0,      0,       0.04,  'Death Knight - Blood Boil'),
13721 (55078, 0,      0,       0.055, 'Death Knight - Blood Plague Dummy Proc'),
13722 (50444, 0,      0,       0.105, 'Death Knight - Corpse Explosion Triggered'),
13723 (52212, 0,      0,       0.0475,'Death Knight - Death and Decay Triggered'),
13724 (47632, 0,      0,       0.15,  'Death Knight - Death Coil Damage'),
13725 (47633, 0,      0,       0.15,  'Death Knight - Death Coil Heal'),
13726 (55095, 0,      0,       0.055, 'Death Knight - Frost Fever'),
13727 (49184, 0,      0,       0.1,   'Death Knight - Howling Blast'),
13728 (45477, 0,      0,       0.1,   'Death Knight - Icy Touch'),
13729 (56903, 0,      0,       0,     'Death Knight - Lichflame'),
13730 (50842, 0,      0,       0.04,  'Death Knight - Pestilence'),
13731 (50401, 0,      0,       0,     'Death Knight - Razor Frost'),
13732 (47476, 0,      0,       0.06,  'Death Knight - Strangulate'),
13733 (50536, 0,      0,       0.013, 'Death Knight - Unholy Blight Triggered'),
13734 /* Druid */
13735 (5185,  1.6104, 0,       0,     'Druid - Healing Touch'),
13736 (339,   0,      0.1,     0,     'Druid - Entangling Roots'),
13737 (42231, 0.12898,0,       0,     'Druid - Hurricane Triggered'),
13738 (5570,  0,      0.2,     0,     'Druid - Insect Swarm'),
13739 (33763, 0,      0.09518, 0,     'Druid - Lifebloom'),
13740 (8921,  0.1515, 0.13,    0,     'Druid - Moonfire'),
13741 (50464, 0.6611, 0,       0,     'Druid - Nourish'),
13742 (8936,  0.539,  0.188,   0,     'Druid - Regrowth'),
13743 (774,   0,      0.37604, 0,     'Druid - Rejuvenation'),
13744 (50288, 0.05,   0,       0,     'Druid - Starfall'),
13745 (50294, 0.012,  0,       0,     'Druid - Starfall AOE'),
13746 (2912,  1,      0,       0,     'Druid - Starfire'),
13747 (18562, 0,      0,       0,     'Druid - Swiftmend'),
13748 (44203, 0.538,  0,       0,     'Druid - Tranquility Triggered'),
13749 (61391, 0.193,  0,       0,     'Druid - Typhoon'),
13750 (48438, 0,      0.11505, 0,     'Druid - Wild Growth'),
13751 (5176,  0.5714, 0,       0,     'Druid - Wrath'),
13752 /* Mage */
13753 (44425, 0.714286,0,      0,     'Mage - Arcane Barrage'),
13754 (30451, 0.7143, 0,       0,     'Mage - Arcane Blast'),
13755 (1449,  0.2128, 0,       0,     'Mage - Arcane Explosion'),
13756 (7268,  0.2857, 0,       0,     'Mage - Arcane Missiles Triggered Spell'),
13757 (42208, 0.1437, 0,       0,     'Mage - Blizzard Triggered'),
13758 (2136,  0.4286, 0,       0,     'Mage - Fire Blast'),
13759 (133,   1,      0,       0,     'Mage - Fire Ball'),
13760 (2120,  0.2357, 0.122,   0,     'Mage - Flamestrike'),
13761 (122,   0.193,  0,       0,     'Mage - Frost Nova'),
13762 (116,   0.8143, 0,       0,     'Mage - Frost Bolt'),
13763 (44614, 0.8571, 0,       0,     'Mage - Frostfire Bolt'),
13764 (11426, 0.8053, 0,       0,     'Mage - Ice Barrier'),
13765 (30455, 0.1429, 0,       0,     'Mage - Ice Lance'),
13766 (44457, 0.4,    0.2,     0,     'Mage - Living Bomb'),
13767 (1463,  0.8053, 0,       0,     'Mage - Mana Shield'),
13768 (34913, 0,      0,       0,     'Mage - Molten Armor Triggered'),
13769 (11366, 1.15,   0.05,    0,     'Mage - Pyroblast'),
13770 (2948,  0.4286, 0,       0,     'Mage - Scorch'),
13771 /* Paladin */
13772 (31935, 0.07,   0,       0.07,  'Paladin - Avengers Shiled'),
13773 (53742, 0,      0.0156,  0.03,  'Paladin - Blood Corruption'),
13774 (26573, 0,      0.04,    0.04,  'Paladin - Consecration'),
13775 (879,   0.15,   0,       0.15,  'Paladin - Exorcism'),
13776 (25997, 0,      0,       0,     'Paladin - Eye for an Eye'),
13777 (19750, 1,      0,       0,     'Paladin - Flash of Light'),
13778 (53595, 0,      0,       0,     'Paladin - Hammer of the Righteous'),
13779 (24275, 0.15,   0,       0.15,  'Paladin - Hammer of Wrath'),
13780 (635,   1.66,   0,       0,     'Paladin - Holy Light'),
13781 (25912, 0.4286, 0,       0,     'Paladin - Holy Shock Triggered Hurt'),
13782 (20925, 0.09,   0,       0.056, 'Paladin - Holy Shield'),
13783 (31803, 0,      0.0156,  0.03,  'Paladin - Holy Vengeance'),
13784 (2812,  0.07,   0,       0.07,  'Paladin - Holy Wrath'),
13785 (54158, 0.25,   0,       0,     'Paladin - Judgement'),
13786 (31898, 0.18,   0,       0.11,  'Paladin - Judgement of Blood Enemy'), 
13787 (32220, 0.0594, 0,       0.0363,'Paladin - Judgement of Blood Self'),
13788 (20467, 0.25,   0,       0.16,  'Paladin - Judgement of Command'),
13789 (53733, 0,      0,       0,     'Paladin - Judgement of Corruption'),
13790 (20267, 0.1,    0,       0.1,   'Paladin - Judgement of Light Proc'),
13791 (20187, 0.32,   0,       0,     'Paladin - Judgement of Righteousness'),
13792 (53726, 0.18,   0,       0.11,  'Paladin - Judgement of the Martyr Enemy'),
13793 (53725, 0.0594, 0,       0.0363,'Paladin - Judgement of the Martyr Self'),
13794 (31804, 0,      0,       0,     'Paladin - Judgement of Vengeance'),
13795 (31893, 0,      0,       0,     'Paladin - Seal of Blood Proc Enemy'),
13796 (32221, 0,      0,       0,     'Paladin - Seal of Blood Proc Self'),
13797 (20424, 0,      0,       0,     'Paladin - Seal of Command Proc'),
13798 (53739, 0,      0.00156, 0.003, 'Paladin - Seal of Corruption (full stack proc)'),
13799 (20167, 0.15,   0,       0.15,  'Paladin - Seal of Light Proc'),
13800 (25742, 0.07,   0,       0.039, 'Paladin - Seal of Righteousness Dummy Proc'),
13801 (53719, 0,      0,       0,     'Paladin - Seal of the Martyr Proc Enemy'),
13802 (53718, 0,      0,       0,     'Paladin - Seal of the Martyr Proc Self'),
13803 (42463, 0,      0.00156, 0.003, 'Paladin - Seal of Vengeance (full stack proc)'),
13804 (53600, 0,      0,       0,     'Paladin - Shield of Righteousness'),
13805 /* Priest */
13806 (32546, 0.8068, 0,       0,     'Priest - Binding Heal'),
13807 (27813, 0,      0,       0,     'Priest - Blessed Recovery'),
13808 (34861, 0.402,  0,       0,     'Priest - Circle of Healing'),
13809 (19236, 0.8068, 0,       0,     'Priest - Desperate Prayer'),
13810 (2944,  0,      0.1849,  0,     'Priest - Devouring Plague'),
13811 (14914, 0.5711, 0.024,   0,     'Priest - Holy Fire'),
13812 (15237, 0.1606, 0,       0,     'Priest - Holy Nova Damage'),
13813 (2061,  0.8068, 0,       0,     'Priest - Flash Heal'),
13814 (2060,  1.6135, 0,       0,     'Priest - Greater Heal'),
13815 (23455, 0.3035, 0,       0,     'Priest - Holy Nova Heal'),
13816 (8129,  0,      0,       0,     'Priest - Mana Burn'),
13817 (58381, 0.257143,0,      0,     'Priest - Mind Flay Triggered'),
13818 (49821, 0.14286,0,       0,     'Priest - Mind Sear Trigger'),
13819 (17,    0.8068, 0,       0,     'Priest - Power Word: Shield'),
13820 (33110, 0.8068, 0,       0,     'Priest - Prayer of Mending Heal Proc'),
13821 (33619, 0,      0,       0,     'Priest - Reflective Shield'),
13822 (139,   0,      0.376,   0,     'Priest - Renew'),
13823 (32379, 0.4296, 0,       0,     'Priest - Shadow Word: Death'),
13824 (589,   0,      0.1829,  0,     'Priest - Shadow Word: Pain'),
13825 (34433, 0.65,   0,       0,     'Priest - Shadowfiend'),
13826 (585,   0.714,  0,       0,     'Priest - Smite'),
13827 (34914, 0,      0.4,     0,     'Priest - Vampiric Touch'),
13828 /* Shaman */
13829 (974,   0.4762, 0,       0,     'Shaman - Earth Shield'),
13830 (379,   0,      0,       0,     'Shaman - Earth Shield Triggered'),
13831 (1064,  1.34,   0,       0,     'Shaman - Chain Heal'),
13832 (421,   0.57,   0,       0,     'Shaman - Chain Lightning'),
13833 (8042,  0.3858, 0,       0,     'Shaman - Earth Shock'),
13834 (8443,  0.2142, 0,       0,     'Shaman - Fire Nova Totem Casted by Totem'),
13835 (8050,  0.2142, 0.1,     0,     'Shaman - Flame Shock'),
13836 (8026,  0.1,    0,       0,     'Shaman - Flametongue Weapon Proc'),
13837 (8056,  0.3858, 0,       0,     'Shaman - Frost Shock'),
13838 (8034,  0.1,    0,       0,     'Shaman - Frostbrand Attack Rank 1'),
13839 (52042, 0.045,  0,       0,     'Shaman - Healing Stream Totem Triggered Heal'),
13840 (331,   1.6106, 0,       0,     'Shaman - Healing Wave'),
13841 (51505, 0.5714, 0,       0,     'Shaman - Lava Burst'),
13842 (8004,  0.8082, 0,       0,     'Shaman - Lesser Healing Wave'),
13843 (403,   0.7143, 0,       0,     'Shaman - Lightning Bolt'),
13844 (26364, 0.33,   0,       0,     'Shaman - Lightning Shield Proc'),
13845 (8188,  0.1,    0,       0,     'Shaman - Magma Totam Passive'),
13846 (61295, 0.4,    0.18,    0,     'Shaman - Riptide'),
13847 (3606,  0.1667, 0,       0,     'Shaman - Searing Totem Attack'),
13848 /* Warlock */
13849 (17962, 0,      0,       0,     'Warlock - Conflagrate'),
13850 (172,   0,      0.3,     0,     'Warlock - Corruption'),
13851 (980,   0,      0.1,     0,     'Warlock - Curse of Agony'),
13852 (603,   0,      2,       0,     'Warlock - Curse of Doom'),
13853 (18220, 0.96,   0,       0,     'Warlock - Dark Pact'),
13854 (5138,  0,      0,       0,     'Warlock - Drain Mana'),
13855 (1120,  0,      0.4286,  0,     'Warlock - Drain Soul'),
13856 (28176, 0,      0,       0,     'Warlock - Fel Armor'),
13857 (18790, 0,      0,       0,     'Warlock - Fel Stamina'),
13858 (48181, 0.4729, 0,       0,     'Warlock - Haunt'),
13859 (755 ,  0,      0.4485,  0,     'Warlock - Health Funnel'),
13860 (1949,  0,      0.0946,  0,     'Warlock - Hellfire'),
13861 (5857,  0.1428, 0,       0,     'Warlock - Hellfire Effect on Enemy'),
13862 (348,   0.2,    0.2,     0,     'Warlock - Immolate'),
13863 (42223, 0.285714,0,      0,     'Warlock - Rain of Fire Triggered'),
13864 (27243, 0.2129, 0.25,    0,     'Warlock - Seed of Corruption'),
13865 (6229,  0.3,    0,       0,     'Warlock - Shadow Ward'),
13866 (47960, 0,      0.06666, 0,     'Warlock - Shadowflame DoT'),
13867 (47897, 0.1064, 0,       0,     'Warlock - Shadowflame Direct'),
13868 (63106, 0,      0,       0,     'Warlock - Siphon Life Triggered'),
13869 (6353,  1.15,   0,       0,     'Warlock - Soul Fire'),
13870 (30294, 0,      0,       0,     'Warlock - Soul Leech'),
13871 (31117, 1.8,    0,       0,     'Warlock - Unstable Affliction Dispell'),
13872 /* Item */
13873 (40293, 0,      0,       0,     'Item - Siphon Essence');
13874 /*!40000 ALTER TABLE `spell_bonus_data` ENABLE KEYS */;
13875 UNLOCK TABLES;
13878 -- Table structure for table `spell_chain`
13881 DROP TABLE IF EXISTS `spell_chain`;
13882 CREATE TABLE `spell_chain` (
13883   `spell_id` mediumint(9) NOT NULL default '0',
13884   `prev_spell` mediumint(9) NOT NULL default '0',
13885   `first_spell` mediumint(9) NOT NULL default '0',
13886   `rank` tinyint(4) NOT NULL default '0',
13887   `req_spell` mediumint(9) NOT NULL default '0',
13888   PRIMARY KEY  (`spell_id`)
13889 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell Additinal Data';
13892 -- Dumping data for table `spell_chain`
13895 LOCK TABLES `spell_chain` WRITE;
13896 /*!40000 ALTER TABLE `spell_chain` DISABLE KEYS */;
13897 INSERT INTO spell_chain VALUES
13898 /*------------------
13899 --(0) Not associated with skills
13900 ------------------*/
13901 /* Fire Nova Totem Casted by Totem */
13902 (8443,0,8443,1,0),
13903 (8504,8443,8443,2,0),
13904 (8505,8504,8443,3,0),
13905 (11310,8505,8443,4,0),
13906 (11311,11310,8443,5,0),
13907 (25538,11311,8443,6,0),
13908 (25539,25538,8443,7,0),
13909 (61651,25539,8443,8,0),
13910 (61660,61651,8443,9,0),
13911 /* Flametongue Weapon Proc */
13912 (8026,0,8026,1,0),
13913 (8028,8026,8026,2,0),
13914 (8029,8028,8026,3,0),
13915 (10445,8029,8026,4,0),
13916 (16343,10445,8026,5,0),
13917 (16344,16343,8026,6,0),
13918 (25488,16344,8026,7,0),
13919 (58786,25488,8026,8,0),
13920 (58787,58786,8026,9,0),
13921 (58788,58787,8026,10,0),
13922 /* Frostbrand Attack */
13923 (8034,0,8034,1,0),
13924 (8037,8034,8034,2,0),
13925 (10458,8037,8034,3,0),
13926 (16352,10458,8034,4,0),
13927 (16353,16352,8034,5,0),
13928 (25501,16353,8034,6,0),
13929 (58797,25501,8034,7,0),
13930 (58798,58797,8034,8,0),
13931 (58799,58798,8034,9,0),
13932 /* Instant Poison */
13933 (8680,0,8680,1,0),
13934 (8685,8680,8680,2,0),
13935 (8689,8685,8680,3,0),
13936 (11335,8689,8680,4,0),
13937 (11336,11335,8680,5,0),
13938 (11337,11336,8680,6,0),
13939 (26890,11337,8680,7,0),
13940 (57964,26890,8680,8,0),
13941 (57965,57964,8680,9,0),
13942 /* Magma Totam Passive */
13943 (8188,0,8188,1,0),
13944 (10582,8188,8188,2,0),
13945 (10583,10582,8188,3,0),
13946 (10584,10583,8188,4,0),
13947 (25551,10584,8188,5,0),
13948 (58733,25551,8188,6,0),
13949 (58736,58733,8188,7,0),
13950 /* Searing Totem Attack */
13951 (3606,0,3606,1,0),
13952 (6350,3606,3606,2,0),
13953 (6351,6350,3606,3,0),
13954 (6352,6351,3606,4,0),
13955 (10435,6352,3606,5,0),
13956 (10436,10435,3606,6,0),
13957 (25530,10436,3606,7,0),
13958 (58700,25530,3606,8,0),
13959 (58701,58700,3606,9,0),
13960 (58702,58701,3606,10,0),
13961 /* Wound Poison */
13962 (13218,0,13218,1,0),
13963 (13222,13218,13218,2,0),
13964 (13223,13222,13218,3,0),
13965 (13224,13223,13218,4,0),
13966 (27189,13224,13218,5,0),
13967 (57974,27189,13218,6,0),
13968 (57975,57974,13218,7,0),
13969 /*------------------
13970 --(6) Frost
13971 ------------------*/
13972 /*Blizzard*/
13973 (10,0,10,1,0),
13974 (6141,10,10,2,0),
13975 (8427,6141,10,3,0),
13976 (10185,8427,10,4,0),
13977 (10186,10185,10,5,0),
13978 (10187,10186,10,6,0),
13979 (27085,10187,10,7,0),
13980 (42939,27085,10,8,0),
13981 (42940,42939,10,9,0),
13982 /* Blizzard Triggered Spell */
13983 (42208,0,42208,1,0),
13984 (42209,42208,42208,2,0),
13985 (42210,42209,42208,3,0),
13986 (42211,42210,42208,4,0),
13987 (42212,42211,42208,5,0),
13988 (42213,42212,42208,6,0),
13989 (42198,42213,42208,7,0),
13990 (42937,42198,42208,8,0),
13991 (42938,42937,42208,9,0),
13992 /*ConeofCold*/
13993 (120,0,120,1,0),
13994 (8492,120,120,2,0),
13995 (10159,8492,120,3,0),
13996 (10160,10159,120,4,0),
13997 (10161,10160,120,5,0),
13998 (27087,10161,120,6,0),
13999 (42930,27087,120,7,0),
14000 (42931,42930,120,8,0),
14001 /*FrostArmor*/
14002 (168,0,168,1,0),
14003 (7300,168,168,2,0),
14004 (7301,7300,168,3,0),
14005 /*FrostNova*/
14006 (122,0,122,1,0),
14007 (865,122,122,2,0),
14008 (6131,865,122,3,0),
14009 (10230,6131,122,4,0),
14010 (27088,10230,122,5,0),
14011 (42917,27088,122,6,0),
14012 /*FrostWard*/
14013 (6143,0,6143,1,0),
14014 (8461,6143,6143,2,0),
14015 (8462,8461,6143,3,0),
14016 (10177,8462,6143,4,0),
14017 (28609,10177,6143,5,0),
14018 (32796,28609,6143,6,0),
14019 (43012,32796,6143,7,0),
14020 /*Frostbolt*/
14021 (116,0,116,1,0),
14022 (205,116,116,2,0),
14023 (837,205,116,3,0),
14024 (7322,837,116,4,0),
14025 (8406,7322,116,5,0),
14026 (8407,8406,116,6,0),
14027 (8408,8407,116,7,0),
14028 (10179,8408,116,8,0),
14029 (10180,10179,116,9,0),
14030 (10181,10180,116,10,0),
14031 (25304,10181,116,11,0),
14032 (27071,25304,116,12,0),
14033 (27072,27071,116,13,0),
14034 (38697,27072,116,14,0),
14035 (42841,38697,116,15,0),
14036 (42842,42841,116,16,0),
14037 /*IceArmor*/
14038 (7302,0,7302,1,0),
14039 (7320,7302,7302,2,0),
14040 (10219,7320,7302,3,0),
14041 (10220,10219,7302,4,0),
14042 (27124,10220,7302,5,0),
14043 (43008,27124,7302,6,0),
14044 /*IceBarrier*/
14045 (11426,0,11426,1,0),
14046 (13031,11426,11426,2,0),
14047 (13032,13031,11426,3,0),
14048 (13033,13032,11426,4,0),
14049 (27134,13033,11426,5,0),
14050 (33405,27134,11426,6,0),
14051 (43038,33405,11426,7,0),
14052 (43039,43038,11426,8,0),
14053 /*IceLance*/
14054 (30455,0,30455,1,0),
14055 (42913,30455,30455,2,0),
14056 (42914,42913,30455,3,0),
14057 /*------------------
14058 --(8)Fire
14059 ------------------*/
14060 /*Blast Wave*/
14061 (11113,0,11113,1,0),
14062 (13018,11113,11113,2,0),
14063 (13019,13018,11113,3,0),
14064 (13020,13019,11113,4,0),
14065 (13021,13020,11113,5,0),
14066 (27133,13021,11113,6,0),
14067 (33933,27133,11113,7,0),
14068 (42944,33933,11113,8,0),
14069 (42945,42944,11113,9,0),
14070 /*Dragon's Breath*/
14071 (31661,0,31661,1,0),
14072 (33041,31661,31661,2,0),
14073 (33042,33041,31661,3,0),
14074 (33043,33042,31661,4,0),
14075 (42949,33043,31661,5,0),
14076 (42950,42949,31661,6,0),
14077 /*Fire Blast*/
14078 (2136,0,2136,1,0),
14079 (2137,2136,2136,2,0),
14080 (2138,2137,2136,3,0),
14081 (8412,2138,2136,4,0),
14082 (8413,8412,2136,5,0),
14083 (10197,8413,2136,6,0),
14084 (10199,10197,2136,7,0),
14085 (27078,10199,2136,8,0),
14086 (27079,27078,2136,9,0),
14087 (42872,27079,2136,10,0),
14088 (42873,42872,2136,11,0),
14089 /*Fire Ward*/
14090 (543,0,543,1,0),
14091 (8457,543,543,2,0),
14092 (8458,8457,543,3,0),
14093 (10223,8458,543,4,0),
14094 (10225,10223,543,5,0),
14095 (27128,10225,543,6,0),
14096 (43010,27128,543,7,0),
14097 /*Fireball*/
14098 (133,0,133,1,0),
14099 (143,133,133,2,0),
14100 (145,143,133,3,0),
14101 (3140,145,133,4,0),
14102 (8400,3140,133,5,0),
14103 (8401,8400,133,6,0),
14104 (8402,8401,133,7,0),
14105 (10148,8402,133,8,0),
14106 (10149,10148,133,9,0),
14107 (10150,10149,133,10,0),
14108 (10151,10150,133,11,0),
14109 (25306,10151,133,12,0),
14110 (27070,25306,133,13,0),
14111 (38692,27070,133,14,0),
14112 (42832,38692,133,15,0),
14113 (42833,42832,133,16,0),
14114 /*Fiery Payback*/
14115 (64353,0,64353,1,0),
14116 (64357,64353,64353,2,0),
14117 /*Flamestrike*/
14118 (2120,0,2120,1,0),
14119 (2121,2120,2120,2,0),
14120 (8422,2121,2120,3,0),
14121 (8423,8422,2120,4,0),
14122 (10215,8423,2120,5,0),
14123 (10216,10215,2120,6,0),
14124 (27086,10216,2120,7,0),
14125 (42925,27086,2120,8,0),
14126 (42926,42925,2120,9,0),
14127 /*Frostfire Bolt*/
14128 (44614,0,44614,1,0),
14129 (47610,44614,44614,2,0),
14130 /*Living Bomb*/
14131 (44457,0,44457,1,0),
14132 (55359,44457,44457,2,0),
14133 (55360,55359,44457,3,0),
14134 /*Molten Armor*/
14135 (30482,0,30482,1,0),
14136 (43045,30482,30482,2,0),
14137 (43046,43045,30482,3,0),
14138 /* Molten Armor Triggered */
14139 (34913,0,34913,1,0),
14140 (43043,34913,34913,2,0),
14141 (43044,43043,34913,3,0),
14142 /*Pyroblast*/
14143 (11366,0,11366,1,0),
14144 (12505,11366,11366,2,0),
14145 (12522,12505,11366,3,0),
14146 (12523,12522,11366,4,0),
14147 (12524,12523,11366,5,0),
14148 (12525,12524,11366,6,0),
14149 (12526,12525,11366,7,0),
14150 (18809,12526,11366,8,0),
14151 (27132,18809,11366,9,0),
14152 (33938,27132,11366,10,0),
14153 (42890,33938,11366,11,0),
14154 (42891,42890,11366,12,0),
14155 /*Scorch*/
14156 (2948,0,2948,1,0),
14157 (8444,2948,2948,2,0),
14158 (8445,8444,2948,3,0),
14159 (8446,8445,2948,4,0),
14160 (10205,8446,2948,5,0),
14161 (10206,10205,2948,6,0),
14162 (10207,10206,2948,7,0),
14163 (27073,10207,2948,8,0),
14164 (27074,27073,2948,9,0),
14165 (42858,27074,2948,10,0),
14166 (42859,42858,2948,11,0),
14167 /*------------------
14168 --(26)Arms
14169 ------------------*/
14170 /*Charge*/
14171 (100,0,100,1,0),
14172 (6178,100,100,2,0),
14173 (11578,6178,100,3,0),
14174 /*HeroicStrike*/
14175 (78,0,78,1,0),
14176 (284,78,78,2,0),
14177 (285,284,78,3,0),
14178 (1608,285,78,4,0),
14179 (11564,1608,78,5,0),
14180 (11565,11564,78,6,0),
14181 (11566,11565,78,7,0),
14182 (11567,11566,78,8,0),
14183 (25286,11567,78,9,0),
14184 (29707,25286,78,10,0),
14185 (30324,29707,78,11,0),
14186 (47449,30324,78,12,0),
14187 (47450,47449,78,13,0),
14188 /*MortalStrike*/
14189 (12294,0,12294,1,0),
14190 (21551,12294,12294,2,0),
14191 (21552,21551,12294,3,0),
14192 (21553,21552,12294,4,0),
14193 (25248,21553,12294,5,0),
14194 (30330,25248,12294,6,0),
14195 (47485,30330,12294,7,0),
14196 (47486,47485,12294,8,0),
14197 /*Rend*/
14198 (772,0,772,1,0),
14199 (6546,772,772,2,0),
14200 (6547,6546,772,3,0),
14201 (6548,6547,772,4,0),
14202 (11572,6548,772,5,0),
14203 (11573,11572,772,6,0),
14204 (11574,11573,772,7,0),
14205 (25208,11574,772,8,0),
14206 (46845,25208,772,9,0),
14207 (47465,46845,772,10,0),
14208 /*ThunderClap*/
14209 (6343,0,6343,1,0),
14210 (8198,6343,6343,2,0),
14211 (8204,8198,6343,3,0),
14212 (8205,8204,6343,4,0),
14213 (11580,8205,6343,5,0),
14214 (11581,11580,6343,6,0),
14215 (25264,11581,6343,7,0),
14216 (47501,25264,6343,8,0),
14217 (47502,47501,6343,9,0),
14218 /*------------------
14219 -- (38) Combat (Rogue)
14220 ------------------*/
14221 /*Backstab*/
14222 (53,0,53,1,0),
14223 (2589,53,53,2,0),
14224 (2590,2589,53,3,0),
14225 (2591,2590,53,4,0),
14226 (8721,2591,53,5,0),
14227 (11279,8721,53,6,0),
14228 (11280,11279,53,7,0),
14229 (11281,11280,53,8,0),
14230 (25300,11281,53,9,0),
14231 (26863,25300,53,10,0),
14232 (48656,26863,53,11,0),
14233 (48657,48656,53,12,0),
14234 /*Evasion*/
14235 (5277,0,5277,1,0),
14236 (26669,5277,5277,2,0),
14237 /*Feint*/
14238 (1966,0,1966,1,0),
14239 (6768,1966,1966,2,0),
14240 (8637,6768,1966,3,0),
14241 (11303,8637,1966,4,0),
14242 (25302,11303,1966,5,0),
14243 (27448,25302,1966,6,0),
14244 (48658,27448,1966,7,0),
14245 (48659,48658,1966,8,0),
14246 /*Sinister Strike*/
14247 (1752,0,1752,1,0),
14248 (1757,1752,1752,2,0),
14249 (1758,1757,1752,3,0),
14250 (1759,1758,1752,4,0),
14251 (1760,1759,1752,5,0),
14252 (8621,1760,1752,6,0),
14253 (11293,8621,1752,7,0),
14254 (11294,11293,1752,8,0),
14255 (26861,11294,1752,9,0),
14256 (26862,26861,1752,10,0),
14257 (48637,26862,1752,11,0),
14258 (48638,48637,1752,12,0),
14259 /*Sprint*/
14260 (2983,0,2983,1,0),
14261 (8696,2983,2983,2,0),
14262 (11305,8696,2983,3,0),
14263 /*------------------
14264 --(39)Subtlety
14265 ------------------*/
14266 /*Hemorrhage*/
14267 (16511,0,16511,1,0),
14268 (17347,16511,16511,2,0),
14269 (17348,17347,16511,3,0),
14270 (26864,17348,16511,4,0),
14271 (48660,26864,16511,5,0),
14272 /*Sap*/
14273 (6770,0,6770,1,0),
14274 (2070,6770,6770,2,0),
14275 (11297,2070,6770,3,0),
14276 (51724,11297,6770,4,0),
14277 /*Stealth*/
14278 (1784,0,1784,1,0),
14279 (1785,1784,1784,2,0),
14280 (1786,1785,1784,3,0),
14281 (1787,1786,1784,4,0),
14282 /*Vanish*/
14283 (1856,0,1856,1,0),
14284 (1857,1856,1856,2,0),
14285 (26889,1857,1856,3,0),
14286 /*------------------
14287 -- (50) Beast Mastery
14288 ------------------*/
14289 /*Aspect of the Hawk*/
14290 (13165,0,13165,1,0),
14291 (14318,13165,13165,2,0),
14292 (14319,14318,13165,3,0),
14293 (14320,14319,13165,4,0),
14294 (14321,14320,13165,5,0),
14295 (14322,14321,13165,6,0),
14296 (25296,14322,13165,7,0),
14297 (27044,25296,13165,8,0),
14298 /*Aspect of the Wild*/
14299 (20043,0,20043,1,0),
14300 (20190,20043,20043,2,0),
14301 (27045,20190,20043,3,0),
14302 (49071,27045,20043,4,0),
14303 /*MendPet*/
14304 (136,0,136,1,0),
14305 (3111,136,136,2,0),
14306 (3661,3111,136,3,0),
14307 (3662,3661,136,4,0),
14308 (13542,3662,136,5,0),
14309 (13543,13542,136,6,0),
14310 (13544,13543,136,7,0),
14311 (27046,13544,136,8,0),
14312 (48989,27046,136,9,0),
14313 (48990,48989,136,10,0),
14314 /*ScareBeast*/
14315 (1513,0,1513,1,0),
14316 (14326,1513,1513,2,0),
14317 (14327,14326,1513,3,0),
14318 /*------------------
14319 --(51)Survival
14320 ------------------*/
14321 /*Counterattack*/
14322 (19306,0,19306,1,0),
14323 (20909,19306,19306,2,0),
14324 (20910,20909,19306,3,0),
14325 (27067,20910,19306,4,0),
14326 (48998,27067,19306,5,0),
14327 (48999,48998,19306,6,0),
14328 /*ExplosiveShot*/
14329 (53301,0,53301,1,0),
14330 (60051,53301,53301,2,0),
14331 (60052,60051,53301,3,0),
14332 (60053,60052,53301,4,0),
14333 /*ExplosiveTrap*/
14334 (13813,0,13813,1,0),
14335 (14316,13813,13813,2,0),
14336 (14317,14316,13813,3,0),
14337 (27025,14317,13813,4,0),
14338 (49066,27025,13813,5,0),
14339 (49067,49066,13813,6,0),
14340 /*FreezingTrap*/
14341 (1499,0,1499,1,0),
14342 (14310,1499,1499,2,0),
14343 (14311,14310,1499,3,0),
14344 /*ImmolationTrap*/
14345 (13795,0,13795,1,0),
14346 (14302,13795,13795,2,0),
14347 (14303,14302,13795,3,0),
14348 (14304,14303,13795,4,0),
14349 (14305,14304,13795,5,0),
14350 (27023,14305,13795,6,0),
14351 (49055,27023,13795,7,0),
14352 (49056,49055,13795,8,0),
14353 /*MongooseBite*/
14354 (1495,0,1495,1,0),
14355 (14269,1495,1495,2,0),
14356 (14270,14269,1495,3,0),
14357 (14271,14270,1495,4,0),
14358 (36916,14271,1495,5,0),
14359 (53339,36916,1495,6,0),
14360 /*RaptorStrike*/
14361 (2973,0,2973,1,0),
14362 (14260,2973,2973,2,0),
14363 (14261,14260,2973,3,0),
14364 (14262,14261,2973,4,0),
14365 (14263,14262,2973,5,0),
14366 (14264,14263,2973,6,0),
14367 (14265,14264,2973,7,0),
14368 (14266,14265,2973,8,0),
14369 (27014,14266,2973,9,0),
14370 (48995,27014,2973,10,0),
14371 (48996,48995,2973,11,0),
14372 /*WyvernSting*/
14373 (19386,0,19386,1,0),
14374 (24132,19386,19386,2,0),
14375 (24133,24132,19386,3,0),
14376 (27068,24133,19386,4,0),
14377 (49011,27068,19386,5,0),
14378 (49012,49011,19386,6,0),
14379 /*------------------
14380 -- (56) Holy (Priest)
14381 ------------------*/
14382 /*Binding Heal*/
14383 (32546,0,32546,1,0),
14384 (48119,32546,32546,2,0),
14385 (48120,48119,32546,3,0),
14386 /*Body and Soul*/
14387 (64127,0,64127,1,0),
14388 (64129,64127,64127,2,0),
14389 /*Blessed Recovery Proc*/
14390 (27813,0,27813,1,0),
14391 (27817,27813,27813,2,0),
14392 (27818,27817,27813,3,0),
14393 /*Circle of Healing*/
14394 (34861,0,34861,1,0),
14395 (34863,34861,34861,2,0),
14396 (34864,34863,34861,3,0),
14397 (34865,34864,34861,4,0),
14398 (34866,34865,34861,5,0),
14399 (48088,34866,34861,6,0),
14400 (48089,48088,34861,7,0),
14401 /*Desperate Prayer*/
14402 (19236,0,19236,1,0),
14403 (19238,19236,19236,2,0),
14404 (19240,19238,19236,3,0),
14405 (19241,19240,19236,4,0),
14406 (19242,19241,19236,5,0),
14407 (19243,19242,19236,6,0),
14408 (25437,19243,19236,7,0),
14409 (48172,25437,19236,8,0),
14410 (48173,48172,19236,9,0),
14411 /*Empowered Renew*/
14412 (63534,0,63534,1,0),
14413 (63542,63534,63534,2,0),
14414 (63543,63542,63534,3,0),
14415 /*Flash Heal*/
14416 (2061,0,2061,1,0),
14417 (9472,2061,2061,2,0),
14418 (9473,9472,2061,3,0),
14419 (9474,9473,2061,4,0),
14420 (10915,9474,2061,5,0),
14421 (10916,10915,2061,6,0),
14422 (10917,10916,2061,7,0),
14423 (25233,10917,2061,8,0),
14424 (25235,25233,2061,9,0),
14425 (48070,25235,2061,10,0),
14426 (48071,48070,2061,11,0),
14427 /*Greater Heal*/
14428 (2060,0,2060,1,0),
14429 (10963,2060,2060,2,0),
14430 (10964,10963,2060,3,0),
14431 (10965,10964,2060,4,0),
14432 (25314,10965,2060,5,0),
14433 (25210,25314,2060,6,0),
14434 (25213,25210,2060,7,0),
14435 (48062,25213,2060,8,0),
14436 (48063,48062,2060,9,0),
14437 /*Heal*/
14438 (2054,0,2054,1,0),
14439 (2055,2054,2054,2,0),
14440 (6063,2055,2054,3,0),
14441 (6064,6063,2054,4,0),
14442 /*Holy Fire*/
14443 (14914,0,14914,1,0),
14444 (15262,14914,14914,2,0),
14445 (15263,15262,14914,3,0),
14446 (15264,15263,14914,4,0),
14447 (15265,15264,14914,5,0),
14448 (15266,15265,14914,6,0),
14449 (15267,15266,14914,7,0),
14450 (15261,15267,14914,8,0),
14451 (25384,15261,14914,9,0),
14452 (48134,25384,14914,10,0),
14453 (48135,48134,14914,11,0),
14454 /*Holy Nova*/
14455 (15237,0,15237,1,0),
14456 (15430,15237,15237,2,0),
14457 (15431,15430,15237,3,0),
14458 (27799,15431,15237,4,0),
14459 (27800,27799,15237,5,0),
14460 (27801,27800,15237,6,0),
14461 (25331,27801,15237,7,0),
14462 (48077,25331,15237,8,0),
14463 (48078,48077,15237,9,0),
14464 /* Holy Nova Heal */
14465 (23455,0,23455,1,0),
14466 (23458,23455,23455,2,0),
14467 (23459,23458,23455,3,0),
14468 (27803,23459,23455,4,0),
14469 (27804,27803,23455,5,0),
14470 (27805,27804,23455,6,0),
14471 (25329,27805,23455,7,0),
14472 /*Lesser Heal*/
14473 (2050,0,2050,1,0),
14474 (2052,2050,2050,2,0),
14475 (2053,2052,2050,3,0),
14476 /*Lightwell*/
14477 (724,0,724,1,0),
14478 (27870,724,724,2,0),
14479 (27871,27870,724,3,0),
14480 (28275,27871,724,4,0),
14481 (48086,28275,724,5,0),
14482 (48087,48086,724,6,0),
14483 /*Prayer of Healing*/
14484 (596,0,596,1,0),
14485 (996,596,596,2,0),
14486 (10960,996,596,3,0),
14487 (10961,10960,596,4,0),
14488 (25316,10961,596,5,0),
14489 (25308,25316,596,6,0),
14490 (48072,25308,596,7,0),
14491 /*Prayer of Mending*/
14492 (33076,0,33076,1,0),
14493 (48112,33076,33076,2,0),
14494 (48113,48112,33076,3,0),
14495 /*Renew*/
14496 (139,0,139,1,0),
14497 (6074,139,139,2,0),
14498 (6075,6074,139,3,0),
14499 (6076,6075,139,4,0),
14500 (6077,6076,139,5,0),
14501 (6078,6077,139,6,0),
14502 (10927,6078,139,7,0),
14503 (10928,10927,139,8,0),
14504 (10929,10928,139,9,0),
14505 (25315,10929,139,10,0),
14506 (25221,25315,139,11,0),
14507 (25222,25221,139,12,0),
14508 (48067,25222,139,13,0),
14509 (48068,48067,139,14,0),
14510 /*Resurrection*/
14511 (2006,0,2006,1,0),
14512 (2010,2006,2006,2,0),
14513 (10880,2010,2006,3,0),
14514 (10881,10880,2006,4,0),
14515 (20770,10881,2006,5,0),
14516 (25435,20770,2006,6,0),
14517 (48171,25435,2006,7,0),
14518 /*Serendipity*/
14519 (63730,0,63730,1,0),
14520 (63733,63730,63730,2,0),
14521 (63737,63733,63730,3,0),
14522 /*Smite*/
14523 (585,0,585,1,0),
14524 (591,585,585,2,0),
14525 (598,591,585,3,0),
14526 (984,598,585,4,0),
14527 (1004,984,585,5,0),
14528 (6060,1004,585,6,0),
14529 (10933,6060,585,7,0),
14530 (10934,10933,585,8,0),
14531 (25363,10934,585,9,0),
14532 (25364,25363,585,10,0),
14533 (48122,25364,585,11,0),
14534 (48123,48122,585,12,0),
14535 /*------------------
14536 -- (78) Shadow Magic
14537 ------------------*/
14538 /*Devouring Plague*/
14539 (2944,0,2944,1,0),
14540 (19276,2944,2944,2,0),
14541 (19277,19276,2944,3,0),
14542 (19278,19277,2944,4,0),
14543 (19279,19278,2944,5,0),
14544 (19280,19279,2944,6,0),
14545 (25467,19280,2944,7,0),
14546 (48299,25467,2944,8,0),
14547 (48300,48299,2944,9,0),
14548 /*Improved Devouring Plague*/
14549 (63625,0,63625,1,0),
14550 (63626,63625,63625,2,0),
14551 (63627,63626,63625,3,0),
14552 /*Improved Shadowform*/
14553 (47569,0,47569,1,0),
14554 (47570,47569,47569,2,0),
14555 /*Mind Blast*/
14556 (8092,0,8092,1,0),
14557 (8102,8092,8092,2,0),
14558 (8103,8102,8092,3,0),
14559 (8104,8103,8092,4,0),
14560 (8105,8104,8092,5,0),
14561 (8106,8105,8092,6,0),
14562 (10945,8106,8092,7,0),
14563 (10946,10945,8092,8,0),
14564 (10947,10946,8092,9,0),
14565 (25372,10947,8092,10,0),
14566 (25375,25372,8092,11,0),
14567 (48126,25375,8092,12,0),
14568 (48127,48126,8092,13,0),
14569 /*Mind Flay*/
14570 (15407,0,15407,1,0),
14571 (17311,15407,15407,2,0),
14572 (17312,17311,15407,3,0),
14573 (17313,17312,15407,4,0),
14574 (17314,17313,15407,5,0),
14575 (18807,17314,15407,6,0),
14576 (25387,18807,15407,7,0),
14577 (48155,25387,15407,8,0),
14578 (48156,48155,15407,9,0),
14579 /*Mind Sear*/
14580 (48045,0,48045,1,0),
14581 (53023,48045,48045,2,0),
14582 /* Mind Sear Trigger */
14583 (49821,0,49821,1,0),
14584 (53022,49821,49821,2,0),
14585 /*MindVision*/
14586 (2096,0,2096,1,0),
14587 (10909,2096,2096,2,0),
14588 /*Prayer of Shadow Protection*/
14589 (27683,0,27683,1,0),
14590 (39374,27683,27683,2,0),
14591 (48170,39374,27683,3,0),
14592 /*PsychicScream*/
14593 (8122,0,8122,1,0),
14594 (8124,8122,8122,2,0),
14595 (10888,8124,8122,3,0),
14596 (10890,10888,8122,4,0),
14597 /*Shadow Protection*/
14598 (976,0,976,1,0),
14599 (10957,976,976,2,0),
14600 (10958,10957,976,3,0),
14601 (25433,10958,976,4,0),
14602 (48169,25433,976,5,0),
14603 /*ShadowWord:Death*/
14604 (32379,0,32379,1,0),
14605 (32996,32379,32379,2,0),
14606 (48157,32996,32379,3,0),
14607 (48158,48157,32379,4,0),
14608 /*ShadowWord:Pain*/
14609 (589,0,589,1,0),
14610 (594,589,589,2,0),
14611 (970,594,589,3,0),
14612 (992,970,589,4,0),
14613 (2767,992,589,5,0),
14614 (10892,2767,589,6,0),
14615 (10893,10892,589,7,0),
14616 (10894,10893,589,8,0),
14617 (25367,10894,589,9,0),
14618 (25368,25367,589,10,0),
14619 (48124,25368,589,11,0),
14620 (48125,48124,589,12,0),
14621 /*Vampiric Touch*/
14622 (34914,0,34914,1,0),
14623 (34916,34914,34914,2,0),
14624 (34917,34916,34914,3,0),
14625 (48159,34917,34914,4,0),
14626 (48160,48159,34914,5,0),
14627 /*------------------
14628 -- (129) First Aid
14629 ------------------*/
14630 /*First Aid*/
14631 (3273,0,3273,1,0),
14632 (3274,3273,3273,2,0),
14633 (7924,3274,3273,3,0),
14634 (10846,7924,3273,4,0),
14635 (27028,10846,3273,5,0),
14636 (45542,27028,3273,6,0),
14637 /*------------------
14638 -- (134) Feral Combat (Druid)
14639 ------------------*/
14640 /*Bash*/
14641 (5211,0,5211,1,0),
14642 (6798,5211,5211,2,0),
14643 (8983,6798,5211,3,0),
14644 /*Bear Form*/
14645 (5487,0,5487,1,0),
14646 (9634,5487,5487,2,0),
14647 /*Claw*/
14648 (1082,0,1082,1,0),
14649 (3029,1082,1082,2,0),
14650 (5201,3029,1082,3,0),
14651 (9849,5201,1082,4,0),
14652 (9850,9849,1082,5,0),
14653 (27000,9850,1082,6,0),
14654 (48569,27000,1082,7,0),
14655 (48570,48569,1082,8,0),
14656 /*Cower*/
14657 (8998,0,8998,1,0),
14658 (9000,8998,8998,2,0),
14659 (9892,9000,8998,3,0),
14660 (31709,9892,8998,4,0),
14661 (27004,31709,8998,5,0),
14662 (48575,27004,8998,6,0),
14663 /*Dash*/
14664 (1850,0,1850,1,0),
14665 (9821,1850,1850,2,0),
14666 (33357,9821,1850,3,0),
14667 /*Demoralizing Roar*/
14668 (99,0,99,1,0),
14669 (1735,99,99,2,0),
14670 (9490,1735,99,3,0),
14671 (9747,9490,99,4,0),
14672 (9898,9747,99,5,0),
14673 (26998,9898,99,6,0),
14674 (48559,26998,99,7,0),
14675 (48560,48559,99,8,0),
14676 /*Ferocious Bite*/
14677 (22568,0,22568,1,0),
14678 (22827,22568,22568,2,0),
14679 (22828,22827,22568,3,0),
14680 (22829,22828,22568,4,0),
14681 (31018,22829,22568,5,0),
14682 (24248,31018,22568,6,0),
14683 (48576,24248,22568,7,0),
14684 (48577,48576,22568,8,0),
14685 /*Flight Form*/
14686 (33943,0,33943,1,0),
14687 (40120,33943,33943,2,0),
14688 /*Lacerate*/
14689 (33745,0,33745,1,0),
14690 (48567,33745,33745,2,0),
14691 (48568,48567,33745,3,0),
14692 /*Maim*/
14693 (22570,0,22570,1,0),
14694 (49802,22570,22570,2,0),
14695 /*Mangle-Bear*/
14696 (33878,0,33878,1,0),
14697 (33986,33878,33878,2,0),
14698 (33987,33986,33878,3,0),
14699 (48563,33987,33878,4,0),
14700 (48564,48563,33878,5,0),
14701 /*Mangle-Cat*/
14702 (33876,0,33876,1,0),
14703 (33982,33876,33876,2,0),
14704 (33983,33982,33876,3,0),
14705 (48565,33983,33876,4,0),
14706 (48566,48565,33876,5,0),
14707 /*Maul*/
14708 (6807,0,6807,1,0),
14709 (6808,6807,6807,2,0),
14710 (6809,6808,6807,3,0),
14711 (8972,6809,6807,4,0),
14712 (9745,8972,6807,5,0),
14713 (9880,9745,6807,6,0),
14714 (9881,9880,6807,7,0),
14715 (26996,9881,6807,8,0),
14716 (48479,26996,6807,9,0),
14717 (48480,48479,6807,10,0),
14718 /*Pounce*/
14719 (9005,0,9005,1,0),
14720 (9823,9005,9005,2,0),
14721 (9827,9823,9005,3,0),
14722 (27006,9827,9005,4,0),
14723 (49803,27006,9005,5,0),
14724 /*Prowl*/
14725 (5215,0,5215,1,0),
14726 (6783,5215,5215,2,0),
14727 (9913,6783,5215,3,0),
14728 /*Rake*/
14729 (1822,0,1822,1,0),
14730 (1823,1822,1822,2,0),
14731 (1824,1823,1822,3,0),
14732 (9904,1824,1822,4,0),
14733 (27003,9904,1822,5,0),
14734 (48573,27003,1822,6,0),
14735 (48574,48573,1822,7,0),
14736 /*Ravage*/
14737 (6785,0,6785,1,0),
14738 (6787,6785,6785,2,0),
14739 (9866,6787,6785,3,0),
14740 (9867,9866,6785,4,0),
14741 (27005,9867,6785,5,0),
14742 (48578,27005,6785,6,0),
14743 (48579,48578,6785,7,0),
14744 /*Rip*/
14745 (1079,0,1079,1,0),
14746 (9492,1079,1079,2,0),
14747 (9493,9492,1079,3,0),
14748 (9752,9493,1079,4,0),
14749 (9894,9752,1079,5,0),
14750 (9896,9894,1079,6,0),
14751 (27008,9896,1079,7,0),
14752 (49799,27008,1079,8,0),
14753 (49800,49799,1079,9,0),
14754 /*Shred*/
14755 (5221,0,5221,1,0),
14756 (6800,5221,5221,2,0),
14757 (8992,6800,5221,3,0),
14758 (9829,8992,5221,4,0),
14759 (9830,9829,5221,5,0),
14760 (27001,9830,5221,6,0),
14761 (27002,27001,5221,7,0),
14762 (48571,27002,5221,8,0),
14763 (48572,48571,5221,9,0),
14764 /*Swipe*/
14765 (779,0,779,1,0),
14766 (780,779,779,2,0),
14767 (769,780,779,3,0),
14768 (9754,769,779,4,0),
14769 (9908,9754,779,5,0),
14770 (26997,9908,779,6,0),
14771 (48561,26997,779,7,0),
14772 (48562,48561,779,8,0),
14773 /*Tiger's Fury*/
14774 (5217,0,5217,1,0),
14775 (6793,5217,5217,2,0),
14776 (9845,6793,5217,3,0),
14777 (9846,9845,5217,4,0),
14778 (50212,9846,5217,5,0),
14779 (50213,50212,5217,6,0),
14780 /*------------------
14781 --(163)Marksmanship
14782 ------------------*/
14783 /*AimedShot*/
14784 (19434,0,19434,1,0),
14785 (20900,19434,19434,2,0),
14786 (20901,20900,19434,3,0),
14787 (20902,20901,19434,4,0),
14788 (20903,20902,19434,5,0),
14789 (20904,20903,19434,6,0),
14790 (27065,20904,19434,7,0),
14791 (49049,27065,19434,8,0),
14792 (49050,49049,19434,9,0),
14793 /*ArcaneShot*/
14794 (3044,0,3044,1,0),
14795 (14281,3044,3044,2,0),
14796 (14282,14281,3044,3,0),
14797 (14283,14282,3044,4,0),
14798 (14284,14283,3044,5,0),
14799 (14285,14284,3044,6,0),
14800 (14286,14285,3044,7,0),
14801 (14287,14286,3044,8,0),
14802 (27019,14287,3044,9,0),
14803 (49044,27019,3044,10,0),
14804 (49045,49044,3044,11,0),
14805 /*Hunter'sMark*/
14806 (1130,0,1130,1,0),
14807 (14323,1130,1130,2,0),
14808 (14324,14323,1130,3,0),
14809 (14325,14324,1130,4,0),
14810 (53338,14325,1130,5,0),
14811 /*KillShot*/
14812 (53351,0,53351,1,0),
14813 (61005,53351,53351,2,0),
14814 (61006,61005,53351,3,0),
14815 /*Multi-Shot*/
14816 (2643,0,2643,1,0),
14817 (14288,2643,2643,2,0),
14818 (14289,14288,2643,3,0),
14819 (14290,14289,2643,4,0),
14820 (25294,14290,2643,5,0),
14821 (27021,25294,2643,6,0),
14822 (49047,27021,2643,7,0),
14823 (49048,49047,2643,8,0),
14824 /*SerpentSting*/
14825 (1978,0,1978,1,0),
14826 (13549,1978,1978,2,0),
14827 (13550,13549,1978,3,0),
14828 (13551,13550,1978,4,0),
14829 (13552,13551,1978,5,0),
14830 (13553,13552,1978,6,0),
14831 (13554,13553,1978,7,0),
14832 (13555,13554,1978,8,0),
14833 (25295,13555,1978,9,0),
14834 (27016,25295,1978,10,0),
14835 (49000,27016,1978,11,0),
14836 (49001,49000,1978,12,0),
14837 /*SteadyShot*/
14838 (56641,0,56641,1,0),
14839 (34120,56641,56641,2,0),
14840 (49051,34120,56641,3,0),
14841 (49052,49051,56641,4,0),
14842 /*Volley*/
14843 (1510,0,1510,1,0),
14844 (14294,1510,1510,2,0),
14845 (14295,14294,1510,3,0),
14846 (27022,14295,1510,4,0),
14847 (58431,27022,1510,5,0),
14848 (58434,58431,1510,6,0),
14849 /*------------------
14850 -- (164) Blacksmithing
14851 ------------------*/
14852 /*Blacksmithing*/
14853 (2018,0,2018,1,0),
14854 (3100,2018,2018,2,0),
14855 (3538,3100,2018,3,0),
14856 (9785,3538,2018,4,0),
14857 (9787,9785,2018,5,0),
14858 (9788,9785,2018,5,0),
14859 (29844,9785,2018,5,0),
14860 (17039,9787,2018,6,0),
14861 (17040,9787,2018,6,0),
14862 (17041,9787,2018,6,0),
14863 (51300,29844,2018,6,0),
14864 /*------------------
14865 -- (165) Leatherworking
14866 ------------------*/
14867 /*Leatherworking*/
14868 (2108,0,2108,1,0),
14869 (3104,2108,2108,2,0),
14870 (3811,3104,2108,3,0),
14871 (10662,3811,2108,4,0),
14872 (10656,10662,2108,5,0),
14873 (10658,10662,2108,5,0),
14874 (10660,10662,2108,5,0),
14875 (32549,10662,2108,5,0),
14876 (51302,32549,2108,6,0),
14877 /*------------------
14878 -- (171) Alchemy
14879 ------------------*/
14880 /* Alchemy */
14881 (2259,0,2259,1,0),
14882 (3101,2259,2259,2,0),
14883 (3464,3101,2259,3,0),
14884 (11611,3464,2259,4,0),
14885 (28596,11611,2259,5,0),
14886 (28672,11611,2259,5,0),
14887 (28675,11611,2259,5,0),
14888 (28677,11611,2259,5,0),
14889 (51304,28596,2259,6,0),
14890 /*------------------
14891 -- (182) Herbalizm
14892 ------------------*/
14893 /*Herb Gathering*/
14894 (2366,0,2366,1,0),
14895 (2368,2366,2366,2,0),
14896 (3570,2368,2366,3,0),
14897 (11993,3570,2366,4,0),
14898 (28695,11993,2366,5,0),
14899 (50300,28695,2366,6,0),
14900 /*Lifeblood*/
14901 (55428,0,55428,1,0),
14902 (55480,55428,55428,2,0),
14903 (55500,55480,55428,3,0),
14904 (55501,55500,55428,4,0),
14905 (55502,55501,55428,5,0),
14906 (55503,55502,55428,6,0),
14907 /*------------------
14908 -- (184) Retribution (Paladin)
14909 ------------------*/
14910 /*Blessingof Might*/
14911 (19740,0,19740,1,0),
14912 (19834,19740,19740,2,0),
14913 (19835,19834,19740,3,0),
14914 (19836,19835,19740,4,0),
14915 (19837,19836,19740,5,0),
14916 (19838,19837,19740,6,0),
14917 (25291,19838,19740,7,0),
14918 (27140,25291,19740,8,0),
14919 (48931,27140,19740,9,0),
14920 (48932,48931,19740,10,0),
14921 /*Greater Blessing of Might*/
14922 (25782,0,25782,1,19838),
14923 (25916,25782,25782,2,25291),
14924 (27141,25916,25782,3,27140),
14925 (48933,27141,25782,4,48931),
14926 (48934,48933,25782,5,48932),
14927 /*Hammer of Wrath*/
14928 (24275,0,24275,1,0),
14929 (24274,24275,24275,2,0),
14930 (24239,24274,24275,3,0),
14931 (27180,24239,24275,4,0),
14932 (48805,27180,24275,5,0),
14933 (48806,48805,24275,6,0),
14934 /*Retribution Aura*/
14935 (7294,0,7294,1,0),
14936 (10298,7294,7294,2,0),
14937 (10299,10298,7294,3,0),
14938 (10300,10299,7294,4,0),
14939 (10301,10300,7294,5,0),
14940 (27150,10301,7294,6,0),
14941 (54043,27150,7294,7,0),
14942 /*------------------
14943 -- (185) Cooking
14944 ------------------*/
14945 /*Cooking*/
14946 (2550,0,2550,1,0),
14947 (3102,2550,2550,2,0),
14948 (3413,3102,2550,3,0),
14949 (18260,3413,2550,4,0),
14950 (33359,18260,2550,5,0),
14951 (51296,33359,2550,6,0),
14952 /*------------------
14953 -- (186) Mining
14954 ------------------*/
14955 /*Mining*/
14956 (2575,0,2575,1,0),
14957 (2576,2575,2575,2,0),
14958 (3564,2576,2575,3,0),
14959 (10248,3564,2575,4,0),
14960 (29354,10248,2575,5,0),
14961 (50310,29354,2575,6,0),
14962 /*Toughness*/
14963 (53120,0,53120,1,0),
14964 (53121,53120,53120,2,0),
14965 (53122,53121,53120,3,0),
14966 (53123,53122,53120,4,0),
14967 (53124,53123,53120,5,0),
14968 (53040,53124,53120,6,0),
14969 /*------------------
14970 -- (188) Pet - Imp
14971 ------------------*/
14972 /*Blood Pact*/
14973 (6307,0,6307,1,0),
14974 (7804,6307,6307,2,0),
14975 (7805,7804,6307,3,0),
14976 (11766,7805,6307,4,0),
14977 (11767,11766,6307,5,0),
14978 (27268,11767,6307,6,0),
14979 (47982,27268,6307,7,0),
14980 /*FireShield*/
14981 (2947,0,2947,1,0),
14982 (8316,2947,2947,2,0),
14983 (8317,8316,2947,3,0),
14984 (11770,8317,2947,4,0),
14985 (11771,11770,2947,5,0),
14986 (27269,11771,2947,6,0),
14987 (47983,27269,2947,7,0),
14988 /*Firebolt*/
14989 (3110,0,3110,1,0),
14990 (7799,3110,3110,2,0),
14991 (7800,7799,3110,3,0),
14992 (7801,7800,3110,4,0),
14993 (7802,7801,3110,5,0),
14994 (11762,7802,3110,6,0),
14995 (11763,11762,3110,7,0),
14996 (27267,11763,3110,8,0),
14997 (47964,27267,3110,9,0),
14998 /*------------------
14999 --(189)Pet-Felhunter
15000 ------------------*/
15001 /*Devour Magic*/
15002 (19505,0,19505,1,0),
15003 (19731,19505,19505,2,0),
15004 (19734,19731,19505,3,0),
15005 (19736,19734,19505,4,0),
15006 (27276,19736,19505,5,0),
15007 (27277,27276,19505,6,0),
15008 (48011,27277,19505,7,0),
15009 /*Fel Intelligence*/
15010 (54424,0,54424,1,0),
15011 (57564,54424,54424,2,0),
15012 (57565,57564,54424,3,0),
15013 (57566,57565,54424,4,0),
15014 (57567,57566,54424,5,0),
15015 /*Shadow Bite*/
15016 (54049,0,54049,1,0),
15017 (54050,54049,54049,2,0),
15018 (54051,54050,54049,3,0),
15019 (54052,54051,54049,4,0),
15020 (54053,54052,54049,5,0),
15021 /*Spell Lock*/
15022 (19244,0,19244,1,0),
15023 (19647,19244,19244,2,0),
15024 /*------------------
15025 -- (197) Tailoring
15026 ------------------*/
15027 /*Tailoring*/
15028 (3908,0,3908,1,0),
15029 (3909,3908,3908,2,0),
15030 (3910,3909,3908,3,0),
15031 (12180,3910,3908,4,0),
15032 (26790,12180,3908,5,0),
15033 (26797,12180,3908,5,0),
15034 (26798,12180,3908,5,0),
15035 (26801,12180,3908,5,0),
15036 (51309,26790,3908,6,0),
15037 /*------------------
15038 --(203)Pet-Spider
15039 --(208)Pet-Wolf
15040 --(212)Pet-Crocolisk
15041 --(251)Pet-Turtle
15042 --(653)Pet-Bat
15043 --(766)Pet-WarpStalker
15044 --(767)Pet-Ravager
15045 ------------------*/
15046 /*Bite*/
15047 (17253,0,17253,1,0),
15048 (17255,17253,17253,2,0),
15049 (17256,17255,17253,3,0),
15050 (17257,17256,17253,4,0),
15051 (17258,17257,17253,5,0),
15052 (17259,17258,17253,6,0),
15053 (17260,17259,17253,7,0),
15054 (17261,17260,17253,8,0),
15055 (27050,17261,17253,9,0),
15056 (52473,27050,17253,10,0),
15057 (52474,52473,17253,11,0),
15058 /*------------------
15059 -- (202) Engineering
15060 ------------------*/
15061 /*Engineering*/
15062 (4036,0,4036,1,0),
15063 (4037,4036,4036,2,0),
15064 (4038,4037,4036,3,0),
15065 (12656,4038,4036,4,0),
15066 (20219,12656,4036,5,0),
15067 (20222,12656,4036,5,0),
15068 (30350,12656,4036,5,0),
15069 (51306,30350,4036,6,0),
15070 /*------------------
15071 -- (204) Pet - Voidwalker
15072 ------------------*/
15073 /*Consume Shadows*/
15074 (17767,0,17767,1,0),
15075 (17850,17767,17767,2,0),
15076 (17851,17850,17767,3,0),
15077 (17852,17851,17767,4,0),
15078 (17853,17852,17767,5,0),
15079 (17854,17853,17767,6,0),
15080 (27272,17854,17767,7,0),
15081 (47987,27272,17767,8,0),
15082 (47988,47987,17767,9,0),
15083 /*Sacrifice*/
15084 (7812,0,7812,1,0),
15085 (19438,7812,7812,2,0),
15086 (19440,19438,7812,3,0),
15087 (19441,19440,7812,4,0),
15088 (19442,19441,7812,5,0),
15089 (19443,19442,7812,6,0),
15090 (27273,19443,7812,7,0),
15091 (47985,27273,7812,8,0),
15092 (47986,47985,7812,9,0),
15093 /*Suffering*/
15094 (17735,0,17735,1,0),
15095 (17750,17735,17735,2,0),
15096 (17751,17750,17735,3,0),
15097 (17752,17751,17735,4,0),
15098 (27271,17752,17735,5,0),
15099 (33701,27271,17735,6,0),
15100 (47989,33701,17735,7,0),
15101 (47990,47989,17735,8,0),
15102 /*Torment*/
15103 (3716,0,3716,1,0),
15104 (7809,3716,3716,2,0),
15105 (7810,7809,3716,3,0),
15106 (7811,7810,3716,4,0),
15107 (11774,7811,3716,5,0),
15108 (11775,11774,3716,6,0),
15109 (27270,11775,3716,7,0),
15110 (47984,27270,3716,8,0),
15111 /*------------------
15112 --(205)Pet-Succubus
15113 ------------------*/
15114 /*LashofPain*/
15115 (7814,0,7814,1,0),
15116 (7815,7814,7814,2,0),
15117 (7816,7815,7814,3,0),
15118 (11778,7816,7814,4,0),
15119 (11779,11778,7814,5,0),
15120 (11780,11779,7814,6,0),
15121 (27274,11780,7814,7,0),
15122 (47991,27274,7814,8,0),
15123 (47992,47991,7814,9,0),
15124 /*SoothingKiss*/
15125 (6360,0,6360,1,0),
15126 (7813,6360,6360,2,0),
15127 (11784,7813,6360,3,0),
15128 (11785,11784,6360,4,0),
15129 (27275,11785,6360,5,0),
15130 /*------------------
15131 -- (209) Pet - Cat
15132 ------------------*/
15133 /*Prowl*/
15134 (24450,0,24450,1,0),
15135 (24452,24450,24450,2,0),
15136 (24453,24452,24450,3,0),
15137 /*Rake*/
15138 (59881,0,59881,1,0),
15139 (59882,59881,59881,2,0),
15140 (59883,59882,59881,3,0),
15141 (59884,59883,59881,4,0),
15142 (59885,59884,59881,5,0),
15143 (59886,59885,59881,6,0),
15144 /*------------------
15145 --(210)Pet-Bear
15146 ------------------*/
15147 /*Swipe*/
15148 (50256,0,50256,1,0),
15149 (53526,50256,50256,2,0),
15150 (53528,53526,50256,3,0),
15151 (53529,53528,50256,4,0),
15152 (53532,53529,50256,5,0),
15153 (53533,53532,50256,6,0),
15154 /*------------------
15155 --(211)Pet-Boar
15156 ------------------*/
15157 /*Gore*/
15158 (35290,0,35290,1,0),
15159 (35291,35290,35290,2,0),
15160 (35292,35291,35290,3,0),
15161 (35293,35292,35290,4,0),
15162 (35294,35293,35290,5,0),
15163 (35295,35294,35290,6,0),
15164 /*------------------
15165 --(213)Pet-CarrionBird
15166 ------------------*/
15167 /*DemoralizingScreech*/
15168 (24423,0,24423,1,0),
15169 (24577,24423,24423,2,0),
15170 (24578,24577,24423,3,0),
15171 (24579,24578,24423,4,0),
15172 (27051,24579,24423,5,0),
15173 (55487,27051,24423,6,0),
15174 /*------------------
15175 --(215)Pet-Gorilla
15176 --(786)Pet-ExoticRhino
15177 --(775)Pet-Moth
15178 ------------------*/
15179 /*Smack*/
15180 (49966,0,49966,1,0),
15181 (49967,49966,49966,2,0),
15182 (49968,49967,49966,3,0),
15183 (49969,49968,49966,4,0),
15184 (49970,49969,49966,5,0),
15185 (49971,49970,49966,6,0),
15186 (49972,49971,49966,7,0),
15187 (49973,49972,49966,8,0),
15188 (49974,49973,49966,9,0),
15189 (52475,49974,49966,10,0),
15190 (52476,52475,49966,11,0),
15191 /*------------------
15192 --(217)Pet-Raptor
15193 ------------------*/
15194 /*SavageRend*/
15195 (50498,0,50498,1,0),
15196 (53578,50498,50498,2,0),
15197 (53579,53578,50498,3,0),
15198 (53580,53579,50498,4,0),
15199 (53581,53580,50498,5,0),
15200 (53582,53581,50498,6,0),
15201 /*------------------
15202 --(214)Pet-Crab
15203 --(218)Pet-Tallstrider
15204 --(783)Pet-ExoticSilithid
15205 ------------------*/
15206 /*Claw*/
15207 (16827,0,16827,1,0),
15208 (16828,16827,16827,2,0),
15209 (16829,16828,16827,3,0),
15210 (16830,16829,16827,4,0),
15211 (16831,16830,16827,5,0),
15212 (16832,16831,16827,6,0),
15213 (3010,16832,16827,7,0),
15214 (3009,3010,16827,8,0),
15215 (27049,3009,16827,9,0),
15216 (52471,27049,16827,10,0),
15217 (52472,52471,16827,11,0),
15218 /*------------------
15219 --(236)Pet-Scorpid
15220 ------------------*/
15221 /*Scorpid Poison*/
15222 (24640,0,24640,1,0),
15223 (24583,24640,24640,2,0),
15224 (24586,24583,24640,3,0),
15225 (24587,24586,24640,4,0),
15226 (27060,24587,24640,5,0),
15227 (55728,27060,24640,6,0),
15228 /*------------------
15229 --(237)Arcane
15230 ------------------*/
15231 /*Amplify Magic*/
15232 (1008,0,1008,1,0),
15233 (8455,1008,1008,2,0),
15234 (10169,8455,1008,3,0),
15235 (10170,10169,1008,4,0),
15236 (27130,10170,1008,5,0),
15237 (33946,27130,1008,6,0),
15238 (43017,33946,1008,7,0),
15239 /*Arcane Barrage*/
15240 (44425,0,44425,1,0),
15241 (44780,44425,44425,2,0),
15242 (44781,44780,44425,3,0),
15243 /*Arcane Blast*/
15244 (30451,0,30451,1,0),
15245 (42894,30451,30451,2,0),
15246 (42896,42894,30451,3,0),
15247 (42897,42896,30451,4,0),
15248 /*Arcane Brilliance*/
15249 (23028,0,23028,1,0),
15250 (27127,23028,23028,2,0),
15251 (43002,27127,23028,3,0),
15252 /*Arcane Explosion*/
15253 (1449,0,1449,1,0),
15254 (8437,1449,1449,2,0),
15255 (8438,8437,1449,3,0),
15256 (8439,8438,1449,4,0),
15257 (10201,8439,1449,5,0),
15258 (10202,10201,1449,6,0),
15259 (27080,10202,1449,7,0),
15260 (27082,27080,1449,8,0),
15261 (42920,27082,1449,9,0),
15262 (42921,42920,1449,10,0),
15263 /*Arcane Intellect*/
15264 (1459,0,1459,1,0),
15265 (1460,1459,1459,2,0),
15266 (1461,1460,1459,3,0),
15267 (10156,1461,1459,4,0),
15268 (10157,10156,1459,5,0),
15269 (27126,10157,1459,6,0),
15270 (42995,27126,1459,7,0),
15271 /*Arcane Missiles*/
15272 (5143,0,5143,1,0),
15273 (5144,5143,5143,2,0),
15274 (5145,5144,5143,3,0),
15275 (8416,5145,5143,4,0),
15276 (8417,8416,5143,5,0),
15277 (10211,8417,5143,6,0),
15278 (10212,10211,5143,7,0),
15279 (25345,10212,5143,8,0),
15280 (27075,25345,5143,9,0),
15281 (38699,27075,5143,10,0),
15282 (38704,38699,5143,11,0),
15283 (42843,38704,5143,12,0),
15284 (42846,42843,5143,13,0),
15285 /* Arcane Missiles Triggered Spell */
15286 (7268,0,7268,1,0),
15287 (7269,7268,7268,2,0),
15288 (7270,7269,7268,3,0),
15289 (8419,7270,7268,4,0),
15290 (8418,8419,7268,5,0),
15291 (10273,8418,7268,6,0),
15292 (10274,10273,7268,7,0),
15293 (25346,10274,7268,8,0),
15294 (27076,25346,7268,9,0),
15295 (38700,27076,7268,10,0),
15296 (38703,38700,7268,11,0),
15297 (42844,38703,7268,12,0),
15298 (42845,42844,7268,13,0),
15299 /*Conjure Food*/
15300 (587,0,587,1,0),
15301 (597,587,587,2,0),
15302 (990,597,587,3,0),
15303 (6129,990,587,4,0),
15304 (10144,6129,587,5,0),
15305 (10145,10144,587,6,0),
15306 (28612,10145,587,7,0),
15307 (33717,28612,587,8,0),
15308 /*Conjure Mana Gem*/
15309 (759,0,759,1,0),
15310 (3552,759,759,2,0),
15311 (10053,3552,759,3,0),
15312 (10054,10053,759,4,0),
15313 (27101,10054,759,5,0),
15314 (42985,27101,759,6,0),
15315 /*ConjureRefreshment*/
15316 (42955,0,42955,1,0),
15317 (42956,42955,42955,2,0),
15318 /*ConjureWater*/
15319 (5504,0,5504,1,0),
15320 (5505,5504,5504,2,0),
15321 (5506,5505,5504,3,0),
15322 (6127,5506,5504,4,0),
15323 (10138,6127,5504,5,0),
15324 (10139,10138,5504,6,0),
15325 (10140,10139,5504,7,0),
15326 (37420,10140,5504,8,0),
15327 (27090,37420,5504,9,0),
15328 /*DampenMagic*/
15329 (604,0,604,1,0),
15330 (8450,604,604,2,0),
15331 (8451,8450,604,3,0),
15332 (10173,8451,604,4,0),
15333 (10174,10173,604,5,0),
15334 (33944,10174,604,6,0),
15335 (43015,33944,604,7,0),
15336 /*MageArmor*/
15337 (6117,0,6117,1,0),
15338 (22782,6117,6117,2,0),
15339 (22783,22782,6117,3,0),
15340 (27125,22783,6117,4,0),
15341 (43023,27125,6117,5,0),
15342 (43024,43023,6117,6,0),
15343 /*ManaShield*/
15344 (1463,0,1463,1,0),
15345 (8494,1463,1463,2,0),
15346 (8495,8494,1463,3,0),
15347 (10191,8495,1463,4,0),
15348 (10192,10191,1463,5,0),
15349 (10193,10192,1463,6,0),
15350 (27131,10193,1463,7,0),
15351 (43019,27131,1463,8,0),
15352 (43020,43019,1463,9,0),
15353 /*Polymorph*/
15354 (118,0,118,1,0),
15355 (12824,118,118,2,0),
15356 (12825,12824,118,3,0),
15357 (12826,12825,118,4,0),
15358 /*RitualofRefreshment*/
15359 (43987,0,43987,1,0),
15360 (58659,43987,43987,2,0),
15361 /*------------------
15362 --(253)Assassination
15363 ------------------*/
15364 /*Ambush*/
15365 (8676,0,8676,1,0),
15366 (8724,8676,8676,2,0),
15367 (8725,8724,8676,3,0),
15368 (11267,8725,8676,4,0),
15369 (11268,11267,8676,5,0),
15370 (11269,11268,8676,6,0),
15371 (27441,11269,8676,7,0),
15372 (48689,27441,8676,8,0),
15373 (48690,48689,8676,9,0),
15374 (48691,48690,8676,10,0),
15375 /*DeadlyThrow*/
15376 (26679,0,26679,1,0),
15377 (48673,26679,26679,2,0),
15378 (48674,48673,26679,3,0),
15379 /*Envenom*/
15380 (32645,0,32645,1,0),
15381 (32684,32645,32645,2,0),
15382 (57992,32684,32645,3,0),
15383 (57993,57992,32645,4,0),
15384 /*Eviscerate*/
15385 (2098,0,2098,1,0),
15386 (6760,2098,2098,2,0),
15387 (6761,6760,2098,3,0),
15388 (6762,6761,2098,4,0),
15389 (8623,6762,2098,5,0),
15390 (8624,8623,2098,6,0),
15391 (11299,8624,2098,7,0),
15392 (11300,11299,2098,8,0),
15393 (31016,11300,2098,9,0),
15394 (26865,31016,2098,10,0),
15395 (48667,26865,2098,11,0),
15396 (48668,48667,2098,12,0),
15397 /*ExposeArmor*/
15398 (8647,0,8647,1,0),
15399 (8649,8647,8647,2,0),
15400 (8650,8649,8647,3,0),
15401 (11197,8650,8647,4,0),
15402 (11198,11197,8647,5,0),
15403 (26866,11198,8647,6,0),
15404 (48669,26866,8647,7,0),
15405 /*Garrote*/
15406 (703,0,703,1,0),
15407 (8631,703,703,2,0),
15408 (8632,8631,703,3,0),
15409 (8633,8632,703,4,0),
15410 (11289,8633,703,5,0),
15411 (11290,11289,703,6,0),
15412 (26839,11290,703,7,0),
15413 (26884,26839,703,8,0),
15414 (48675,26884,703,9,0),
15415 (48676,48675,703,10,0),
15416 /*KidneyShot*/
15417 (408,0,408,1,0),
15418 (8643,408,408,2,0),
15419 /*Mutilate*/
15420 (1329,0,1329,1,0),
15421 (34411,1329,1329,2,0),
15422 (34412,34411,1329,3,0),
15423 (34413,34412,1329,4,0),
15424 (48663,34413,1329,5,0),
15425 (48666,48663,1329,6,0),
15426 /*Rupture*/
15427 (1943,0,1943,1,0),
15428 (8639,1943,1943,2,0),
15429 (8640,8639,1943,3,0),
15430 (11273,8640,1943,4,0),
15431 (11274,11273,1943,5,0),
15432 (11275,11274,1943,6,0),
15433 (26867,11275,1943,7,0),
15434 (48671,26867,1943,8,0),
15435 (48672,48671,1943,9,0),
15436 /*SliceandDice*/
15437 (5171,0,5171,1,0),
15438 (6774,5171,5171,2,0),
15439 /*------------------
15440 --(256)Fury
15441 ------------------*/
15442 /*BattleShout*/
15443 (6673,0,6673,1,0),
15444 (5242,6673,6673,2,0),
15445 (6192,5242,6673,3,0),
15446 (11549,6192,6673,4,0),
15447 (11550,11549,6673,5,0),
15448 (11551,11550,6673,6,0),
15449 (25289,11551,6673,7,0),
15450 (2048,25289,6673,8,0),
15451 (47436,2048,6673,9,0),
15452 /*Cleave*/
15453 (845,0,845,1,0),
15454 (7369,845,845,2,0),
15455 (11608,7369,845,3,0),
15456 (11609,11608,845,4,0),
15457 (20569,11609,845,5,0),
15458 (25231,20569,845,6,0),
15459 (47519,25231,845,7,0),
15460 (47520,47519,845,8,0),
15461 /*CommandingShout*/
15462 (469,0,469,1,0),
15463 (47439,469,469,2,0),
15464 (47440,47439,469,3,0),
15465 /*DemoralizingShout*/
15466 (1160,0,1160,1,0),
15467 (6190,1160,1160,2,0),
15468 (11554,6190,1160,3,0),
15469 (11555,11554,1160,4,0),
15470 (11556,11555,1160,5,0),
15471 (25202,11556,1160,6,0),
15472 (25203,25202,1160,7,0),
15473 (47437,25203,1160,8,0),
15474 /*Execute*/
15475 (5308,0,5308,1,0),
15476 (20658,5308,5308,2,0),
15477 (20660,20658,5308,3,0),
15478 (20661,20660,5308,4,0),
15479 (20662,20661,5308,5,0),
15480 (25234,20662,5308,6,0),
15481 (25236,25234,5308,7,0),
15482 (47470,25236,5308,8,0),
15483 (47471,47470,5308,9,0),
15484 /*Slam*/
15485 (1464,0,1464,1,0),
15486 (8820,1464,1464,2,0),
15487 (11604,8820,1464,3,0),
15488 (11605,11604,1464,4,0),
15489 (25241,11605,1464,5,0),
15490 (25242,25241,1464,6,0),
15491 (47474,25242,1464,7,0),
15492 (47475,47474,1464,8,0),
15493 /*------------------
15494 --(257) Protection (Warrior)
15495 ------------------*/
15496 /*Devastate*/
15497 (20243,0,20243,1,0),
15498 (30016,20243,20243,2,0),
15499 (30022,30016,20243,3,0),
15500 (47497,30022,20243,4,0),
15501 (47498,47497,20243,5,0),
15502 /*Revenge*/
15503 (6572,0,6572,1,0),
15504 (6574,6572,6572,2,0),
15505 (7379,6574,6572,3,0),
15506 (11600,7379,6572,4,0),
15507 (11601,11600,6572,5,0),
15508 (25288,11601,6572,6,0),
15509 (25269,25288,6572,7,0),
15510 (30357,25269,6572,8,0),
15511 (57823,30357,6572,9,0),
15512 /*ShieldSlam*/
15513 (23922,0,23922,1,0),
15514 (23923,23922,23922,2,0),
15515 (23924,23923,23922,3,0),
15516 (23925,23924,23922,4,0),
15517 (25258,23925,23922,5,0),
15518 (30356,25258,23922,6,0),
15519 (47487,30356,23922,7,0),
15520 (47488,47487,23922,8,0),
15521 /*------------------
15522 -- (267) Protection (Paladin)
15523 ------------------*/
15524 /*Avenger'sShield*/
15525 (31935,0,31935,1,0),
15526 (32699,31935,31935,2,0),
15527 (32700,32699,31935,3,0),
15528 (48826,32700,31935,4,0),
15529 (48827,48826,31935,5,0),
15530 /*Devotion Aura*/
15531 (465,0,465,1,0),
15532 (10290,465,465,2,0),
15533 (643,10290,465,3,0),
15534 (10291,643,465,4,0),
15535 (1032,10291,465,5,0),
15536 (10292,1032,465,6,0),
15537 (10293,10292,465,7,0),
15538 (27149,10293,465,8,0),
15539 (48941,27149,465,9,0),
15540 (48942,48941,465,10,0),
15541 /*Divinity*/
15542 (63646,0,63646,1,0),
15543 (63647,63646,63646,2,0),
15544 (63648,63647,63646,3,0),
15545 (63649,63648,63646,4,0),
15546 (63650,63649,63646,5,0),
15547 /*Fire Resistance Aura*/
15548 (19891,0,19891,1,0),
15549 (19899,19891,19891,2,0),
15550 (19900,19899,19891,3,0),
15551 (27153,19900,19891,4,0),
15552 (48947,27153,19891,5,0),
15553 /*Frost Resistance Aura*/
15554 (19888,0,19888,1,0),
15555 (19897,19888,19888,2,0),
15556 (19898,19897,19888,3,0),
15557 (27152,19898,19888,4,0),
15558 (48945,27152,19888,5,0),
15559 /*Greater Blessing of Kings*/
15560 (20217,0,20217,1,0),
15561 (25898,20217,20217,2,0),
15562 /*Greater Blessing of Sanctuary*/
15563 (20911,0,20911,1,0),
15564 (25899,20911,20911,2,0),
15565 /*HammerofJustice*/
15566 (853,0,853,1,0),
15567 (5588,853,853,2,0),
15568 (5589,5588,853,3,0),
15569 (10308,5589,853,4,0),
15570 /*HandofProtection*/
15571 (1022,0,1022,1,0),
15572 (5599,1022,1022,2,0),
15573 (10278,5599,1022,3,0),
15574 /*Holy Shield*/
15575 (20925,0,20925,1,0),
15576 (20927,20925,20925,2,0),
15577 (20928,20927,20925,3,0),
15578 (27179,20928,20925,4,0),
15579 (48951,27179,20925,5,0),
15580 (48952,48951,20925,6,0),
15581 /*Shadow Resistance Aura*/
15582 (19876,0,19876,1,0),
15583 (19895,19876,19876,2,0),
15584 (19896,19895,19876,3,0),
15585 (27151,19896,19876,4,0),
15586 (48943,27151,19876,5,0),
15587 /*Shield of Righteousness*/
15588 (53600,0,53600,1,0),
15589 (61411,53600,53600,2,0),
15590 /*Spiritual Attunement*/
15591 (31785,0,31785,1,0),
15592 (33776,31785,31785,2,0),
15593 /*------------------
15594 --(270)Pet-GenericHunter
15595 ------------------*/
15596 /*Cower*/
15597 (1742,0,1742,1,0),
15598 (1753,1742,1742,2,0),
15599 (1754,1753,1742,3,0),
15600 (1755,1754,1742,4,0),
15601 (1756,1755,1742,5,0),
15602 (16697,1756,1742,6,0),
15603 (27048,16697,1742,7,0),
15604 /*Great Resistance*/
15605 (53427,0,53427,1,0),
15606 (53429,53427,53427,2,0),
15607 (53430,53429,53427,3,0),
15608 /*Growl*/
15609 (2649,0,2649,1,0),
15610 (14916,2649,2649,2,0),
15611 (14917,14916,2649,3,0),
15612 (14918,14917,2649,4,0),
15613 (14919,14918,2649,5,0),
15614 (14920,14919,2649,6,0),
15615 (14921,14920,2649,7,0),
15616 (27047,14921,2649,8,0),
15617 (61676,27047,2649,9,0),
15618 /*Shark Attack*/
15619 (62759,0,62759,1,0),
15620 (62760,62759,62759,2,0),
15621 /*Silverback*/
15622 (62764,0,62764,1,0),
15623 (62765,62764,62764,2,0),
15624 /*Wild Hunt*/
15625 (62758,0,62758,1,0),
15626 (62762,62758,62758,2,0),
15627 /*------------------
15628 -- (333) Enchanting
15629 ------------------*/
15630 /*Enchanting*/
15631 (7411,0,7411,1,0),
15632 (7412,7411,7411,2,0),
15633 (7413,7412,7411,3,0),
15634 (13920,7413,7411,4,0),
15635 (28029,13920,7411,5,0),
15636 (51313,28029,7411,6,0),
15637 /*------------------
15638 --(354)Demonology
15639 ------------------*/
15640 /*Banish*/
15641 (710,0,710,1,0),
15642 (18647,710,710,2,0),
15643 /*CreateFirestone*/
15644 (6366,0,6366,1,0),
15645 (17951,6366,6366,2,0),
15646 (17952,17951,6366,3,0),
15647 (17953,17952,6366,4,0),
15648 (27250,17953,6366,5,0),
15649 (60219,27250,6366,6,0),
15650 (60220,60219,6366,7,0),
15651 /*CreateHealthstone*/
15652 (6201,0,6201,1,0),
15653 (6202,6201,6201,2,0),
15654 (5699,6202,6201,3,0),
15655 (11729,5699,6201,4,0),
15656 (11730,11729,6201,5,0),
15657 (27230,11730,6201,6,0),
15658 (47871,27230,6201,7,0),
15659 (47878,47871,6201,8,0),
15660 /*CreateSoulstone*/
15661 (693,0,693,1,0),
15662 (20752,693,693,2,0),
15663 (20755,20752,693,3,0),
15664 (20756,20755,693,4,0),
15665 (20757,20756,693,5,0),
15666 (27238,20757,693,6,0),
15667 (47884,27238,693,7,0),
15668 /*CreateSpellstone*/
15669 (2362,0,2362,1,0),
15670 (17727,2362,2362,2,0),
15671 (17728,17727,2362,3,0),
15672 (28172,17728,2362,4,0),
15673 (47886,28172,2362,5,0),
15674 (47888,47886,2362,6,0),
15675 /*Decimation*/
15676 (63156,0,63156,1,0),
15677 (63158,63156,63156,2,0),
15678 /*DemonArmor*/
15679 (706,0,706,1,0),
15680 (1086,706,706,2,0),
15681 (11733,1086,706,3,0),
15682 (11734,11733,706,4,0),
15683 (11735,11734,706,5,0),
15684 (27260,11735,706,6,0),
15685 (47793,27260,706,7,0),
15686 (47889,47793,706,8,0),
15687 /*DemonSkin*/
15688 (687,0,687,1,0),
15689 (696,687,687,2,0),
15690 /*EnslaveDemon*/
15691 (1098,0,1098,1,0),
15692 (11725,1098,1098,2,0),
15693 (11726,11725,1098,3,0),
15694 (61191,11726,1098,4,0),
15695 /*FelArmor*/
15696 (28176,0,28176,1,0),
15697 (28189,28176,28176,2,0),
15698 (47892,28189,28176,3,0),
15699 (47893,47892,28176,4,0),
15700 /*HealthFunnel*/
15701 (755,0,755,1,0),
15702 (3698,755,755,2,0),
15703 (3699,3698,755,3,0),
15704 (3700,3699,755,4,0),
15705 (11693,3700,755,5,0),
15706 (11694,11693,755,6,0),
15707 (11695,11694,755,7,0),
15708 (27259,11695,755,8,0),
15709 (47856,27259,755,9,0),
15710 /*Nemesis*/
15711 (63117,0,63117,1,0),
15712 (63121,63117,63117,2,0),
15713 (63123,63121,63117,3,0),
15714 /*RitualofSouls*/
15715 (29893,0,29893,1,0),
15716 (58887,29893,29893,2,0),
15717 /*ShadowWard*/
15718 (6229,0,6229,1,0),
15719 (11739,6229,6229,2,0),
15720 (11740,11739,6229,3,0),
15721 (28610,11740,6229,4,0),
15722 (47890,28610,6229,5,0),
15723 (47891,47890,6229,6,0),
15724 /*------------------
15725 --(355)Affliction
15726 ------------------*/
15727 /*Corruption*/
15728 (172,0,172,1,0),
15729 (6222,172,172,2,0),
15730 (6223,6222,172,3,0),
15731 (7648,6223,172,4,0),
15732 (11671,7648,172,5,0),
15733 (11672,11671,172,6,0),
15734 (25311,11672,172,7,0),
15735 (27216,25311,172,8,0),
15736 (47812,27216,172,9,0),
15737 (47813,47812,172,10,0),
15738 /*Curse of Agony*/
15739 (980,0,980,1,0),
15740 (1014,980,980,2,0),
15741 (6217,1014,980,3,0),
15742 (11711,6217,980,4,0),
15743 (11712,11711,980,5,0),
15744 (11713,11712,980,6,0),
15745 (27218,11713,980,7,0),
15746 (47863,27218,980,8,0),
15747 (47864,47863,980,9,0),
15748 /*Curse of Doom*/
15749 (603,0,603,1,0),
15750 (30910,603,603,2,0),
15751 (47867,30910,603,3,0),
15752 /*Curse of the Elements*/
15753 (1490,0,1490,1,0),
15754 (11721,1490,1490,2,0),
15755 (11722,11721,1490,3,0),
15756 (27228,11722,1490,4,0),
15757 (47865,27228,1490,5,0),
15758 /*Curse of Tongues*/
15759 (1714,0,1714,1,0),
15760 (11719,1714,1714,2,0),
15761 /*Curse of Weakness*/
15762 (702,0,702,1,0),
15763 (1108,702,702,2,0),
15764 (6205,1108,702,3,0),
15765 (7646,6205,702,4,0),
15766 (11707,7646,702,5,0),
15767 (11708,11707,702,6,0),
15768 (27224,11708,702,7,0),
15769 (30909,27224,702,8,0),
15770 (50511,30909,702,9,0),
15771 /*Dark Pact*/
15772 (18220,0,    18220,1,0),
15773 (18937,18220,18220,2,0),
15774 (18938,18937,18220,3,0),
15775 (27265,18938,18220,4,0),
15776 (59092,27265,18220,5,0),
15777 /*Death Coil*/
15778 (6789,0,6789,1,0),
15779 (17925,6789,6789,2,0),
15780 (17926,17925,6789,3,0),
15781 (27223,17926,6789,4,0),
15782 (47859,27223,6789,5,0),
15783 (47860,47859,6789,6,0),
15784 /*Drain Life*/
15785 (689,0,689,1,0),
15786 (699,689,689,2,0),
15787 (709,699,689,3,0),
15788 (7651,709,689,4,0),
15789 (11699,7651,689,5,0),
15790 (11700,11699,689,6,0),
15791 (27219,11700,689,7,0),
15792 (27220,27219,689,8,0),
15793 (47857,27220,689,9,0),
15794 /*Drain Soul*/
15795 (1120,0,1120,1,0),
15796 (8288,1120,1120,2,0),
15797 (8289,8288,1120,3,0),
15798 (11675,8289,1120,4,0),
15799 (27217,11675,1120,5,0),
15800 (47855,27217,1120,6,0),
15801 /*Fear*/
15802 (5782,0,5782,1,0),
15803 (6213,5782,5782,2,0),
15804 (6215,6213,5782,3,0),
15805 /*Haunt*/
15806 (48181,0,48181,1,0),
15807 (59161,48181,48181,2,0),
15808 (59163,59161,48181,3,0),
15809 (59164,59163,48181,4,0),
15810 /*Howl of Terror*/
15811 (5484,0,5484,1,0),
15812 (17928,5484,5484,2,0),
15813 /*Seed of Corruption*/
15814 (27243,0,27243,1,0),
15815 (47835,27243,27243,2,0),
15816 (47836,47835,27243,3,0),
15817 /* Shadow embrace */
15818 (32385,0,32385,1,0),
15819 (32387,32385,32385,2,0),
15820 (32392,32387,32385,3,0),
15821 (32393,32392,32385,4,0),
15822 (32394,32393,32385,5,0),
15823 /*Unstable Affliction*/
15824 (30108,0,30108,1,0),
15825 (30404,30108,30108,2,0),
15826 (30405,30404,30108,3,0),
15827 (47841,30405,30108,4,0),
15828 (47843,47841,30108,5,0),
15829 /*------------------
15830 -- (356) Fishing
15831 ------------------*/
15832 /*Fishing*/
15833 (7620,0,7620,1,0),
15834 (7731,7620,7620,2,0),
15835 (7732,7731,7620,3,0),
15836 (18248,7732,7620,4,0),
15837 (33095,18248,7620,5,0),
15838 (51294,33095,7620,6,0),
15839 /*------------------
15840 --(373) Enhancement
15841 ------------------*/
15842 /*Fire Resistance Totem*/
15843 (8184,0,8184,1,0),
15844 (10537,8184,8184,2,0),
15845 (10538,10537,8184,3,0),
15846 (25563,10538,8184,4,0),
15847 (58737,25563,8184,5,0),
15848 (58739,58737,8184,6,0),
15849 /*Flametongue Totem*/
15850 (8227,0,8227,1,0),
15851 (8249,8227,8227,2,0),
15852 (10526,8249,8227,3,0),
15853 (16387,10526,8227,4,0),
15854 (25557,16387,8227,5,0),
15855 (58649,25557,8227,6,0),
15856 (58652,58649,8227,7,0),
15857 (58656,58652,8227,8,0),
15858 /*Flametongue Weapon*/
15859 (8024,0,8024,1,0),
15860 (8027,8024,8024,2,0),
15861 (8030,8027,8024,3,0),
15862 (16339,8030,8024,4,0),
15863 (16341,16339,8024,5,0),
15864 (16342,16341,8024,6,0),
15865 (25489,16342,8024,7,0),
15866 (58785,25489,8024,8,0),
15867 (58789,58785,8024,9,0),
15868 (58790,58789,8024,10,0),
15869 /*Frost Resistance Totem*/
15870 (8181,0,8181,1,0),
15871 (10478,8181,8181,2,0),
15872 (10479,10478,8181,3,0),
15873 (25560,10479,8181,4,0),
15874 (58741,25560,8181,5,0),
15875 (58745,58741,8181,6,0),
15876 /*Frostbrand Weapon*/
15877 (8033,0,8033,1,0),
15878 (8038,8033,8033,2,0),
15879 (10456,8038,8033,3,0),
15880 (16355,10456,8033,4,0),
15881 (16356,16355,8033,5,0),
15882 (25500,16356,8033,6,0),
15883 (58794,25500,8033,7,0),
15884 (58795,58794,8033,8,0),
15885 (58796,58795,8033,9,0),
15886 /*Frozen Power*/
15887 (63373,0,63373,1,0),
15888 (63374,63373,63373,2,0),
15889 /*Life Tap*/
15890 (1454,0,1454,1,0),
15891 (1455,1454,1454,2,0),
15892 (1456,1455,1454,3,0),
15893 (11687,1456,1454,4,0),
15894 (11688,11687,1454,5,0),
15895 (11689,11688,1454,6,0),
15896 (27222,11689,1454,7,0),
15897 (57946,27222,1454,8,0),
15898 /*Lightning Shield*/
15899 (324,0,324,1,0),
15900 (325,324,324,2,0),
15901 (905,325,324,3,0),
15902 (945,905,324,4,0),
15903 (8134,945,324,5,0),
15904 (10431,8134,324,6,0),
15905 (10432,10431,324,7,0),
15906 (25469,10432,324,8,0),
15907 (25472,25469,324,9,0),
15908 (49280,25472,324,10,0),
15909 (49281,49280,324,11,0),
15910 /* Lightning Shield Proc */
15911 (26364,0,26364,1,0),
15912 (26365,26364,26364,2,0),
15913 (26366,26365,26364,3,0),
15914 (26367,26366,26364,4,0),
15915 (26369,26367,26364,5,0),
15916 (26370,26369,26364,6,0),
15917 (26363,26370,26364,7,0),
15918 (26371,26363,26364,8,0),
15919 (26372,26371,26364,9,0),
15920 (49278,26372,26364,10,0),
15921 (49279,49278,26364,11,0),
15922 /*Maelstrom Weapon*/
15923 (51528,0,51528,1,0),
15924 (51529,51528,51528,2,0),
15925 (51530,51529,51528,3,0),
15926 (51531,51530,51528,4,0),
15927 (51532,51531,51528,5,0),
15928 /*Nature Resistance Totem*/
15929 (10595,0,10595,1,0),
15930 (10600,10595,10595,2,0),
15931 (10601,10600,10595,3,0),
15932 (25574,10601,10595,4,0),
15933 (58746,25574,10595,5,0),
15934 (58749,58746,10595,6,0),
15935 /*Rockbiter Weapon*/
15936 (8017,0,8017,1,0),
15937 (8018,8017,8017,2,0),
15938 (8019,8018,8017,3,0),
15939 (10399,8019,8017,4,0),
15940 /*Stoneskin Totem*/
15941 (8071,0,8071,1,0),
15942 (8154,8071,8071,2,0),
15943 (8155,8154,8071,3,0),
15944 (10406,8155,8071,4,0),
15945 (10407,10406,8071,5,0),
15946 (10408,10407,8071,6,0),
15947 (25508,10408,8071,7,0),
15948 (25509,25508,8071,8,0),
15949 (58751,25509,8071,9,0),
15950 (58753,58751,8071,10,0),
15951 /*Strength of Earth Totem*/
15952 (8075,0,8075,1,0),
15953 (8160,8075,8075,2,0),
15954 (8161,8160,8075,3,0),
15955 (10442,8161,8075,4,0),
15956 (25361,10442,8075,5,0),
15957 (25528,25361,8075,6,0),
15958 (57622,25528,8075,7,0),
15959 (58643,57622,8075,8,0),
15960 /*WindfuryWeapon*/
15961 (8232,0,8232,1,0),
15962 (8235,8232,8232,2,0),
15963 (10486,8235,8232,3,0),
15964 (16362,10486,8232,4,0),
15965 (25505,16362,8232,5,0),
15966 (58801,25505,8232,6,0),
15967 (58803,58801,8232,7,0),
15968 (58804,58803,8232,8,0),
15969 /*------------------
15970 -- (374) Restoration (Shaman)
15971 ------------------*/
15972 /*AncestralSpirit*/
15973 (2008,0,2008,1,0),
15974 (20609,2008,2008,2,0),
15975 (20610,20609,2008,3,0),
15976 (20776,20610,2008,4,0),
15977 (20777,20776,2008,5,0),
15978 (25590,20777,2008,6,0),
15979 (49277,25590,2008,7,0),
15980 /*ChainHeal*/
15981 (1064,0,1064,1,0),
15982 (10622,1064,1064,2,0),
15983 (10623,10622,1064,3,0),
15984 (25422,10623,1064,4,0),
15985 (25423,25422,1064,5,0),
15986 (55458,25423,1064,6,0),
15987 (55459,55458,1064,7,0),
15988 /*EarthShield*/
15989 (974,0,974,1,0),
15990 (32593,974,974,2,0),
15991 (32594,32593,974,3,0),
15992 (49283,32594,974,4,0),
15993 (49284,49283,974,5,0),
15994 /*EarthlivingWeapon*/
15995 (51730,0,51730,1,0),
15996 (51988,51730,51730,2,0),
15997 (51991,51988,51730,3,0),
15998 (51992,51991,51730,4,0),
15999 (51993,51992,51730,5,0),
16000 (51994,51993,51730,6,0),
16001 /*HealingStreamTotem*/
16002 (5394,0,5394,1,0),
16003 (6375,5394,5394,2,0),
16004 (6377,6375,5394,3,0),
16005 (10462,6377,5394,4,0),
16006 (10463,10462,5394,5,0),
16007 (25567,10463,5394,6,0),
16008 (58755,25567,5394,7,0),
16009 (58756,58755,5394,8,0),
16010 (58757,58756,5394,9,0),
16011 /*HealingWave*/
16012 (331,0,331,1,0),
16013 (332,331,331,2,0),
16014 (547,332,331,3,0),
16015 (913,547,331,4,0),
16016 (939,913,331,5,0),
16017 (959,939,331,6,0),
16018 (8005,959,331,7,0),
16019 (10395,8005,331,8,0),
16020 (10396,10395,331,9,0),
16021 (25357,10396,331,10,0),
16022 (25391,25357,331,11,0),
16023 (25396,25391,331,12,0),
16024 (49272,25396,331,13,0),
16025 (49273,49272,331,14,0),
16026 /*LesserHealingWave*/
16027 (8004,0,8004,1,0),
16028 (8008,8004,8004,2,0),
16029 (8010,8008,8004,3,0),
16030 (10466,8010,8004,4,0),
16031 (10467,10466,8004,5,0),
16032 (10468,10467,8004,6,0),
16033 (25420,10468,8004,7,0),
16034 (49275,25420,8004,8,0),
16035 (49276,49275,8004,9,0),
16036 /*Mana Spring Totem*/
16037 (5675,0,5675,1,0),
16038 (10495,5675,5675,2,0),
16039 (10496,10495,5675,3,0),
16040 (10497,10496,5675,4,0),
16041 (25570,10497,5675,5,0),
16042 (58771,25570,5675,6,0),
16043 (58773,58771,5675,7,0),
16044 (58774,58773,5675,8,0),
16045 /*Riptide*/
16046 (61295,0,61295,1,0),
16047 (61299,61295,61295,2,0),
16048 (61300,61299,61295,3,0),
16049 (61301,61300,61295,4,0),
16050 /*Water Shield*/
16051 (52127,0,52127,1,0),
16052 (52129,52127,52127,2,0),
16053 (52131,52129,52127,3,0),
16054 (52134,52131,52127,4,0),
16055 (52136,52134,52127,5,0),
16056 (52138,52136,52127,6,0),
16057 (24398,52138,52127,7,0),
16058 (33736,24398,52127,8,0),
16059 (57960,33736,52127,9,0),
16060 /*------------------
16061 -- (375) Elemental Combat
16062 ------------------*/
16063 /*Booming Echoes*/
16064 (63370,0,63370,1,0),
16065 (63372,63370,63370,2,0),
16066 /*Chain Lightning*/
16067 (421,0,421,1,0),
16068 (930,421,421,2,0),
16069 (2860,930,421,3,0),
16070 (10605,2860,421,4,0),
16071 (25439,10605,421,5,0),
16072 (25442,25439,421,6,0),
16073 (49270,25442,421,7,0),
16074 (49271,49270,421,8,0),
16075 /*Earth Shock*/
16076 (8042,0,8042,1,0),
16077 (8044,8042,8042,2,0),
16078 (8045,8044,8042,3,0),
16079 (8046,8045,8042,4,0),
16080 (10412,8046,8042,5,0),
16081 (10413,10412,8042,6,0),
16082 (10414,10413,8042,7,0),
16083 (25454,10414,8042,8,0),
16084 (49230,25454,8042,9,0),
16085 (49231,49230,8042,10,0),
16086 /*Fire Nova Totem*/
16087 (1535,0,1535,1,0),
16088 (8498,1535,1535,2,0),
16089 (8499,8498,1535,3,0),
16090 (11314,8499,1535,4,0),
16091 (11315,11314,1535,5,0),
16092 (25546,11315,1535,6,0),
16093 (25547,25546,1535,7,0),
16094 (61649,25547,1535,8,0),
16095 (61657,61649,1535,9,0),
16096 /*Flame Shock*/
16097 (8050,0,8050,1,0),
16098 (8052,8050,8050,2,0),
16099 (8053,8052,8050,3,0),
16100 (10447,8053,8050,4,0),
16101 (10448,10447,8050,5,0),
16102 (29228,10448,8050,6,0),
16103 (25457,29228,8050,7,0),
16104 (49232,25457,8050,8,0),
16105 (49233,49232,8050,9,0),
16106 /*Frost Shock*/
16107 (8056,0,8056,1,0),
16108 (8058,8056,8056,2,0),
16109 (10472,8058,8056,3,0),
16110 (10473,10472,8056,4,0),
16111 (25464,10473,8056,5,0),
16112 (49235,25464,8056,6,0),
16113 (49236,49235,8056,7,0),
16114 /*Lava Burst*/
16115 (51505,0,51505,1,0),
16116 (60043,51505,51505,2,0),
16117 /*Lightning Bolt*/
16118 (403,0,403,1,0),
16119 (529,403,403,2,0),
16120 (548,529,403,3,0),
16121 (915,548,403,4,0),
16122 (943,915,403,5,0),
16123 (6041,943,403,6,0),
16124 (10391,6041,403,7,0),
16125 (10392,10391,403,8,0),
16126 (15207,10392,403,9,0),
16127 (15208,15207,403,10,0),
16128 (25448,15208,403,11,0),
16129 (25449,25448,403,12,0),
16130 (49237,25449,403,13,0),
16131 (49238,49237,403,14,0),
16132 /*Magma Totem*/
16133 (8190,0,8190,1,0),
16134 (10585,8190,8190,2,0),
16135 (10586,10585,8190,3,0),
16136 (10587,10586,8190,4,0),
16137 (25552,10587,8190,5,0),
16138 (58731,25552,8190,6,0),
16139 (58734,58731,8190,7,0),
16140 /*Purge*/
16141 (370,0,370,1,0),
16142 (8012,370,370,2,0),
16143 /*Searing Totem*/
16144 (3599,0,3599,1,0),
16145 (6363,3599,3599,2,0),
16146 (6364,6363,3599,3,0),
16147 (6365,6364,3599,4,0),
16148 (10437,6365,3599,5,0),
16149 (10438,10437,3599,6,0),
16150 (25533,10438,3599,7,0),
16151 (58699,25533,3599,8,0),
16152 (58703,58699,3599,9,0),
16153 (58704,58703,3599,10,0),
16154 /*Stoneclaw Totem*/
16155 (5730,0,5730,1,0),
16156 (6390,5730,5730,2,0),
16157 (6391,6390,5730,3,0),
16158 (6392,6391,5730,4,0),
16159 (10427,6392,5730,5,0),
16160 (10428,10427,5730,6,0),
16161 (25525,10428,5730,7,0),
16162 (58580,25525,5730,8,0),
16163 (58581,58580,5730,9,0),
16164 (58582,58581,5730,10,0),
16165 /*Totemof Wrath*/
16166 (30706,0,30706,1,0),
16167 (57720,30706,30706,2,0),
16168 (57721,57720,30706,3,0),
16169 (57722,57721,30706,4,0),
16170 /*Thunderstorm*/
16171 (51490,0,51490,1,0),
16172 (59156,51490,51490,2,0),
16173 (59158,59156,51490,3,0),
16174 (59159,59158,51490,4,0),
16175 /*------------------
16176 -- (393) Skinning
16177 ------------------*/
16178 /*Skinning*/
16179 (8613,0,8613,1,0),
16180 (8617,8613,8613,2,0),
16181 (8618,8617,8613,3,0),
16182 (10768,8618,8613,4,0),
16183 (32678,10768,8613,5,0),
16184 (50305,32678,8613,6,0),
16185 /*Master of Anatomy*/
16186 (53125,0,53125,1,0),
16187 (53662,53125,53125,2,0),
16188 (53663,53662,53125,3,0),
16189 (53664,53663,53125,4,0),
16190 (53665,53664,53125,5,0),
16191 (53666,53665,53125,6,0),
16192 /*------------------
16193 --(573)Restoration
16194 ------------------*/
16195 /*GiftoftheWild*/
16196 (21849,0,21849,1,0),
16197 (21850,21849,21849,2,0),
16198 (26991,21850,21849,3,0),
16199 (48470,26991,21849,4,0),
16200 /*HealingTouch*/
16201 (5185,0,5185,1,0),
16202 (5186,5185,5185,2,0),
16203 (5187,5186,5185,3,0),
16204 (5188,5187,5185,4,0),
16205 (5189,5188,5185,5,0),
16206 (6778,5189,5185,6,0),
16207 (8903,6778,5185,7,0),
16208 (9758,8903,5185,8,0),
16209 (9888,9758,5185,9,0),
16210 (9889,9888,5185,10,0),
16211 (25297,9889,5185,11,0),
16212 (26978,25297,5185,12,0),
16213 (26979,26978,5185,13,0),
16214 (48377,26979,5185,14,0),
16215 (48378,48377,5185,15,0),
16216 /*Improved Barkskin*/
16217 (63410,0,63410,1,0),
16218 (63411,63410,63410,2,0),
16219 /*Lifebloom*/
16220 (33763,0,33763,1,0),
16221 (48450,33763,33763,2,0),
16222 (48451,48450,33763,3,0),
16223 /*MarkoftheWild*/
16224 (1126,0,1126,1,0),
16225 (5232,1126,1126,2,0),
16226 (6756,5232,1126,3,0),
16227 (5234,6756,1126,4,0),
16228 (8907,5234,1126,5,0),
16229 (9884,8907,1126,6,0),
16230 (9885,9884,1126,7,0),
16231 (26990,9885,1126,8,0),
16232 (48469,26990,1126,9,0),
16233 /*Nourish*/
16234 (50464,0,50464,1,0),
16235 /*Rebirth*/
16236 (20484,0,20484,1,0),
16237 (20739,20484,20484,2,0),
16238 (20742,20739,20484,3,0),
16239 (20747,20742,20484,4,0),
16240 (20748,20747,20484,5,0),
16241 (26994,20748,20484,6,0),
16242 (48477,26994,20484,7,0),
16243 /*Regrowth*/
16244 (8936,0,8936,1,0),
16245 (8938,8936,8936,2,0),
16246 (8939,8938,8936,3,0),
16247 (8940,8939,8936,4,0),
16248 (8941,8940,8936,5,0),
16249 (9750,8941,8936,6,0),
16250 (9856,9750,8936,7,0),
16251 (9857,9856,8936,8,0),
16252 (9858,9857,8936,9,0),
16253 (26980,9858,8936,10,0),
16254 (48442,26980,8936,11,0),
16255 (48443,48442,8936,12,0),
16256 /*Rejuvenation*/
16257 (774,0,774,1,0),
16258 (1058,774,774,2,0),
16259 (1430,1058,774,3,0),
16260 (2090,1430,774,4,0),
16261 (2091,2090,774,5,0),
16262 (3627,2091,774,6,0),
16263 (8910,3627,774,7,0),
16264 (9839,8910,774,8,0),
16265 (9840,9839,774,9,0),
16266 (9841,9840,774,10,0),
16267 (25299,9841,774,11,0),
16268 (26981,25299,774,12,0),
16269 (26982,26981,774,13,0),
16270 (48440,26982,774,14,0),
16271 (48441,48440,774,15,0),
16272 /*Revive*/
16273 (50769,0,50769,1,0),
16274 (50768,50769,50769,2,0),
16275 (50767,50768,50769,3,0),
16276 (50766,50767,50769,4,0),
16277 (50765,50766,50769,5,0),
16278 (50764,50765,50769,6,0),
16279 (50763,50764,50769,7,0),
16280 /*Tranquility*/
16281 (740,0,740,1,0),
16282 (8918,740,740,2,0),
16283 (9862,8918,740,3,0),
16284 (9863,9862,740,4,0),
16285 (26983,9863,740,5,0),
16286 (48446,26983,740,6,0),
16287 (48447,48446,740,7,0),
16288 /*Wild Growth*/
16289 (48438,0,48438,1,0),
16290 (53248,48438,48438,2,0),
16291 (53249,53248,48438,3,0),
16292 (53251,53249,48438,4,0),
16293 /*------------------
16294 --(574)Balance
16295 ------------------*/
16296 /*EntanglingRoots*/
16297 (339,0,339,1,0),
16298 (1062,339,339,2,0),
16299 (5195,1062,339,3,0),
16300 (5196,5195,339,4,0),
16301 (9852,5196,339,5,0),
16302 (9853,9852,339,6,0),
16303 (26989,9853,339,7,0),
16304 (53308,26989,339,8,0),
16305 /*Nature'sGrasp*/
16306 (16689,0,16689,1,339),
16307 (16810,16689,16689,2,1062),
16308 (16811,16810,16689,3,5195),
16309 (16812,16811,16689,4,5196),
16310 (16813,16812,16689,5,9852),
16311 (17329,16813,16689,6,9853),
16312 (27009,17329,16689,7,26989),
16313 (53312,27009,16689,8,53308),
16314 /*Hibernate*/
16315 (2637,0,2637,1,0),
16316 (18657,2637,2637,2,0),
16317 (18658,18657,2637,3,0),
16318 /*Hurricane*/
16319 (16914,0,16914,1,0),
16320 (17401,16914,16914,2,0),
16321 (17402,17401,16914,3,0),
16322 (27012,17402,16914,4,0),
16323 (48467,27012,16914,5,0),
16324 /*Insect Swarm*/
16325 (5570,0,5570,1,0),
16326 (24974,5570,5570,2,0),
16327 (24975,24974,5570,3,0),
16328 (24976,24975,5570,4,0),
16329 (24977,24976,5570,5,0),
16330 (27013,24977,5570,6,0),
16331 (48468,27013,5570,7,0),
16332 /*Moonfire*/
16333 (8921,0,8921,1,0),
16334 (8924,8921,8921,2,0),
16335 (8925,8924,8921,3,0),
16336 (8926,8925,8921,4,0),
16337 (8927,8926,8921,5,0),
16338 (8928,8927,8921,6,0),
16339 (8929,8928,8921,7,0),
16340 (9833,8929,8921,8,0),
16341 (9834,9833,8921,9,0),
16342 (9835,9834,8921,10,0),
16343 (26987,9835,8921,11,0),
16344 (26988,26987,8921,12,0),
16345 (48462,26988,8921,13,0),
16346 (48463,48462,8921,14,0),
16347 /*Soothe Animal*/
16348 (2908,0,2908,1,0),
16349 (8955,2908,2908,2,0),
16350 (9901,8955,2908,3,0),
16351 (26995,9901,2908,4,0),
16352 /*Starfall*/
16353 (48505,0,48505,1,0),
16354 (53199,48505,48505,2,0),
16355 (53200,53199,48505,3,0),
16356 (53201,53200,48505,4,0),
16357 /*Starfall AOE*/
16358 (50294,0,50294,1,0),
16359 (53188,50294,50294,2,0),
16360 (53189,53188,50294,3,0),
16361 (53190,53189,50294,4,0),
16362 /*Starfall Direct*/
16363 (50288,0,50288,1,0),
16364 (53191,50288,50288,2,0),
16365 (53194,53191,50288,3,0),
16366 (53195,53194,50288,4,0),
16367 /*Starfire*/
16368 (2912,0,2912,1,0),
16369 (8949,2912,2912,2,0),
16370 (8950,8949,2912,3,0),
16371 (8951,8950,2912,4,0),
16372 (9875,8951,2912,5,0),
16373 (9876,9875,2912,6,0),
16374 (25298,9876,2912,7,0),
16375 (26986,25298,2912,8,0),
16376 (48464,26986,2912,9,0),
16377 (48465,48464,2912,10,0),
16378 /*Thorns*/
16379 (467,0,467,1,0),
16380 (782,467,467,2,0),
16381 (1075,782,467,3,0),
16382 (8914,1075,467,4,0),
16383 (9756,8914,467,5,0),
16384 (9910,9756,467,6,0),
16385 (26992,9910,467,7,0),
16386 (53307,26992,467,8,0),
16387 /*Typhoon*/
16388 (50516,0,50516,1,0),
16389 (53223,50516,50516,2,0),
16390 (53225,53223,50516,3,0),
16391 (53226,53225,50516,4,0),
16392 (61384,53226,50516,5,0),
16393 /*Typhoon Triggered*/
16394 (61391,0,61391,1,0),
16395 (61390,61391,61391,2,0),
16396 (61388,61390,61391,3,0),
16397 (61387,61388,61391,4,0),
16398 (53227,61387,61391,5,0),
16399 /*Wrath*/
16400 (5176,0,5176,1,0),
16401 (5177,5176,5176,2,0),
16402 (5178,5177,5176,3,0),
16403 (5179,5178,5176,4,0),
16404 (5180,5179,5176,5,0),
16405 (6780,5180,5176,6,0),
16406 (8905,6780,5176,7,0),
16407 (9912,8905,5176,8,0),
16408 (26984,9912,5176,9,0),
16409 (26985,26984,5176,10,0),
16410 (48459,26985,5176,11,0),
16411 (48461,48459,5176,12,0),
16412 /*------------------
16413 --(593)Destruction
16414 ------------------*/
16415 /*Chaos Bolt*/
16416 (50796,0,50796,1,0),
16417 (59170,50796,50796,2,0),
16418 (59171,59170,50796,3,0),
16419 (59172,59171,50796,4,0),
16420 /*Hellfire*/
16421 (1949,0,1949,1,0),
16422 (11683,1949,1949,2,0),
16423 (11684,11683,1949,3,0),
16424 (27213,11684,1949,4,0),
16425 (47823,27213,1949,5,0),
16426 /* Hellfire Effect on Enemy */
16427 (5857,0,5857,1,0),
16428 (11681,5857,5857,2,0),
16429 (11682,11681,5857,3,0),
16430 (27214,11682,5857,4,0),
16431 (47822,27214,5857,5,0),
16432 /*Immolate*/
16433 (348,0,348,1,0),
16434 (707,348,348,2,0),
16435 (1094,707,348,3,0),
16436 (2941,1094,348,4,0),
16437 (11665,2941,348,5,0),
16438 (11667,11665,348,6,0),
16439 (11668,11667,348,7,0),
16440 (25309,11668,348,8,0),
16441 (27215,25309,348,9,0),
16442 (47810,27215,348,10,0),
16443 (47811,47810,348,11,0),
16444 /*Incinerate*/
16445 (29722,0,29722,1,0),
16446 (32231,29722,29722,2,0),
16447 (47837,32231,29722,3,0),
16448 (47838,47837,29722,4,0),
16449 /*Molten Skin*/
16450 (63349,0,63349,1,0),
16451 (63350,63349,63349,2,0),
16452 (63351,63350,63349,3,0),
16453 /*Rain of Fire*/
16454 (5740,0,5740,1,0),
16455 (6219,5740,5740,2,0),
16456 (11677,6219,5740,3,0),
16457 (11678,11677,5740,4,0),
16458 (27212,11678,5740,5,0),
16459 (47819,27212,5740,6,0),
16460 (47820,47819,5740,7,0),
16461 /* Rain of Fire Triggered */
16462 (42223,0,42223,1,0),
16463 (42224,42223,42223,2,0),
16464 (42225,42224,42223,3,0),
16465 (42226,42225,42223,4,0),
16466 (42218,42226,42223,5,0),
16467 (47817,42218,42223,6,0),
16468 (47818,47817,42223,7,0),
16469 /*Searing Pain*/
16470 (5676,0,5676,1,0),
16471 (17919,5676,5676,2,0),
16472 (17920,17919,5676,3,0),
16473 (17921,17920,5676,4,0),
16474 (17922,17921,5676,5,0),
16475 (17923,17922,5676,6,0),
16476 (27210,17923,5676,7,0),
16477 (30459,27210,5676,8,0),
16478 (47814,30459,5676,9,0),
16479 (47815,47814,5676,10,0),
16480 /*Shadow Bolt*/
16481 (686,0,686,1,0),
16482 (695,686,686,2,0),
16483 (705,695,686,3,0),
16484 (1088,705,686,4,0),
16485 (1106,1088,686,5,0),
16486 (7641,1106,686,6,0),
16487 (11659,7641,686,7,0),
16488 (11660,11659,686,8,0),
16489 (11661,11660,686,9,0),
16490 (25307,11661,686,10,0),
16491 (27209,25307,686,11,0),
16492 (47808,27209,686,12,0),
16493 (47809,47808,686,13,0),
16494 /*Shadowburn*/
16495 (17877,0,17877,1,0),
16496 (18867,17877,17877,2,0),
16497 (18868,18867,17877,3,0),
16498 (18869,18868,17877,4,0),
16499 (18870,18869,17877,5,0),
16500 (18871,18870,17877,6,0),
16501 (27263,18871,17877,7,0),
16502 (30546,27263,17877,8,0),
16503 (47826,30546,17877,9,0),
16504 (47827,47826,17877,10,0),
16505 /*Shadowflame*/
16506 (47897,0,47897,1,0),
16507 (61290,47897,47897,2,0),
16508 /*Shadowfury*/
16509 (30283,0,30283,1,0),
16510 (30413,30283,30283,2,0),
16511 (30414,30413,30283,3,0),
16512 (47846,30414,30283,4,0),
16513 (47847,47846,30283,5,0),
16514 /*SoulFire*/
16515 (6353,0,6353,1,0),
16516 (17924,6353,6353,2,0),
16517 (27211,17924,6353,3,0),
16518 (30545,27211,6353,4,0),
16519 (47824,30545,6353,5,0),
16520 (47825,47824,6353,6,0),
16521 /*------------------
16522 --(594) Holy (Paladin)
16523 ------------------*/
16524 /*Blessing of Wisdom*/
16525 (19742,0,19742,1,0),
16526 (19850,19742,19742,2,0),
16527 (19852,19850,19742,3,0),
16528 (19853,19852,19742,4,0),
16529 (19854,19853,19742,5,0),
16530 (25290,19854,19742,6,0),
16531 (27142,25290,19742,7,0),
16532 (48935,27142,19742,8,0),
16533 (48936,48935,19742,9,0),
16534 /*Consecration*/
16535 (26573,0,26573,1,0),
16536 (20116,26573,26573,2,0),
16537 (20922,20116,26573,3,0),
16538 (20923,20922,26573,4,0),
16539 (20924,20923,26573,5,0),
16540 (27173,20924,26573,6,0),
16541 (48818,27173,26573,7,0),
16542 (48819,48818,26573,8,0),
16543 /*Exorcism*/
16544 (879,0,879,1,0),
16545 (5614,879,879,2,0),
16546 (5615,5614,879,3,0),
16547 (10312,5615,879,4,0),
16548 (10313,10312,879,5,0),
16549 (10314,10313,879,6,0),
16550 (27138,10314,879,7,0),
16551 (48800,27138,879,8,0),
16552 (48801,48800,879,9,0),
16553 /*Flash of Light*/
16554 (19750,0,19750,1,0),
16555 (19939,19750,19750,2,0),
16556 (19940,19939,19750,3,0),
16557 (19941,19940,19750,4,0),
16558 (19942,19941,19750,5,0),
16559 (19943,19942,19750,6,0),
16560 (27137,19943,19750,7,0),
16561 (48784,27137,19750,8,0),
16562 (48785,48784,19750,9,0),
16563 /*Greater Blessing of Wisdom*/
16564 (25894,0,25894,1,19854),
16565 (25918,25894,25894,2,25290),
16566 (27143,25918,25894,3,27142),
16567 (48937,27143,25894,4,48935),
16568 (48938,48937,25894,5,48936),
16569 /*Holy Light*/
16570 (635,0,635,1,0),
16571 (639,635,635,2,0),
16572 (647,639,635,3,0),
16573 (1026,647,635,4,0),
16574 (1042,1026,635,5,0),
16575 (3472,1042,635,6,0),
16576 (10328,3472,635,7,0),
16577 (10329,10328,635,8,0),
16578 (25292,10329,635,9,0),
16579 (27135,25292,635,10,0),
16580 (27136,27135,635,11,0),
16581 (48781,27136,635,12,0),
16582 (48782,48781,635,13,0),
16583 /*Holy Shock*/
16584 (20473,0,20473,1,0),
16585 (20929,20473,20473,2,0),
16586 (20930,20929,20473,3,0),
16587 (27174,20930,20473,4,0),
16588 (33072,27174,20473,5,0),
16589 (48824,33072,20473,6,0),
16590 (48825,48824,20473,7,0),
16591 /* Holy Shock Triggered Hurt */
16592 (25912,0,25912,1,0),
16593 (25911,25912,25912,2,0),
16594 (25902,25911,25912,3,0),
16595 (27176,25902,25912,4,0),
16596 (33073,27176,25912,5,0),
16597 (48822,33073,25912,6,0),
16598 (48823,48822,25912,7,0),
16599 /* Holy Shock Triggered Heal */
16600 (25914,0,25914,1,0),
16601 (25913,25914,25914,2,0),
16602 (25903,25913,25914,3,0),
16603 (27175,25903,25914,4,0),
16604 (33074,27175,25914,5,0),
16605 (48820,33074,25914,6,0),
16606 (48821,48820,25914,7,0),
16607 /*Holy Wrath*/
16608 (2812,0,2812,1,0),
16609 (10318,2812,2812,2,0),
16610 (27139,10318,2812,3,0),
16611 (48816,27139,2812,4,0),
16612 (48817,48816,2812,5,0),
16613 /*Lay on Hands*/
16614 (633,0,633,1,0),
16615 (2800,633,633,2,0),
16616 (10310,2800,633,3,0),
16617 (27154,10310,633,4,0),
16618 (48788,27154,633,5,0),
16619 /*Redemption*/
16620 (7328,0,7328,1,0),
16621 (10322,7328,7328,2,0),
16622 (10324,10322,7328,3,0),
16623 (20772,10324,7328,4,0),
16624 (20773,20772,7328,5,0),
16625 (48949,20773,7328,6,0),
16626 (48950,48949,7328,7,0),
16627 /*------------------
16628 --(613)Discipline
16629 ------------------*/
16630 /*DispelMagic*/
16631 (527,0,527,1,0),
16632 (988,527,527,2,0),
16633 /*DivineSpirit*/
16634 (14752,0,14752,1,0),
16635 (14818,14752,14752,2,0),
16636 (14819,14818,14752,3,0),
16637 (27841,14819,14752,4,0),
16638 (25312,27841,14752,5,0),
16639 (48073,25312,14752,6,0),
16640 /*Improved Flash Heal*/
16641 (63504,0,63504,1,0),
16642 (63505,63504,63504,2,0),
16643 (63506,63505,63504,3,0),
16644 /*InnerFire*/
16645 (588,0,588,1,0),
16646 (7128,588,588,2,0),
16647 (602,7128,588,3,0),
16648 (1006,602,588,4,0),
16649 (10951,1006,588,5,0),
16650 (10952,10951,588,6,0),
16651 (25431,10952,588,7,0),
16652 (48040,25431,588,8,0),
16653 (48168,48040,588,9,0),
16654 /*Penance*/
16655 (47540,0,47540,1,0),
16656 (53005,47540,47540,2,0),
16657 (53006,53005,47540,3,0),
16658 (53007,53006,47540,4,0),
16659 /*PowerWord:Fortitude*/
16660 (1243,0,1243,1,0),
16661 (1244,1243,1243,2,0),
16662 (1245,1244,1243,3,0),
16663 (2791,1245,1243,4,0),
16664 (10937,2791,1243,5,0),
16665 (10938,10937,1243,6,0),
16666 (25389,10938,1243,7,0),
16667 (48161,25389,1243,8,0),
16668 /*PowerWord:Shield*/
16669 (17,0,17,1,0),
16670 (592,17,17,2,0),
16671 (600,592,17,3,0),
16672 (3747,600,17,4,0),
16673 (6065,3747,17,5,0),
16674 (6066,6065,17,6,0),
16675 (10898,6066,17,7,0),
16676 (10899,10898,17,8,0),
16677 (10900,10899,17,9,0),
16678 (10901,10900,17,10,0),
16679 (25217,10901,17,11,0),
16680 (25218,25217,17,12,0),
16681 (48065,25218,17,13,0),
16682 (48066,48065,17,14,0),
16683 /*PrayerofFortitude*/
16684 (21562,0,21562,1,0),
16685 (21564,21562,21562,2,0),
16686 (25392,21564,21562,3,0),
16687 (48162,25392,21562,4,0),
16688 /*Prayer of Spirit*/
16689 (27681,0,27681,1,14752),
16690 (32999,27681,27681,2,0),
16691 (48074,32999,27681,3,0),
16692 /*Rapture*/
16693 (47535,0,47535,1,0),
16694 (47536,47535,47535,2,0),
16695 (47537,47536,47535,3,0),
16696 /*ShackleUndead*/
16697 (9484,0,9484,1,0),
16698 (9485,9484,9484,2,0),
16699 (10955,9485,9484,3,0),
16700 /*------------------
16701 --(654)Pet-Hyena
16702 ------------------*/
16703 /*TendonRip*/
16704 (50271,0,50271,1,0),
16705 (53571,50271,50271,2,0),
16706 (53572,53571,50271,3,0),
16707 (53573,53572,50271,4,0),
16708 (53574,53573,50271,5,0),
16709 (53575,53574,50271,6,0),
16710 /*------------------
16711 --(655)Pet-BirdofPrey
16712 ------------------*/
16713 /*Snatch*/
16714 (50541,0,50541,1,0),
16715 (53537,50541,50541,2,0),
16716 (53538,53537,50541,3,0),
16717 (53540,53538,50541,4,0),
16718 (53542,53540,50541,5,0),
16719 (53543,53542,50541,6,0),
16720 /*------------------
16721 --(656)Pet-WindSerpent
16722 ------------------*/
16723 /*LightningBreath*/
16724 (24844,0,24844,1,0),
16725 (25008,24844,24844,2,0),
16726 (25009,25008,24844,3,0),
16727 (25010,25009,24844,4,0),
16728 (25011,25010,24844,5,0),
16729 (25012,25011,24844,6,0),
16730 /*------------------
16731 -- (755) Jewelcrafting
16732 ------------------*/
16733 /*Jewelcrafting*/
16734 (25229,0,25229,1,0),
16735 (25230,25229,25229,2,0),
16736 (28894,25230,25229,3,0),
16737 (28895,28894,25229,4,0),
16738 (28897,28895,25229,5,0),
16739 (51311,28897,25229,6,0),
16740 /*------------------
16741 --(761)Pet-Felguard
16742 ------------------*/
16743 /*Anguish*/
16744 (33698,0,33698,1,0),
16745 (33699,33698,33698,2,0),
16746 (33700,33699,33698,3,0),
16747 (47993,33700,33698,4,0),
16748 /*Cleave*/
16749 (30213,0,30213,1,0),
16750 (30219,30213,30213,2,0),
16751 (30223,30219,30213,3,0),
16752 (47994,30223,30213,4,0),
16753 /*Intercept*/
16754 (30151,0,30151,1,0),
16755 (30194,30151,30151,2,0),
16756 (30198,30194,30151,3,0),
16757 (47996,30198,30151,4,0),
16758 /*------------------
16759 -- (762) Riding
16760 ------------------*/
16761 /*Riding*/
16762 (33388,0,33388,1,0),
16763 (33391,33388,33388,2,0),
16764 (34090,33391,33388,3,0),
16765 (34091,34090,33388,4,0),
16766 /*------------------
16767 --(763)Pet-Dragonhawk
16768 ------------------*/
16769 /*FireBreath*/
16770 (34889,0,34889,1,0),
16771 (35323,34889,34889,2,0),
16772 (55482,35323,34889,3,0),
16773 (55483,55482,34889,4,0),
16774 (55484,55483,34889,5,0),
16775 (55485,55484,34889,6,0),
16776 /*------------------
16777 --(764)Pet-NetherRay
16778 --(765)Pet-Sporebat
16779 ------------------*/
16780 /*SporeCloud*/
16781 (50274,0,50274,1,0),
16782 (53593,50274,50274,2,0),
16783 (53594,53593,50274,3,0),
16784 (53596,53594,50274,4,0),
16785 (53597,53596,50274,5,0),
16786 (53598,53597,50274,6,0),
16787 /*------------------
16788 --(768)Pet-Serpent
16789 ------------------*/
16790 /*PoisonSpit*/
16791 (35387,0,35387,1,0),
16792 (35389,35387,35387,2,0),
16793 (35392,35389,35387,3,0),
16794 (55555,35392,35387,4,0),
16795 (55556,55555,35387,5,0),
16796 (55557,55556,35387,6,0),
16797 /*------------------
16798 --(770)Blood
16799 ------------------*/
16800 /*Blood Boil*/
16801 (48721,0,48721,1,0),
16802 (49939,48721,48721,2,0),
16803 (49940,49939,48721,3,0),
16804 (49941,49940,48721,4,0),
16805 /*BloodStrike*/
16806 (45902,0,45902,1,0),
16807 (49926,45902,45902,2,0),
16808 (49927,49926,45902,3,0),
16809 (49928,49927,45902,4,0),
16810 (49929,49928,45902,5,0),
16811 (49930,49929,45902,6,0),
16812 /*Death Coil*/
16813 (62900,0,62900,1,0),
16814 (62901,62900,62900,2,0),
16815 (62902,62901,62900,3,0),
16816 (62903,62902,62900,4,0),
16817 (62904,62903,62900,5,0),
16818 /*Heart Strike*/
16819 (55050,0,55050,1,0),
16820 (55258,55050,55050,2,0),
16821 (55259,55258,55050,3,0),
16822 (55260,55259,55050,4,0),
16823 (55261,55260,55050,5,0),
16824 (55262,55261,55050,6,0),
16825 /*Improved Blood Presence*/
16826 (50365,0,50365,1,0),
16827 (50371,50365,50365,2,0),
16828 /*Improved Death Strike*/
16829 (62905,0,62905,1,0),
16830 (62908,62905,62905,2,0),
16831 /*Improved Rune Tap*/
16832 (48985,0,48985,1,0),
16833 (49488,48985,48985,2,0),
16834 (49489,49488,48985,3,0),
16835 /*Pestilence*/
16836 (50842,0,50842,1,0),
16837 (51426,50842,50842,2,0),
16838 (51427,51426,50842,3,0),
16839 (51428,51427,50842,4,0),
16840 (51429,51428,50842,5,0),
16841 /*Strangulate*/
16842 (47476,0,47476,1,0),
16843 (49913,47476,47476,2,0),
16844 (49914,49913,47476,3,0),
16845 (49915,49914,47476,4,0),
16846 (49916,49915,47476,5,0),
16847 /*Vendetta*/
16848 (49015,0,49015,1,0),
16849 (50154,49015,49015,2,0),
16850 (55136,50154,49015,3,0),
16851 /*------------------
16852 --(771)Frost
16853 ------------------*/
16854 /*FrostStrike*/
16855 (49143,0,49143,1,0),
16856 (51416,49143,49143,2,0),
16857 (51417,51416,49143,3,0),
16858 (51418,51417,49143,4,0),
16859 (51419,51418,49143,5,0),
16860 (55268,51419,49143,6,0),
16861 /*HornofWinter*/
16862 (57330,0,57330,1,0),
16863 (57623,57330,57330,2,0),
16864 /*Howling Blast*/
16865 (49184,0,49184,1,0),
16866 (51409,49184,49184,2,0),
16867 (51410,51409,49184,3,0),
16868 (51411,51410,49184,4,0),
16869 /*IcyTalons*/
16870 (50880,0,50880,1,0),
16871 (50884,50880,50880,2,0),
16872 (50885,50884,50880,3,0),
16873 (50886,50885,50880,4,0),
16874 (50887,50886,50880,5,0),
16875 /*IcyTouch*/
16876 (45477,0,45477,1,0),
16877 (49896,45477,45477,2,0),
16878 (49903,49896,45477,3,0),
16879 (49904,49903,45477,4,0),
16880 (49909,49904,45477,5,0),
16881 /*Improved Frost Presence*/
16882 (50384,0,50384,1,0),
16883 (50385,50384,50384,2,0),
16884 /*Improved Icy Touch*/
16885 (49175,0,49175,1,0),
16886 (50031,49175,49175,2,0),
16887 (51456,50031,49175,3,0),
16888 /*Obliterate*/
16889 (49020,0,49020,1,0),
16890 (51423,49020,49020,2,0),
16891 (51424,51423,49020,3,0),
16892 (51425,51424,49020,4,0),
16893 /*------------------
16894 --(772)Unholy
16895 ------------------*/
16896 /*CorpseExplosion*/
16897 (49158,0,49158,1,0),
16898 (51325,49158,49158,2,0),
16899 (51326,51325,49158,3,0),
16900 (51327,51326,49158,4,0),
16901 (51328,51327,49158,5,0),
16902 /*DeathandDecay*/
16903 (43265,0,43265,1,0),
16904 (49936,43265,43265,2,0),
16905 (49937,49936,43265,3,0),
16906 (49938,49937,43265,4,0),
16907 /*Death Coil*/
16908 (47541,0,47541,1,0),
16909 (49892,47541,47541,2,0),
16910 (49893,49892,47541,3,0),
16911 (49894,49893,47541,4,0),
16912 (49895,49894,47541,5,0),
16913 /*DeathStrike*/
16914 (49998,0,49998,1,0),
16915 (49999,49998,49998,2,0),
16916 (45463,49999,49998,3,0),
16917 (49923,45463,49998,4,0),
16918 (49924,49923,49998,5,0),
16919 /*Improved Unholy Presence*/
16920 (50391,0,50391,1,0),
16921 (50392,50391,50391,2,0),
16922 /*Magic Suppression*/
16923 (49224,0,49224,1,0),
16924 (49610,49224,49224,2,0),
16925 (49611,49610,49224,3,0),
16926 /*Outbreak*/
16927 (49013,0,49013,1,0),
16928 (55236,49013,49013,2,0),
16929 (55237,55236,49013,3,0),
16930 /*PlagueStrike*/
16931 (45462,0,45462,1,0),
16932 (49917,45462,45462,2,0),
16933 (49918,49917,45462,3,0),
16934 (49919,49918,45462,4,0),
16935 (49920,49919,45462,5,0),
16936 (49921,49920,45462,6,0),
16937 /*ScourgeStrike*/
16938 (55090,0,55090,1,0),
16939 (55265,55090,55090,2,0),
16940 (55270,55265,55090,3,0),
16941 (55271,55270,55090,4,0),
16942 /*UnholyBlight*/
16943 (49194,0,49194,1,0),
16944 (51376,49194,49194,2,0),
16945 (51378,51376,49194,3,0),
16946 (51379,51378,49194,4,0),
16947 /*------------------
16948 -- (773) Inscription
16949 ------------------*/
16950 /*Inscription*/
16951 (45357,0,45357,1,0),
16952 (45358,45357,45357,2,0),
16953 (45359,45358,45357,3,0),
16954 (45360,45359,45357,4,0),
16955 (45361,45360,45357,5,0),
16956 (45363,45361,45357,6,0),
16957 /*------------------
16958 -- (777) Mounts
16959 ------------------*/
16960 (13819,0,13819,1,0),
16961 (23214,13819,13819,2,33391),
16962 (34769,0,34769,1,0),
16963 (34767,34769,34769,2,33391),
16964 /*------------------
16965 --(780)Pet-Exotic Chimaera
16966 ------------------*/
16967 /*Froststorm Breath*/
16968 (54644,0,54644,1,0),
16969 (55488,54644,54644,2,0),
16970 (55489,55488,54644,3,0),
16971 (55490,55489,54644,4,0),
16972 (55491,55490,54644,5,0),
16973 (55492,55491,54644,6,0),
16974 /*------------------
16975 --(781)Pet-Exotic Devlisaur
16976 ------------------*/
16977 /*Monstrous Bite*/
16978 (54680,0,54680,1,0),
16979 (55495,54680,54680,2,0),
16980 (55496,55495,54680,3,0),
16981 (55497,55496,54680,4,0),
16982 (55498,55497,54680,5,0),
16983 (55499,55498,54680,6,0),
16984 /*------------------
16985 --(784)Pet-Exotic Worm
16986 ------------------*/
16987 /*AcidSpit*/
16988 (55749,0,55749,1,0),
16989 (55750,55749,55749,2,0),
16990 (55751,55750,55749,3,0),
16991 (55752,55751,55749,4,0),
16992 (55753,55752,55749,5,0),
16993 (55754,55753,55749,6,0),
16994 /*------------------
16995 --(785)Pet-Wasp
16996 ------------------*/
16997 /*Sting*/
16998 (56626,0,56626,1,0),
16999 (56627,56626,56626,2,0),
17000 (56628,56627,56626,3,0),
17001 (56629,56628,56626,4,0),
17002 (56630,56629,56626,5,0),
17003 (56631,56630,56626,6,0),
17004 /*------------------
17005 --(787)Pet-Exotic Core Hound
17006 ------------------*/
17007 /*Lava Breath*/
17008 (58604,0,58604,1,0),
17009 (58607,58604,58604,2,0),
17010 (58608,58607,58604,3,0),
17011 (58609,58608,58604,4,0),
17012 (58610,58609,58604,5,0),
17013 (58611,58610,58604,6,0),
17014 /*------------------
17015 --(788)Pet-Exotic Spirit Beast
17016 ------------------*/
17017 /*Spirit Strike*/
17018 (61193,0,61193,1,0),
17019 (61194,61193,61193,2,0),
17020 (61195,61194,61193,3,0),
17021 (61196,61195,61193,4,0),
17022 (61197,61196,61193,5,0),
17023 (61198,61197,61193,6,0),
17024 /*------------------
17025 --(-) Not listed in skill abilities
17026 ------------------*/
17027 /*Hurricane*/
17028 (42231,    0,42231,1,0),
17029 (42232,42231,42231,2,0),
17030 (42233,42232,42231,3,0),
17031 (42230,42233,42231,4,0),
17032 (48466,42230,42231,5,0),
17033 /*Shadowflame Triggered DoT*/
17034 (47960,0,47960,1,0),
17035 (61291,47960,47960,2,0),
17036 /*Tranquility*/
17037 (44203,    0,44203,1,0),
17038 (44205,44203,44203,2,0),
17039 (44206,44205,44203,3,0),
17040 (44207,44206,44203,4,0),
17041 (44208,44207,44203,5,0),
17042 (48444,44208,44203,6,0),
17043 (48445,48444,44203,7,0);
17044 /*!40000 ALTER TABLE `spell_chain` ENABLE KEYS */;
17045 UNLOCK TABLES;
17048 -- Table structure for table `spell_elixir`
17051 DROP TABLE IF EXISTS `spell_elixir`;
17052 CREATE TABLE `spell_elixir` (
17053   `entry` int(11) unsigned NOT NULL default '0' COMMENT 'SpellId of potion',
17054   `mask` tinyint(1) unsigned NOT NULL default '0' COMMENT 'Mask 0x1 battle 0x2 guardian 0x3 flask 0x7 unstable flasks 0xB shattrath flasks',
17055   PRIMARY KEY  (`entry`)
17056 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
17059 -- Dumping data for table `spell_elixir`
17062 LOCK TABLES `spell_elixir` WRITE;
17063 /*!40000 ALTER TABLE `spell_elixir` DISABLE KEYS */;
17064 INSERT INTO `spell_elixir` VALUES
17065 (  673,0x2),
17066 ( 2367,0x1),
17067 ( 2374,0x1),
17068 ( 2378,0x2),
17069 ( 2380,0x2),
17070 ( 3160,0x1),
17071 ( 3164,0x1),
17072 ( 3166,0x2),
17073 ( 3219,0x2),
17074 ( 3220,0x2),
17075 ( 3222,0x2),
17076 ( 3223,0x2),
17077 ( 3593,0x2),
17078 ( 7844,0x1),
17079 ( 8212,0x1),
17080 (10667,0x1),
17081 (10668,0x2),
17082 (10669,0x1),
17083 (10692,0x2),
17084 (10693,0x2),
17085 (11319,0x2),
17086 (11328,0x1),
17087 (11334,0x1),
17088 (11348,0x2),
17089 (11349,0x2),
17090 (11364,0x2),
17091 (11371,0x2),
17092 (11390,0x1),
17093 (11396,0x2),
17094 (11405,0x1),
17095 (11406,0x1),
17096 (11474,0x1),
17097 (15231,0x2),
17098 (15233,0x2),
17099 (16321,0x2),
17100 (16322,0x1),
17101 (16323,0x1),
17102 (16325,0x2),
17103 (16326,0x2),
17104 (16327,0x2),
17105 (16329,0x1),
17106 (17038,0x1),
17107 (17535,0x2),
17108 (17537,0x1),
17109 (17538,0x1),
17110 (17539,0x1),
17111 (17624,0x3),
17112 (17626,0x3),
17113 (17627,0x3),
17114 (17629,0x3),
17115 (17628,0x3),
17116 (18191,0x10),
17117 (18192,0x10),
17118 (18193,0x10),
17119 (18194,0x10),
17120 (18222,0x10),
17121 (21920,0x1),
17122 (22730,0x10),
17123 (24361,0x2),
17124 (24363,0x2),
17125 (24382,0x2),
17126 (24383,0x2),
17127 (24417,0x2),
17128 (25661,0x10),
17129 (26276,0x1),
17130 (27652,0x2),
17131 (27653,0x2),
17132 (28486,0x1),
17133 (28488,0x1),
17134 (28490,0x1),
17135 (28491,0x1),
17136 (28493,0x1),
17137 (28497,0x1),
17138 (28501,0x1),
17139 (28502,0x2),
17140 (28503,0x1),
17141 (28509,0x2),
17142 (28514,0x2),
17143 (28518,0x3),
17144 (28519,0x3),
17145 (28520,0x3),
17146 (28521,0x3),
17147 (28540,0x3),
17148 (29348,0x2),
17149 (33720,0x1),
17150 (33721,0x1),
17151 (33726,0x1),
17152 (38954,0x1),
17153 (39625,0x2),
17154 (39626,0x2),
17155 (39627,0x2),
17156 (39628,0x2),
17157 (40567,0x7),
17158 (40568,0x7),
17159 (40572,0x7),
17160 (40573,0x7),
17161 (40575,0x7),
17162 (40576,0x7),
17163 (41608,0xB),
17164 (41609,0xB),
17165 (41610,0xB),
17166 (41611,0xB),
17167 (42735,0x3),
17168 (45373,0x1),
17169 (46837,0xB),
17170 (46839,0xB),
17171 (53747,0x2),
17172 (53748,0x1),
17173 (53746,0x1),
17174 (53749,0x1),
17175 (53751,0x2),
17176 (53752,0x3),
17177 (53755,0x3),
17178 (53758,0x3),
17179 (53760,0x3),
17180 (53763,0x2),
17181 (53764,0x2),
17182 (54212,0x3),
17183 (54452,0x1),
17184 (54494,0x1),
17185 (54497,0x2),
17186 (60340,0x1),
17187 (60341,0x1),
17188 (60343,0x2),
17189 (60344,0x1),
17190 (60345,0x1),
17191 (60346,0x1),
17192 (60347,0x2),
17193 (62380,0x3);
17196 /*!40000 ALTER TABLE `spell_elixir` ENABLE KEYS */;
17197 UNLOCK TABLES;
17200 -- Table structure for table `spell_learn_spell`
17203 DROP TABLE IF EXISTS `spell_learn_spell`;
17204 CREATE TABLE `spell_learn_spell` (
17205   `entry` smallint(5) unsigned NOT NULL default '0',
17206   `SpellID` smallint(5) unsigned NOT NULL default '0',
17207   `Active` tinyint(3) unsigned NOT NULL default '1',
17208   PRIMARY KEY  (`entry`,`SpellID`)
17209 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Item System';
17212 -- Dumping data for table `spell_learn_spell`
17215 LOCK TABLES `spell_learn_spell` WRITE;
17216 /*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */;
17217 INSERT INTO `spell_learn_spell` VALUES
17218 (5784,33388,1),
17219 (13819,33388,1),
17220 (17002,24867,0),
17221 (23161,33391,1),
17222 (23214,33391,1),
17223 (24866,24864,0),
17224 (33872,47179,0),
17225 (33873,47180,0),
17226 (33943,34090,1),
17227 (34767,33391,1),
17228 (34769,33388,1),
17229 (53428,53341,1),
17230 (53428,53343,1),
17231 (58984,21009,1);
17232 /*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */;
17233 UNLOCK TABLES;
17236 -- Table structure for table `spell_loot_template`
17239 DROP TABLE IF EXISTS `spell_loot_template`;
17240 CREATE TABLE `spell_loot_template` (
17241   `entry` mediumint(8) unsigned NOT NULL default '0',
17242   `item` mediumint(8) unsigned NOT NULL default '0',
17243   `ChanceOrQuestChance` float NOT NULL default '100',
17244   `groupid` tinyint(3) unsigned NOT NULL default '0',
17245   `mincountOrRef` mediumint(9) NOT NULL default '1',
17246   `maxcount` tinyint(3) unsigned NOT NULL default '1',
17247   `lootcondition` tinyint(3) unsigned NOT NULL default '0',
17248   `condition_value1` mediumint(8) unsigned NOT NULL default '0',
17249   `condition_value2` mediumint(8) unsigned NOT NULL default '0',
17250   PRIMARY KEY  (`entry`,`item`)
17251 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
17254 -- Dumping data for table `spell_loot_template`
17257 LOCK TABLES `spell_loot_template` WRITE;
17258 /*!40000 ALTER TABLE `spell_loot_template` DISABLE KEYS */;
17259 /*!40000 ALTER TABLE `spell_loot_template` ENABLE KEYS */;
17260 UNLOCK TABLES;
17263 -- Table structure for table `spell_pet_auras`
17266 DROP TABLE IF EXISTS `spell_pet_auras`;
17267 CREATE TABLE `spell_pet_auras` (
17268   `spell` mediumint(8) unsigned NOT NULL COMMENT 'dummy spell id',
17269   `effectId` tinyint(3) unsigned NOT NULL default '0',
17270   `pet` mediumint(8) unsigned NOT NULL default '0' COMMENT 'pet id; 0 = all',
17271   `aura` mediumint(8) unsigned NOT NULL COMMENT 'pet aura id',
17272   PRIMARY KEY  (`spell`,`effectId`,`pet`)
17273 ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
17276 -- Dumping data for table `spell_pet_auras`
17279 LOCK TABLES `spell_pet_auras` WRITE;
17280 /*!40000 ALTER TABLE `spell_pet_auras` DISABLE KEYS */;
17281 INSERT INTO `spell_pet_auras` VALUES
17282 (19028, 0, 0, 25228),
17283 (19578, 0, 0, 19579),
17284 (20895, 0, 0, 24529),
17285 (28757, 0, 0, 28758),
17286 (35029, 0, 0, 35060),
17287 (35030, 0, 0, 35061),
17288 (35691, 0, 0, 35696),
17289 (35692, 0, 0, 35696),
17290 (35693, 0, 0, 35696),
17291 (56314, 0, 0, 57447),
17292 (56314, 1, 0, 57485),
17293 (56315, 0, 0, 57452),
17294 (56315, 1, 0, 57484),
17295 (56316, 0, 0, 57453),
17296 (56316, 1, 0, 57483),
17297 (56317, 0, 0, 57457),
17298 (56317, 1, 0, 57482),
17299 (56318, 0, 0, 57458),
17300 (56318, 1, 0, 57475),
17301 (23785, 0, 416, 23759),
17302 (23822, 0, 416, 23826),
17303 (23823, 0, 416, 23827),
17304 (23824, 0, 416, 23828),
17305 (23825, 0, 416, 23829),
17306 (23785, 0, 417, 23762),
17307 (23822, 0, 417, 23837),
17308 (23823, 0, 417, 23838),
17309 (23824, 0, 417, 23839),
17310 (23825, 0, 417, 23840),
17311 (23785, 0, 1860, 23760),
17312 (23822, 0, 1860, 23841),
17313 (23823, 0, 1860, 23842),
17314 (23824, 0, 1860, 23843),
17315 (23825, 0, 1860, 23844),
17316 (23785, 0, 1863, 23761),
17317 (23822, 0, 1863, 23833),
17318 (23823, 0, 1863, 23834),
17319 (23824, 0, 1863, 23835),
17320 (23825, 0, 1863, 23836),
17321 (23785, 0, 17252, 35702),
17322 (23822, 0, 17252, 35703),
17323 (23823, 0, 17252, 35704),
17324 (23824, 0, 17252, 35705),
17325 (23825, 0, 17252, 35706);
17327 /*!40000 ALTER TABLE `spell_pet_auras` ENABLE KEYS */;
17328 UNLOCK TABLES;
17331 -- Table structure for table `spell_proc_event`
17334 DROP TABLE IF EXISTS `spell_proc_event`;
17335 CREATE TABLE `spell_proc_event` (
17336   `entry` smallint(5) unsigned NOT NULL default '0',
17337   `SchoolMask` tinyint(4) NOT NULL default '0',
17338   `SpellFamilyName` smallint(5) unsigned NOT NULL default '0',
17339   `SpellFamilyMask0` int(10) unsigned NOT NULL default '0',
17340   `SpellFamilyMask1` int(10) unsigned NOT NULL default '0',
17341   `SpellFamilyMask2` int(10) unsigned NOT NULL default '0',
17342   `procFlags` int(10) unsigned NOT NULL default '0',
17343   `procEx` int(10) unsigned NOT NULL default '0',
17344   `ppmRate` float NOT NULL default '0',
17345   `CustomChance` float NOT NULL default '0',
17346   `Cooldown` int(10) unsigned NOT NULL default '0',
17347   PRIMARY KEY  (`entry`)
17348 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
17351 -- Dumping data for table `spell_proc_event`
17354 LOCK TABLES `spell_proc_event` WRITE;
17355 /*!40000 ALTER TABLE `spell_proc_event` DISABLE KEYS */;
17356 INSERT INTO `spell_proc_event` VALUES
17357 (  324, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17358 (  974, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17359 ( 1463, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17360 ( 3232, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17361 ( 5952, 0x00000000,  8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17362 ( 6346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17363 ( 7383, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17364 ( 7434, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17365 ( 8178, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17366 ( 9452, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17367 ( 9782, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17368 ( 9784, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17369 ( 9799, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17370 (11095, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17371 (11119, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17372 (11120, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17373 (11129, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17374 (11180, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17375 (11185, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17376 (11255, 0x00000000,  3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17377 (12169, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17378 (12281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17379 (12289, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17380 (12298, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17381 (12311, 0x00000000,  4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17382 (12317, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17383 (12319, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17384 (12322, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17385 (12487, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17386 (12488, 0x00000000,  3, 0x00000080, 0x00000000, 0x00000000, 0x00050000, 0x00000000, 0.000000, 0.000000,  0),
17387 (12598, 0x00000000,  3, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17388 (12668, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17389 (12724, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17390 (12725, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17391 (12726, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17392 (12727, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17393 (12797, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17394 (12799, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17395 (12812, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17396 (12813, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17397 (12814, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17398 (12815, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
17399 (12834, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17400 (12846, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17401 (12847, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17402 (12848, 0x00000004,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17403 (12849, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17404 (12867, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17405 (12872, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17406 (12873, 0x00000000,  3, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17407 (12958, 0x00000000,  4, 0x00000800, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17408 (12966, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17409 (12967, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17410 (12968, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17411 (12969, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17412 (12970, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17413 (12971, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17414 (12972, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17415 (12973, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17416 (12974, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17417 (12999, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000,  0),
17418 (13000, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17419 (13001, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 8.000000, 0.000000,  0),
17420 (13002, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,10.000000, 0.000000,  0),
17421 (13045, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17422 (13046, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17423 (13047, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17424 (13048, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17425 (13163, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
17426 (13165, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17427 (13754, 0x00000000,  8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17428 (13867, 0x00000000,  8, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17429 (13983, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
17430 (14070, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
17431 (14071, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000018, 0.000000, 0.000000,  0),
17432 (14156, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17433 (14160, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17434 (14161, 0x00000000,  8, 0x003E0000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17435 (14186, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17436 (14190, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17437 (14193, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17438 (14194, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17439 (14195, 0x00000000,  8, 0x40800508, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17440 (14531, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17441 (14774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17442 (14892, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17443 (15088, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17444 (15128, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17445 (15277, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17446 (15286, 0x00000020,  6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17447 (15337, 0x00000000,  6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17448 (15338, 0x00000000,  6, 0x00002000, 0x00000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17449 (15346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17450 (15362, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17451 (15363, 0x00000000,  6, 0x10001E00, 0x00010004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17452 (15600, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
17453 (16164, 0x00000000, 11, 0x901000C3, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17454 (16176, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17455 (16180, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17456 (16196, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17457 (16198, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17458 (16235, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17459 (16240, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17460 (16256, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17461 (16257, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17462 (16277, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17463 (16278, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17464 (16279, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17465 (16280, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17466 (16281, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17467 (16282, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17468 (16283, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17469 (16284, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17470 (16487, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17471 (16489, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17472 (16492, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17473 (16550, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17474 (16620, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17475 (16624, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17476 (16850, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17477 (16864, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17478 (16880, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17479 (16923, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17480 (16924, 0x00000000,  7, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17481 (16952, 0x00000000,  7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17482 (16954, 0x00000000,  7, 0x00039000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17483 (16958, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17484 (16961, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17485 (17106, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17486 (17107, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17487 (17108, 0x00000000,  7, 0x00080000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17488 (17364, 0x00000008,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17489 (17495, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17490 (17793, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17491 (17796, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17492 (17801, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17493 (17802, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17494 (17803, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17495 (18073, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17496 (18094, 0x00000000,  5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17497 (18095, 0x00000000,  5, 0x0000000A, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17498 (18096, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17499 (18119, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17500 (18120, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17501 (18820, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17502 (19184, 0x00000000,  9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17503 (19387, 0x00000000,  9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17504 (19388, 0x00000000,  9, 0x00000014, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17505 (19572, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17506 (19573, 0x00000000,  9, 0x00800000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17507 (20049, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17508 (20056, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17509 (20057, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17510 (20128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17511 (20131, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17512 (20132, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17513 (20164, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000,  0),
17514 (20165, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,20.000000, 0.000000,  0),
17515 (20166, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,15.000000, 0.000000,  0),
17516 (20182, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17517 (20210, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17518 (20212, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17519 (20213, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17520 (20214, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17521 (20215, 0x00000000, 10, 0xC0000000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17522 (20234, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17523 (20235, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17524 (20375, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
17525 (20500, 0x00000000,  4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17526 (20501, 0x00000000,  4, 0x10000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17527 (20705, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17528 (20911, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17529 (20925, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17530 (21185, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17531 (21882, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17532 (21890, 0x00000000,  4, 0x2A764EEF, 0x0000036C, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17533 (22007, 0x00000000,  3, 0x00200021, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17534 (22618, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17535 (22648, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17536 (23547, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17537 (23548, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17538 (23551, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17539 (23552, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17540 (23572, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17541 (23578, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17542 (23581, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17543 (23602, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17544 (23686, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17545 (23688, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17546 (23689, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 4.000000, 0.000000,  0),
17547 (23695, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17548 (23721, 0x00000000,  9, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17549 (23920, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17550 (24353, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17551 (24389, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17552 (24658, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00014110, 0x00000000, 0.000000, 0.000000,  0),
17553 (24905, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002,15.000000, 0.000000,  0),
17554 (24932, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  6),
17555 (25050, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17556 (25669, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
17557 (25988, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17558 (26016, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17559 (26107, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000064, 0.000000, 0.000000,  0),
17560 (26119, 0x00000000, 10, 0x90100003, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17561 (26128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
17562 (26135, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17563 (26480, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17564 (26605, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17565 (27419, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17566 (27498, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17567 (27521, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17568 (27656, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17569 (27774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17570 (27787, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17571 (27811, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17572 (27815, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17573 (27816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17574 (28592, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17575 (28593, 0x00000010,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17576 (28716, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00048000, 0x00000000, 0.000000, 0.000000,  0),
17577 (28719, 0x00000000,  7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17578 (28744, 0x00000000,  7, 0x00000040, 0x00000000, 0x00000000, 0x00044000, 0x00000000, 0.000000, 0.000000,  0),
17579 (28752, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17580 (28789, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17581 (28802, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17582 (28809, 0x00000000,  6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17583 (28812, 0x00000000,  8, 0x02000006, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17584 (28816, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17585 (28823, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17586 (28847, 0x00000000,  7, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17587 (28849, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17588 (29074, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17589 (29075, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17590 (29076, 0x00000014,  3, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17591 (29150, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17592 (29179, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17593 (29180, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17594 (29385, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
17595 (29441, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  1),
17596 (29444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  1),
17597 (29455, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17598 (29501, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17599 (29593, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17600 (29594, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17601 (29624, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17602 (29625, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17603 (29626, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17604 (29632, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17605 (29633, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17606 (29634, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17607 (29635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17608 (29636, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17609 (29637, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17610 (29801, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17611 (29834, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17612 (29838, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17613 (29977, 0x00000000,  3, 0x00C00017, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17614 (30003, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17615 (30160, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17616 (30293, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17617 (30295, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17618 (30296, 0x00000000,  5, 0x00000181, 0x008200C0, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17619 (30299, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17620 (30301, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17621 (30302, 0x0000007E,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17622 (30675, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17623 (30678, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17624 (30679, 0x00000000, 11, 0x00000003, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17625 (30701, 0x0000001C,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17626 (30705, 0x0000001C,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17627 (30802, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17628 (30803, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17629 (30804, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17630 (30805, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17631 (30808, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17632 (30809, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17633 (30823, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 10.500000, 0.000000,  0),
17634 (30881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17635 (30883, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17636 (30884, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17637 (30885, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17638 (30886, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  5),
17639 (30937, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17640 (31124, 0x00000000,  8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17641 (31126, 0x00000000,  8, 0x2000000E, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17642 (31244, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000,  0),
17643 (31245, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000004, 0.000000, 0.000000,  0),
17644 (31394, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17645 (31569, 0x00000000,  3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17646 (31570, 0x00000000,  3, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17647 (31785, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00008800, 0x00000000, 0.000000, 0.000000,  0),
17648 (31794, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17649 (31833, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17650 (31835, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17651 (31836, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17652 (31871, 0x00000000, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17653 (31872, 0x00000000, 10, 0x00000010, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17654 (31876, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
17655 (31877, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
17656 (31878, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000008, 0x00004110, 0x00000000, 0.000000, 0.000000,  0),
17657 (31904, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17658 (32385, 0x00000000,  5, 0x00000001, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17659 (32409, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17660 (32587, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17661 (32642, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17662 (32734, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17663 (32748, 0x00000000,  8, 0x00000000, 0x00000001, 0x00000000, 0x00000140, 0x00000000, 0.000000, 0.000000,  0),
17664 (32776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17665 (32777, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17666 (32837, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
17667 (32844, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000,  0),
17668 (32885, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17669 (33076, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17670 (33089, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17671 (33127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
17672 (33142, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17673 (33145, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17674 (33146, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17675 (33150, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17676 (33151, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17677 (33154, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17678 (33191, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17679 (33192, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17680 (33193, 0x00000000,  6, 0x00808000, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17681 (33299, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17682 (33510, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 5.000000, 0.000000,  0),
17683 (33648, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17684 (33719, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17685 (33746, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17686 (33757, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17687 (33759, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17688 (33881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17689 (33882, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17690 (33883, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17691 (33953, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
17692 (34074, 0x00000000,  9, 0x0007FA43, 0x00881081, 0x00000201, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17693 (34080, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
17694 (34138, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17695 (34139, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17696 (34258, 0x00000000, 10, 0x00000400, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17697 (34262, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17698 (34320, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17699 (34355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17700 (34497, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17701 (34498, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17702 (34499, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17703 (34500, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17704 (34502, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17705 (34503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17706 (34584, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17707 (34586, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000,  0),
17708 (34598, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17709 (34749, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000008, 0.000000, 0.000000,  0),
17710 (34753, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17711 (34774, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.500000, 0.000000, 20),
17712 (34783, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17713 (34827, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17714 (34859, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17715 (34860, 0x00000000,  6, 0x00001800, 0x00000004, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17716 (34914, 0x00000000,  6, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17717 (34935, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
17718 (34938, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
17719 (34939, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  8),
17720 (34950, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17721 (34954, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17722 (35077, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17723 (35080, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000, 60),
17724 (35083, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17725 (35086, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17726 (35100, 0x00000000,  9, 0x00003001, 0x00000000, 0x00000000, 0x00010140, 0x00000000, 0.000000, 0.000000,  0),
17727 (35102, 0x00000000,  9, 0x00003001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17728 (35121, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17729 (36096, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17730 (36111, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17731 (36541, 0x00000004,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17732 (37165, 0x00000000,  8, 0x00200400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17733 (37168, 0x00000000,  8, 0x003E0000, 0x00000009, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17734 (37170, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.000000, 0.000000,  0),
17735 (37173, 0x00000000,  8, 0x2CBC0598, 0x00000106, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17736 (37189, 0x00000000, 10, 0xC0000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
17737 (37193, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17738 (37195, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17739 (37197, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
17740 (37213, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17741 (37214, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17742 (37227, 0x00000000, 11, 0x000001C0, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 60),
17743 (37237, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17744 (37247, 0x00000008,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000, 45),
17745 (37377, 0x00000020,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17746 (37379, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17747 (37384, 0x00000000,  5, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17748 (37443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17749 (37514, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17750 (37516, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17751 (37519, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000030, 0.000000, 0.000000,  0),
17752 (37523, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17753 (37528, 0x00000000,  4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17754 (37536, 0x00000000,  4, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17755 (37568, 0x00000000,  6, 0x00000800, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17756 (37594, 0x00000000,  6, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17757 (37600, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17758 (37601, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17759 (37603, 0x00000000,  6, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17760 (37655, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17761 (37657, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  3),
17762 (38026, 0x00000001,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17763 (38031, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17764 (38290, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 1.600000, 0.000000,  0),
17765 (38326, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17766 (38327, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17767 (38334, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17768 (38347, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17769 (38350, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17770 (38394, 0x00000000,  5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17771 (38857, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17772 (39027, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17773 (39372, 0x00000030,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17774 (39437, 0x00000004,  5, 0x00001364, 0x000000C0, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17775 (39442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000001, 0.000000, 0.000000,  0),
17776 (39443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17777 (39530, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17778 (39958, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.700000, 0.000000, 40),
17779 (40407, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 6.000000, 0.000000,  0),
17780 (40438, 0x00000000,  6, 0x00008040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17781 (40442, 0x00000000,  7, 0x00000014, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17782 (40444, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
17783 (40458, 0x00000000,  4, 0x02000000, 0x00000601, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17784 (40463, 0x00000000, 11, 0x00000081, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17785 (40470, 0x00000000, 10, 0xC0800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17786 (40475, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 3.000000, 0.000000,  0),
17787 (40478, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17788 (40482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17789 (40485, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17790 (40899, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17791 (41034, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17792 (41260, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17793 (41262, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17794 (41381, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000100, 0.000000, 0.000000,  0),
17795 (41393, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17796 (41434, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 2.000000, 0.000000, 45),
17797 (41469, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 7.000000, 0.000000,  0),
17798 (41635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17799 (41989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.500000, 0.000000,  0),
17800 (42083, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 45),
17801 (42135, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
17802 (42136, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 90),
17803 (42368, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17804 (42370, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17805 (42770, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17806 (43338, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17807 (43443, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
17808 (43726, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17809 (43728, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17810 (43737, 0x00000000,  7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17811 (43739, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17812 (43741, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17813 (43745, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17814 (43748, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17815 (43750, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17816 (43819, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17817 (44394, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17818 (44395, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17819 (44396, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000400, 0.000000, 0.000000,  0),
17820 (44401, 0x00000000,  3, 0x00200000, 0x00000000, 0x00000000, 0x00000000, 0x00000FFF, 0.000000, 0.000000,  0),
17821 (44404, 0x00000000,  3, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17822 (44442, 0x00000000,  3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  1),
17823 (44443, 0x00000000,  3, 0x00800000, 0x00000040, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  1),
17824 (44445, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17825 (44446, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17826 (44448, 0x00000000,  3, 0x00000013, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17827 (44449, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17828 (44469, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17829 (44470, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17830 (44471, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17831 (44472, 0x00000000,  3, 0x20E21277, 0x00019048, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17832 (44546, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17833 (44548, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17834 (44549, 0x00000000,  3, 0x020002A0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17835 (44835, 0x00000000,  7, 0x00000000, 0x00000080, 0x00000000, 0x00000010, 0x00000000, 0.000000, 0.000000,  0),
17836 (45054, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 15),
17837 (45057, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17838 (45234, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17839 (45243, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17840 (45244, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17841 (45354, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17842 (45481, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17843 (45482, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17844 (45483, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17845 (45484, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000, 45),
17846 (46025, 0x00000020,  6, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17847 (46092, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17848 (46098, 0x00000000, 11, 0x00000080, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17849 (46569, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
17850 (46662, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 20),
17851 (46832, 0x00000000,  7, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17852 (46854, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17853 (46855, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17854 (46867, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17855 (46913, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17856 (46914, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17857 (46915, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17858 (46916, 0x00000000,  4, 0x00000000, 0x00000400, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17859 (46951, 0x00000000,  4, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17860 (46952, 0x00000000,  0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17861 (46953, 0x00000000,  0, 0x00000400, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17862 (47195, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17863 (47196, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17864 (47197, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17865 (47201, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17866 (47202, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17867 (47203, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17868 (47204, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17869 (47205, 0x00000000,  5, 0x00000008, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17870 (47245, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17871 (47246, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17872 (47247, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17873 (47258, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17874 (47259, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17875 (47260, 0x00000000,  5, 0x00000000, 0x00800000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17876 (47263, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
17877 (47264, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
17878 (47265, 0x00000020,  5, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 20),
17879 (47509, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17880 (47511, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17881 (47515, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17882 (47516, 0x00000000,  6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17883 (47517, 0x00000000,  6, 0x00001800, 0x00010000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17884 (47569, 0x00000000,  6, 0x00004000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17885 (47580, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17886 (47581, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17887 (47582, 0x00000000,  6, 0x00000000, 0x00000000, 0x00000040, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17888 (48110, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17889 (48111, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000A02A8, 0x00000000, 0.000000, 0.000000,  0),
17890 (48483, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17891 (48484, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17892 (48485, 0x00000000,  7, 0x00008800, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17893 (48496, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17894 (48499, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17895 (48500, 0x00000000,  7, 0x00000060, 0x02000002, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17896 (48506, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17897 (48510, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17898 (48511, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17899 (48516, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
17900 (48521, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
17901 (48525, 0x00000000,  7, 0x00000005, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000, 30),
17902 (48833, 0x00000000,  7, 0x00000000, 0x00000440, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17903 (48835, 0x00000000, 10, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17904 (48837, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17905 (48988, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17906 (49018, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17907 (49137, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17908 (49188, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17909 (49208, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17910 (49222, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17911 (49503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17912 (49504, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17913 (49529, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17914 (49530, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17915 (49622, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 60),
17916 (49657, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17917 (50781, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17918 (51123, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17919 (51127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17920 (51128, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17921 (51129, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17922 (51130, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17923 (51346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17924 (51349, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17925 (51352, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17926 (51359, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 10),
17927 (51466, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17928 (51470, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17929 (51474, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17930 (51478, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17931 (51479, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
17932 (51483, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17933 (51485, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17934 (51486, 0x00000001, 11, 0x20000000, 0x00000000, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
17935 (51528, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000,12.500000, 0.000000,  0),
17936 (51556, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17937 (51557, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17938 (51558, 0x00000000, 11, 0x000000C0, 0x00000000, 0x00000010, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17939 (51562, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17940 (51563, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17941 (51564, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17942 (51565, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17943 (51566, 0x00000000, 11, 0x00000100, 0x00000000, 0x00000010, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17944 (51625, 0x00000000,  8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17945 (51626, 0x00000000,  8, 0x1000A000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17946 (51627, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17947 (51628, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17948 (51629, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000070, 0.000000, 0.000000,  0),
17949 (51634, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17950 (51635, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17951 (51636, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17952 (51664, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17953 (51665, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17954 (51667, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17955 (51668, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17956 (51669, 0x00000000,  8, 0x00020000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17957 (51672, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  1),
17958 (51674, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  1),
17959 (51679, 0x00000000,  8, 0x00000001, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17960 (51692, 0x00000000,  8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17961 (51696, 0x00000000,  8, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17962 (51698, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
17963 (51700, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
17964 (51701, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  1),
17965 (51940, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
17966 (51989, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
17967 (52004, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
17968 (52005, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
17969 (52007, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
17970 (52008, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000,20.000000,  0),
17971 (52020, 0x00000000,  7, 0x00008000, 0x00100000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17972 (52127, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
17973 (52420, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 30),
17974 (52423, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
17975 (52795, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17976 (52797, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17977 (52798, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17978 (52799, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17979 (52800, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17980 (52898, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17981 (53137, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17982 (53138, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17983 (53215, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17984 (53216, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17985 (53217, 0x00000000,  9, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17986 (53221, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17987 (53222, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17988 (53224, 0x00000000,  9, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17989 (53228, 0x00000000,  9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17990 (53232, 0x00000000,  9, 0x00000020, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
17991 (53234, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17992 (53237, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17993 (53238, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17994 (53256, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17995 (53259, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17996 (53260, 0x00000000,  9, 0x00000800, 0x00800001, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17997 (53290, 0x00000000,  9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17998 (53291, 0x00000000,  9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
17999 (53292, 0x00000000,  9, 0x00000800, 0x7FFFFFFF, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18000 (53380, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18001 (53381, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18002 (53382, 0x00000000, 10, 0x00800000, 0x00020000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18003 (53397, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18004 (53486, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18005 (53488, 0x00000000, 10, 0x00800000, 0x00028000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18006 (53501, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18007 (53502, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18008 (53503, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18009 (53551, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18010 (53552, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18011 (53553, 0x00000000, 10, 0x00001000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18012 (53569, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18013 (53576, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18014 (53601, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  6),
18015 (53646, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18016 (53671, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18017 (53673, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18018 (54149, 0x00000000, 10, 0x00200000, 0x00010000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18019 (54151, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18020 (54154, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18021 (54155, 0x00000000, 10, 0x00800000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18022 (54278, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18023 (54486, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18024 (54488, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18025 (54489, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18026 (54490, 0x00000000,  0, 0x20000021, 0x00009000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18027 (54646, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00015400, 0x00000002, 0.000000, 0.000000,  0),
18028 (54738, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18029 (54747, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18030 (54749, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18031 (54754, 0x00000000,  7, 0x00000010, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18032 (54841, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18033 (54936, 0x00000000, 10, 0x40000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18034 (54937, 0x00000000, 10, 0x80000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18035 (54939, 0x00000000, 10, 0x00008000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18036 (55380, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18037 (55440, 0x00000000, 11, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18038 (55640, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18039 (55666, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18040 (55667, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18041 (55668, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18042 (55669, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18043 (55670, 0x00000000, 15, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18044 (55677, 0x00000000,  6, 0x00000000, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18045 (55680, 0x00000000,  6, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18046 (55689, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18047 (55747, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18048 (55768, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18049 (55776, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18050 (56218, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18051 (56342, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18052 (56343, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18053 (56344, 0x00000000,  9, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18054 (56355, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18055 (56364, 0x00000000,  3, 0x00000000, 0x01000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18056 (56372, 0x00000000,  3, 0x00000000, 0x00000080, 0x00000000, 0x00004000, 0x00000000, 0.000000, 0.000000,  0),
18057 (56451, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  3),
18058 (56611, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18059 (56612, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18060 (56613, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18061 (56614, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18062 (56636, 0x00000000,  4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18063 (56637, 0x00000000,  4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18064 (56638, 0x00000000,  4, 0x00000020, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18065 (56821, 0x00000000,  8, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18066 (56822, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18067 (56834, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18068 (56835, 0x00000000, 15, 0x00440000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18069 (57352, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00010154, 0x00000003, 0.000000, 0.000000, 45),
18070 (57470, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18071 (57472, 0x00000000,  6, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18072 (57878, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18073 (57880, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18074 (57881, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18075 (58357, 0x00000000,  4, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18076 (58364, 0x00000000,  4, 0x00000400, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18077 (58372, 0x00000000,  4, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18078 (58386, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18079 (58616, 0x00000000, 15, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18080 (58620, 0x00000000, 15, 0x00000000, 0x00004000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18081 (58626, 0x00000000, 15, 0x02000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18082 (58631, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18083 (58642, 0x00000000, 15, 0x00000000, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18084 (58644, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18085 (58647, 0x00000000, 15, 0x00000000, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18086 (58676, 0x00000000, 15, 0x00000000, 0x00000008, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18087 (58677, 0x00000000, 15, 0x00002000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18088 (58872, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18089 (58874, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000040, 0.000000, 0.000000,  0),
18090 (58901, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18091 (59057, 0x00000000, 15, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18092 (59176, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18093 (59327, 0x00000000, 15, 0x08000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18094 (59725, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000800, 0.000000, 0.000000,  0),
18095 (60132, 0x00000000, 15, 0x00000000, 0x08020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18096 (60170, 0x00000000,  5, 0x00000006, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18097 (60172, 0x00000000,  5, 0x00040000, 0x00000000, 0x00000000, 0x00000000, 0x00010000, 0.000000, 0.000000,  0),
18098 (60436, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18099 (60442, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18100 (60493, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000, 45),
18101 (60503, 0x00000000,  4, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18102 (60537, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18103 (60564, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18104 (60571, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18105 (60572, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18106 (60573, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18107 (60574, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18108 (60575, 0x00000000, 11, 0x90100000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18109 (60617, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000020, 0.000000, 0.000000,  0),
18110 (60710, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18111 (60717, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18112 (60719, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18113 (60722, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18114 (60724, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18115 (60726, 0x00000000,  7, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18116 (60770, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18117 (60818, 0x00000000, 10, 0x00000000, 0x00000200, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18118 (60826, 0x00000000, 15, 0x01400000, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18119 (61188, 0x00000000,  5, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18120 (61257, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x000202A8, 0x00010000, 0.000000, 0.000000,  0),
18121 (61324, 0x00000000, 10, 0x00000000, 0x00020000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18122 (61345, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18123 (61346, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18124 (61356, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18125 (61846, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18126 (61847, 0x00000000,  0, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0x00000010, 0.000000, 0.000000,  0),
18127 (63108, 0x00000000,  5, 0x00000002, 0x00000000, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18128 (63156, 0x00000000,  0, 0x00000001, 0x00000040, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18129 (63245, 0x00000000,  5, 0x00000100, 0x00800000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0),
18130 (63730, 0x00000000,  6, 0x00000800, 0x00000004, 0x00000000, 0x00000000, 0x00000000, 0.000000, 0.000000,  0),
18131 (64928, 0x00000000, 11, 0x00000001, 0x00000000, 0x00000000, 0x00000000, 0x00000002, 0.000000, 0.000000,  0);
18132 /*!40000 ALTER TABLE `spell_proc_event` ENABLE KEYS */;
18133 UNLOCK TABLES;
18136 -- Table structure for spell_proc_item_enchant
18139 DROP TABLE IF EXISTS `spell_proc_item_enchant`;
18140 CREATE TABLE `spell_proc_item_enchant` (
18141   `entry` mediumint unsigned NOT NULL,
18142   `ppmRate` float NOT NULL default '0',
18143   PRIMARY KEY  (`entry`)
18144 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
18147 -- Dumping data for table `spell_proc_item_enchant`
18150 LOCK TABLES `spell_proc_item_enchant` WRITE;
18151 /*!40000 ALTER TABLE `spell_proc_item_enchant` DISABLE KEYS */;
18152 INSERT INTO `spell_proc_item_enchant` (`entry`, `ppmRate`) VALUES
18153 (8034, 9),        -- Frostbrand Weapon
18154 (8680, 8.5714),   -- Instant Poison
18155 (13218, 21.4286); -- Wound Poison
18156 /*!40000 ALTER TABLE `spell_proc_item_enchant` ENABLE KEYS */;
18157 UNLOCK TABLES;
18160 -- Table structure for table `spell_script_target`
18163 DROP TABLE IF EXISTS `spell_script_target`;
18164 CREATE TABLE `spell_script_target` (
18165   `entry` mediumint(8) unsigned NOT NULL,
18166   `type` tinyint(3) unsigned NOT NULL default '0',
18167   `targetEntry` mediumint(8) unsigned NOT NULL default '0',
18168   UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
18169 ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Spell System';
18172 -- Dumping data for table `spell_script_target`
18175 LOCK TABLES `spell_script_target` WRITE;
18176 /*!40000 ALTER TABLE `spell_script_target` DISABLE KEYS */;
18177 /*!40000 ALTER TABLE `spell_script_target` ENABLE KEYS */;
18178 UNLOCK TABLES;
18181 -- Table structure for table `spell_scripts`
18184 DROP TABLE IF EXISTS `spell_scripts`;
18185 CREATE TABLE `spell_scripts` (
18186   `id` mediumint(8) unsigned NOT NULL default '0',
18187   `delay` int(10) unsigned NOT NULL default '0',
18188   `command` mediumint(8) unsigned NOT NULL default '0',
18189   `datalong` mediumint(8) unsigned NOT NULL default '0',
18190   `datalong2` int(10) unsigned NOT NULL default '0',
18191   `dataint` int(11) NOT NULL default '0',
18192   `x` float NOT NULL default '0',
18193   `y` float NOT NULL default '0',
18194   `z` float NOT NULL default '0',
18195   `o` float NOT NULL default '0'
18196 ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
18199 -- Dumping data for table `spell_scripts`
18202 LOCK TABLES `spell_scripts` WRITE;
18203 /*!40000 ALTER TABLE `spell_scripts` DISABLE KEYS */;
18204 /*!40000 ALTER TABLE `spell_scripts` ENABLE KEYS */;
18205 UNLOCK TABLES;
18208 -- Table structure for table `spell_target_position`
18211 DROP TABLE IF EXISTS `spell_target_position`;
18212 CREATE TABLE `spell_target_position` (
18213   `id` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Identifier',
18214   `target_map` smallint(5) unsigned NOT NULL default '0',
18215   `target_position_x` float NOT NULL default '0',
18216   `target_position_y` float NOT NULL default '0',
18217   `target_position_z` float NOT NULL default '0',
18218   `target_orientation` float NOT NULL default '0',
18219   PRIMARY KEY  (`id`)
18220 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';
18223 -- Dumping data for table `spell_target_position`
18226 LOCK TABLES `spell_target_position` WRITE;
18227 /*!40000 ALTER TABLE `spell_target_position` DISABLE KEYS */;
18228 /*!40000 ALTER TABLE `spell_target_position` ENABLE KEYS */;
18229 UNLOCK TABLES;
18232 -- Table structure for table `spell_threat`
18235 DROP TABLE IF EXISTS `spell_threat`;
18236 CREATE TABLE `spell_threat` (
18237   `entry` mediumint(8) unsigned NOT NULL,
18238   `Threat` smallint(6) NOT NULL,
18239   PRIMARY KEY  (`entry`)
18240 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
18243 -- Dumping data for table `spell_threat`
18246 LOCK TABLES `spell_threat` WRITE;
18247 /*!40000 ALTER TABLE `spell_threat` DISABLE KEYS */;
18248 INSERT INTO `spell_threat` VALUES
18249 (78,20),
18250 (284,39),
18251 (285,59),
18252 (770,108),
18253 (1608,78),
18254 (1672,180),
18255 (1715,61),
18256 (2139,300),
18257 (6343,17),
18258 (6572,155),
18259 (6574,195),
18260 (6809,89),
18261 (7372,101),
18262 (7373,141),
18263 (7379,235),
18264 (7386,100),
18265 (8198,40),
18266 (8204,64),
18267 (8205,96),
18268 (8972,118),
18269 (9745,148),
18270 (9880,178),
18271 (9881,207),
18272 (11556,43),
18273 (11564,98),
18274 (11565,118),
18275 (11566,137),
18276 (11567,145),
18277 (11580,143),
18278 (11581,180),
18279 (11600,275),
18280 (11601,315),
18281 (11775,395),
18282 (14921,415),
18283 (16857,108),
18284 (17735,200),
18285 (17750,300),
18286 (17751,450),
18287 (17752,600),
18288 (20569,100),
18289 (20736,100),
18290 (20925,20),
18291 (20927,30),
18292 (20928,40),
18293 (23922,160),
18294 (23923,190),
18295 (23924,220),
18296 (23925,250),
18297 (24394,580),
18298 (24583,5),
18299 (25231,130),
18300 (25258,286),
18301 (25264,215),
18302 (25269,400),
18303 (25286,175),
18304 (25288,355),
18305 (25289,60),
18306 (26996,176),
18307 (27179,54),
18308 (29704,230),
18309 (29707,196),
18310 (30324,220),
18311 (30356,323),
18312 (30357,483),
18313 (33745,285),
18314 (33878,129),
18315 (33986,180),
18316 (33987,232);
18317 /*!40000 ALTER TABLE `spell_threat` ENABLE KEYS */;
18318 UNLOCK TABLES;
18321 -- Table structure for table `transports`
18324 DROP TABLE IF EXISTS `transports`;
18325 CREATE TABLE `transports` (
18326   `entry` mediumint(8) unsigned NOT NULL default '0',
18327   `name` text,
18328   `period` mediumint(8) unsigned NOT NULL default '0',
18329   PRIMARY KEY  (`entry`)
18330 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Transports';
18333 -- Dumping data for table `transports`
18336 LOCK TABLES `transports` WRITE;
18337 /*!40000 ALTER TABLE `transports` DISABLE KEYS */;
18338 /*!40000 ALTER TABLE `transports` ENABLE KEYS */;
18339 UNLOCK TABLES;
18340 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
18342 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
18343 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
18344 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
18345 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
18346 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
18347 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
18348 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
18350 -- Dump completed on 2008-03-30 15:34:54