diff options
Diffstat (limited to 'sql/updates')
47 files changed, 9284 insertions, 76 deletions
diff --git a/sql/updates/characters/2012_11_18_00_character_calendar.sql b/sql/updates/characters/2012_11_18_00_character_calendar.sql new file mode 100644 index 00000000000..a3e7c352788 --- /dev/null +++ b/sql/updates/characters/2012_11_18_00_character_calendar.sql @@ -0,0 +1,26 @@ +DROP TABLE IF EXISTS `calendar_events`; +CREATE TABLE IF NOT EXISTS `calendar_events` ( + `id` bigint(20) unsigned NOT NULL DEFAULT '0', + `creator` int(10) unsigned NOT NULL DEFAULT '0', + `title` varchar(255) NOT NULL DEFAULT '', + `description` varchar(255) NOT NULL DEFAULT '', + `type` tinyint(1) unsigned NOT NULL DEFAULT '4', + `dungeon` int(10) NOT NULL DEFAULT '-1', + `eventtime` int(10) unsigned NOT NULL DEFAULT '0', + `flags` int(10) unsigned NOT NULL DEFAULT '0', + `time2` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +DROP TABLE IF EXISTS `calendar_invites`; +CREATE TABLE IF NOT EXISTS `calendar_invites` ( + `id` bigint(20) unsigned NOT NULL DEFAULT '0', + `event` bigint(20) unsigned NOT NULL DEFAULT '0', + `invitee` int(10) unsigned NOT NULL DEFAULT '0', + `sender` int(10) unsigned NOT NULL DEFAULT '0', + `status` tinyint(1) unsigned NOT NULL DEFAULT '0', + `statustime` int(10) unsigned NOT NULL DEFAULT '0', + `rank` tinyint(1) unsigned NOT NULL DEFAULT '0', + `text` varchar(255) NOT NULL DEFAULT '', + PRIMARY KEY (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; diff --git a/sql/updates/world/2012_09_16_01_world_creature_template_addon.sql b/sql/updates/world/2012_09_16_01_world_creature_template_addon.sql index 15415e856f3..c23a38cd058 100644 --- a/sql/updates/world/2012_09_16_01_world_creature_template_addon.sql +++ b/sql/updates/world/2012_09_16_01_world_creature_template_addon.sql @@ -1,3 +1,3 @@ DELETE FROM `creature_template_addon` WHERE `entry`=28670; -- Frostbrood Vanquisher -INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (28670,0,0,0x3000000,0x1,0,'53112'); diff --git a/sql/updates/world/2012_09_17_02_world_misc.sql b/sql/updates/world/2012_09_17_02_world_misc.sql index 0b6a3b2237c..378833dfc52 100644 --- a/sql/updates/world/2012_09_17_02_world_misc.sql +++ b/sql/updates/world/2012_09_17_02_world_misc.sql @@ -1,6 +1,6 @@ -- The Call to Command (6144, 6145, 6146, 14349, 14350) quest chain fix by nelegalno -- The first 2 quests in the chain ware replaced with new ones after the removal of Varimathras (2425) but players that completed --- the old quests shouldn't get the new ones and the third quest Nathanos' Ruse (6146) should require 6145 or 14350 completed +-- the old quests shouldn't get the new ones and the third quest Nathanos' Ruse (6146) should require 6145 or 14350 completed -- The Call to Command ExclusiveGroup UPDATE `quest_template` SET `ExclusiveGroup` = 6144 WHERE `Id` = 6144; -- The Call to Command (6144) quest diff --git a/sql/updates/world/2012_09_22_01_world_i_was_a_lot_of_things.sql b/sql/updates/world/2012_09_22_01_world_i_was_a_lot_of_things.sql index 1682d9f699b..95fc92daa76 100644 --- a/sql/updates/world/2012_09_22_01_world_i_was_a_lot_of_things.sql +++ b/sql/updates/world/2012_09_22_01_world_i_was_a_lot_of_things.sql @@ -2,7 +2,7 @@ UPDATE `creature_template` SET `AIName`='',`ScriptName`='npc_shadowmoon_tuber_node',`flags_extra`=`flags_extra`|128 WHERE `entry`=21347; DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=36652; -INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`Comment`) VALUES +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`Comment`) VALUES (13,1,36652,31,3,21347,'Tuber Whistle targets Shadowmoon Valley Tuber Node'); UPDATE `creature_template` SET `AIName`='SmartAI',`ScriptName`='' WHERE `entry`=21195; @@ -17,7 +17,7 @@ SET @BOAR_GUID = 77832; -- 8 DELETE FROM `creature` WHERE `id`=21347 OR `guid` BETWEEN @TRIGGER_GUID AND @TRIGGER_GUID + 9; SET @TRIGGER_GUID = @TRIGGER_GUID - 1; -INSERT INTO `creature`(`guid`,`id`,`map`,`phaseMask`,`position_x`,`position_y`,`position_z`) +INSERT INTO `creature`(`guid`,`id`,`map`,`phaseMask`,`position_x`,`position_y`,`position_z`) SELECT (SELECT @TRIGGER_GUID:=@TRIGGER_GUID+1),21347,`map`,3,`position_x`,`position_y`,`position_z` FROM `gameobject` WHERE `id`=184701 LIMIT 10; DELETE FROM `creature` WHERE (`id`=21195 AND `map`=530) OR `guid` BETWEEN @BOAR_GUID AND @BOAR_GUID + 7; diff --git a/sql/updates/world/2012_09_24_02_world_misc.sql b/sql/updates/world/2012_09_24_02_world_misc.sql index bd97308d7c6..b4cf7fda0a5 100644 --- a/sql/updates/world/2012_09_24_02_world_misc.sql +++ b/sql/updates/world/2012_09_24_02_world_misc.sql @@ -82,7 +82,7 @@ UPDATE `creature_template` SET `spell1` = 56746, `spell2` = 56748, `spell3` = 56 -- Fix Brann's Communicator Closes #5835 author gecko32 DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=61122 AND `spell_effect`=55038; -INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES +INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES (61122, 55038, 0, 'Contact Brann'); -- Fix Black Bruise proc Scaling author Vincent-Michael Closes #7040 diff --git a/sql/updates/world/2012_09_24_03_world_misc.sql b/sql/updates/world/2012_09_24_03_world_misc.sql index a043ff60fc5..3bcb40f79c0 100644 --- a/sql/updates/world/2012_09_24_03_world_misc.sql +++ b/sql/updates/world/2012_09_24_03_world_misc.sql @@ -66,7 +66,7 @@ UPDATE `quest_template` SET `NextQuestIdChain` = 8736 WHERE `Id` = 8735; -- Azuregos's Magical Ledger > Translating the Ledger UPDATE `quest_template` SET `NextQuestIdChain` = 8576 WHERE `Id` = 8575; --- Hive'Zora Scout Report (8534), Hive'Regal Scout Report (8738) and Hive'Ashi Scout Report (8739) quests fix by Raszagal (Inspired by Justiciar's fix drom #3311) +-- Hive'Zora Scout Report (8534), Hive'Regal Scout Report (8738) and Hive'Ashi Scout Report (8739) quests fix by Raszagal (Inspired by Justiciar's fix drom #3311) -- TODO: Get sniffs for gossip_menu_option placeholder texts -- Closes #3311 and Closes #7453 @@ -82,7 +82,7 @@ UPDATE `creature_template` SET `gossip_menu_id`=@GOSSIP1 WHERE `entry`=@NPC1; UPDATE `creature_template` SET `gossip_menu_id`=@GOSSIP2 WHERE `entry`=@NPC2; UPDATE `creature_template` SET `gossip_menu_id`=@GOSSIP3 WHERE `entry`=@NPC3; UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (@NPC1,@NPC2,@NPC3); --- Gossips +-- Gossips DELETE FROM `gossip_menu` WHERE `entry`=@GOSSIP1 AND `text_id`=8063; DELETE FROM `gossip_menu` WHERE `entry`=@GOSSIP2 AND `text_id`=8064; DELETE FROM `gossip_menu` WHERE `entry`=@GOSSIP3 AND `text_id`=8065; diff --git a/sql/updates/world/2012_09_26_00_world_misc.sql b/sql/updates/world/2012_09_26_00_world_misc.sql index f7b65b94935..d9ac468f4a6 100644 --- a/sql/updates/world/2012_09_26_00_world_misc.sql +++ b/sql/updates/world/2012_09_26_00_world_misc.sql @@ -1,7 +1,7 @@ -- Scripted Npc Infiltrator Marksen (Zombie Form 7293) From Sniff author expecto Closes #6910 UPDATE creature_template SET AIName = 'SmartAI', `spell1` = 7293 WHERE entry = 5416; DELETE FROM `smart_scripts` WHERE (`entryorguid`=5416 AND `source_type`=0); -INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES (5416, 0, 0, 0, 1, 0, 100, 0, 5000, 5000, 10000, 12000, 11, 7293, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Infiltrator Marksen - Cast Zombie Form'); -- Wildlord Antelarion (22127) gossip fix by nelegalno @@ -95,7 +95,7 @@ INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `positi -- fix loot of Savage Cave Beast Closes #7874 DELETE FROM `creature_loot_template` WHERE `entry` = 31470; -INSERT INTO `creature_loot_template` +INSERT INTO `creature_loot_template` SELECT 31470, `item`, `ChanceOrQuestChance`, `lootmode`, `groupid`, `mincountOrRef`, `maxcount` FROM `creature_loot_template` WHERE `entry` = 30329; -- partially revert commit 0deaa521bcae3ab9004529473aceadee134f3a68 author Elron103 Closes #7580 @@ -155,7 +155,7 @@ DELETE FROM `gossip_menu` WHERE `entry`=7376 AND `text_id` IN (8826,8827); DELETE FROM `gossip_menu` WHERE `entry`=7377 AND `text_id` IN (8828,8829); DELETE FROM `gossip_menu` WHERE `entry`=7378 AND `text_id`=8832; -INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (2601,3293), (2601,3294), (6504,7699), @@ -232,11 +232,11 @@ INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES (5824,6995); -- Set pickpocketloot data for Skeletal Reavers author trista Closes #7366 SET @SREAVER := 32467; -UPDATE `creature_template` SET `pickpocketloot`=`entry` WHERE `entry`=@SREAVER; -DELETE FROM `pickpocketing_loot_template` WHERE `entry`=@SREAVER; -INSERT INTO `pickpocketing_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES -(@SREAVER,35947,0.7,1,0,1,1), -- Sparkling Frostcap -(@SREAVER,33447,0.7,1,0,1,1), -- Runic Healing Potion +UPDATE `creature_template` SET `pickpocketloot`=`entry` WHERE `entry`=@SREAVER; +DELETE FROM `pickpocketing_loot_template` WHERE `entry`=@SREAVER; +INSERT INTO `pickpocketing_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES +(@SREAVER,35947,0.7,1,0,1,1), -- Sparkling Frostcap +(@SREAVER,33447,0.7,1,0,1,1), -- Runic Healing Potion (@SREAVER,38269,1.4,1,0,1,1), -- Soggy Handkerchief (@SREAVER,43575,1.6,1,0,1,1); -- Reinforced Junkbox @@ -319,7 +319,7 @@ DELETE FROM `creature_transport` WHERE `transport_entry`=164871 AND `npc_entry`= INSERT INTO `creature_transport` (`guid`,`transport_entry`,`npc_entry`,`TransOffsetX`,`TransOffsetY`,`TransOffsetZ`,`TransOffsetO`,`emote`) VALUES (18,164871,25077,-19.68856,-8.170582,-14.37648,3.176499,0); -- Sky-Captain Cloudkicker -- Zeppelin: <The Zephyr> -UPDATE `creature_transport` SET `emote`=173 WHERE `transport_entry`=190549 AND `npc_entry`=34719; +UPDATE `creature_transport` SET `emote`=173 WHERE `transport_entry`=190549 AND `npc_entry`=34719; -- Fix flight masters around the Dark Portal in Outland (16.11.2011) by SignFinder ( https://github.com/TrinityCore/TrinityCore/issues/2596#issuecomment-4450115 ) Closes #6401 @@ -368,7 +368,7 @@ INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`, (15,@GOSSIP_VLAGGA,0,0,0,8,10289,0,0,0,'',"Show gossip option 0 if player has rewarded quest Journey to Thrallmar"), (15,@GOSSIP_VLAGGA,1,0,0,28,10289,0,0,0,'',"Show gossip option 1 if player has complete quest Journey to Thrallmar"); --- fix dedication of honor movie playback. author trista and vincent-michael. Closes #5754 +-- fix dedication of honor movie playback. author trista and vincent-michael. Closes #5754 SET @MEMORIAL := 202443; SET @Script := 20244300; UPDATE `gameobject_template` SET AIName = 'SmartGameObjectAI' WHERE entry = @MEMORIAL; diff --git a/sql/updates/world/2012_09_27_01_world_custodian_of_time.sql b/sql/updates/world/2012_09_27_01_world_custodian_of_time.sql index 5396bd3e7f0..521c55d507e 100644 --- a/sql/updates/world/2012_09_27_01_world_custodian_of_time.sql +++ b/sql/updates/world/2012_09_27_01_world_custodian_of_time.sql @@ -1,7 +1,7 @@ -- Custodian of Time's Whispers for quest 10277 DELETE FROM `script_texts` WHERE `entry` IN (-1000217,-1000218,-1000219,-1000220,-1000221,-1000222,-1000223,-1000224,-1000225,-1000226,-1000227,-1000228,-1000229,-1000230); -DELETE FROM `creature_text` WHERE `entry`=20129; -INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`) VALUES +DELETE FROM `creature_text` WHERE `entry`=20129; +INSERT INTO `creature_text` (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`) VALUES (20129,0,0, 'Greetings, $N. I will guide you through the cavern. Please try and keep up.',15,0,100,0,0,0, 'WHISPER_CUSTODIAN_1'), (20129,1,0, 'We do not know if the Caverns of Time have always been accessible to mortals. Truly, it is impossible to tell as the Timeless One is in perpetual motion, changing our timeways as he sees fit. What you see now may very well not exist tomorrow. You may wake up and have no memory of this place.',15,0,100,0,0,0, 'WHISPER_CUSTODIAN_2'), (20129,2,0, 'It is strange, I know... Most mortals cannot actually comprehend what they see here, as often, what they see is not anchored within their own perception of reality.',15,0,100,0,0,0, 'WHISPER_CUSTODIAN_3'), diff --git a/sql/updates/world/2012_10_02_00_world_oculus.sql b/sql/updates/world/2012_10_02_00_world_oculus.sql index 2db8bd8fed1..8c9ea1bcb60 100644 --- a/sql/updates/world/2012_10_02_00_world_oculus.sql +++ b/sql/updates/world/2012_10_02_00_world_oculus.sql @@ -1,6 +1,6 @@ -- Addon data based on sniff fixed by Vincent-Michael DELETE FROM `creature_template_addon` WHERE `entry` IN (27692,27755,27756); -INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES (27692,0,0,0x3000000,0x1,0,'50296 50325'), -- Emerald Drake (27755,0,0,0x3000000,0x1,0,'50296 50325'), -- Amber Drake (27756,0,0,0x3000000,0x1,0,'50296 50248 50325'); -- Ruby Drake // Evasive aura should be here from the start diff --git a/sql/updates/world/2012_10_04_00_world_spelldifficulty_dbc.sql b/sql/updates/world/2012_10_04_00_world_spelldifficulty_dbc.sql index 763bf57fc47..6587e35bf9b 100644 --- a/sql/updates/world/2012_10_04_00_world_spelldifficulty_dbc.sql +++ b/sql/updates/world/2012_10_04_00_world_spelldifficulty_dbc.sql @@ -1,5 +1,5 @@ -- Boss Anubarak Move Heroic Spell in spelldifficulty DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (53472,53454); INSERT INTO `spelldifficulty_dbc`(`id`,`spellid0`,`spellid1`) VALUES -(53472,53472,59433), -- Spell Pound +(53472,53472,59433), -- Spell Pound (53454,53454,59446); -- Spell Impale Damage diff --git a/sql/updates/world/2012_10_10_00_world_battleground_template.sql b/sql/updates/world/2012_10_10_00_world_battleground_template.sql index a9a1cdb04d1..2dcafc51161 100644 --- a/sql/updates/world/2012_10_10_00_world_battleground_template.sql +++ b/sql/updates/world/2012_10_10_00_world_battleground_template.sql @@ -1,2 +1,2 @@ -- Remove all bgs from e1bee86ee6f5c3ab7b1da6d1b54c98c2851f11ec -DELETE FROM `battleground_template` WHERE `id` = 6; -- all Bgs
\ No newline at end of file +DELETE FROM `battleground_template` WHERE `id` = 6; -- all Bgs diff --git a/sql/updates/world/2012_10_11_00_world_gameobject.sql b/sql/updates/world/2012_10_11_00_world_gameobject.sql index 0c08d9d5622..e58d60590cb 100644 --- a/sql/updates/world/2012_10_11_00_world_gameobject.sql +++ b/sql/updates/world/2012_10_11_00_world_gameobject.sql @@ -2,91 +2,91 @@ SET @GUID = 74685; SET @MAP = 571; DELETE FROM `gameobject` WHERE (`id` IN (192254,192255,192269,192284,192285,192336,192338,192339,192349,192350,192351,192352,192353,192354,192355,192356,192357,192358,192359,192360,192361,192362,192363,192364,192366,192367,192368,192369,192370,192371,192372,192373,192374,192375,192378,192379,192416,192488,192501) AND `guid` != 67250) OR `guid` BETWEEN @GUID AND @GUID+87; INSERT INTO `gameobject` (`guid`,`id`,`map`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`) VALUES -(@GUID+0, 192488, @MAP, 64, 5262.540039, 3047.949951, 432.054993, 3.106650), -- Flag on tower +(@GUID+0, 192488, @MAP, 64, 5262.540039, 3047.949951, 432.054993, 3.106650), -- Flag on tower (@GUID+1, 192501, @MAP, 128, 5262.540039, 3047.949951, 432.054993, 3.106650), -- Flag on tower -(@GUID+2, 192374, @MAP, 64, 5272.939941, 2976.550049, 444.492004, 3.124120), -- Flag on Wall Intersect +(@GUID+2, 192374, @MAP, 64, 5272.939941, 2976.550049, 444.492004, 3.124120), -- Flag on Wall Intersect (@GUID+3, 192416, @MAP, 128, 5272.939941, 2976.550049, 444.492004, 3.124120), -- Flag on Wall Intersect -(@GUID+4, 192375, @MAP, 64, 5235.189941, 2941.899902, 444.278015, 1.588250), -- Flag on Wall Intersect +(@GUID+4, 192375, @MAP, 64, 5235.189941, 2941.899902, 444.278015, 1.588250), -- Flag on Wall Intersect (@GUID+5, 192416, @MAP, 128, 5235.189941, 2941.899902, 444.278015, 1.588250), -- Flag on Wall Intersect -(@GUID+6, 192488, @MAP, 64, 5163.129883, 2952.590088, 433.502991, 1.535890), -- Flag on tower +(@GUID+6, 192488, @MAP, 64, 5163.129883, 2952.590088, 433.502991, 1.535890), -- Flag on tower (@GUID+7, 192501, @MAP, 128, 5163.129883, 2952.590088, 433.502991, 1.535890), -- Flag on tower -(@GUID+8, 192488, @MAP, 64, 5145.109863, 2935.000000, 433.385986, 3.141590), -- Flag on tower +(@GUID+8, 192488, @MAP, 64, 5145.109863, 2935.000000, 433.385986, 3.141590), -- Flag on tower (@GUID+9, 192501, @MAP, 128, 5145.109863, 2935.000000, 433.385986, 3.141590), -- Flag on tower -(@GUID+10, 192488, @MAP, 64, 5158.810059, 2883.129883, 431.618011, 3.141590), -- Flag on wall +(@GUID+10, 192488, @MAP, 64, 5158.810059, 2883.129883, 431.618011, 3.141590), -- Flag on wall (@GUID+11, 192416, @MAP, 128, 5158.810059, 2883.129883, 431.618011, 3.141590), -- Flag on wall -(@GUID+12, 192336, @MAP, 64, 5154.490234, 2862.149902, 445.011993, 3.141590), -- Flag on Wall Intersect +(@GUID+12, 192336, @MAP, 64, 5154.490234, 2862.149902, 445.011993, 3.141590), -- Flag on Wall Intersect (@GUID+13, 192416, @MAP, 128, 5154.490234, 2862.149902, 445.011993, 3.141590), -- Flag on Wall Intersect -(@GUID+14, 192255, @MAP, 64, 5154.520020, 2853.310059, 409.183014, 3.141590), -- Flag on the floor +(@GUID+14, 192255, @MAP, 64, 5154.520020, 2853.310059, 409.183014, 3.141590), -- Flag on the floor (@GUID+15, 192269, @MAP, 128, 5154.520020, 2853.310059, 409.183014, 3.141590), -- Flag on the floor -(@GUID+16, 192254, @MAP, 64, 5154.459961, 2828.939941, 409.188995, 3.141590), -- Flag on the floor +(@GUID+16, 192254, @MAP, 64, 5154.459961, 2828.939941, 409.188995, 3.141590), -- Flag on the floor (@GUID+17, 192269, @MAP, 128, 5154.459961, 2828.939941, 409.188995, 3.141590), -- Flag on the floor -(@GUID+18, 192349, @MAP, 64, 5155.310059, 2820.739990, 444.979004, -3.13286), -- Flag on wall intersect +(@GUID+18, 192349, @MAP, 64, 5155.310059, 2820.739990, 444.979004, -3.13286), -- Flag on wall intersect (@GUID+19, 192416, @MAP, 128, 5155.310059, 2820.739990, 444.979004, -3.13286), -- Flag on wall intersect -(@GUID+20, 192488, @MAP, 64, 5160.339844, 2798.610107, 430.769012, 3.141590), -- Flag on wall +(@GUID+20, 192488, @MAP, 64, 5160.339844, 2798.610107, 430.769012, 3.141590), -- Flag on wall (@GUID+21, 192416, @MAP, 128, 5160.339844, 2798.610107, 430.769012, 3.141590), -- Flag on wall -(@GUID+22, 192488, @MAP, 64, 5146.040039, 2747.209961, 433.584015, 3.071770), -- Flag on tower +(@GUID+22, 192488, @MAP, 64, 5146.040039, 2747.209961, 433.584015, 3.071770), -- Flag on tower (@GUID+23, 192501, @MAP, 128, 5146.040039, 2747.209961, 433.584015, 3.071770), -- Flag on tower -(@GUID+24, 192488, @MAP, 64, 5163.779785, 2729.679932, 433.394012, -1.58825), -- Flag on tower +(@GUID+24, 192488, @MAP, 64, 5163.779785, 2729.679932, 433.394012, -1.58825), -- Flag on tower (@GUID+25, 192501, @MAP, 128, 5163.779785, 2729.679932, 433.394012, -1.58825), -- Flag on tower -(@GUID+26, 192366, @MAP, 64, 5236.270020, 2739.459961, 444.992004, -1.59698), -- Flag on wall intersect +(@GUID+26, 192366, @MAP, 64, 5236.270020, 2739.459961, 444.992004, -1.59698), -- Flag on wall intersect (@GUID+27, 192416, @MAP, 128, 5236.270020, 2739.459961, 444.992004, -1.59698), -- Flag on wall intersect -(@GUID+28, 192367, @MAP, 64, 5271.799805, 2704.870117, 445.183014, -3.13286), -- Flag on wall intersect +(@GUID+28, 192367, @MAP, 64, 5271.799805, 2704.870117, 445.183014, -3.13286), -- Flag on wall intersect (@GUID+29, 192416, @MAP, 128, 5271.799805, 2704.870117, 445.183014, -3.13286), -- Flag on wall intersect -(@GUID+30, 192488, @MAP, 64, 5260.819824, 2631.800049, 433.324005, 3.054330), -- Flag on tower +(@GUID+30, 192488, @MAP, 64, 5260.819824, 2631.800049, 433.324005, 3.054330), -- Flag on tower (@GUID+31, 192501, @MAP, 128, 5260.819824, 2631.800049, 433.324005, 3.054330), -- Flag on tower -(@GUID+32, 192488, @MAP, 64, 5278.379883, 2613.830078, 433.408997, -1.58825), -- Flag on tower +(@GUID+32, 192488, @MAP, 64, 5278.379883, 2613.830078, 433.408997, -1.58825), -- Flag on tower (@GUID+33, 192501, @MAP, 128, 5278.379883, 2613.830078, 433.408997, -1.58825), -- Flag on tower -(@GUID+34, 192364, @MAP, 64, 5350.879883, 2622.719971, 444.686005, -1.57080), -- Flag on wall intersect +(@GUID+34, 192364, @MAP, 64, 5350.879883, 2622.719971, 444.686005, -1.57080), -- Flag on wall intersect (@GUID+35, 192416, @MAP, 128, 5350.879883, 2622.719971, 444.686005, -1.57080), -- Flag on wall intersect -(@GUID+36, 192370, @MAP, 64, 5392.270020, 2639.739990, 435.330994, 1.509710), -- Flag on wall intersect +(@GUID+36, 192370, @MAP, 64, 5392.270020, 2639.739990, 435.330994, 1.509710), -- Flag on wall intersect (@GUID+37, 192416, @MAP, 128, 5392.270020, 2639.739990, 435.330994, 1.509710), -- Flag on wall intersect -(@GUID+38, 192369, @MAP, 64, 5350.950195, 2640.360107, 435.407990, 1.570800), -- Flag on wall intersect +(@GUID+38, 192369, @MAP, 64, 5350.950195, 2640.360107, 435.407990, 1.570800), -- Flag on wall intersect (@GUID+39, 192416, @MAP, 128, 5350.950195, 2640.360107, 435.407990, 1.570800), -- Flag on wall intersect -(@GUID+40, 192368, @MAP, 64, 5289.459961, 2704.679932, 435.875000, -0.01745), -- Flag on wall intersect +(@GUID+40, 192368, @MAP, 64, 5289.459961, 2704.679932, 435.875000, -0.01745), -- Flag on wall intersect (@GUID+41, 192416, @MAP, 128, 5289.459961, 2704.679932, 435.875000, -0.01745), -- Flag on wall intersect -(@GUID+42, 192362, @MAP, 64, 5322.120117, 2763.610107, 444.973999, -1.55334), -- Flag on wall intersect +(@GUID+42, 192362, @MAP, 64, 5322.120117, 2763.610107, 444.973999, -1.55334), -- Flag on wall intersect (@GUID+43, 192416, @MAP, 128, 5322.120117, 2763.610107, 444.973999, -1.55334), -- Flag on wall intersect -(@GUID+44, 192363, @MAP, 64, 5363.609863, 2763.389893, 445.023987, -1.54462), -- Flag on wall intersect +(@GUID+44, 192363, @MAP, 64, 5363.609863, 2763.389893, 445.023987, -1.54462), -- Flag on wall intersect (@GUID+45, 192416, @MAP, 128, 5363.609863, 2763.389893, 445.023987, -1.54462), -- Flag on wall intersect -(@GUID+46, 192379, @MAP, 64, 5363.419922, 2781.030029, 435.763000, 1.570800), -- Flag on wall intersect +(@GUID+46, 192379, @MAP, 64, 5363.419922, 2781.030029, 435.763000, 1.570800), -- Flag on wall intersect (@GUID+47, 192416, @MAP, 128, 5363.419922, 2781.030029, 435.763000, 1.570800), -- Flag on wall intersect -(@GUID+48, 192378, @MAP, 64, 5322.020020, 2781.129883, 435.811005, 1.570800), -- Flag on wall intersect +(@GUID+48, 192378, @MAP, 64, 5322.020020, 2781.129883, 435.811005, 1.570800), -- Flag on wall intersect (@GUID+49, 192416, @MAP, 128, 5322.020020, 2781.129883, 435.811005, 1.570800), -- Flag on wall intersect -(@GUID+50, 192355, @MAP, 64, 5288.919922, 2820.219971, 435.721008, 0.017452), -- Flag on wall intersect +(@GUID+50, 192355, @MAP, 64, 5288.919922, 2820.219971, 435.721008, 0.017452), -- Flag on wall intersect (@GUID+51, 192416, @MAP, 128, 5288.919922, 2820.219971, 435.721008, 0.017452), -- Flag on wall intersect -(@GUID+52, 192354, @MAP, 64, 5288.410156, 2861.790039, 435.721008, 0.017452), -- Flag on wall intersect +(@GUID+52, 192354, @MAP, 64, 5288.410156, 2861.790039, 435.721008, 0.017452), -- Flag on wall intersect (@GUID+53, 192416, @MAP, 128, 5288.410156, 2861.790039, 435.721008, 0.017452), -- Flag on wall intersect -(@GUID+54, 192358, @MAP, 64, 5322.229980, 2899.429932, 435.808014, -1.58825), -- Flag on wall intersect +(@GUID+54, 192358, @MAP, 64, 5322.229980, 2899.429932, 435.808014, -1.58825), -- Flag on wall intersect (@GUID+55, 192416, @MAP, 128, 5322.229980, 2899.429932, 435.808014, -1.58825), -- Flag on wall intersect -(@GUID+56, 192359, @MAP, 64, 5364.350098, 2899.399902, 435.838989, -1.57080), -- Flag on wall intersect +(@GUID+56, 192359, @MAP, 64, 5364.350098, 2899.399902, 435.838989, -1.57080), -- Flag on wall intersect (@GUID+57, 192416, @MAP, 128, 5364.350098, 2899.399902, 435.838989, -1.57080), -- Flag on wall intersect -(@GUID+58, 192338, @MAP, 64, 5397.759766, 2873.080078, 455.460999, 3.106650), -- Flag on keep +(@GUID+58, 192338, @MAP, 64, 5397.759766, 2873.080078, 455.460999, 3.106650), -- Flag on keep (@GUID+59, 192416, @MAP, 128, 5397.759766, 2873.080078, 455.460999, 3.106650), -- Flag on keep -(@GUID+60, 192339, @MAP, 64, 5397.390137, 2809.330078, 455.343994, 3.106650), -- Flag on keep +(@GUID+60, 192339, @MAP, 64, 5397.390137, 2809.330078, 455.343994, 3.106650), -- Flag on keep (@GUID+61, 192416, @MAP, 128, 5397.390137, 2809.330078, 455.343994, 3.106650), -- Flag on keep -(@GUID+62, 192284, @MAP, 64, 5372.479980, 2862.500000, 409.049011, 3.141590), -- Flag on floor +(@GUID+62, 192284, @MAP, 64, 5372.479980, 2862.500000, 409.049011, 3.141590), -- Flag on floor (@GUID+63, 192269, @MAP, 128, 5372.479980, 2862.500000, 409.049011, 3.141590), -- Flag on floor -(@GUID+64, 192285, @MAP, 64, 5371.490234, 2820.800049, 409.177002, 3.141590), -- Flag on floor +(@GUID+64, 192285, @MAP, 64, 5371.490234, 2820.800049, 409.177002, 3.141590), -- Flag on floor (@GUID+65, 192269, @MAP, 128, 5371.490234, 2820.800049, 409.177002, 3.141590), -- Flag on floor -(@GUID+66, 192371, @MAP, 64, 5364.290039, 2916.939941, 445.330994, 1.579520), -- Flag on wall intersect +(@GUID+66, 192371, @MAP, 64, 5364.290039, 2916.939941, 445.330994, 1.579520), -- Flag on wall intersect (@GUID+67, 192416, @MAP, 128, 5364.290039, 2916.939941, 445.330994, 1.579520), -- Flag on wall intersect -(@GUID+68, 192372, @MAP, 64, 5322.859863, 2916.949951, 445.153992, 1.562070), -- Flag on wall intersect +(@GUID+68, 192372, @MAP, 64, 5322.859863, 2916.949951, 445.153992, 1.562070), -- Flag on wall intersect (@GUID+69, 192416, @MAP, 128, 5322.859863, 2916.949951, 445.153992, 1.562070), -- Flag on wall intersect -(@GUID+70, 192373, @MAP, 64, 5290.350098, 2976.560059, 435.221008, 0.017452), -- Flag on wall intersect +(@GUID+70, 192373, @MAP, 64, 5290.350098, 2976.560059, 435.221008, 0.017452), -- Flag on wall intersect (@GUID+71, 192416, @MAP, 128, 5290.350098, 2976.560059, 435.221008, 0.017452), -- Flag on wall intersect -(@GUID+72, 192360, @MAP, 64, 5352.370117, 3037.090088, 435.252014, -1.57080), -- Flag on wall intersect +(@GUID+72, 192360, @MAP, 64, 5352.370117, 3037.090088, 435.252014, -1.57080), -- Flag on wall intersect (@GUID+73, 192416, @MAP, 128, 5352.370117, 3037.090088, 435.252014, -1.57080), -- Flag on wall intersect -(@GUID+74, 192361, @MAP, 64, 5392.649902, 3037.110107, 433.713013, -1.52716), -- Flag on wall intersect +(@GUID+74, 192361, @MAP, 64, 5392.649902, 3037.110107, 433.713013, -1.52716), -- Flag on wall intersect (@GUID+75, 192416, @MAP, 128, 5392.649902, 3037.110107, 433.713013, -1.52716), -- Flag on wall intersect -(@GUID+76, 192356, @MAP, 64, 5237.069824, 2757.030029, 435.795990, 1.518440), -- Flag on wall intersect +(@GUID+76, 192356, @MAP, 64, 5237.069824, 2757.030029, 435.795990, 1.518440), -- Flag on wall intersect (@GUID+77, 192416, @MAP, 128, 5237.069824, 2757.030029, 435.795990, 1.518440), -- Flag on wall intersect -(@GUID+78, 192352, @MAP, 64, 5173.020020, 2820.929932, 435.720001, 0.017452), -- Flag on wall intersect +(@GUID+78, 192352, @MAP, 64, 5173.020020, 2820.929932, 435.720001, 0.017452), -- Flag on wall intersect (@GUID+79, 192416, @MAP, 128, 5173.020020, 2820.929932, 435.720001, 0.017452), -- Flag on wall intersect -(@GUID+80, 192353, @MAP, 64, 5172.109863, 2862.570068, 435.721008, 0.017452), -- Flag on wall intersect +(@GUID+80, 192353, @MAP, 64, 5172.109863, 2862.570068, 435.721008, 0.017452), -- Flag on wall intersect (@GUID+81, 192416, @MAP, 128, 5172.109863, 2862.570068, 435.721008, 0.017452), -- Flag on wall intersect -(@GUID+82, 192357, @MAP, 64, 5235.339844, 2924.340088, 435.040009, -1.57080), -- Flag on wall intersect +(@GUID+82, 192357, @MAP, 64, 5235.339844, 2924.340088, 435.040009, -1.57080), -- Flag on wall intersect (@GUID+83, 192416, @MAP, 128, 5235.339844, 2924.340088, 435.040009, -1.57080), -- Flag on wall intersect -(@GUID+84, 192350, @MAP, 64, 5270.689941, 2861.780029, 445.058014, -3.11539), -- Flag on wall intersect +(@GUID+84, 192350, @MAP, 64, 5270.689941, 2861.780029, 445.058014, -3.11539), -- Flag on wall intersect (@GUID+85, 192416, @MAP, 128, 5270.689941, 2861.780029, 445.058014, -3.11539), -- Flag on wall intersect -(@GUID+86, 192351, @MAP, 64, 5271.279785, 2820.159912, 445.200989, -3.13286), -- Flag on wall intersect +(@GUID+86, 192351, @MAP, 64, 5271.279785, 2820.159912, 445.200989, -3.13286), -- Flag on wall intersect (@GUID+87, 192416, @MAP, 128, 5271.279785, 2820.159912, 445.200989, -3.13286); -- Flag on wall intersect diff --git a/sql/updates/world/2012_10_25_00_world_childrens_week.sql b/sql/updates/world/2012_10_25_00_world_childrens_week.sql index e2d6eec4dd2..f10cf92b409 100644 --- a/sql/updates/world/2012_10_25_00_world_childrens_week.sql +++ b/sql/updates/world/2012_10_25_00_world_childrens_week.sql @@ -539,13 +539,13 @@ INSERT INTO `creature`(`guid`,`id`,`map`,`position_x`,`position_y`,`position_z`, (@GUID_THRONE_OF_ELEMENTS_TRIGGER,22839,530,-781.294,6943.52,33.3344,0); -- Misc -DELETE `game_event_creature` FROM `game_event_creature` INNER JOIN `creature` ON `creature`.`guid`=`game_event_creature`.`guid` +DELETE `game_event_creature` FROM `game_event_creature` INNER JOIN `creature` ON `creature`.`guid`=`game_event_creature`.`guid` WHERE `id` IN (22905,22851,22838,22866,22831,22829,22872,22839,14450,22819,14451,34365,34387,34386,34490,34489,34381,36209); -INSERT INTO `game_event_creature`(`eventEntry`,`guid`) SELECT 10,`guid` FROM `creature` +INSERT INTO `game_event_creature`(`eventEntry`,`guid`) SELECT 10,`guid` FROM `creature` WHERE `id` IN (22905,22851,22838,22866,22831,22829,22872,22839,14450,22819,14451,34365,34387,34386,34490,34489,34381,36209); DELETE FROM `game_event_npc_vendor` WHERE `eventEntry`=10 AND `item`=46693; -INSERT INTO `game_event_npc_vendor` (`eventEntry`, `guid`, `item`) VALUES +INSERT INTO `game_event_npc_vendor` (`eventEntry`, `guid`, `item`) VALUES (10,99369,46693), (10,97984,46693); @@ -553,7 +553,7 @@ UPDATE `item_template` SET `minMoneyLoot`=50000,`maxMoneyLoot`=50000 WHERE `entr UPDATE `item_template` SET `HolidayId`=201 WHERE `entry` IN (46396,46397,31880,31881,18598,18597); DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry` IN (23012,23013,39478,39479,65352,65353); -INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ErrorTextId`,`Comment`) VALUES +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ErrorTextId`,`Comment`) VALUES (17,0,23012,0,12,10,0,"Orphan Whistle only while children's week"), (17,0,23013,0,12,10,0,"Orphan Whistle only while children's week"), (17,0,39478,0,12,10,0,"Orphan Whistle only while children's week"), diff --git a/sql/updates/world/2012_11_07_00_world_misc.sql b/sql/updates/world/2012_11_07_00_world_misc.sql new file mode 100644 index 00000000000..db7c8f66fb1 --- /dev/null +++ b/sql/updates/world/2012_11_07_00_world_misc.sql @@ -0,0 +1,36 @@ +SET @GUID := 43456; + +DELETE FROM `creature` WHERE `guid` BETWEEN @GUID+0 AND @GUID+3; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +(@GUID+0,30236,571,1,64,0,0,6219.17,59.9983,400.375,1.6057,120,0,0,1,0,0,0,0,0), +(@GUID+1,30236,571,1,64,0,0,6256.11,93.2413,410.92,0.767945,120,0,0,1,0,0,0,0,0), +(@GUID+2,30236,571,1,64,0,0,6297.37,53.5677,410.957,0.802851,120,0,0,1,0,0,0,0,0), +(@GUID+3,30236,571,1,64,0,0,6162.81,60.9792,400.371,1.55334,120,0,0,1,0,0,0,0,0); + +DELETE FROM `creature_template_addon` WHERE `entry`=30236; +INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`auras`) VALUES +(30236,0,0,0x0,0x1,''); + +DELETE FROM `creature_model_info` WHERE `modelid`=27101; +INSERT INTO `creature_model_info` (`modelid`,`bounding_radius`,`combat_reach`,`gender`) VALUES +(27101,0.3055,1,2); + +UPDATE `creature_template` SET `VehicleId`=246,`npcflag`=0x1000000,`resistance2`=4394,`resistance4`=1 WHERE `entry`=30236; + +DELETE FROM `npc_spellclick_spells` WHERE `npc_entry`=30236; +INSERT INTO `npc_spellclick_spells` (`npc_entry`,`spell_id`,`cast_flags`,`user_type`) VALUES +(30236,57573,1,0); + +SET @OGUID := 7278; +DELETE FROM `gameobject` WHERE `id` IN (192657,192658,192769,192770,192767,192768,192771,192772); +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(@OGUID+0, 192657, 571, 1, 64, 6255.958, 93.05556, 403.0368, 5.454153, 0, 0, 0, 1, 120, 255, 1), +(@OGUID+1, 192658, 571, 1, 64, 6255.961, 93.06424, 408.4696, 5.44543, 0, 0, 0, 1, 120, 255, 1), +(@OGUID+2, 192769, 571, 1, 64, 6219.205, 59.86806, 392.5132, 6.283184, 0, 0, 0, 1, 120, 255, 1), +(@OGUID+3, 192770, 571, 1, 64, 6219.202, 59.875, 397.924, 6.274461, 0, 0, 0, 1, 120, 255, 1), +(@OGUID+4, 192767, 571, 1, 64, 6297.223, 53.39583, 402.9972, 5.532692, 0, 0, 0, 1, 120, 255, 1), +(@OGUID+5, 192768, 571, 1, 64, 6297.226, 53.40451, 408.4129, 5.523969, 0, 0, 0, 1, 120, 255, 1), +(@OGUID+6, 192771, 571, 1, 64, 6162.772, 60.73438, 392.4362, 6.265733, 0, 0, 0, 1, 120, 255, 1), +(@OGUID+7, 192772, 571, 1, 64, 6162.768, 60.74306, 397.8138, 6.257008, 0, 0, 0, 1, 120, 255, 1); + +UPDATE `gameobject_template` SET `flags`=32,`faction`=114 WHERE `entry` IN (192657,192658,192769,192770,192767,192768,192771,192772); diff --git a/sql/updates/world/2012_11_11_00_world_sai.sql b/sql/updates/world/2012_11_11_00_world_sai.sql new file mode 100644 index 00000000000..b5eedd86898 --- /dev/null +++ b/sql/updates/world/2012_11_11_00_world_sai.sql @@ -0,0 +1,113 @@ +-- Update creature gossip_menu_option from sniff +DELETE FROM `gossip_menu_option` WHERE `menu_id` IN (8803,8808,8894,9045,9621,9879,9895,9987,10117,10218) AND `id`=0; +DELETE FROM `gossip_menu_option` WHERE `menu_id`=9879 AND `id`=1; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES +(8803,0,1, 'I need some booze, Coot.',3,128,0,0,0,0, ''), +(8808,0,1, 'I require some components, Sorely.',3,128,0,0,0,0, ''), +(8894,0,0, 'I need to fly to the Windrunner Official business!',1,1,0,0,0,0, ''), +(9045,0,0, 'I don''t have time for chit-chat, Lou. Take me to Scalawag Point.',1,1,0,0,0,0, ''), +(9621,0,0, 'Harry said I could use his bomber to Bael''gun''s. I''m ready to go!',1,1,0,0,0,0, ''), +(9879,0,3, 'Train me',5,16,0,0,0,0, ''), +(9879,1,1, 'Let me browse your goods.',3,128,0,0,0,0, ''), +(9895,0,3, 'Train me',5,16,0,0,0,0, ''), +(9987,0,3, 'Train me',5,16,0,0,0,0, ''), +(10117,0,3, 'Train me',5,16,0,0,0,0, ''), +(10218,0,0, '<Get in the bomber and return to Scalawag Point.>',1,1,0,0,0,0, ''); +-- Insert gossip menu from sniff +DELETE FROM `gossip_menu` WHERE `entry`=8803 AND `text_id`=11287; +DELETE FROM `gossip_menu` WHERE `entry`=8808 AND `text_id`=11297; +DELETE FROM `gossip_menu` WHERE `entry`=8820 AND `text_id`=11352; +DELETE FROM `gossip_menu` WHERE `entry`=8832 AND `text_id`=11418; +DELETE FROM `gossip_menu` WHERE `entry`=8839 AND `text_id`=11436; +DELETE FROM `gossip_menu` WHERE `entry`=8893 AND `text_id`=11655; +DELETE FROM `gossip_menu` WHERE `entry`=8900 AND `text_id`=11691; +DELETE FROM `gossip_menu` WHERE `entry`=8957 AND `text_id`=11746; +DELETE FROM `gossip_menu` WHERE `entry`=8985 AND `text_id`=12130; +DELETE FROM `gossip_menu` WHERE `entry`=9008 AND `text_id`=12170; +DELETE FROM `gossip_menu` WHERE `entry`=9045 AND `text_id`=12222; +DELETE FROM `gossip_menu` WHERE `entry`=9346 AND `text_id`=12646; +DELETE FROM `gossip_menu` WHERE `entry`=9895 AND `text_id`=13738; +DELETE FROM `gossip_menu` WHERE `entry`=9987 AND `text_id`=13841; +DELETE FROM `gossip_menu` WHERE `entry`=10117 AND `text_id`=14043; +DELETE FROM `gossip_menu` WHERE `entry`=10218 AND `text_id`=14205; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES +(8803,11287), +(8808,11297), +(8820,11352), +(8832,11418), +(8839,11436), +(8893,11655), +(8900,11691), +(8957,11746), +(8985,12130), +(9008,12170), +(9045,12222), +(9346,12646), +(9895,13738), +(9987,13841), +(10117,14043), +(10218,14205); +-- Insert creature gossip_menu_id Update from sniff +UPDATE `creature_template` SET `gossip_menu_id`=8803 WHERE `entry`=23737; -- Coot "The Stranger" Albertson +UPDATE `creature_template` SET `gossip_menu_id`=8808 WHERE `entry`=23732; -- Sorely Twitchblade +UPDATE `creature_template` SET `gossip_menu_id`=8820 WHERE `entry`=23862; -- Finlay Fletcher +UPDATE `creature_template` SET `gossip_menu_id`=8832 WHERE `entry`=23770; -- Cannoneer Ely +UPDATE `creature_template` SET `gossip_menu_id`=8839 WHERE `entry`=23906; -- Scout Knowles +UPDATE `creature_template` SET `gossip_menu_id`=8893 WHERE `entry`=24106; -- Scout Valory +UPDATE `creature_template` SET `gossip_menu_id`=8900 WHERE `entry`=24135; -- Greatmother Ankha +UPDATE `creature_template` SET `gossip_menu_id`=8957 WHERE `entry`=23833; -- Explorer Jaren +UPDATE `creature_template` SET `gossip_menu_id`=8985 WHERE `entry`=24544; -- Old Icefin +UPDATE `creature_template` SET `gossip_menu_id`=9008, `npcflag`=`npcflag`|1 WHERE `entry`=24643; -- Grezzix Spindlesnap +UPDATE `creature_template` SET `gossip_menu_id`=9045, `npcflag`=1, `AIName`='SmartAI' WHERE `entry`=24896; -- Lou the Cabin Boy +UPDATE `creature_template` SET `gossip_menu_id`=9346 WHERE `entry`=26540; -- Drenk Spannerspark +UPDATE `creature_template` SET `gossip_menu_id`=9821 WHERE `entry` IN (24067,24154,24350); -- Mahana Frosthoof, Mary Darrow, Robert Clarke +UPDATE `creature_template` SET `gossip_menu_id`=9879 WHERE `entry`=26959; -- Booker Kells +UPDATE `creature_template` SET `gossip_menu_id`=9895 WHERE `entry`=26960; -- Carter Tiffens +UPDATE `creature_template` SET `gossip_menu_id`=9987 WHERE `entry`=26953; -- Thomas Kolichio +UPDATE `creature_template` SET `gossip_menu_id`=10117 WHERE `entry`=26964; -- Alexandra McQueen +UPDATE `creature_template` SET `gossip_menu_id`=10218, `AIName`='SmartAI' WHERE `entry`=28277; -- Harry's Bomber +-- Insert npc_text from sniff +DELETE FROM `npc_text` WHERE `ID` IN (12130,13702); +INSERT INTO `npc_text` (`ID`,`text0_0`,`text0_1`,`lang0`,`prob0`,`em0_0`,`em0_1`,`em0_2`,`em0_3`,`em0_4`,`em0_5`,`text1_0`,`text1_1`,`lang1`,`prob1`,`em1_0`,`em1_1`,`em1_2`,`em1_3`,`em1_4`,`em1_5`,`text2_0`,`text2_1`,`lang2`,`prob2`,`em2_0`,`em2_1`,`em2_2`,`em2_3`,`em2_4`,`em2_5`,`text3_0`,`text3_1`,`lang3`,`prob3`,`em3_0`,`em3_1`,`em3_2`,`em3_3`,`em3_4`,`em3_5`,`text4_0`,`text4_1`,`lang4`,`prob4`,`em4_0`,`em4_1`,`em4_2`,`em4_3`,`em4_4`,`em4_5`,`text5_0`,`text5_1`,`lang5`,`prob5`,`em5_0`,`em5_1`,`em5_2`,`em5_3`,`em5_4`,`em5_5`,`text6_0`,`text6_1`,`lang6`,`prob6`,`em6_0`,`em6_1`,`em6_2`,`em6_3`,`em6_4`,`em6_5`,`text7_0`,`text7_1`,`lang7`,`prob7`,`em7_0`,`em7_1`,`em7_2`,`em7_3`,`em7_4`,`em7_5`,`WDBVerified`) VALUES +(12130,'<Old Icefin eyes you warily, his fishy eye blinking as he bobs his head up and down once in a curt dismissal.>','',0,1,0,396,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,12340), +(13702,'How may I help you?','',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,0,0,'','',0,0,0,0,0,0,0,0,'','',0,0,0,0,0,0,0,0,12340); +-- Insert creature_text from sniff +DELETE FROM `creature_text` WHERE `entry` IN (27923,27933); +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(27923,0,0,'Hang on to your hat, $N! To Scalawag we go!',12,0,100,0,0,0,'Lou the Cabin Boy'), +(27923,1,0,'YAAARRRRR! Here we be, matey! Scalawag Point!',12,0,100,0,0,0,'Lou the Cabin Boy'), +(27933,0,0,'Enjoy the ride! It''s a one way trip!',12,0,100,3,0,0,'Alanya'); +-- Conditions +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup` IN (8894,9045,9621,10218) AND `SourceEntry`=0; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup` IN (8894,9546) AND `SourceEntry`=1; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(15,8894,0,0,0,9,0,11229,0,0,0,0,'','Bathandler Camille - Show gossip option only if player has taken quest 11229'), +(15,8894,1,0,0,9,0,11170,0,0,0,0,'','Bathandler Camille - Show gossip option only if player has taken quest 11170'), +(15,9045,0,0,0,9,0,11509,0,0,0,0,'','Lou the Cabin Boy - Show gossip option only if player has taken quest 11509'), +(15,9546,1,0,0,9,0,12298,0,0,0,0,'','Greer Orehammer - Show gossip option only if player has taken quest 12298'), +(15,9621,0,0,0,9,0,11567,0,0,0,0,'','Alanya - Show gossip option only if player has taken quest 11567'), +(15,10218,0,0,0,9,0,11567,0,0,0,0,'','Harry''s Bomber - Show gossip option if player has taken quest 11567'); +-- SmartAIs +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=27933; +UPDATE `creature_template` SET `AIName`='SmartAI', `ScriptName`='' WHERE `entry`=23816; +DELETE FROM `smart_scripts` WHERE `entryorguid`=23859 AND `source_type`=0 AND `id` IN (3,4); -- this npc had already a SmartAI so deleting just the new lines +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (23816,24896,27933,28277) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(23816,0,0,2,62,0,100,0,8894,0,0,0,85,43074,0,0,0,0,0,7,0,0,0,0,0,0,0,'Bathandler Camille - On gossip select - Invoker spellcast'), +(23816,0,1,2,62,0,100,0,8894,1,0,0,85,43136,0,0,0,0,0,7,0,0,0,0,0,0,0,'Bathandler Camille - On gossip select - Invoker spellcast'), +(23816,0,2,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Bathandler Camille - On gossip select - Close gossip'), +(23859,0,3,4,62,0,100,0,9546,1,0,0,11,48862,0,0,0,0,0,7,0,0,0,0,0,0,0,'Greer Orehammer - On gossip select - Invoker spellcast'), +(23859,0,4,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Greer Orehammer - On gossip select - Close gossip'), +(24896,0,0,1,62,0,100,0,9045,0,0,0,11,50004,0,0,0,0,0,7,0,0,0,0,0,0,0,'Lou the Cabin Boy - On gossip select - Spellcast'), +(24896,0,1,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Lou the Cabin Boy - On gossip select - Close gossip'), +(27933,0,0,1,62,0,100,0,9621,0,0,0,11,50038,0,0,0,0,0,7,0,0,0,0,0,0,0,'Alanya - On gossip select - Spellcast'), +(27933,0,1,2,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Alanya - On gossip select - Close gossip'), +(27933,0,2,0,61,0,100,0,0,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Alanya - On gossip select - Say line'), +(28277,0,0,1,62,0,100,0,10218,0,0,0,11,61604,0,0,0,0,0,7,0,0,0,0,0,0,0,'Harry''s Bomber - On gossip select - Spellcast'), +(28277,0,1,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Harry''s Bomber - On gossip select - Close gossip'); +DELETE FROM `npc_spellclick_spells` WHERE `npc_entry`=24896; -- that was absolutely not correct +DELETE FROM `spell_target_position` WHERE `id` IN (50005,50039,61605); +INSERT INTO `spell_target_position` (`id`,`target_map`,`target_position_x`,`target_position_y`,`target_position_z`,`target_orientation`) VALUES +(50005,571,595.208,-2796.47,-0.124098,3.66519), -- Summon Lou the Cabin Boy +(50039,571,-170.469,-3588.19,-0.221146,4.2586), -- Summon Harry's Bomber +(61605,571,89.7416,-6286.08,1.17903,1.58825); -- Summon Harry's Bomber diff --git a/sql/updates/world/2012_11_11_01_world_quest_template.sql b/sql/updates/world/2012_11_11_01_world_quest_template.sql new file mode 100644 index 00000000000..9abf2ea3cd1 --- /dev/null +++ b/sql/updates/world/2012_11_11_01_world_quest_template.sql @@ -0,0 +1,2 @@ +-- Fix a typo in RewardText table for quest Spooky Lighthouse (1687) +UPDATE `quest_template` SET `OfferRewardText`="WOW, that was a real life ghost! That was so awesome - I can't wait to tell everyone back at the orphanage. Captain Grayson... he even looked like a pirate! When I grow up I wanna be a ghost pirate too!$B$BThanks for taking me to Westfall, $N. I know there are scary things out there in the wilds of Westfall, and I hope I wasn't too much of a pain. You're awesome!" WHERE `Id`=1687; diff --git a/sql/updates/world/2012_11_11_02_world_gossip_menu.sql b/sql/updates/world/2012_11_11_02_world_gossip_menu.sql new file mode 100644 index 00000000000..59d1a10b337 --- /dev/null +++ b/sql/updates/world/2012_11_11_02_world_gossip_menu.sql @@ -0,0 +1,109 @@ +UPDATE `creature_template` SET `gossip_menu_id`=9260 WHERE `entry`=25754; +DELETE FROM `gossip_menu` WHERE `entry`=9260 AND `text_id`=12572; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9260,12572); + +UPDATE `creature_template` SET `gossip_menu_id`=11417 WHERE `entry`=25697; +DELETE FROM `gossip_menu` WHERE `entry`=11417 AND `text_id`=12390; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (11417,12390); + +UPDATE `creature_template` SET `gossip_menu_id`=9298 WHERE `entry`=16818; +DELETE FROM `gossip_menu` WHERE `entry`=9298 AND `text_id`=12609; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9298,12609); + +UPDATE `creature_template` SET `gossip_menu_id`=9204 WHERE `entry`=26113; +UPDATE `creature_template` SET `gossip_menu_id`=9204 WHERE `entry`=25994; +DELETE FROM `gossip_menu` WHERE `entry`=9204 AND `text_id`=12506; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9204,12506); + +UPDATE `creature_template` SET `gossip_menu_id`=9148 WHERE `entry`=16781; +DELETE FROM `gossip_menu` WHERE `entry`=9148 AND `text_id`=12376; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9148,12376); + +UPDATE `creature_template` SET `gossip_menu_id`=9157 WHERE `entry`=26221; +DELETE FROM `gossip_menu` WHERE `entry`=9157 AND `text_id`=12390; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9157,12390); + +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25884; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25918; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25919; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25920; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25921; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25922; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25924; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25926; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25928; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25929; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25930; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25932; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25934; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25936; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25937; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25938; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25940; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25943; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25947; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32809; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32810; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32811; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32812; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32813; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32814; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32815; +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32816; +DELETE FROM `gossip_menu` WHERE `entry`=9278 AND `text_id`=12582; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9278,12582); + +DELETE FROM `gossip_menu` WHERE `entry`=9354 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9354,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9384 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9384,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9385 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9385,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9386 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9386,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9387 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9387,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9389 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9389,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9390 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9390,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9393 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9393,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9395 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9395,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9396 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9396,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9399 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9399,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9401 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9401,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9403 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9403,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9408 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9408,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9409 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9409,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9410 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9410,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9411 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9411,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9412 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9412,12377); +DELETE FROM `gossip_menu` WHERE `entry`=9413 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (9413,12377); +DELETE FROM `gossip_menu` WHERE `entry`=10230 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10230,12377); +DELETE FROM `gossip_menu` WHERE `entry`=10232 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10232,12377); +DELETE FROM `gossip_menu` WHERE `entry`=10233 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10233,12377); +DELETE FROM `gossip_menu` WHERE `entry`=10234 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10234,12377); +DELETE FROM `gossip_menu` WHERE `entry`=10237 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10237,12377); +DELETE FROM `gossip_menu` WHERE `entry`=10238 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10238,12377); +DELETE FROM `gossip_menu` WHERE `entry`=10240 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10240,12377); +DELETE FROM `gossip_menu` WHERE `entry`=10243 AND `text_id`=12377; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES (10243,12377); diff --git a/sql/updates/world/2012_11_11_03_world_gossip_menu.sql b/sql/updates/world/2012_11_11_03_world_gossip_menu.sql new file mode 100644 index 00000000000..4f250597388 --- /dev/null +++ b/sql/updates/world/2012_11_11_03_world_gossip_menu.sql @@ -0,0 +1,280 @@ +-- Creature Gossip Update for midsummer event from sniff +UPDATE `creature_template` SET `gossip_menu_id`=9148 WHERE `entry`=16781; -- Midsummer Celebrant +UPDATE `creature_template` SET `gossip_menu_id`=7326 WHERE `entry`=16817; -- Festival Loremaster +UPDATE `creature_template` SET `gossip_menu_id`=11417 WHERE `entry`=25697; -- Luma Skymother <The Earthen Ring> +UPDATE `creature_template` SET `gossip_menu_id`=9260 WHERE `entry`=25754; -- Earthen Ring Flamecaller <The Earthen Ring> +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25883; -- Ashenvale Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25884; -- Ashenvale Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25887; -- Arathi Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25888; -- Azuremyst Isle Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25889; -- Blade's Edge Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25890; -- Blasted Lands Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25891; -- Bloodmyst Isle Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25892; -- Burning Steppes Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25893; -- Darkshore Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25894; -- Desolace Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25895; -- Dun Morogh Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25896; -- Duskwood Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25897; -- Dustwallow Marsh Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25898; -- Elwynn Forest Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25899; -- Feralas Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25900; -- Hellfire Peninsula Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25901; -- Hillsbrad Flame Warden -> Deleted in cata, taking from 3.x sniff +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25902; -- Loch Modan Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25903; -- Nagrand Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25904; -- Redridge Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25905; -- Shadowmoon Valley Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25906; -- Teldrassil Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25907; -- Terokkar Forest Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25908; -- The Hinterlands Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25909; -- Western Plaguelands Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25910; -- Westfall Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25911; -- Wetlands Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25912; -- Zangarmarsh Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25913; -- Netherstorm Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25914; -- Silithus Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25915; -- Cape of Stranglethorn Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25916; -- Tanaris Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=25917; -- Winterspring Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25918; -- Netherstorm Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25919; -- Silithus Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25920; -- Cape of Stranglethorn Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25921; -- Tanaris Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25922; -- Winterspring Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25923; -- Arathi Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25925; -- Badlands Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25926; -- Blade's Edge Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25927; -- Burning Steppes Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25928; -- Desolace Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25929; -- Durotar Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25930; -- Dustwallow Marsh Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25931; -- Eversong Woods Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25932; -- Feralas Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25933; -- Ghostlands Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25934; -- Hellfire Peninsula Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25935; -- Hillsbrad Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25936; -- Mulgore Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25937; -- Nagrand Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25938; -- Shadowmoon Valley Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25939; -- Silverpine Forest Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25940; -- Stonetalon Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25941; -- Swamp of Sorrows Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25942; -- Terokkar Forest Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25943; -- The Northern Barrens Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25944; -- The Hinterlands Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25945; -- Thousand Needles Flame Keeper -> Deleted in cata, taking from 3.x sniff +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25946; -- Tirisfal Glades Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=25947; -- Zangarmarsh Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9204 WHERE `entry`=25962; -- Fire Eater +UPDATE `creature_template` SET `gossip_menu_id`=9204 WHERE `entry`=25975; -- Master Fire Eater +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=32801; -- Borean Tundra Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=32802; -- Sholazar Basin Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=32806; -- Storm Peaks Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=32807; -- Crystalsong Forest Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9203 WHERE `entry`=32808; -- Zul'Drak Flame Warden +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32809; -- Borean Tundra Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32810; -- Sholazar Basin Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32811; -- Dragonblight Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32812; -- Howling Fjord Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32813; -- Grizzly Hills Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32814; -- Storm Peaks Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32815; -- Crystalsong Forest Flame Keeper +UPDATE `creature_template` SET `gossip_menu_id`=9278 WHERE `entry`=32816; -- Zul'Drak Flame Keeper +-- Gossip insert from sniff +DELETE FROM `gossip_menu` WHERE (`entry`=9148 AND `text_id`=12376) OR (`entry`=7326 AND `text_id`=8703) OR (`entry`=11417 AND `text_id`=12390) OR (`entry`=9260 AND `text_id`=12571) OR (`entry`=9260 AND `text_id`=12572) OR (`entry`=9203 AND `text_id`=12504) OR (`entry`=9278 AND `text_id`=12582) OR (`entry`=9204 AND `text_id`=12506) OR (`entry`=9370 AND `text_id`=12374) OR (`entry`=9406 AND `text_id`=12377) OR (`entry`=9352 AND `text_id`=12377) OR (`entry`=9354 AND `text_id`=12377) OR (`entry`=9384 AND `text_id`=12377) OR (`entry`=9385 AND `text_id`=12377) OR (`entry`=9386 AND `text_id`=12377) OR (`entry`=9387 AND `text_id`=12377) OR (`entry`=9388 AND `text_id`=12377) OR (`entry`=9389 AND `text_id`=12377) OR (`entry`=9390 AND `text_id`=12377) OR (`entry`=9391 AND `text_id`=12377) OR (`entry`=9392 AND `text_id`=12377) OR (`entry`=9393 AND `text_id`=12377) OR (`entry`=9394 AND `text_id`=12377) OR (`entry`=9395 AND `text_id`=12377) OR (`entry`=9396 AND `text_id`=12377) OR (`entry`=9397 AND `text_id`=12377) OR (`entry`=9398 AND `text_id`=12377) OR (`entry`=9399 AND `text_id`=12377) OR (`entry`=9400 AND `text_id`=12377) OR (`entry`=9401 AND `text_id`=12377) OR (`entry`=9402 AND `text_id`=12377) OR (`entry`=9403 AND `text_id`=12377) OR (`entry`=9404 AND `text_id`=12377) OR (`entry`=9405 AND `text_id`=12377) OR (`entry`=9407 AND `text_id`=12377) OR (`entry`=9408 AND `text_id`=12377) OR (`entry`=9409 AND `text_id`=12377) OR(`entry`=9410 AND `text_id`=12377) OR (`entry`=9411 AND `text_id`=12377) OR (`entry`=9412 AND `text_id`=12377) OR (`entry`=9413 AND `text_id`=12377) OR (`entry`=9353 AND `text_id`=12374) OR (`entry`=9355 AND `text_id`=12374) OR (`entry`=9379 AND `text_id`=12374) OR (`entry`=9380 AND `text_id`=12374) OR (`entry`=9381 AND `text_id`=12374) OR (`entry`=9382 AND `text_id`=12374) OR (`entry`=9383 AND `text_id`=12374) OR (`entry`=9356 AND `text_id`=12374) OR (`entry`=9357 AND `text_id`=12374) OR (`entry`=9358 AND `text_id`=12374) OR (`entry`=9359 AND `text_id`=12374) OR (`entry`=9360 AND `text_id`=12374) OR (`entry`=9361 AND `text_id`=12374) OR (`entry`=9362 AND `text_id`=12374) OR (`entry`=9363 AND `text_id`=12374) OR (`entry`=9364 AND `text_id`=12374) OR (`entry`=9365 AND `text_id`=12374) OR (`entry`=9366 AND `text_id`=12374) OR (`entry`=9367 AND `text_id`=12374) OR (`entry`=9368 AND `text_id`=12374) OR (`entry`=9369 AND `text_id`=12374) OR (`entry`=9371 AND `text_id`=12374) OR (`entry`=9372 AND `text_id`=12374) OR (`entry`=9373 AND `text_id`=12374) OR (`entry`=9374 AND `text_id`=12374) OR (`entry`=9375 AND `text_id`=12374) OR (`entry`=9377 AND `text_id`=12374) OR (`entry`=9378 AND `text_id`=12374) OR (`entry`=10227 AND `text_id`=12377) OR (`entry`=10228 AND `text_id`=12374) OR (`entry`=10231 AND `text_id`=12374) OR (`entry`=10230 AND `text_id`=12377) OR (`entry`=10239 AND `text_id`=12374) OR (`entry`=10238 AND `text_id`=12377) OR (`entry`=10240 AND `text_id`=12377) OR (`entry`=10241 AND `text_id`=12374) OR (`entry`=10242 AND `text_id`=12374) OR (`entry`=10243 AND `text_id`=12377); +INSERT INTO `gossip_menu` (`entry`, `text_id`) VALUES +(9148, 12376), -- 16781 +(7326, 8703), -- 16817 +(11417, 12390), -- 25697 +(9260, 12571), -- 25754 +(9260, 12572), -- 25754 +(9203, 12504), -- 25883, 25887, 25888, 25889, 25890, 25891, 25892, 25893, 25894, 25895, 25896, 25897, 25898, 25899, 25900, 25901, 25902, 25903, 25904, 25905, 25906, 25907, 25908, 25909, 25910, 25911, 25912, 25913, 25914, 25915, 25916, 25917, 32801, 32802, 32806, 32807, 32808 +(9278, 12582), -- 25884, 25918, 25919, 25920, 25921, 25922, 25923, 25925, 25926, 25927, 25928, 25929, 25930, 25931, 25932, 25933, 25934, 25935, 25936, 25937, 25938, 25939, 25940, 25941, 25942, 25943, 25944, 25945, 25946, 25947, 32809, 32810, 32811, 32812, 32813, 32814, 32815, 32816 +(9204, 12506), -- 25962, 25975 +(9370, 12374), -- 187559 +(9406, 12377), -- 187564 +(9352, 12377), -- 187914 +(9354, 12377), -- 187916 +(9384, 12377), -- 187917 +(9385, 12377), -- 187919 +(9386, 12377), -- 187920 +(9387, 12377), -- 187921 +(9388, 12377), -- 187922 +(9389, 12377), -- 187923 +(9390, 12377), -- 187924 +(9391, 12377), -- 187925 +(9392, 12377), -- 187926 +(9393, 12377), -- 187927 +(9394, 12377), -- 187928 +(9395, 12377), -- 187929 +(9396, 12377), -- 187930 +(9397, 12377), -- 187931 -> Deleted in cata, taking from 3.x sniff +(9398, 12377), -- 187932 +(9399, 12377), -- 187933 +(9400, 12377), -- 187934 +(9401, 12377), -- 187935 +(9402, 12377), -- 187936 +(9403, 12377), -- 187937 +(9404, 12377), -- 187938 +(9405, 12377), -- 187939 +(9407, 12377), -- 187940 +(9408, 12377), -- 187941 +(9409, 12377), -- 187942 +(9410, 12377), -- 187943 +(9411, 12377), -- 187944 +(9412, 12377), -- 187945 +(9413, 12377), -- 187946 +(9353, 12374), -- 187947 +(9355, 12374), -- 187948 +(9379, 12374), -- 187949 +(9380, 12374), -- 187950 +(9381, 12374), -- 187951 +(9382, 12374), -- 187952 +(9383, 12374), -- 187953 +(9356, 12374), -- 187954 +(9357, 12374), -- 187955 +(9358, 12374), -- 187956 +(9359, 12374), -- 187957 +(9360, 12374), -- 187958 +(9361, 12374), -- 187959 +(9362, 12374), -- 187960 +(9363, 12374), -- 187961 +(9364, 12374), -- 187962 +(9365, 12374), -- 187963 +(9366, 12374), -- 187964 +(9367, 12374), -- 187965 +(9368, 12374), -- 187966 +(9369, 12374), -- 187967 +(9371, 12374), -- 187968 +(9372, 12374), -- 187969 +(9373, 12374), -- 187970 +(9374, 12374), -- 187971 +(9375, 12374), -- 187972 +(9377, 12374), -- 187974 +(9378, 12374), -- 187975 +(10227, 12377), -- 194032 +(10228, 12374), -- 194033 +(10231, 12374), -- 194034 +(10230, 12377), -- 194035 +(10239, 12374), -- 194043 +(10238, 12377), -- 194044 +(10240, 12377), -- 194045 +(10241, 12374), -- 194046 +(10242, 12374), -- 194048 +(10243, 12377); -- 194049 +-- Add quest to creature (warden) +DELETE FROM `game_event_creature_quest` WHERE (`id`=25883 AND `quest`=11805) OR (`id`=25887 AND `quest`=11804) OR (`id`=25888 AND `quest`=11806) OR (`id`=25889 AND `quest`=11807) OR (`id`=25890 AND `quest`=11808) OR (`id`=25891 AND `quest`=11809) OR (`id`=25892 AND `quest`=11810) OR (`id`=25893 AND `quest`=11811) OR (`id`=25894 AND `quest`=11812) OR (`id`=25895 AND `quest`=11813) OR (`id`=25896 AND `quest`=11814) OR (`id`=25897 AND `quest`=11815) OR (`id`=25898 AND `quest`=11816) OR (`id`=25899 AND `quest`=11817) OR (`id`=25900 AND `quest`=11818) OR (`id`=25901 AND `quest`=11819) OR (`id`=25902 AND `quest`=11820) OR (`id`=25903 AND `quest`=11821) OR (`id`=25904 AND `quest`=11822) OR (`id`=25905 AND `quest`=11823) OR (`id`=25906 AND `quest`=11824) OR (`id`=25907 AND `quest`=11825) OR (`id`=25908 AND `quest`=11826) OR (`id`=25909 AND `quest`=11827) OR (`id`=25910 AND `quest`=11583) OR (`id`=25911 AND `quest`=11828) OR (`id`=25912 AND `quest`=11829) OR (`id`=25913 AND `quest`=11830) OR (`id`=25914 AND `quest`=11831) OR (`id`=25915 AND `quest`=11832) OR (`id`=25916 AND `quest`=11833) OR (`id`=25917 AND `quest`=11834) OR (`id`=32801 AND `quest`=13485) OR (`id`=32802 AND `quest`=13486) OR (`id`=32806 AND `quest`=13490) OR (`id`=32807 AND `quest`=13491) OR (`id`=32808 AND `quest`=13492); +INSERT INTO `game_event_creature_quest` (`eventEntry`, `id`, `quest`) VALUES +(1, 25883, 11805), +(1, 25887, 11804), +(1, 25888, 11806), +(1, 25889, 11807), +(1, 25890, 11808), +(1, 25891, 11809), +(1, 25892, 11810), +(1, 25893, 11811), +(1, 25894, 11812), +(1, 25895, 11813), +(1, 25896, 11814), +(1, 25897, 11815), +(1, 25898, 11816), +(1, 25899, 11817), +(1, 25900, 11818), +(1, 25901, 11819), -- Deleted in cata, taking from 3.x sniff +(1, 25902, 11820), +(1, 25903, 11821), +(1, 25904, 11822), +(1, 25905, 11823), +(1, 25906, 11824), +(1, 25907, 11825), +(1, 25908, 11826), +(1, 25909, 11827), +(1, 25910, 11583), +(1, 25911, 11828), +(1, 25912, 11829), +(1, 25913, 11830), +(1, 25914, 11831), +(1, 25915, 11832), +(1, 25916, 11833), +(1, 25917, 11834), +(1, 32801, 13485), +(1, 32802, 13486), +(1, 32806, 13490), +(1, 32807, 13491), +(1, 32808, 13492); +-- Delete double quest +DELETE FROM `creature_questrelation` WHERE `id`=25889 AND `quest` =11807; +-- Add quest relation to Gameobject (fire) +DELETE FROM `game_event_gameobject_quest` WHERE (`id`=187559 AND `quest`=11580) OR (`id`=187564 AND `quest`=11581) OR (`id`=187914 AND `quest`=11732) OR (`id`=187916 AND `quest`=11734) OR (`id`=187917 AND `quest`=11735) OR (`id`=187919 AND `quest`=11736) OR (`id`=187920 AND `quest`=11737) OR (`id`=187921 AND `quest`=11738) OR (`id`=187922 AND `quest`=11739) OR (`id`=187923 AND `quest`=11740) OR (`id`=187924 AND `quest`=11741) OR (`id`=187925 AND `quest`=11742) OR (`id`=187926 AND `quest`=11743) OR (`id`=187927 AND `quest`=11744) OR (`id`=187928 AND `quest`=11745) OR (`id`=187929 AND `quest`=11746) OR (`id`=187930 AND `quest`=11747) OR (`id`=187931 AND `quest`=11748) OR (`id`=187932 AND `quest`=11749) OR (`id`=187933 AND `quest`=11750) OR (`id`=187934 AND `quest`=11751) OR (`id`=187935 AND `quest`=11752) OR (`id`=187936 AND `quest`=11753) OR (`id`=187937 AND `quest`=11754) OR (`id`=187938 AND `quest`=11755) OR (`id`=187939 AND `quest`=11756) OR (`id`=187940 AND `quest`=11757) OR (`id`=187941 AND `quest`=11758) OR (`id`=187942 AND `quest`=11759) OR(`id`=187943 AND `quest`=11760) OR (`id`=187944 AND `quest`=11761) OR (`id`=187945 AND `quest`=11762) OR (`id`=187946 AND `quest`=11763) OR (`id`=187947 AND `quest`=11764) OR (`id`=187948 AND `quest`=11765) OR (`id`=187949 AND `quest`=11799) OR (`id`=187950 AND `quest`=11800) OR (`id`=187951 AND `quest`=11801) OR (`id`=187952 AND `quest`=11802) OR (`id`=187953 AND `quest`=11803) OR (`id`=187954 AND `quest`=11766) OR (`id`=187955 AND `quest`=11767) OR (`id`=187956 AND `quest`=11768) OR (`id`=187957 AND `quest`=11769) OR (`id`=187958 AND `quest`=11770) OR (`id`=187959 AND `quest`=11771) OR (`id`=187960 AND `quest`=11772) OR (`id`=187961 AND `quest`=11773) OR (`id`=187962 AND `quest`=11774) OR (`id`=187963 AND `quest`=11775) OR (`id`=187964 AND `quest`=11776) OR (`id`=187965 AND `quest`=11777) OR (`id`=187966 AND `quest`=11778) OR (`id`=187967 AND `quest`=11779) OR (`id`=187968 AND `quest`=11780) OR (`id`=187969 AND `quest`=11781) OR (`id`=187970 AND `quest`=11782) OR (`id`=187971 AND `quest`=11783) OR (`id`=187972 AND `quest`=11784) OR (`id`=187974 AND `quest`=11786) OR (`id`=187975 AND `quest`=11787) OR (`id`=194032 AND `quest`=13440) OR (`id`=194033 AND `quest`=13441) OR (`id`=194034 AND `quest`=13450) OR (`id`=194035 AND `quest`=13442) OR (`id`=194043 AND `quest`=13455) OR (`id`=194044 AND `quest`=13446) OR (`id`=194045 AND `quest`=13447) OR (`id`=194046 AND `quest`=13457) OR (`id`=194048 AND `quest`=13458) OR (`id`=194049 AND `quest`=13449); +INSERT INTO `game_event_gameobject_quest` (`eventEntry`, `id`, `quest`) VALUES +(1, 187559, 11580), +(1, 187564, 11581), +(1, 187914, 11732), +(1, 187916, 11734), +(1, 187917, 11735), +(1, 187919, 11736), +(1, 187920, 11737), +(1, 187921, 11738), +(1, 187922, 11739), +(1, 187923, 11740), +(1, 187924, 11741), +(1, 187925, 11742), +(1, 187926, 11743), +(1, 187927, 11744), +(1, 187928, 11745), +(1, 187929, 11746), +(1, 187930, 11747), +(1, 187931, 11748), -- Deleted in cata, taking from 3.x sniff +(1, 187932, 11749), +(1, 187933, 11750), +(1, 187934, 11751), +(1, 187935, 11752), +(1, 187936, 11753), +(1, 187937, 11754), +(1, 187938, 11755), +(1, 187939, 11756), +(1, 187940, 11757), +(1, 187941, 11758), +(1, 187942, 11759), +(1, 187943, 11760), +(1, 187944, 11761), +(1, 187945, 11762), +(1, 187946, 11763), +(1, 187947, 11764), +(1, 187948, 11765), +(1, 187949, 11799), +(1, 187950, 11800), +(1, 187951, 11801), +(1, 187952, 11802), +(1, 187953, 11803), +(1, 187954, 11766), +(1, 187955, 11767), +(1, 187956, 11768), +(1, 187957, 11769), +(1, 187958, 11770), +(1, 187959, 11771), +(1, 187960, 11772), +(1, 187961, 11773), +(1, 187962, 11774), +(1, 187963, 11775), +(1, 187964, 11776), +(1, 187965, 11777), +(1, 187966, 11778), +(1, 187967, 11779), +(1, 187968, 11780), +(1, 187969, 11781), +(1, 187970, 11782), +(1, 187971, 11783), +(1, 187972, 11784), +(1, 187974, 11786), +(1, 187975, 11787), +(1, 194032, 13440), +(1, 194033, 13441), +(1, 194034, 13450), +(1, 194035, 13442), +(1, 194043, 13455), +(1, 194044, 13446), +(1, 194045, 13447), +(1, 194046, 13457), +(1, 194048, 13458), +(1, 194049, 13449); diff --git a/sql/updates/world/2012_11_12_00_world_quest_template.sql b/sql/updates/world/2012_11_12_00_world_quest_template.sql new file mode 100644 index 00000000000..ee2206146b3 --- /dev/null +++ b/sql/updates/world/2012_11_12_00_world_quest_template.sql @@ -0,0 +1,3 @@ +-- Set chaining for Doomguard minion quests +UPDATE `quest_template` SET `PrevQuestId`=7581 WHERE `Id`=7582; -- Complete The Prison's Bindings before The Prison's Casing +UPDATE `quest_template` SET `PrevQuestId`=7582 WHERE `Id`=7583; -- Complete The Prison's Casing before Suppression diff --git a/sql/updates/world/2012_11_12_01_world_misc.sql b/sql/updates/world/2012_11_12_01_world_misc.sql new file mode 100644 index 00000000000..7a5e81c4b1a --- /dev/null +++ b/sql/updates/world/2012_11_12_01_world_misc.sql @@ -0,0 +1,13 @@ +-- update quest linking for Egg Collection +UPDATE `quest_template` SET `NextQuestId`=5522 WHERE `Id`=4735; +-- -------------------------------------------------------------------------------------------------------------- +-- Test of Endurance (Gecko32) +DELETE FROM `event_scripts` WHERE `id`=747 AND `command`=10 AND `datalong`=4100; -- Remove summon of Screeching Harpies +UPDATE `event_scripts` SET `delay`=5 WHERE `id`=747 AND `command`=10 AND `datalong`=4490; -- Lower summon time of Grenka Bloodscreech from 40 sec to 5 sec +-- -------------------------------------------------------------------------------------------------------------- +-- Tapper Swindlekeg (24711) fix Alliance faction exploitation (nelgano) +UPDATE `creature_template` SET `unit_flags`=4864 WHERE `entry`=24711; +-- -------------------------------------------------------------------------------------------------------------- +DELETE FROM `gameobject` WHERE `guid`=335; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(335,1684,1,1,1,1524.929,-4371.182,17.94367,1.62046,0,0,0,1,300,100,1); diff --git a/sql/updates/world/2012_11_12_02_world_quest_template.sql b/sql/updates/world/2012_11_12_02_world_quest_template.sql new file mode 100644 index 00000000000..8f988bfa4ab --- /dev/null +++ b/sql/updates/world/2012_11_12_02_world_quest_template.sql @@ -0,0 +1,4 @@ +DELETE FROM `gameobject` WHERE `guid`IN (335,347); +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(335,324,1,1,1,-6314,507.647,7.651,0.496,0,0,0,0,2700,100,1), +(347,1684,1,1,1,1524.929,-4371.182,17.94367,1.62046,0,0,0,1,300,100,1); diff --git a/sql/updates/world/2012_11_12_03_world_misc.sql b/sql/updates/world/2012_11_12_03_world_misc.sql new file mode 100644 index 00000000000..20c91974bbb --- /dev/null +++ b/sql/updates/world/2012_11_12_03_world_misc.sql @@ -0,0 +1,106 @@ +-- Fix Jormungar Tunneler +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=26467; +DELETE FROM `creature_ai_scripts` WHERE `creature_id`=26467; +DELETE FROM `smart_scripts` WHERE `entryorguid`=26467 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(26467,0,0,0,11,0,100,0,0,0,0,0,11,47677,0,0,0,0,0,1,0,0,0,0,0,0,0,'Jormungar Tunneler - On spawn - Spellcast Jormungar Tunnel Passive'), +(26467,0,1,0,21,0,100,0,0,0,0,0,11,47677,0,0,0,0,0,1,0,0,0,0,0,0,0,'Jormungar Tunneler - On reached homeposition - Spellcast Jormungar Tunnel Passive'), +(26467,0,2,0,1,0,100,0,3000,5000,15000,18000,11,51879,0,0,0,0,0,2,0,0,0,0,0,0,0,'Jormungar Tunneler - On update (IC) - Spellcast Corrode Flesh'), +(26467,0,3,0,4,0,100,0,0,0,0,0,28,47677,0,0,0,0,0,1,0,0,0,0,0,0,0,'Jormungar Tunneler - On aggro - Remove Jormungar Tunnel Passive'); +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Update Fjord Hawk: Lots of these had incorrect movement. +DELETE FROM `creature_addon` WHERE `guid` IN (112058,112059,112088,112089,112091,112114,112115,112141,112142,112149,112150,112151,112152,112153,112154,112155,112156,112157,112158); +INSERT INTO `creature_addon` (`guid`,`mount`,`bytes1`,`bytes2`,`auras`) VALUES +(112058,0,1,1,''),(112059,0,1,1,''),(112088,0,1,1,''), +(112089,0,1,1,''),(112091,0,1,1,''),(112114,0,1,1,''), +(112115,0,1,1,''),(112141,0,1,1,''),(112142,0,1,1,''), +(112149,0,1,1,''),(112150,0,1,1,''),(112151,0,1,1,''), +(112152,0,1,1,''),(112153,0,1,1,''),(112154,0,1,1,''), +(112155,0,1,1,''),(112156,0,1,1,''),(112157,0,1,1,''),(112158,0,1,1,''); +UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `guid` IN (112058,112059,112088,112089,112091,112114,112115,112141,112142,112149,112150,112151,112152,112153,112154,112155,112156,112157,112158); +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- SAI for Lashers +UPDATE `creature_addon` SET `bytes1`=0 WHERE `guid` BETWEEN 88228 AND 88237; +UPDATE `creature_addon` SET `bytes1`=0 WHERE `guid` BETWEEN 131438 AND 131457; +UPDATE `creature_addon` SET `auras`='' WHERE `guid`=131452; +UPDATE `creature_addon` SET `bytes1`=0 WHERE `guid` IN (106897,106898,106899,106900,106902,106903,106909,106910,106911,106912,106913,106914,106915,106916,106917,106918); +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`IN(27254,30845,34300); +DELETE FROM `creature_ai_scripts` WHERE `creature_id`IN(27254,30845,34300); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (27254,30845,34300) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +-- Emerald Lasher +(27254,0,0,2,11,0,100,0,0,0,0,0,90,9,0,0,0,0,0,1,0,0,0,0,0,0,0,'Emerald Lasher - On spawn - Set unitfield_bytes1 9 (submerged)'), +(27254,0,1,2,21,0,100,0,0,0,0,0,90,9,0,0,0,0,0,1,0,0,0,0,0,0,0,'Emerald Lasher - On reached homeposition - Set unitfield_bytes1 9 (submerged)'), +(27254,0,2,0,61,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Emerald Lasher - Linked with event 0 or 1 - Disable combat movement'), +(27254,0,3,0,4,0,100,0,0,0,0,0,11,37752,0,0,0,0,0,1,0,0,0,0,0,0,0,'Emerald Lasher - On aggro - Spellcast Stand'), +(27254,0,4,0,0,0,100,0,1500,1500,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Emerald Lasher - On update (IC) - Enable combat movement'), +(27254,0,5,0,0,0,100,0,4000,7000,9000,13000,11,51901,0,0,0,0,0,2,0,0,0,0,0,0,0,'Emerald Lasher - On update (IC) - Spellcast Dream Lash'), +-- Living Lasher +(30845,0,0,2,11,0,100,0,0,0,0,0,90,9,0,0,0,0,0,1,0,0,0,0,0,0,0,'Living Lasher - On spawn - Set unitfield_bytes1 9 (submerged)'), +(30845,0,1,2,21,0,100,0,0,0,0,0,90,9,0,0,0,0,0,1,0,0,0,0,0,0,0,'Living Lasher - On reached homeposition - Set unitfield_bytes1 9 (submerged)'), +(30845,0,2,0,61,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Living Lasher - Linked with event 0 or 1 - Disable combat movement'), +(30845,0,3,0,4,0,100,0,0,0,0,0,11,37752,0,0,0,0,0,1,0,0,0,0,0,0,0,'Living Lasher - On aggro - Spellcast Stand'), +(30845,0,4,0,0,0,100,0,1500,1500,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Living Lasher - On update (IC) - Enable combat movement'), +(30845,0,5,0,0,0,100,0,4000,7000,9000,13000,11,51901,0,0,0,0,0,2,0,0,0,0,0,0,0,'Living Lasher - On update (IC) - Spellcast Dream Lash'), +-- 34300 Mature Lasher +(34300,0,0,2,11,0,100,0,0,0,0,0,90,9,0,0,0,0,0,1,0,0,0,0,0,0,0,'Mature Lasher - On spawn - Set unitfield_bytes1 9 (submerged)'), +(34300,0,1,2,21,0,100,0,0,0,0,0,90,9,0,0,0,0,0,1,0,0,0,0,0,0,0,'Mature Lasher - On reached homeposition - Set unitfield_bytes1 9 (submerged)'), +(34300,0,2,0,61,0,100,0,0,0,0,0,21,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Mature Lasher - Linked with event 0 or 1 - Disable combat movement'), +(34300,0,3,0,4,0,100,0,0,0,0,0,11,37752,0,0,0,0,0,1,0,0,0,0,0,0,0,'Mature Lasher - On aggro - Spellcast Stand'), +(34300,0,4,0,0,0,100,0,1500,1500,0,0,21,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Mature Lasher - On update (IC) - Enable combat movement'), +(34300,0,5,0,0,0,100,0,4000,7000,9000,13000,11,51901,0,0,0,0,0,2,0,0,0,0,0,0,0,'Mature Lasher - On update (IC) - Spellcast Dream Lash'); +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Secrets of the Scourge +UPDATE `quest_template` SET `PrevQuestId`=0 WHERE `Id`=12312; +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Icehorn updates from sniffs +UPDATE `creature_template` SET `speed_run`=0.9920629, `rank`=4, `unit_flags`=32832, `family`=43, `type_flags`=65537 WHERE `entry`=32361; +DELETE FROM `creature_template_addon` WHERE `entry`=32361; +INSERT INTO `creature_template_addon` (`entry`, `mount`, `bytes1`, `bytes2`, `auras`) VALUES +(32361,0,0,1,'60915'); +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Dragonblight optical improvements +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (27203,30058); +UPDATE `creature_template` SET `inhabitType`=4 WHERE `entry`=30078; +UPDATE `creature_addon` SET `auras`='' WHERE `guid` IN (131075,131077); +UPDATE `creature_addon` SET `auras`='42048' WHERE `guid`=131066; +UPDATE `creature_addon` SET `auras`='42049' WHERE `guid`=106614; +UPDATE `creature_addon` SET `auras`='42050' WHERE `guid`=131068; +UPDATE `creature_addon` SET `auras`='42051' WHERE `guid`=106634; +UPDATE `creature` SET `spawndist`=0, `MovementType`=0 WHERE `id` IN (27222,27223,30078); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (-102199,-105487,-105488,-105489,-105495,-131055,-131056,-131058,-131059) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(-102199,0,0,0,25,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Onslaught Footman - On reset - Set event phase 1'), +(-102199,0,1,2,1,1,100,0,2000,2000,12000,14000,11,48115,0,0,0,0,0,19,27222,30,0,0,0,0,0,'Onslaught Footman - On OOC update (phase 1) - Spellcast Shoot on Archery Target'), +(-102199,0,2,0,61,1,100,0,0,0,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0,'Onslaught Footman - On OOC update (phase 1) - Set event phase 2'), +(-102199,0,3,4,1,2,100,0,16000,18000,16000,18000,11,48117,0,0,0,0,0,19,27223,30,0,0,0,0,0,'Onslaught Footman - On OOC update (phase 2) - Spellcast Shoot on Archery Target'), +(-102199,0,4,0,61,2,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Onslaught Footman - On OOC update (phase 2) - Set event phase 4'), +(-105487,0,0,0,1,0,100,0,2000,2000,0,0,11,55840,0,0,0,0,0,10,107492,0,0,0,0,0,0,'Warden of the Chamber - On reset - Spellcast Blue Wyrmrest Warden Beam'), +(-105488,0,0,0,1,0,100,0,2000,2000,0,0,11,55841,0,0,0,0,0,10,107491,0,0,0,0,0,0,'Warden of the Chamber - On reset - Spellcast Yellow Wyrmrest Warden Beam'), +(-105489,0,0,0,1,0,100,0,2000,2000,0,0,11,55841,0,0,0,0,0,10,107491,0,0,0,0,0,0,'Warden of the Chamber - On reset - Spellcast Yellow Wyrmrest Warden Beam'), +(-105495,0,0,0,1,0,100,0,2000,2000,0,0,11,55840,0,0,0,0,0,10,107492,0,0,0,0,0,0,'Warden of the Chamber - On reset - Spellcast Blue Wyrmrest Warden Beam'), +(-131055,0,0,0,1,0,100,0,2000,2000,0,0,11,55838,0,0,0,0,0,10,131075,0,0,0,0,0,0,'Warden of the Chamber - On reset - Spellcast Green Wyrmrest Warden Beam'), +(-131056,0,0,0,1,0,100,0,2000,2000,0,0,11,55824,0,0,0,0,0,10,131077,0,0,0,0,0,0,'Warden of the Chamber - On reset - Spellcast Red Wyrmrest Warden Beam'), +(-131058,0,0,0,1,0,100,0,2000,2000,0,0,11,55838,0,0,0,0,0,10,131075,0,0,0,0,0,0,'Warden of the Chamber - On reset - Spellcast Green Wyrmrest Warden Beam'), +(-131059,0,0,0,1,0,100,0,2000,2000,0,0,11,55824,0,0,0,0,0,10,131077,0,0,0,0,0,0,'Warden of the Chamber - On reset - Spellcast Red Wyrmrest Warden Beam'); +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Borean Tundra visual improvement and missing spawn +SET @GOGUID :=356; -- need 1 set by TDB +SET @GUID :=43460; -- need 3 set by TDB +DELETE FROM `gameobject` WHERE `guid`=@GOGUID; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(@GOGUID,187879,571,1,1,4207.366,4056.894,91.62077,2.792518,0,0,0.984807,0.1736523,300,100,1); +DELETE FROM `creature` WHERE `guid` in (@GUID+0,@GUID+1,@GUID+2); +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +(@GUID+0,24021,571,1,1,21999,0,4207.475,4056.687,93.53715,2.094395,300,0,0,42,0,0,0,0,0), +(@GUID+1,23837,571,1,1,11686,0,4207.471,4056.705,93.66189,3.979351,300,0,0,42,0,0,0,0,0), +(@GUID+2,24957,571,1,1,0,0,4200.877,4056.888,92.28766,6.25263,300,0,0,7185,7196,0,0,0,0); +DELETE FROM `smart_scripts` WHERE `entryorguid`=24957 AND `source_type`=0 AND `id` IN (1,3); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(24957,0,1,0,11,0,100,0,0,0,0,0,11,45820,0,0,0,0,0,9,24021,0,30,0,0,0,0,'Cult Plaguebringer - On spawn - Spellcast Plague Cauldron Beam'), +(24957,0,3,0,21,0,100,0,0,0,0,0,11,45820,0,0,0,0,0,9,24021,0,30,0,0,0,0,'Cult Plaguebringer - On reached homeposition - Spellcast Plague Cauldron Beam'); +UPDATE `creature_addon` SET `auras`='45797' WHERE `guid` IN (98730,115941); +DELETE FROM `creature_addon` WHERE `guid` IN (@GUID+0,@GUID+1); +INSERT INTO `creature_addon` (`guid`,`mount`,`bytes1`,`bytes2`,`auras`) VALUES +(@GUID+0,0,0,1,'45797'), +(@GUID+1,0,0,1,'45797'); diff --git a/sql/updates/world/2012_11_13_00_world_waypoints.sql b/sql/updates/world/2012_11_13_00_world_waypoints.sql new file mode 100644 index 00000000000..64e16cb2d0e --- /dev/null +++ b/sql/updates/world/2012_11_13_00_world_waypoints.sql @@ -0,0 +1,35 @@ +-- Pathing for Ol' Sooty Entry: 1225 +SET @NPC := 8877; +SET @PATH := @NPC * 10; +UPDATE `creature` SET `spawntimesecs`=1200,`spawndist`=0,`MovementType`=2,`position_x`=-5716.181152,`position_y`=-3110.810791,`position_z`=316.686523 WHERE `guid`=@NPC; +DELETE FROM `creature_addon` WHERE `guid`=@NPC; +INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes2`,`mount`,`auras`) VALUES (@NPC,@PATH,1,0, ''); +DELETE FROM `waypoint_data` WHERE `id`=@PATH; +INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`,`move_flag`,`action`,`action_chance`,`wpguid`) VALUES +(@PATH,1,-5716.181152,-3110.810791,316.686523,0,0,0,100,0), +(@PATH,2,-5716.187012,-3093.080078,325.600677,0,0,0,100,0), +(@PATH,3,-5712.214355,-3090.297607,327.738647,0,0,0,100,0), +(@PATH,4,-5705.484375,-3092.523438,329.362366,0,0,0,100,0), +(@PATH,5,-5681.826660,-3110.568848,338.121887,0,0,0,100,0), +(@PATH,6,-5659.498535,-3122.215576,344.336151,0,0,0,100,0), +(@PATH,7,-5639.585938,-3124.536133,348.404938,0,0,0,100,0), +(@PATH,8,-5618.112793,-3110.905762,360.618225,0,0,0,100,0), +(@PATH,9,-5621.486816,-3096.315918,368.247772,0,0,0,100,0), +(@PATH,10,-5632.212891,-3078.608398,374.990936,0,0,0,100,0), +(@PATH,11,-5629.793457,-3056.124023,384.465576,0,0,0,100,0), +(@PATH,12,-5642.278809,-3036.872314,385.471649,0,0,0,100,0), +(@PATH,13,-5609.369141,-3006.883301,386.288177,0,0,0,100,0), +(@PATH,14,-5643.634277,-3036.388672,385.531891,0,0,0,100,0), +(@PATH,15,-5630.174805,-3057.015869,384.385712,0,0,0,100,0), +(@PATH,16,-5629.840332,-3065.496338,381.129578,0,0,0,100,0), +(@PATH,17,-5634.866211,-3078.448975,374.489044,0,0,0,100,0), +(@PATH,18,-5620.416504,-3101.081543,364.819855,0,0,0,100,0), +(@PATH,19,-5624.629395,-3117.040527,354.493805,0,0,0,100,0), +(@PATH,20,-5644.949707,-3125.081787,347.271362,0,0,0,100,0), +(@PATH,21,-5660.741699,-3121.580566,343.975922,0,0,0,100,0), +(@PATH,22,-5676.210938,-3111.586914,340.021484,0,0,0,100,0), +(@PATH,23,-5691.895508,-3102.994385,333.646698,0,0,0,100,0), +(@PATH,24,-5711.662109,-3088.433594,328.761566,0,0,0,100,0), +(@PATH,25,-5717.663574,-3099.033691,321.686920,0,0,0,100,0), +(@PATH,26,-5705.214844,-3132.324219,315.837585,0,0,0,100,0), +(@PATH,27,-5679.014160,-3185.046875,319.508057,0,0,0,100,0); diff --git a/sql/updates/world/2012_11_13_01_world_misc.sql b/sql/updates/world/2012_11_13_01_world_misc.sql new file mode 100644 index 00000000000..97e3cd8b499 --- /dev/null +++ b/sql/updates/world/2012_11_13_01_world_misc.sql @@ -0,0 +1,120 @@ +-- Various quest fixes in Grizzly Hills + +SET @GUID :=43494; -- need 8 set by TDB +SET @OGUID :=5681; -- need 3 set by TDB + +-- Creature Gossip_menu_option Update from sniff +DELETE FROM `gossip_menu_option` WHERE `menu_id`=9426 AND `id`=0; +DELETE FROM `gossip_menu_option` WHERE `menu_id`=9615 AND `id`=1; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES +(9426,0,0, 'Remove the Eye of the Prophets from the idol''s face.',1,1,0,0,0,0, ''), +(9615,1,0, 'I need another of your elixirs, Drakuru.',1,1,0,0,0,0, ''); + +-- Gossip Menu insert from sniff +DELETE FROM `gossip_menu` WHERE `entry`=9426 AND `text_id` IN (12669,12670); +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES +(9426,12669),(9426,12670); + +-- Creature Template update from sniff +UPDATE `creature_template` SET `minLevel`=70, `maxLevel`=70, `unit_flags`=33024, `AIName`='SmartAI' WHERE `entry` IN (26500); +UPDATE `creature_template` SET `npcflag`=2, `unit_flags`=33024, `AIName`='SmartAI' WHERE `entry` IN (26543,26701,26787); + +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=61 WHERE `item`=35799 AND `entry`=26447; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=58 WHERE `item`=35799 AND `entry`=26425; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=100 WHERE `item`=35836; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=49 WHERE `item`=36743 AND `entry`=26704; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=50 WHERE `item`=36743 AND `entry`=27554; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=51 WHERE `item`=36758 AND `entry`=26795; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=48 WHERE `item`=36758 AND `entry`=26797; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=66 WHERE `item`=38303 AND `entry`=26620; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=67 WHERE `item`=38303 AND `entry`=26639; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=15 WHERE `item`=38303 AND `entry`=27431; + +UPDATE `creature_involvedrelation` SET `id`=26543 WHERE `quest`=12007; +UPDATE `creature_involvedrelation` SET `id`=26701 WHERE `quest`=12802; +UPDATE `creature_involvedrelation` SET `id`=26787 WHERE `quest`=12068; +UPDATE `creature_questrelation` SET `id`=26543 WHERE `quest`=12042; +UPDATE `creature_questrelation` SET `id`=26701 WHERE `quest`=12068; +UPDATE `creature_questrelation` SET `id`=26787 WHERE `quest`=12238; + +DELETE FROM `creature_text` WHERE `entry`=26500; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(26500,0,0,'I''ll be waitin'' for ya, mon.',15,0,100,0,0,0,'Image of Drakuru'); + +-- Conditions +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=47110; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=14 AND `SourceGroup`=9426 AND `SourceEntry`=12670; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9426 AND `SourceEntry`=0; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9615 AND `SourceEntry`=1; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,47110,0,0,31,0,3,26498,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 01'), +(13,1,47110,0,1,31,0,3,26559,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 02'), +(13,1,47110,0,2,31,0,3,26700,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 03'), +(13,1,47110,0,3,31,0,3,26789,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 04'), +(13,1,47110,0,4,31,0,3,28015,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 05'), +(14,9426,12670,0,0,2,0,35806,1,1,0,0,'','Seer of Zeb''Halak - Show different gossip if player has item Eye of the Propehts'), +(15,9426,0,0,0,9,0,12007,0,0,0,0,'','Seer of Zeb''Halak - Show gossip option if player has taken quest 12007'), +(15,9426,0,0,0,2,0,35806,1,1,1,0,'','Seer of Zeb''Halak - Show gossip option if player has not item Eye of the Propehts'), +(15,9615,1,0,0,8,0,11990,0,0,0,0,'','Drakuru - Show gossip option if player has rewarded quest 11990'), +(15,9615,1,0,0,8,0,12238,0,0,1,0,'','Drakuru - Show gossip option if player has not rewarded quest 12238'), +(15,9615,1,0,0,2,0,35797,1,1,1,0,'','Drakuru - Show gossip option if player has not item Drakuru''s Elixir'); + +UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI' WHERE `entry`=188458; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (26498,26559,26700,26789); + +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (26498,26500,26543,26559,26700,26701,26787,26789) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=26423 AND `source_type`=0 AND `id` IN (2,3); +DELETE FROM `smart_scripts` WHERE `entryorguid`=188458 AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(26423,0,2,3,62,0,100,0,9615,1,0,0,85,50021,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru - On gossip option select - Invoker spellcast Replace Drakuru''s Elixir'), +(26423,0,3,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru - On gossip option select - Close gossip'), +(26498,0,0,0,8,0,100,0,47110,0,0,0,11,47117,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 01 - On spellhit - Spellcast Script Cast Summon Image of Drakuru'), +(26500,0,0,1,19,0,100,0,12007,0,0,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Image of Drakuru - On quest accepted - Say text'), +(26500,0,1,0,61,0,100,0,12007,0,0,0,11,47122,0,0,0,0,0,7,0,0,0,0,0,0,0,'Image of Drakuru - On quest accepted - Spellcast Strip Detect Drakuru'), +(26543,0,0,1,19,0,100,0,12042,0,0,0,11,47308,0,0,0,0,0,7,0,0,0,0,0,0,0,'Image of Drakuru - On quest accepted - Spellcast Strip Detect Drakuru 02'), +(26559,0,0,0,8,0,100,0,47110,0,0,0,11,47149,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 02 - On spellhit - Spellcast Script Cast Summon Image of Drakuru 02'), +(26700,0,0,0,8,0,100,0,47110,0,0,0,11,47316,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 03 - On spellhit - Spellcast Script Cast Summon Image of Drakuru 03'), +(26701,0,0,1,19,0,100,0,12068,0,0,0,11,47403,0,0,0,0,0,7,0,0,0,0,0,0,0,'Image of Drakuru - On quest accepted - Spellcast Strip Detect Drakuru 03'), +(26787,0,0,1,19,0,100,0,12238,0,0,0,11,48417,0,0,0,0,0,7,0,0,0,0,0,0,0,'Image of Drakuru - On quest accepted - Spellcast Strip Detect Drakuru 04'), +(26789,0,0,0,8,0,100,0,47110,0,0,0,11,47405,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 04 - On spellhit - Spellcast Script Cast Summon Image of Drakuru 04'), +(188458,1,0,1,62,0,100,0,9426,0,0,0,85,47293,0,0,0,0,0,7,0,0,0,0,0,0,0,'Seer of Zeb''Halak - On gossip option select - Invoker spellcast Create Eye of the Prophets'), +(188458,1,1,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Seer of Zeb''Halak - On gossip option select - Close gossip'); + +DELETE FROM `spell_scripts` WHERE `id` IN (47117,47149,47316,47405,50439); +INSERT INTO `spell_scripts` (`id`,`effIndex`,`delay`,`command`,`datalong`,`datalong2`,`dataint`,`x`,`y`,`z`,`o`) VALUES +(47117,0,0,15,47118,2,0,0,0,0,0), -- Script Cast Summon Image of Drakuru - Spellcast Envision Drakuru +(47149,0,0,15,47150,2,0,0,0,0,0), -- Script Cast Summon Image of Drakuru 02 - Spellcast Envision Drakuru +(47316,0,0,15,47317,2,0,0,0,0,0), -- Script Cast Summon Image of Drakuru 03 - Spellcast Envision Drakuru +(47405,0,0,15,47406,2,0,0,0,0,0), -- Script Cast Summon Image of Drakuru 04 - Spellcast Envision Drakuru +(50439,0,0,15,50440,2,0,0,0,0,0); -- Script Cast Summon Image of Drakuru 05 - Spellcast Envision Drakuru + +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (-47122,-47308,-47403,-48417); +INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment`) VALUES +(-47122,-47118,0,'On Strip Detect Drakuru fade - Remove Envision Drakuru'), +(-47308,-47150,0,'On Strip Detect Drakuru 02 fade - Remove Envision Drakuru'), +(-47403,-47317,0,'On Strip Detect Drakuru 03 fade - Remove Envision Drakuru'), +(-48417,-47406,0,'On Strip Detect Drakuru 04 fade - Remove Envision Drakuru'); + +DELETE FROM `creature` WHERE `guid` in (@GUID+0,@GUID+1,@GUID+2,@GUID+3,@GUID+4,@GUID+5,@GUID+6,@GUID+7); +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +(@GUID+0,26498,571,1,1,19595,0,3386.607,-1805.944,115.2497,3.001966,300,0,0,0,0,0,0,0,0), +(@GUID+1,26500,571,1,1,0,0,3386.272,-1805.434,115.4441,4.939282,300,0,0,0,0,0,0,0,0), +(@GUID+2,26559,571,1,1,19595,0,4243.962,-2024.805,238.2487,1.411705,300,0,0,0,0,0,0,0,0), +(@GUID+3,26543,571,1,1,0,0,4243.962,-2024.805,238.2487,1.411705,300,0,0,0,0,0,0,0,0), +(@GUID+4,26700,571,1,1,19595,0,4523.894,-3472.863,228.2441,4.695459,300,0,0,0,0,0,0,0,0), +(@GUID+5,26701,571,1,1,0,0,4523.894,-3472.863,228.2441,4.695459,300,0,0,0,0,0,0,0,0), +(@GUID+6,26787,571,1,1,0,0,4599.709,-4876.9,48.95556,0.719772,300,0,0,0,0,0,0,0,0), +(@GUID+7,26789,571,1,1,19595,0,4599.709,-4876.9,48.95556,0.719772,300,0,0,0,0,0,0,0,0); + +DELETE FROM `creature_template_addon` WHERE `entry` IN (26500,26543,26701,26787); +INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(26500,0,0,65536,1,0,'43167 47119'), +(26543,0,0,65536,1,0,'43167 47119'), +(26701,0,0,65536,1,0,'43167 47119'), +(26787,0,0,65536,1,0,'43167 47119'); + +DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID+0 AND @OGUID+2; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(@OGUID+0,188600,571,1,1,3980.721,-1956.352,210.6624,1.169369,0,0,0,1,120,255,1), +(@OGUID+1,188600,571,1,1,3957.188,-1908.295,209.97,0.8901166,0,0,0,1,120,255,1), +(@OGUID+2,188600,571,1,1,3964.761,-1884.524,208.2739,1.692969,0,0,0,1,120,255,1); diff --git a/sql/updates/world/2012_11_13_02_world_creature.sql b/sql/updates/world/2012_11_13_02_world_creature.sql new file mode 100644 index 00000000000..19f278ca5c6 --- /dev/null +++ b/sql/updates/world/2012_11_13_02_world_creature.sql @@ -0,0 +1,3 @@ +-- Fix [Q]{A/H} Meet At The Grave +UPDATE `creature_template_addon` SET `auras`='10848' WHERE `entry`=9299; -- allow to be seen in world of death +UPDATE `creature_template` SET `npcflag`=32770,`unit_flags`=768 WHERE `entry`=9299; -- makes unseen in world of living diff --git a/sql/updates/world/2012_11_13_03_world_gameevent.sql b/sql/updates/world/2012_11_13_03_world_gameevent.sql new file mode 100644 index 00000000000..fbb24b863f2 --- /dev/null +++ b/sql/updates/world/2012_11_13_03_world_gameevent.sql @@ -0,0 +1,2 @@ +-- Pilgrim's Bounty start time fix +UPDATE `game_event` SET `start_time`= '2012-11-18 01:00:00' WHERE `eventEntry`=26; diff --git a/sql/updates/world/2012_11_13_04_world_gameeventquest.sql b/sql/updates/world/2012_11_13_04_world_gameeventquest.sql new file mode 100644 index 00000000000..cce654859e0 --- /dev/null +++ b/sql/updates/world/2012_11_13_04_world_gameeventquest.sql @@ -0,0 +1,3 @@ +-- Fix Pilgrims Bounty quest during Hallows End +INSERT INTO `game_event_creature_quest` (`eventEntry`,`id`,`quest`) VALUES (26,18927,14022); +DELETE FROM `creature_questrelation` WHERE `id`=18927; diff --git a/sql/updates/world/2012_11_13_05_world_player_factionchange_items.sql b/sql/updates/world/2012_11_13_05_world_player_factionchange_items.sql new file mode 100644 index 00000000000..17b9616624a --- /dev/null +++ b/sql/updates/world/2012_11_13_05_world_player_factionchange_items.sql @@ -0,0 +1,4 @@ +DELETE FROM `player_factionchange_items` WHERE `alliance_id` IN (15198, 47937); +INSERT INTO `player_factionchange_items` (`race_A`, `alliance_id`, `commentA`, `race_H`, `horde_id`, `commentH`) VALUES +(0, 15198, 'Knight\'s Colors', 0, 15199, 'Stone Guard\'s Herald'), +(0, 47937, 'Girdle of the Nether Champion', 0, 48009, 'Belt of the Nether Champion'); diff --git a/sql/updates/world/2012_11_13_06_world_trinity_string.sql b/sql/updates/world/2012_11_13_06_world_trinity_string.sql new file mode 100644 index 00000000000..2834a8f900b --- /dev/null +++ b/sql/updates/world/2012_11_13_06_world_trinity_string.sql @@ -0,0 +1,2 @@ +DELETE FROM `trinity_string` WHERE `entry` IN (5018,5019); +UPDATE `trinity_string` SET `content_default`= '[Raid]' WHERE `entry`=5017; diff --git a/sql/updates/world/2012_11_14_00_world_sai.sql b/sql/updates/world/2012_11_14_00_world_sai.sql new file mode 100644 index 00000000000..98467fe4f3a --- /dev/null +++ b/sql/updates/world/2012_11_14_00_world_sai.sql @@ -0,0 +1,16 @@ +SET @ENTRY_SPIRIT_SHADE := 15261; +SET @ENTRY_LETHON := 14888; +SET @SPELL_DARK_OFFERING := 24804; + +DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@ENTRY_SPIRIT_SHADE; +UPDATE `creature_template` SET `AIName`= '',`ScriptName`= 'npc_spirit_shade' WHERE `entry`=@ENTRY_SPIRIT_SHADE; + +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY_SPIRIT_SHADE AND `source_type`=0; + +DELETE FROM `creature_template_addon` WHERE `entry`=@ENTRY_SPIRIT_SHADE; +INSERT INTO `creature_template_addon` (`entry`,`mount`,`bytes1`,`bytes2`,`auras`) VALUES +(@ENTRY_SPIRIT_SHADE,0,0,0, '24809'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=@SPELL_DARK_OFFERING; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(13,1,@SPELL_DARK_OFFERING,0,0,31,0,3,@ENTRY_LETHON,0,0,0, '', 'Dark offering can only target Lethon'); diff --git a/sql/updates/world/2012_11_14_00_world_various_fixes.sql b/sql/updates/world/2012_11_14_00_world_various_fixes.sql new file mode 100644 index 00000000000..01655b674b1 --- /dev/null +++ b/sql/updates/world/2012_11_14_00_world_various_fixes.sql @@ -0,0 +1,307 @@ +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Mounts players mode 25 +UPDATE `creature_template` SET `VehicleId`=220,`spell1`=56091,`spell2`=56092,`spell3`=57090,`spell4`=57143,`spell5`=57108,`spell6`=57092,`spell7`=60534,`InhabitType`=5 WHERE `entry`=31752; +-- Hover Disk mode 25 +UPDATE `creature_template` SET `VehicleId`=224,`faction_A`=35,`faction_H`=35,`InhabitType`=5 WHERE `entry` IN (31749,31748); +-- spawn the focusing iris 25men +DELETE FROM gameobject WHERE id IN (193960); +INSERT INTO `gameobject` +(`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(361,193960,616,2,1,754.362,1301.61,266.171,6.23742,0,0,0.022883,-0.999738,300,0,1); +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- The Heart of the Storm (Issue 1959) +DELETE FROM `gameobject` WHERE `id`=192181; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(362,192181,571,1,1,7308.945,-727.9163,791.6083,1.53589,0,0,0.690772,0.723073,30,100,1); +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Add support for {Q} Corrupted Sabers ID: 4506 (Issue 2297) +SET @CommonKitten:=9937; +SET @CorruptedKitten :=9936; +SET @SGossip :=55002; -- Gossip for Kitten when near quest giver +SET @SpellVisual :=16510; -- Turn Kitten in Saber +SET @Winna :=9996; -- Winna Hazzard +SET @Saber :=10042; -- Big green cat +-- Add SAI support for Corrupted Kitten +UPDATE `creature_template` SET `AIName`='SmartAI',`gossip_menu_id`=@SGossip,`npcflag`=1 WHERE `entry`=@CorruptedKitten; +UPDATE `creature_template` SET `AIName`='SmartAI',`gossip_menu_id`=@SGossip,`npcflag`=1 WHERE `entry`=@CommonKitten; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@CorruptedKitten,@CommonKitten); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@CommonKitten,0,0,1,54,0,100,0,0,0,0,0,36,@CorruptedKitten,0,0,0,0,0,1,0,0,0,0,0,0,0,'Common Kitten - On spawn - Change template to corrupted one'), +(@CommonKitten,0,1,2,61,0,100,0,0,0,0,0,11,@SpellVisual,0,0,0,0,0,1,0,0,0,0,0,0,0,'Common Kitten - On OOC of 10 sec - Cast Corrupted Saber visual to self'), +(@CommonKitten,0,2,0,61,0,100,0,0,0,0,0,3,@Saber,0,0,0,0,0,1,0,0,0,0,0,0,0,'Common Kitten - Linked with previous event - Morph to Corrupted Saber'), +(@CommonKitten,0,3,4,62,0,100,0,@SGossip,1,0,0,26,4506,0,0,0,0,0,7,0,0,0,0,0,0,0,'Common Kitten - On Gossip Select - Award quest,since no credit'), +(@CommonKitten,0,4,5,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Common Kitten - Linked with previous event - Close gossip'), +(@CommonKitten,0,5,6,61,0,100,0,0,0,0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Common Kitten - Linked with previous event - Set unseen'), +(@CommonKitten,0,6,0,61,0,100,0,0,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Common Kitten - Linked with previous event - Despawn in 1 sec'); +-- Insert Gossip /custom made id/ +DELETE FROM `gossip_menu_option` WHERE `menu_id`=@SGossip AND `id`=1; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`) VALUES +(@SGossip,1,0,'I want to release the saber to Winna.',1,131,0); +-- Only show gossip if near Winna +DELETE FROM `conditions` WHERE `SourceGroup`=@SGOSSIP AND `SourceTypeOrReferenceId`=15; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(15,@SGOSSIP,1,0,29,1,@Winna,5,0,0,0,'','Only show second gossip Corrupted Saber is near Wina in 5 yards'); +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Fix for Prepping the Speech by Gecko32 (Issue 2399) +SET @MEKKATORQUE :=39712; +SET @OZZIE :=1268; +SET @MILLI :=7955; +SET @TOG :=6119; +-- Add creature text for npc's +DELETE FROM `creature_text` WHERE `entry`=@MEKKATORQUE; +DELETE FROM `creature_text` WHERE `entry`=@OZZIE; +DELETE FROM `creature_text` WHERE `entry`=@MILLI; +DELETE FROM `creature_text` WHERE `entry`=@TOG; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(@MEKKATORQUE,0,0,'They may take our lives, but they''ll never take...',12,0,100,0,0,0,'High Tinker Mekkatorque to Milli Featherwhistle 1'), +(@MEKKATORQUE,1,0,'...our INNOVATION!',12,0,100,0,0,0,'High Tinker Mekkatorque to Milli Featherwhistle 2'), +(@MEKKATORQUE,2,0,'What I want out of each and every one of you is a hard-target search of every refuelling station, residence, warehouse, farmhouse, henhouse, outhouse, and doghouse in this area.',12,0,100,0,0,0,'High Tinker Mekkatorque to Ozzie Togglevolt 1'), +(@MEKKATORQUE,3,0,'Your fugitive''s name is Mekgineer Thermaplugg.',12,0,100,0,0,0,'High Tinker Mekkatorque to Ozzie Togglevolt 2'), +(@MEKKATORQUE,4,0,'Go get him.',12,0,100,0,0,0,'High Tinker Mekkatorque to Ozzie Togglevolt 3'), +(@MEKKATORQUE,5,0,'We will not go quietly into the night! We will not vanish without a fight!',12,0,100,0,0,0,'High Tinker Mekkatorque to Tog Rustsprocket 1'), +(@MEKKATORQUE,6,0,'We''re going to live on! We''re going to survive! Today we celebrate...',12,0,100,0,0,0,'High Tinker Mekkatorque to Tog Rustsprocket 2'), +(@MEKKATORQUE,7,0,'...our Autonomy Day!',12,0,100,0,0,0,'High Tinker Mekkatorque to Tog Rustsprocket 3'), +(@OZZIE,0,0,'Hmm, I suppose it could work. But it could really use a little more umph!',12,0,100,0,0,0,'Ozzie Togglevolt reply'), +(@MILLI,0,0,'What? I don''t even know what you''re talking about! That''s terrible!',12,0,100,0,0,0,'Milli Featherwhistle reply'), +(@TOG,0,0,'Horrible! Well, all right,maybe it just needs a little cleaning up?',12,0,100,0,0,0,'Tog Rustsprocket reply'); +-- Add SAI for Milli Featherwhistle +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@MILLI; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@MILLI; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@MILLI,0,0,0,8,0,100,1,74222,0,0,0,1,0,2000,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Milli Featherwhistle - On spell hit - High Tinker Mekkatorque say part1'), +(@MILLI,0,1,0,52,0,100,0,0,@MEKKATORQUE,0,0,1,1,4000,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Milli Featherwhistle - On text over - High Tinker Mekkatorque say part2'), +(@MILLI,0,2,3,52,0,100,0,1,@MEKKATORQUE,0,0,1,0,0,0,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,'Milli Featherwhistle - On text over - Reply'), +(@MILLI,0,3,4,61,0,100,0,0,0,0,0,33,@MILLI,0,0,0,0,0,7,0,0,0,0.0,0.0,0.0,0.0,'Milli Featherwhistle - On link - credit quest'), +(@MILLI,0,4,0,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Milli Featherwhistle - On link - set data 1'); +-- Add SAI for Ozzie Togglevolt +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@OZZIE; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@OZZIE; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@OZZIE,0,0,0,8,0,100,1,74222,0,0,0,1,2,2000,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Ozzie Togglevolt - On spell hit - High Tinker Mekkatorque say part1'), +(@OZZIE,0,1,0,52,0,100,0,2,@MEKKATORQUE,0,0,1,3,4000,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Ozzie Togglevolt - On text over - High Tinker Mekkatorque say part2'), +(@OZZIE,0,2,0,52,0,100,0,3,@MEKKATORQUE,0,0,1,4,4000,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Ozzie Togglevolt - On text over - High Tinker Mekkatorque say part3'), +(@OZZIE,0,3,4,52,0,100,0,4,@MEKKATORQUE,0,0,1,0,0,0,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,'Ozzie Togglevolt - On text over - Reply'), +(@OZZIE,0,4,5,61,0,100,0,0,0,0,0,33,@OZZIE,0,0,0,0,0,7,0,0,0,0.0,0.0,0.0,0.0,'Milli Featherwhistle - On link - credit quest'), +(@OZZIE,0,5,0,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Milli Featherwhistle - On link - set data 1'); +-- Add SAI for Tog Rustsprocket +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@TOG; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@TOG; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@TOG,0,0,0,8,0,100,1,74222,0,0,0,1,5,2000,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Tog Rustsprocket - On spell hit - High Tinker Mekkatorque say part1'), +(@TOG,0,1,0,52,0,100,0,5,@MEKKATORQUE,0,0,1,6,4000,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Tog Rustsprocket - On text over - High Tinker Mekkatorque say part2'), +(@TOG,0,2,0,52,0,100,0,6,@MEKKATORQUE,0,0,1,7,4000,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Tog Rustsprocket - On text over - High Tinker Mekkatorque say part3'), +(@TOG,0,3,4,52,0,100,0,7,@MEKKATORQUE,0,0,1,0,0,0,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,'Tog Rustsprocket - On text over - Reply'), +(@TOG,0,4,5,61,0,100,0,0,0,0,0,33,@TOG,0,0,0,0,0,7,0,0,0,0.0,0.0,0.0,0.0,'Tog Rustsprocket - On link - credit quest'), +(@TOG,0,5,0,61,0,100,0,0,0,0,0,45,1,1,0,0,0,0,11,@MEKKATORQUE,10,0,0.0,0.0,0.0,0.0,'Tog Rustsprocket - On link - set data 1'); +-- Add SAI for High Tinker Mekkatorque +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@MEKKATORQUE; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@MEKKATORQUE; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@MEKKATORQUE,0,0,0,38,0,100,1,1,1,0,0,41,1000,0,0,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,'High Tinker Mekkatorque - on data set- despawn'); +-- add prev quest id to both Words for Delivery +UPDATE `quest_template` SET `PrevQuestId`=25283 WHERE `Id`=25500;-- below 75 +UPDATE `quest_template` SET `PrevQuestId`=25283 WHERE `Id`=25286;-- 75+ +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Where the Wild Things Roam by Shlomi155 (Issue 3038) +-- Quest item will work only at Dragonblight and if the quest is incomplete! +DELETE FROM `conditions` WHERE SourceEntry=47627; +INSERT INTO `conditions` VALUES +(17,0,47627,0,0,9,0,12111,0,0,0,0,'',NULL), +(17,0,47627,0,0,23,0,65,0,0,0,0,'',NULL); +UPDATE `creature_template` SET AIName='SmartAI' WHERE entry IN (26615,26482); +DELETE FROM `creature_ai_scripts`where creature_id IN (26615,26482); +DELETE FROM `smart_scripts` WHERE entryorguid IN (26615,26482); +INSERT INTO `smart_scripts` VALUES +(26615,0,0,0,9,0,100,1,0,5,8000,12000,11,15976,0,0,0,0,0,2,0,0,0,0,0,0,0,'Snowfall Elk - Cast Puncture'), +(26615,0,1,2,23,0,100,1,47628,1,1,1,11,47675,0,0,0,0,0,1,0,0,0,0,0,0,0,'Snowfall Elk - On Aura - Cast Recently Inoculated'), +(26615,0,2,3,61,0,100,1,0,0,0,0,33,26895,0,0,0,0,0,18,40,0,0,0,0,0,0,'Snowfall Elk - Event Linked - Credit'), +(26615,0,3,0,61,0,100,1,0,0,0,0,41,5000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Snowfall Elk - Event Linked - Despawn Delay 5 Seconds'), +(26482,0,0,1,23,0,100,1,47628,1,1,1,11,47675,0,0,0,0,0,1,0,0,0,0,0,0,0,'Arctic Grizzly - On Aura - Cast Recently Inoculated'), +(26482,0,1,2,61,0,100,1,0,0,0,0,33,26882,0,0,0,0,0,18,40,0,0,0,0,0,0,'Arctic Grizzly - Event Linked - Credit'), +(26482,0,2,0,61,0,100,1,0,0,0,0,41,5000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Arctic Grizzly - Event Linked - Despawn Delay 5 Seconds'); +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- [Q] [A/H] Catch the Wild Wolpertinger! by Discover (Issue 3131) +-- Wild Wolpertinger SAI +SET @WOLPERTINGER :=23487; +SET @SPELL_NET :=41621; +SET @SPELL_CREATE_ITEM :=41622; +UPDATE `creature_template` SET `AIName`='SmartAI',`unit_flags`=`unit_flags`|512 WHERE `entry`=@WOLPERTINGER; +UPDATE `creature` SET `position_x`=24.539537 WHERE `guid`=207045 AND `id`=@WOLPERTINGER; -- For some reason this one was spawned in air +DELETE FROM `creature_ai_scripts` WHERE `creature_id`=@WOLPERTINGER; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@WOLPERTINGER; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@WOLPERTINGER,0,0,1,8,0,100,0,@SPELL_NET,0,0,0,11,@SPELL_CREATE_ITEM,2,0,0,0,0,7,0,0,0,0,0,0,0,"Wild Wolpertinger - On Spellhit - Cast Create Stunned Wolpertinger Item"), +(@WOLPERTINGER,0,1,0,61,0,100,0,0,0,0,0,41,4000,0,0,0,0,0,1,0,0,0,0,0,0,0,"Wild Wolpertinger - On Spellhit - Forced Despawn"); +-- Condition for spell Wolpertinger Net +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=@SPELL_NET; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(17,0,@SPELL_NET,0,0,31,1,3,@WOLPERTINGER,0,0,0,'','Net can only hit Wolpertingers'); +-- Update Wolpetinger flags to remove immunity to players,was 768 before +UPDATE `creature_template` SET `unit_flags`=512 WHERE `entry`=@WOLPERTINGER; +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Fix quest Blinding the Eyes in the Sky ID: 13313 by Trista (Issue 3225) +SET @ReconFighter :=32189; +SET @Spell :=60079; +-- Add SAI support Skybreaker Recon +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ReconFighter; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ReconFighter; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ReconFighter,0,0,1,8,0,100,0,@Spell,0,0,0,33,@ReconFighter,0,0,0,0,0,7,0,0,0,0,0,0,0,'Skybreaker Recon - On spell hit - Give kill credit to invoker'), +(@ReconFighter,0,1,0,61,0,100,0,0,0,0,0,37,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Skybreaker Recon - Linked with previous event - Kill self'); +-- Update Vehicle_Accesorry to die along with the vehicle,otherwise little untargetable dwards fall on ground +UPDATE `vehicle_template_accessory` SET `minion`=1 WHERE `entry`=32189 AND `seat_id`=0; +-- Add conditions for spell to target only alive Recons +DELETE FROM `conditions` WHERE `SourceEntry`=@Spell and `SourceTypeOrReferenceId`=17; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(17,0,@Spell,0,0,36,1,0,0,0,0,0,'','Fire SGM-3 can hit only alive Recon Fighter'), +(17,0,@Spell,0,0,31,1,3,@ReconFighter,0,0,0,'','Fire SGM-3 can hit Recon Fighter'); +-- Keeping the Alliance Blind ID: 13331 quest requirements +UPDATE `quest_template` SET `PrevQuestId`=13313 WHERE `Id`=13331; +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Cleansing Drak'Tharon by gecko32 (Issue 3351) +-- Update Item Enduring Mojo is normal drop not quest drop +UPDATE `creature_loot_template` SET `ChanceOrQuestChance` = ABS(`ChanceOrQuestChance`) WHERE `item`=38303; +-- Add gossip menu option +DELETE FROM `gossip_menu_option` WHERE `menu_id`=9615 AND `id`=1; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES +(9615,1,0,'I need another of your elixirs, Drakuru.',1,1,0,0,0,0,''); +-- Add Conditions for Gossip +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9615 AND `SourceEntry`=1; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(15,9615,1,0,1,2,0,35797,1,0,1,0,'','Drakuru''s Elixir - Must not already have item'), +(15,9615,1,0,1,28,0,11991,0,0,0,0,'','Drakuru''s Elixir - Must have quest Subject to Interpretation'), +(15,9615,1,0,2,2,0,35797,1,0,1,0,'','Drakuru''s Elixir - Must not already have item'), +(15,9615,1,0,2,9,0,12007,0,0,0,0,'','Drakuru''s Elixir - Must have quest Sacrifices Must be Made'), +(15,9615,1,0,3,2,0,35797,1,0,1,0,'','Drakuru''s Elixir - Must not already have item'), +(15,9615,1,0,3,28,0,12802,0,0,0,0,'','Drakuru''s Elixir - Must have quest My Heart is in Your Hands'), +(15,9615,1,0,4,2,0,35797,1,0,1,0,'','Drakuru''s Elixir - Must not already have item'), +(15,9615,1,0,4,9,0,12068,0,0,0,0,'','Drakuru''s Elixir - Must have quest Voices From the Dust'), +(15,9615,1,0,5,2,0,35797,1,0,1,0,'','Drakuru''s Elixir - Must not already have item'), +(15,9615,1,0,5,28,0,12238,0,0,0,0,'','Drakuru''s Elixir - Must have quest Cleansing Drak''Tharon'); +-- Add SmartAI to give item +DELETE FROM `smart_scripts` WHERE `entryorguid`=26423 AND `id` IN (2,3); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(26423,0,2,3,62,0,100,0,9615,1,0,0,11,50021,2,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru - On gossip option select - cast Replace Drakuru''s Elixir'), +(26423,0,3,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru - On gossip option select - close gossip'); +-- Add TEMP Drakuru's Brazier In Drak'tharon Keep +DELETE FROM `gameobject` WHERE `guid`=364; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(364,300188,600,3,1,-236.766,-614.774,116.487,1.5708,0,0,0,1,300,100,1); +-- Conditions for spell Target +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=47110; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,47110,0,1,31,0,3,26498,0,0,0,'',NULL),-- Drakuru's Bunny 01 +(13,1,47110,0,2,31,0,3,26559,0,0,0,'',NULL),-- Drakuru's Bunny 02 +(13,1,47110,0,3,31,0,3,26700,0,0,0,'',NULL),-- Drakuru's Bunny 03 +(13,1,47110,0,4,31,0,3,26789,0,0,0,'',NULL),-- Drakuru's Bunny 04 +(13,1,47110,0,5,31,0,3,28015,0,0,0,'',NULL); -- Drakuru's Bunny 05 +-- Add Smart AI Drakuru Bunny +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (26498,26559,26700,26789,28015); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (26498,26559,26700,26789,28015); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(26498,0,0,0,8,0,100,0,47110,0,0,0,12,26500,3,50000,0,0,0,8,0,0,0,3386.26,-1805.32,114.909,4.945,'Drakuru Bunny 01- On Spellhit - Summmon Image of Drakuru'), +(26559,0,0,0,8,0,100,0,47110,0,0,0,12,26543,3,50000,0,0,0,8,0,0,0,4243.98,-2025.08,238.248,1.431,'Drakuru Bunny 02- On Spellhit - Summmon Image of Drakuru'), +(26700,0,0,0,8,0,100,0,47110,0,0,0,12,26701,3,50000,0,0,0,8,0,0,0,4523.94,-3472.9,228.393,-0.803,'Drakuru Bunny 03- On Spellhit - Summmon Image of Drakuru'), +(26789,0,0,0,8,0,100,0,47110,0,0,0,12,26787,3,50000,0,0,0,8,0,0,0,4599.09,-4875.82,48.956,0.748,'Drakuru Bunny 04- On Spellhit - Summmon Image of Drakuru'), +(28015,0,0,0,8,0,100,0,47110,0,0,0,12,28016,3,50000,0,0,0,8,0,0,0,-236.77,-618.61,116.475,4.727,'Drakuru Bunny 05- On Spellhit - Summmon Drakuru'); +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Fix Neutralizing the Cauldrons (11647) quest by Shlomi1515 (Issue 3432) +UPDATE `creature_template` SET flags_extra='128', AIName='SmartAI' WHERE entry IN (25493,25490,25492); +DELETE FROM `smart_scripts` WHERE entryorguid IN (25493,25490,25492); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(25493,0,0,0,8,0,100,0,45653,0,0,0,33,25493,0,0,0,0,0,7,0,0,0,0,0,0,0,'West Enkilah Cauldron - On Spell Hit - Kil Credit'), +(25490,0,0,0,8,0,100,0,45653,0,0,0,33,25490,0,0,0,0,0,7,0,0,0,0,0,0,0,'East Enkilah Cauldron - On Spell Hit - Kil Credit'), +(25492,0,0,0,8,0,100,0,45653,0,0,0,33,25492,0,0,0,0,0,7,0,0,0,0,0,0,0,'Central Enkilah Cauldron - On Spell Hit - Kil Credit'); +-- --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Hallow's End Treats for Jesper/spoops 8311/8312 (Issue 3548) +-- Flexing for Nougat (Alliance) +SET @INNKEEPER=6740; +SET @QUEST=8356; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@INNKEEPER AND `id`=2; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@INNKEEPER,0,2,0,22,0,100,0,41,0,0,0,33,@INNKEEPER,0,0,0,0,0,7,0,0,0,0,0,0,0,'Innkeeper Allison - on /flex credit for quest'); +DELETE FROM `conditions` WHERE `SourceEntry`=@QUEST; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(19,0,@QUEST,0,12,12,0,0,0,'',NULL); +-- Chicken Clucking for a Mint (Alliance) +SET @INNKEEPER=5111; +SET @QUEST=8353; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@INNKEEPER AND `id`=2; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@INNKEEPER,0,2,0,22,0,100,0,22,0,0,0,33,@INNKEEPER,0,0,0,0,0,7,0,0,0,0,0,0,0,'Innkeeper Firebrew - on /chicken credit for quest'); +DELETE FROM `conditions` WHERE `SourceEntry`=@QUEST; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(19,0,@QUEST,0,12,12,0,0,0,'',NULL); +-- Dancing for Marzipan (Alliance) +SET @INNKEEPER=6735; +SET @QUEST=8357; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@INNKEEPER AND `id`=2; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@INNKEEPER,0,2,0,22,0,100,0,34,0,0,0,33,@INNKEEPER,0,0,0,0,0,7,0,0,0,0,0,0,0,'Innkeeper Saelienne - on /dance credit for quest'); +DELETE FROM `conditions` WHERE `SourceEntry`=@QUEST; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(19,0,@QUEST,0,12,12,0,0,0,'',NULL); +-- Incoming Gumdrop (Alliance) +SET @INNKEEPER=6826; +SET @QUEST=8355; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@INNKEEPER; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@INNKEEPER; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@INNKEEPER,0,0,0,22,0,100,0,264,0,0,0,33,@INNKEEPER,0,0,0,0,0,7,0,0,0,0,0,0,0,'Talvash del Kissel - on /train credit for quest'); +DELETE FROM `conditions` WHERE `SourceEntry`=@QUEST; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(19,0,@QUEST,0,12,12,0,0,0,'',NULL); +-- Flexing for Nougat (Horde) +SET @INNKEEPER=6929; +SET @QUEST=8359; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@INNKEEPER AND `id`=2; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@INNKEEPER,0,2,0,22,0,100,0,41,0,0,0,33,@INNKEEPER,0,0,0,0,0,7,0,0,0,0,0,0,0,'Innkeeper Gryshka - on /flex credit for quest'); +DELETE FROM `conditions` WHERE `SourceEntry`=@QUEST; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(19,0,@QUEST,0,12,12,0,0,0,'',NULL); +-- Chicken Clucking for a Mint (Horde) +SET @INNKEEPER=6741; +SET @QUEST=8354; +-- SAI +UPDATE `smart_scripts` SET `link`=3 WHERE `entryorguid`=@INNKEEPER AND `id`=2; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@INNKEEPER AND `id`=3; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@INNKEEPER,0,3,0,61,0,100,0,0,0,0,0,15,@QUEST,0,0,0,0,0,7,0,0,0,0,0,0,0,'Innkeeper Norman - Link - exploreded for quest'); +-- conditions +DELETE FROM `conditions` WHERE `SourceEntry`=@QUEST; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(19,0,@QUEST,0,0,12,0,12,0,0,0,0,'',"Quest avialable only during Hallow's End event"); +-- Dancing for Marzipan (Horde) +SET @INNKEEPER=6746; +SET @QUEST=8360; +SET @GOSSIP=21215; +UPDATE `creature_template` SET `AIName`='SmartAI',`ScriptName`='' WHERE `entry`=@INNKEEPER; +-- Add trick or treat SAI since the .cpp script was removed +DELETE FROM `smart_scripts` WHERE `entryorguid`=@INNKEEPER; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@INNKEEPER,0,0,1,62,0,100,0,@GOSSIP,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Innkeeper Pala - On gossip option 0 select - Close gossip'), +(@INNKEEPER,0,1,0,61,0,100,0,0,0,0,0,85,24751,0,0,0,0,0,7,0,0,0,0,0,0,0,'Innkeeper Pala - On gossip option 0 select - Player cast Trick or Treat on self'), +(@INNKEEPER,0,2,0,22,0,100,0,34,0,0,0,33,@INNKEEPER,0,0,0,0,0,7,0,0,0,0,0,0,0,'Innkeeper Pala - on /dance credit for quest'); +-- Add gossip menu option for trick or treat +DELETE FROM `gossip_menu_option` WHERE `menu_id`=@GOSSIP; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES +(@GOSSIP,1,5,'Make this inn your home.',8,65536,0,0,0,0,''), +(@GOSSIP,2,1,'I want to browse your goods',3,128,0,0,0,0,''), +(@GOSSIP,0,0,'Trick or Treat!',1,1,0,0,0,0,''); +-- Add conditions must be hallows end for Dancing for Marzipan quest and trick or treat option +DELETE FROM `conditions` WHERE `SourceEntry`=@QUEST; +DELETE FROM `conditions` WHERE `SourceGroup`=@GOSSIP; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(19,0,@QUEST,0,12,12,0,0,0,'',NULL), +(15,@GOSSIP,0,0,12,12,0,0,0,'',NULL); +-- Incoming Gumdrop (Horde) +SET @INNKEEPER=11814; +SET @QUEST=8358; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@INNKEEPER; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@INNKEEPER; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@INNKEEPER,0,0,0,22,0,100,0,264,0,0,0,33,@INNKEEPER,0,0,0,0,0,7,0,0,0,0,0,0,0,'Kali Remik - on /train credit for quest'); +DELETE FROM `conditions` WHERE `SourceEntry`=@QUEST; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(19,0,@QUEST,0,12,12,0,0,0,'',NULL); diff --git a/sql/updates/world/2012_11_14_02_world_battleground_template.sql b/sql/updates/world/2012_11_14_02_world_battleground_template.sql new file mode 100644 index 00000000000..b69216ea380 --- /dev/null +++ b/sql/updates/world/2012_11_14_02_world_battleground_template.sql @@ -0,0 +1,3 @@ +DELETE FROM `battleground_template` WHERE `id` = 6; +INSERT INTO `battleground_template` (`id`, `MinPlayersPerTeam`, `MaxPlayersPerTeam`, `MinLvl`, `MaxLvl`, `AllianceStartLoc`, `AllianceStartO`, `HordeStartLoc`, `HordeStartO`, `StartMaxDist`, `Weight`, `ScriptName`, `Comment`) VALUES +(6,0,2,10,80,0,0,0,0,0,1,'','All Arena'); diff --git a/sql/updates/world/2012_09_22_00_world_utgarde.sql b/sql/updates/world/2012_11_16_00_world_utgarde.sql index 83cc227f9cd..1948796a77b 100644 --- a/sql/updates/world/2012_09_22_00_world_utgarde.sql +++ b/sql/updates/world/2012_11_16_00_world_utgarde.sql @@ -2,7 +2,7 @@ DELETE FROM `creature_loot_template` WHERE `entry`=31671; -- Savage worg DELETE FROM `creature_loot_template` WHERE `entry`=31678 AND `item` IN(39211,39212,33454); -INSERT INTO `creature_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `mincountOrRef`, `maxcount`) VALUES +INSERT INTO `creature_loot_template` (`entry`, `item`, `ChanceOrQuestChance`, `mincountOrRef`, `maxcount`) VALUES (31678,39211,70,3,5), (31678,39212,16,2,4), (31678,33454, 3,1,1); @@ -35,7 +35,7 @@ UPDATE `creature_template` SET `unit_flags`=2|4|256|512, `faction_A`=35, `factio -- Dragonflayer runecaster DELETE FROM `creature_ai_scripts` WHERE `creature_id`=23960; DELETE FROM `smart_scripts` WHERE `entryorguid`=23960 AND `source_type`=0; -INSERT INTO `smart_scripts` (`entryorguid`, `id`, `event_type`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `target_type`, `target_param2`, `comment`) VALUES +INSERT INTO `smart_scripts` (`entryorguid`, `id`, `event_type`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `target_type`, `target_param2`, `comment`) VALUES (23960,1,0,2,5000,7000,14000,17000,11,42740,11,30,'Dragonflayer Runecaster - In combat - Cast Njords Rune of Protection'), (23960,2,0,4,5000,7000,14000,17000,11,59616,11,30,'Dragonflayer Runecaster - In combat - Cast Njords Rune of Protection'), (23960,3,0,2,1000,2000,15000,18000,11,54965, 1, 0,'Dragonflayer Runecaster - In combat - Cast Bolthorns Rune of Flame'), @@ -48,7 +48,7 @@ INSERT INTO `smart_scripts`(`entryorguid`,`event_type`,`event_param1`,`event_par (28419,0,5000,5000,30000,30000,11,40414,5,'Frenzied geist - In combat - Cast Fixate'); -- Difficulty data for spells used in utgarde keep -DELETE FROM `spelldifficulty_dbc` WHERE `id` IN(42669,42708,42750,42723,42729,43667,42702) OR `spellid0` IN(42669,42708,42750,42723,42729,43667,42702); +DELETE FROM `spelldifficulty_dbc` WHERE `id` IN(42669,42708,42750,42723,42729,43667,42702,50653,43931) OR `spellid0` IN(42669,42708,42750,42723,42729,43667,42702,50653,43931); INSERT INTO `spelldifficulty_dbc`(`id`,`spellid0`,`spellid1`) VALUES (42669,42669,59706), -- Smash (42708,42708,59708), -- Staggering Roar @@ -56,11 +56,13 @@ INSERT INTO `spelldifficulty_dbc`(`id`,`spellid0`,`spellid1`) VALUES (42723,42723,59709), -- Dark Smash (42729,42729,59734), -- Dreadful Roar (43667,43667,59389), -- Shadow Bolt -(42702,42702,59397); -- Decrepify +(42702,42702,59397), -- Decrepify +(50653,50653,59692), -- Flame Breath +(43931,43931,59691); -- Rend -- Ticking Time Bomb, Fixate DELETE FROM `spell_script_names` WHERE `spell_id` IN(59686,40414); -INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES (59686,'spell_ticking_time_bomb'), (40414,'spell_fixate'); @@ -88,7 +90,7 @@ INSERT INTO `creature_addon`(`guid`,`path_id`,`mount`,`bytes1`,`bytes2`,`auras`) -- Waypoint data DELETE FROM `waypoint_data` WHERE `id` IN (1259400,1259340,1259150,1259200,1259140,1259360,1259370,1259220); -INSERT INTO `waypoint_data`(`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES +INSERT INTO `waypoint_data`(`id`,`point`,`position_x`,`position_y`,`position_z`) VALUES (1259400,1,211.864,-352.629,196.144), (1259340,1,271.911,-318.506,185.049), (1259150,1,265.478,-199.246,186.812), diff --git a/sql/updates/world/2012_11_16_01_world_utgarde.sql b/sql/updates/world/2012_11_16_01_world_utgarde.sql new file mode 100644 index 00000000000..30a64b02e3a --- /dev/null +++ b/sql/updates/world/2012_11_16_01_world_utgarde.sql @@ -0,0 +1,39 @@ +-- Areatrigger script +DELETE FROM `areatrigger_scripts` WHERE `entry`=4838; +INSERT INTO `areatrigger_scripts`(`entry`,`ScriptName`) VALUES +(4838,'SmartTrigger'); + +DELETE FROM `smart_scripts` WHERE `entryorguid`=4838 AND `source_type`=2; +INSERT INTO `smart_scripts`(`entryorguid`,`source_type`,`event_type`,`event_param1`,`action_type`,`action_param1`,`action_param2`,`target_type`,`target_param1`,`comment`) VALUES +(4838,2,46,4838,45,28,6,10,125946,'Areatrigger in Utgarde Keep near Ingvar - On trigger - Set data of Enslaved Proto Drake'); + +-- Template updates for proto drake and rider +UPDATE `creature_template` SET `AIName`='',`ScriptName`='npc_enslaved_proto_drake' WHERE `entry`=24083; -- Proto drake non heroic +UPDATE `creature_template` SET `InhabitType`=4 WHERE `entry` IN (24849,31676); -- Proto drake rider + +-- Waypoints for core script +DELETE FROM `waypoint_data` WHERE `id`=125946; +INSERT INTO `waypoint_data`(`id`,`point`,`position_x`,`position_y`,`position_z`,`move_flag`) VALUES +(125946,1,210.92,-185.92,203.729,1), +(125946,2,215.397,-181.239,205.773,1), +(125946,3,219.674,-176.469,202.97,1), +(125946,4,223.183,-172.761,200.058,1), +(125946,5,228.007,-168.952,196.713,1), +(125946,6,230.514,-167.104,195.116,1), +(125946,7,235.687,-163.455,192.13,1), +(125946,8,239.569,-161.025,190.346,1); + +-- Mount the rider to the drake +DELETE FROM `vehicle_template_accessory` WHERE `entry`=24083; +INSERT INTO `vehicle_template_accessory`(`entry`,`accessory_entry`,`seat_id`,`minion`,`description`,`summontype`,`summontimer`) VALUES +(24083,24849,0,0,'Proto Drake Rider mounted to Enslaved Proto Drake',6,30000); + +-- Create required spellclick information +DELETE FROM `npc_spellclick_spells` WHERE `npc_entry`=24083; +INSERT INTO `npc_spellclick_spells`(`npc_entry`,`spell_id`,`cast_flags`) VALUES +(24083,55074,1); + +-- Remove no longer needed data +DELETE FROM `creature` WHERE `guid`=125912 AND `map`=574 AND `id`=24849; +DELETE FROM `creature_addon` WHERE `guid`=125912; +DELETE FROM `creature_ai_scripts` WHERE `creature_id`=24083; diff --git a/sql/updates/world/2012_11_16_02_world_creature_ai_summons.sql b/sql/updates/world/2012_11_16_02_world_creature_ai_summons.sql new file mode 100644 index 00000000000..7d2caf76e33 --- /dev/null +++ b/sql/updates/world/2012_11_16_02_world_creature_ai_summons.sql @@ -0,0 +1 @@ +DROP TABLE `creature_ai_summons`; diff --git a/sql/updates/world/2012_11_17_00_world_various_fixes.sql b/sql/updates/world/2012_11_17_00_world_various_fixes.sql new file mode 100644 index 00000000000..981d378217f --- /dev/null +++ b/sql/updates/world/2012_11_17_00_world_various_fixes.sql @@ -0,0 +1,834 @@ +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3132: Horde Brewfest Vendors +-- add Ray'ma <Brew of the Month Club> (27489) +DELETE FROM `creature` WHERE `id`=27489; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +(42662,27489,1,1,1,0,0,1472.608,-4209.172,43.26931,4.433136,600,0,0,7500,1,0,0,0,0); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3563: Mistcaller Yngvar +-- Deletes incorrectly spawned Mistcaller Yngvar +DELETE FROM `creature` WHERE `id`=34965; +-- Spawns missing Spell Focus for Mistcaller's Cave +DELETE FROM `gameobject` WHERE `guid`=365; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(365,300006,571,1,1,10184.8,1184.6,75.892,2.7989,0,0,0.985356,0.170509,300,0,1); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3635: The Test of Skulls, Somnus +-- Spawn Somnus (12900) NPC needed for The Test of Skulls, Somnus (6583) quest fix by shlomi1515 +SET @NPC :=12900; +UPDATE `creature_template` SET AIName='SmartAI', Mechanic_Immune_Mask=2147483647 WHERE entry=@NPC; +DELETE FROM `creature` WHERE id=@NPC; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +(42880,@NPC,0,1,1,0,0,-10444.5,-4096.17,28.9469,2.91185,300,0,0,38844,0,2,0,0,0); +DELETE FROM `smart_scripts` WHERE `entryorguid`=@NPC AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@NPC,0,0,0,13,0,100,0,75000,75000,75000,75000,11,20989,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Somnus - Target is Casting - Cast Sleep'), +(@NPC,0,1,0,13,0,100,0,85000,85000,85000,85000,11,12882,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Somnus - Target is Casting - Cast Wing Flap'), +(@NPC,0,2,0,0,0,100,0,0,5000,30000,30000,11,20667,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Somnus - IC - Cast Corrosive Acid Breath'), +(@NPC,0,3,0,0,0,100,0,7000,9000,14000,20000,11,18368,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Somnus - IC - Cast Strike'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3678: Joys of Omosh +-- Orokk Omosh SAI +SET @ENTRY := 7790; +SET @QUEST := 2755; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY; +UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST; +DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0, 'Orokk Omosh - On Quest Accept - Run Script'), +(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,5,10,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Orokk Omosh - On Script - Start Dancing'), +(@ENTRY*100,9,1,0,0,0,100,0,30000,30000,0,0,5,26,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Orokk Omosh - On Script - Stop Dancing'), +(@ENTRY*100,9,2,0,0,0,100,0,33000,33000,0,0,15,@QUEST,0,0,0,0,7,0,0,0,0,0,0,0,0, 'Orokk Omosh - On Script - Quest Credit'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3679: Gnomer-gooooone! +-- Raschal the Courier SAI +SET @ENTRY := 7853; +SET @QUEST := 2843; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY; +UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST; +DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY,@ENTRY*100); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,80,@ENTRY*100,0,2,0,0,0,1,0,0,0,0,0,0,0, 'Scooty - On Quest Accept - Run Script'), +(@ENTRY*100,9,0,0,0,0,100,0,10000,10000,0,0,15,@QUEST,0,0,0,0,7,0,0,0,0,0,0,0,0, 'Scooty - On Script - Quest Credit'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3680: Test of Faith +-- Dorn Plainstalker SAI +SET @ENTRY := 2986; +SET @QUEST := 1149; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@ENTRY; +UPDATE `quest_template` SET `StartScript`=0,`CompleteScript`=0 WHERE `id`=@QUEST; +DELETE FROM `quest_start_scripts` WHERE `id`=@QUEST; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,19,0,100,0,@QUEST,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Dorn Plainstalker - On Quest Accept - Say Line 0'); +-- Text +DELETE FROM `db_script_string` WHERE `entry`=2000000042; +DELETE FROM `creature_text` WHERE `entry`=@ENTRY; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(@ENTRY,0,0, 'Until we meet again, brave one.',12,0,100,113,0,0, 'Dorn Plainstalker'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3749: Frankly,It Makes No Sense +SET @Scorp := 21909; -- Arcano-Scorp +SET @CreditGuid := 84902; -- There is unused spawn of this +SET @Guid1 := 43463; -- TC team values should be set here -> add missing scorp spawn +SET @Guid2 := 43464; -- TC team values should be set here -> add missing scorp spawn +SET @Control1 := 37867; -- Trigger /connected with dismissing to make vehicle not attack master/ +SET @Control1_1 := 37868; -- Control /apply control aura without target/ +SET @Control2 := 37892; -- -//- +SET @Control2_2 := 37893; -- -//- +SET @Control3 := 37894; -- -//- +SET @Control3_3 := 37895; -- -//- +SET @Diametron := 21462; -- Greater Fellfire Diametron +-- Arcano-Scorp spells: +SET @Tag := 37851; -- Tag Greater Felfire Diemetradon +SET @Arcano_Cloak := 37917; +SET @Arcano_dismantle := 37919; +SET @Arcano_pince := 37918; +-- Add spawns for two missing Arcano-Scorps +UPDATE `creature_template` SET `AIName`='PetAI',`unit_flags`=512,`MovementType`=1,`spell4`=@Tag,`spell5`=@Arcano_Cloak,`spell6`=@Arcano_dismantle,`spell7`=@Arcano_pince WHERE `entry`=@Scorp; +UPDATE `creature` SET `MovementType`=1,`spawndist`=3,`position_x`=-3414.004,`position_y`=825.4113,`position_z`=-30.77301 WHERE `guid`=76655; +DELETE FROM `creature` WHERE `guid` IN (@Guid1,@Guid2,@CreditGuid); +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`MovementType`) VALUES +(@Guid1,@Scorp,530,1,1,-3414.294,813.9421,-31.12042,1.478481,30,3,0,1), +(@Guid2,@Scorp,530,1,1,-3408.508,795.8544,-31.42966,1.452154,30,3,0,1); +-- Spell script for trigger of control spell *will rewrite it once SAI spell script is released* +DELETE FROM `spell_scripts` WHERE `id` IN (@Control1,@Control2,@Control3); +INSERT INTO `spell_scripts` (`id`,`effindex`,`delay`,`command`,`datalong`,`datalong2`) VALUES +(@Control1,0,0,15,@Control1_1,2), +(@Control2,0,0,15,@Control2_2,2), +(@Control3,0,0,15,@Control3_3,2); +-- Limit @Tag only to Diametrons,also to ones not affected by it +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=@Tag; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(17,0,@Tag,0,0,31,1,3,@Diametron,0,0,0, '', 'Tag can only target Greater Felfire Diametrons'), +(17,0,@Tag,0,0,1,1,@Tag,0,0,1,0, '', 'Tag cannot be casted on tagged Diametrons'); +-- Limit Arcano_Dismantle to not being able to hit self and cannot damage anything else beside Arcano-scorp +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=@Arcano_dismantle; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,@Arcano_dismantle,0,0,33,1,0,1,0,1,0, '', 'Arcano-Dismantle effect 0 cannot hit self'), +(13,2,@Arcano_dismantle,0,0,33,1,0,1,0,1,0, '', 'Arcano-Dismantle effect 1 cannot hit self'), +(13,1,@Arcano_dismantle,0,0,31,0,3,@Scorp,0,0,0, '', 'Arcano-Dismantle effect 0 can hit only Arcano-Scorp'), +(13,2,@Arcano_dismantle,0,0,31,0,3,@Scorp,0,0,0, '', 'Arcano-Dismantle effect 1 can hit only Arcano-Scorp'); +-- Limit @Arcano_pince to not being able to hit self and cannot damage anything else beside Arcano-scorp +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=@Arcano_pince; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,@Arcano_pince,0,0,33,1,0,1,0,1,0, '', 'Arcano_pince effect 0 cannot hit self'), +(13,1,@Arcano_pince,0,0,31,0,3,@Scorp,0,0,0, '', 'Arcano_pince effect 0 can hit only Arcano-Scorp'); +-- Add SAI for Greater Diametron to prevent some bugs +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@Diametron; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@Diametron; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@Diametron,0,0,0,0,0,100,0,4500,5000,5000,7000,11,37945,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Greater Fellfire Diametron - IC - Cast Fel Fireball'), +(@Diametron,0,1,0,0,0,100,0,1500,3000,15000,17000,11,37941,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Greater Fellfire Diametron - IC - Cast Flaming Wound'), +(@Diametron,0,2,3,8,0,100,0,@Tag,0,0,0,90,256,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Greater Fellfire Diametron - On hit by spell Tag - Set bytes to wipe aggro'), +(@Diametron,0,3,4,61,0,100,0,0,0,0,0,91,256,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Greater Fellfire Diametron - Linked with previous event - Remove bytes'), +(@Diametron,0,4,0,61,0,100,0,0,0,0,0,75,@Tag,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Greater Fellfire Diametron - Linked with previous event - Add Tag aura on self'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3809: You Robot +DELETE FROM `creature_ai_scripts` WHERE creature_id=19851; +UPDATE `creature_template` SET AIName='SmartAI' WHERE `entry`=19851; +DELETE FROM `smart_scripts` WHERE entryorguid=19851; +INSERT INTO `smart_scripts` VALUES +(19851,0,0,0,9,0,100,0,8,25,15000,21000,11,35570,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Negatron - Cast Charge'), +(19851,0,1,0,9,0,100,0,0,5,15000,21000,11,34625,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Negatron - Cast Demolish'), +(19851,0,2,0,0,0,100,0,15000,19000,21000,25000,11,35565,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Negatron - Cast Earthquake'), +(19851,0,3,0,2,0,100,0,0,50,16000,22000,11,34624,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Negatron - Cast Frenzy at 50% HP'), +(19851,0,4,0,6,0,100,0,0,0,0,0,15,10248,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Negatron - Death - Quest Complete'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3822: Deaths Door +-- Fix quest 10910 'Deaths Door' +-- Evergrove Druid SAI +SET @ENTRY := 22423; +UPDATE `creature_template` SET `inhabittype`=4,`AIName`= 'SmartAI' WHERE `entry`=@ENTRY; +UPDATE `creature_template_addon` SET `bytes1`=0,`bytes2`=1,`mount`=0,`emote`=0,`auras`=NULL WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,1,8,0,100,1,38782,0,0,0,11,38776,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Evergrove Druid - On hit by signal - transform to crow'), +(@ENTRY,0,1,2,61,0,100,0,0,0,0,0,19,33554432,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Evergrove Druid - On hit by signal - Remove field flag'), +(@ENTRY,0,2,3,61,0,100,0,0,0,0,0,69,0,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Evergrove Druid - On hit by signal - Follow player invoker'), +(@ENTRY,0,3,0,61,0,100,0,0,0,0,0,81,2,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Evergrove Druid - On hit by signal - Set npcflag = 2'), +(@ENTRY,0,4,5,64,0,100,1,0,0,0,0,11,39158,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Evergrove Druid - On gossip hello - transform to druid, since end point for follow can''t be player'), +(@ENTRY,0,5,0,61,0,100,0,0,0,0,0,41,60000,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Evergrove Druid - After 60 sec - despawn'), +(@ENTRY,0,6,0,19,0,100,0,10904,0,0,0,41,10000,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Evergrove Druid - On target accepted next quest - despawn'), +(@ENTRY,0,7,0,19,0,100,0,10911,0,0,0,41,10000,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Evergrove Druid - On target accepted next quest - despawn'), +(@ENTRY,0,8,0,19,0,100,0,10912,0,0,0,41,10000,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Evergrove Druid - On target accepted next quest - despawn'), +(@ENTRY,0,9,0,11,0,100,0,0,0,0,0,83,2,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Evergrove Druid - On Spawn - Remove quest flag'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3930: Evil Draws Near +-- Teribus the Cursed is out of combat when is finally summoned by players +UPDATE `creature_template` SET `unit_flags`=`unit_flags`&~256 WHERE `entry`=22441; -- removing OOC +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +DELETE FROM `creature` WHERE `guid`=42889; +INSERT INTO creature(`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) +VALUES (42889,34675,0,1,1,0,0,-9133.91,355.333,92.3983,2.0151,300,0,0,1524,0,0,0,0,0); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 3761 Day of the Dead +-- Day of the Dead +SET @ENTRY := 34383; -- Catrina +DELETE FROM `creature_template_addon` WHERE `entry`=@ENTRY; +INSERT INTO `creature_template_addon` (`entry`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(@ENTRY,0,0,0,10,NULL); +UPDATE `quest_template` SET `RequiredRaces`=512 WHERE `Id`=14171; +UPDATE `quest_template` SET `RequiredRaces`=1024 WHERE `Id`=14169; +-- Invisibility aura for Cheerful Spirits +DELETE FROM `creature_template_addon` WHERE `entry` IN (35256,34435,34435,34478,34481,34484,34479,34483,34476,34477,34480,34482,35260,35261); +INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(35256,0,0,0,0,0,30628), -- Cheerful Dalaran Spirit +(34435,0,0,0,0,0,30628), -- Cheerful Human Spirit +(34478,0,0,0,0,0,30628), -- Cheerful Dwarf Spirit +(34481,0,0,0,0,0,30628), -- Cheerful Gnome Spirit +(34484,0,0,0,0,0,30628), -- Cheerful Draenei Spirit +(34479,0,0,0,0,0,30628), -- Cheerful Night Elf Spirit +(34483,0,0,0,0,0,30628), -- Cheerful Blood Elf Spirit +(34476,0,0,0,0,0,30628), -- Cheerful Forsaken Spirit +(34477,0,0,0,0,0,30628), -- Cheerful Orc Spirit +(34480,0,0,0,0,0,30628), -- Cheerful Tauren Spirit +(34482,0,0,0,0,0,30628), -- Cheerful Troll Spirit +(35260,0,0,0,0,0,30628), -- Cheerful Aldor Spirit +(35261,0,0,0,0,0,30628); -- Cheerful Scryer Spirit +-- Quest relations +DELETE FROM `creature_questrelation` WHERE `id` IN (35256,34435,34435,34478,34481,34484,34479,34483,34476,34477,34480,34482,35260,35261); +INSERT INTO `creature_questrelation` (`id`, `quest`) VALUES +(34435,13952), +(34476,14174), +(34477,14175), +(34478,14167), +(34479,14170), +(34480,14176), +(34481,14168), +(34482,14177), +(34483,14171), +(34484,14169), +(35256,14166), +(35260,14172), +(35261,14173); +DELETE FROM `creature_involvedrelation` WHERE `id` IN (35256,34435,34435,34478,34481,34484,34479,34483,34476,34477,34480,34482,35260,35261); +INSERT INTO `creature_involvedrelation` (`id`, `quest`) VALUES +(34435,13952), +(34476,14174), +(34477,14175), +(34478,14167), +(34479,14170), +(34480,14176), +(34481,14168), +(34482,14177), +(34483,14171), +(34484,14169), +(35256,14166), +(35260,14172), +(35261,14173); +-- Creature spawns for Day of the Dead Event +SET @GUID := 134848; +DELETE FROM `creature` WHERE `guid` BETWEEN @GUID AND @GUID+146; +INSERT INTO `creature` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES +(@GUID,20102,530,1,1,0,0,3038.56,3635.53,144.012,3.32713,300,0,0,42,0,0,0,0,0), +(@GUID+1,35250,1,1,1,0,0,10066,2125.69,1329.66,1.12742,300,0,0,42,0,0,0,0,0), +(@GUID+2,35250,1,1,1,0,0,10058.4,2135.92,1330.81,4.55176,300,0,0,42,0,0,0,0,0), +(@GUID+3,35250,1,1,1,0,0,10045,2109.59,1330.2,0.224221,300,0,0,42,0,0,0,0,0), +(@GUID+4,35250,1,1,1,0,0,10053.8,2104.68,1330.93,1.5594,300,0,0,42,0,0,0,0,0), +(@GUID+5,35250,1,1,1,0,0,10052.9,2111.1,1330.06,1.93246,300,0,0,42,0,0,0,0,0), +(@GUID+6,35250,1,1,1,0,0,10062.2,2109.76,1330.92,2.08954,300,0,0,42,0,0,0,0,0), +(@GUID+7,35250,1,1,1,0,0,10063.5,2117.74,1330.03,3.55824,300,0,0,42,0,0,0,0,0), +(@GUID+8,35250,1,1,1,0,0,10059.1,2123.97,1330.28,5.04264,300,0,0,42,0,0,0,0,0), +(@GUID+9,35250,1,1,1,0,0,10052.9,2127.26,1330.13,3.93523,300,0,0,42,0,0,0,0,0), +(@GUID+10,34479,1,1,1,0,0,10061.5,2128.42,1330.17,2.73357,300,0,0,2442,2434,0,0,0,0), +(@GUID+11,35243,530,1,1,0,0,9404.91,-6859.42,15.101,4.17483,300,0,0,40,120,0,0,0,0), +(@GUID+12,35243,530,1,1,0,0,9411.01,-6855.19,14.9017,1.27278,300,0,0,40,120,0,0,0,0), +(@GUID+13,35243,530,1,1,0,0,9414.6,-6853.32,14.9361,2.67472,300,0,0,40,120,0,0,0,0), +(@GUID+14,35243,530,1,1,0,0,9415.1,-6848.51,15.1693,3.83318,300,0,0,40,120,0,0,0,0), +(@GUID+15,35249,0,1,1,0,0,-9350.81,171.018,61.7532,1.0198,300,0,0,42,0,0,0,0,0), +(@GUID+16,35253,1,1,1,0,0,1174.68,-4467.53,21.2746,0.833251,300,0,0,42,0,0,0,0,0), +(@GUID+17,35253,1,1,1,0,0,1182,-4463.02,21.2426,2.68915,300,0,0,42,0,0,0,0,0), +(@GUID+18,35253,1,1,1,0,0,1186.12,-4465.53,21.2886,1.73018,300,0,0,42,0,0,0,0,0), +(@GUID+19,35253,1,1,1,0,0,1176.79,-4460.38,21.4269,5.82603,300,0,0,42,0,0,0,0,0), +(@GUID+20,35251,1,1,1,0,0,1172.3,-4460.54,21.4697,6.19124,300,0,0,42,0,0,0,0,0), +(@GUID+21,35251,1,1,1,0,0,1180.91,-4471.22,21.1603,1.71055,300,0,0,42,0,0,0,0,0), +(@GUID+22,34483,530,1,1,0,0,9407.42,-6859.87,14.8699,3.93528,300,0,0,4890,7196,0,0,0,0), +(@GUID+23,35243,530,1,1,0,0,9409.6,-6847.61,15.5215,4.92881,300,0,0,40,120,0,0,0,0), +(@GUID+24,35243,530,1,1,0,0,9407.46,-6852.95,15.239,0.00436234,300,0,0,40,120,0,0,0,0), +(@GUID+25,35249,0,1,1,0,0,-9337.56,188.283,61.5117,3.72314,300,0,0,42,0,0,0,0,0), +(@GUID+26,35249,0,1,1,0,0,-9340.16,183.339,61.5512,0.349854,300,0,0,42,0,0,0,0,0), +(@GUID+27,35249,0,1,1,0,0,-9342.2,187.984,61.5586,5.25467,300,0,0,42,0,0,0,0,0), +(@GUID+28,35249,0,1,1,0,0,-9329.31,166.352,61.5815,1.76357,300,0,0,42,0,0,0,0,0), +(@GUID+29,35249,0,1,1,0,0,-9322.06,168.47,61.6066,2.40367,300,0,0,42,0,0,0,0,0), +(@GUID+30,35249,0,1,1,0,0,-9318.67,173.348,61.613,2.83957,300,0,0,42,0,0,0,0,0), +(@GUID+31,35249,0,1,1,0,0,-9346.44,171.041,61.5582,2.74061,300,0,0,42,0,0,0,0,0), +(@GUID+32,35249,0,1,1,0,0,-9344.05,175.877,61.5584,3.59669,300,0,0,42,0,0,0,0,0), +(@GUID+33,35249,0,1,1,0,0,-9349.19,176.153,61.726,5.18634,300,0,0,42,0,0,0,0,0), +(@GUID+34,35249,0,1,1,0,0,-9327.92,185.507,62.7096,4.07265,300,0,0,42,0,0,0,0,0), +(@GUID+35,34383,1,1,1,0,0,1184.43,-4467.28,21.3388,1.2079,300,0,0,12600,0,0,0,0,0), +(@GUID+36,34383,0,1,1,0,0,-9330.46,180.936,61.6792,4.1716,300,0,0,12600,0,0,0,0,0), +(@GUID+37,34382,1,1,1,0,0,1180.53,-4465.53,21.3293,0.944794,600,0,0,12600,0,0,0,0,0), +(@GUID+38,34382,0,1,1,0,0,-9327.6,178.975,61.6973,4.10484,600,0,0,12600,0,0,0,0,0), +(@GUID+39,34482,1,1,1,0,0,1181.51,-4469.65,21.2349,1.4121,300,0,0,2136,5751,0,0,0,0), +(@GUID+40,34435,0,1,1,0,0,-9354.72,167.942,61.665,0.27367,300,0,0,3052,0,0,0,0,0), +(@GUID+41,34477,1,1,1,0,0,1173.47,-4462.54,21.3309,0.60707,300,0,0,3052,0,0,0,0,0), +(@GUID+42,35256,571,1,65535,0,0,5831.01,751.564,641.134,3.40199,300,0,0,12600,0,0,0,0,0), +(@GUID+43,35254,571,1,65535,0,0,5829.42,754.776,640.729,5.14164,300,0,0,8508,7981,0,0,0,0), +(@GUID+44,35254,571,1,65535,0,0,5827.15,751.291,640.952,0.150437,300,0,0,8508,7981,0,0,0,0), +(@GUID+45,35254,571,1,65535,0,0,5830.31,746.699,641.251,1.36388,300,0,0,8508,7981,0,0,0,0), +(@GUID+46,35254,571,1,65535,0,0,5835.25,748.654,641.162,2.59303,300,0,0,8508,7981,0,0,0,0), +(@GUID+47,35254,571,1,65535,0,0,5835.24,754.043,641.008,3.64153,300,0,0,8508,7981,0,0,0,0), +(@GUID+48,35254,571,1,65535,0,0,5828.15,741.877,642.46,1.24607,300,0,0,8508,7981,0,0,0,0), +(@GUID+49,35254,571,1,65535,0,0,5846.77,755.676,640.68,0.837661,300,0,0,8508,7981,0,0,0,0), +(@GUID+50,35254,571,1,65535,0,0,5850.95,756.541,640.434,2.81294,300,0,0,8508,7981,0,0,0,0), +(@GUID+51,35254,571,1,65535,0,0,5848.22,760.619,641.147,4.64684,300,0,0,8508,7981,0,0,0,0), +(@GUID+52,35254,571,1,65535,0,0,5841.11,762.141,640.661,0.480303,300,0,0,8508,7981,0,0,0,0), +(@GUID+53,35244,0,1,1,0,0,1833.58,225.962,60.4294,4.33165,300,0,0,42,0,0,0,0,0), +(@GUID+54,35244,0,1,1,0,0,1828.46,224.586,60.4551,5.29769,300,0,0,42,0,0,0,0,0), +(@GUID+55,35244,0,1,1,0,0,1824.9,218.875,60.4469,0.0315971,300,0,0,42,0,0,0,0,0), +(@GUID+56,35244,0,1,1,0,0,1836.95,222.233,60.2385,3.22031,300,0,0,42,0,0,0,0,0), +(@GUID+57,35244,0,1,1,0,0,1834.67,215.873,60.1774,2.55665,300,0,0,42,0,0,0,0,0), +(@GUID+58,35244,0,1,1,0,0,1821.83,225.812,60.919,5.50582,300,0,0,42,0,0,0,0,0), +(@GUID+59,34476,0,1,1,0,0,1830.34,219.535,60.6017,4.58298,300,0,0,3052,0,0,0,0,0), +(@GUID+60,34382,571,1,65535,0,0,5844.1,764.778,640.546,4.20309,600,0,0,12600,0,0,0,0,0), +(@GUID+61,34382,0,1,1,0,0,1832.47,210.797,60.312,2.04222,600,0,0,12600,0,0,0,0,0), +(@GUID+62,34382,530,1,1,0,0,9406.42,-6864.02,14.8942,1.19424,600,0,0,12600,0,0,0,0,0), +(@GUID+63,34382,1,1,1,0,0,10058.2,2133,1329.66,4.43788,600,0,0,12600,0,0,0,0,0), +(@GUID+64,34382,1,1,1,0,0,-989.195,-59.6891,27.4632,5.21191,600,0,0,12600,0,0,0,0,0), +(@GUID+65,34382,530,1,1,0,0,-4320.01,-12433.4,17.9088,5.1906,600,0,0,12600,0,0,0,0,0), +(@GUID+66,34382,530,1,1,0,0,-1805.58,4911.74,-21.8346,1.35833,600,0,0,12600,0,0,0,0,0), +(@GUID+67,34382,0,1,1,0,0,-5151.65,-852.495,508.667,4.58185,600,0,0,12600,0,0,0,0,0), +(@GUID+68,34383,571,1,65535,0,0,5844.93,762.949,640.713,2.86791,300,0,0,12600,0,0,0,0,0), +(@GUID+69,34383,0,1,1,0,0,1828.96,210.695,60.2619,1.24504,300,0,0,12600,0,0,0,0,0), +(@GUID+70,34383,530,1,1,0,0,9403.71,-6861.68,15.0351,0.609119,300,0,0,12600,0,0,0,0,0), +(@GUID+71,34383,1,1,1,0,0,10067,2128.44,1329.66,3.57394,300,0,0,12600,0,0,0,0,0), +(@GUID+72,34383,1,1,1,0,0,-987.397,-58.6047,27.5876,4.96843,300,0,0,12600,0,0,0,0,0), +(@GUID+73,34383,530,1,1,0,0,-4317.46,-12431.3,17.755,5.11599,300,0,0,12600,0,0,0,0,0), +(@GUID+74,34383,530,1,1,0,0,-1809.42,4913.42,-21.8336,0.867451,300,0,0,12600,0,0,0,0,0), +(@GUID+75,34383,0,1,1,0,0,-5155.07,-854.489,508.115,5.0845,300,0,0,12600,0,0,0,0,0), +(@GUID+76,34480,1,1,1,0,0,-979.399,-75.0704,19.5113,0.118608,300,0,0,3052,0,0,0,0,0), +(@GUID+77,35252,1,1,1,0,0,-979.099,-78.4939,19.6825,0.8451,300,0,0,42,0,0,0,0,0), +(@GUID+78,35252,1,1,1,0,0,-979.773,-70.3366,19.8615,5.07447,300,0,0,42,0,0,0,0,0), +(@GUID+79,35252,1,1,1,0,0,-975.337,-71.6525,18.3695,3.78799,300,0,0,42,0,0,0,0,0), +(@GUID+80,35252,1,1,1,0,0,-975.356,-76.2146,18.7461,2.57848,300,0,0,42,0,0,0,0,0), +(@GUID+81,35252,1,1,1,0,0,-979.443,-57.4083,26.7673,4.68334,300,0,0,42,0,0,0,0,0), +(@GUID+82,34484,530,1,1,0,0,-4329.44,-12443.6,17.6841,5.62257,300,0,0,5589,3155,0,0,0,0), +(@GUID+83,35246,530,1,1,0,0,-4326.98,-12448.5,16.9294,5.47334,300,0,0,41,60,0,0,0,0), +(@GUID+84,35246,530,1,1,0,0,-4326.59,-12453.9,16.7549,0.721683,300,0,0,41,60,0,0,0,0), +(@GUID+85,35246,530,1,1,0,0,-4319.13,-12455.1,17.4243,2.4417,300,0,0,41,60,0,0,0,0), +(@GUID+86,35246,530,1,1,0,0,-4320.45,-12448.9,17.0584,3.68656,300,0,0,41,60,0,0,0,0), +(@GUID+87,35246,530,1,1,0,0,-4309.37,-12444,17.5071,3.15249,300,0,0,41,60,0,0,0,0), +(@GUID+88,35246,530,1,1,0,0,-4312.76,-12446.2,17.3102,1.3932,300,0,0,41,60,0,0,0,0), +(@GUID+89,35246,530,1,1,0,0,-4313.48,-12441,17.2002,5.26914,300,0,0,41,60,0,0,0,0), +(@GUID+90,35246,530,1,1,0,0,-4315.9,-12433.6,17.5953,2.19823,300,0,0,41,60,0,0,0,0), +(@GUID+91,35260,530,1,1,0,0,-1810.34,4923.26,-21.8439,5.41099,300,0,0,5589,3155,0,0,0,0), +(@GUID+92,35261,530,1,1,0,0,-1796.9,4928.76,-22.2745,3.23936,300,0,0,4890,7196,0,0,0,0), +(@GUID+93,35258,530,1,1,0,0,-1806.01,4925.33,-21.878,3.62813,300,0,0,4140,6443,0,0,0,0), +(@GUID+94,35258,530,1,1,0,0,-1812.25,4929.11,-21.6268,4.96723,300,0,0,4140,6443,0,0,0,0), +(@GUID+95,35258,530,1,1,0,0,-1814.69,4922.25,-22.0148,0.254842,300,0,0,4140,6443,0,0,0,0), +(@GUID+96,35258,530,1,1,0,0,-1809.16,4918.68,-21.982,1.82171,300,0,0,4140,6443,0,0,0,0), +(@GUID+97,35259,530,1,1,0,0,-1801.26,4929.1,-22.3108,6.17282,300,0,0,4140,6443,0,0,0,0), +(@GUID+98,35259,530,1,1,0,0,-1792.87,4928.28,-22.1848,2.99981,300,0,0,4140,6443,0,0,0,0), +(@GUID+99,35259,530,1,1,0,0,-1797.58,4924.28,-21.9414,1.31905,300,0,0,4140,6443,0,0,0,0), +(@GUID+100,35259,530,1,1,0,0,-1796.3,4933.33,-22.3432,4.54704,300,0,0,4140,6443,0,0,0,0), +(@GUID+101,34481,0,1,1,0,0,-5167.84,-870.949,506.706,1.024,300,0,0,2136,5751,0,0,0,0), +(@GUID+102,34478,0,1,1,0,0,-5165.9,-866.76,506.808,4.28811,300,0,0,3052,0,0,0,0,0), +(@GUID+103,35247,0,1,1,0,0,-5162.65,-873.025,507.206,1.00122,300,0,0,42,0,0,0,0,0), +(@GUID+104,35247,0,1,1,0,0,-5158.7,-872.414,507.406,2.72124,300,0,0,42,0,0,0,0,0), +(@GUID+105,35247,0,1,1,0,0,-5160.49,-869.137,507.265,4.21349,300,0,0,42,0,0,0,0,0), +(@GUID+106,35247,0,1,1,0,0,-5164.33,-869.728,507.01,5.69397,300,0,0,42,0,0,0,0,0), +(@GUID+107,35248,0,1,1,0,0,-5155,-856.249,508.059,1.51565,300,0,0,42,0,0,0,0,0), +(@GUID+108,35248,0,1,1,0,0,-5159.06,-867.484,507.333,0.859842,300,0,0,42,0,0,0,0,0), +(@GUID+109,35248,0,1,1,0,0,-5154.91,-867.566,507.758,2.45027,300,0,0,42,0,0,0,0,0), +(@GUID+110,35248,0,1,1,0,0,-5155.64,-863.343,507.652,4.05641,300,0,0,42,0,0,0,0,0), +(@GUID+111,35248,0,1,1,0,0,-5159.96,-863.16,507.247,5.49762,300,0,0,42,0,0,0,0,0), +(@GUID+112,18927,0,1,1,0,0,-8855.97,652.546,96.2675,5.07716,300,0,0,42,0,0,0,0,0), +(@GUID+113,18927,571,1,1,0,0,5678.09,658.93,647.134,0.088838,300,0,0,42,0,0,0,0,0), +(@GUID+114,18927,0,1,1,0,0,-8854.78,649.83,96.7417,1.43117,300,0,0,42,0,0,0,0,0), +(@GUID+115,18927,571,1,1,0,0,5719.3,687.257,645.752,5.72721,300,0,0,42,0,0,0,0,0), +(@GUID+116,19169,530,1,1,0,0,9659.86,-7115.63,14.3239,5.88552,300,0,0,42,0,0,0,0,0), +(@GUID+117,19169,571,1,1,0,0,5889.57,550.355,639.637,1.57167,300,0,0,42,0,0,0,0,0), +(@GUID+118,19169,571,1,1,0,0,5928.98,639.593,645.557,3.01052,300,0,0,42,0,0,0,0,0), +(@GUID+119,19169,530,1,1,0,0,9664.38,-7117.91,14.324,2.63397,300,0,0,42,0,0,0,0,0), +(@GUID+120,19148,0,1,1,0,0,-4914.82,-951.191,501.498,4.5773,300,0,0,42,0,0,0,0,0), +(@GUID+121,19148,0,1,1,0,0,-4915.33,-953.892,501.498,2.25016,300,0,0,42,0,0,0,0,0), +(@GUID+122,19171,530,1,1,0,0,-3910.91,-11612.4,-138.243,4.99941,300,0,0,42,0,0,0,0,0), +(@GUID+123,19171,530,1,1,0,0,-3909.22,-11614.8,-138.101,3.1765,300,0,0,42,0,0,0,0,0), +(@GUID+124,19172,0,1,1,0,0,-4826.78,-1175.89,502.193,2.45358,300,0,0,42,0,0,0,0,0), +(@GUID+125,19172,0,1,1,0,0,-4829.02,-1174.75,502.193,0.724139,300,0,0,42,0,0,0,0,0), +(@GUID+126,19173,1,1,1,0,0,9923.44,2496.95,1317.49,2.28359,300,0,0,42,0,0,0,0,0), +(@GUID+127,19173,1,1,1,0,0,9921.56,2499.58,1317.77,5.61996,300,0,0,42,0,0,0,0,0), +(@GUID+128,19178,0,1,1,0,0,1626.7,222.7,-43.1027,1.01229,300,0,0,42,0,0,0,0,0), +(@GUID+129,19178,0,1,1,0,0,1629.95,219.238,-43.1027,1.91079,300,0,0,42,0,0,0,0,0), +(@GUID+130,19177,1,1,1,0,0,1688.01,-4350.19,61.2691,2.56413,300,0,0,42,0,0,0,0,0), +(@GUID+131,19177,1,1,1,0,0,1685.07,-4352.88,61.7253,1.79601,300,0,0,42,0,0,0,0,0), +(@GUID+132,19176,1,1,1,0,0,-1241.98,81.7344,129.422,5.4992,300,0,0,42,0,0,0,0,0), +(@GUID+133,19176,1,1,1,0,0,-1242.68,76.7127,128.935,1.27376,300,0,0,42,0,0,0,0,0), +(@GUID+134,19175,1,1,1,0,0,1607.39,-4402.93,10.1664,3.11715,300,0,0,42,0,0,0,0,0), +(@GUID+135,19175,1,1,1,0,0,1603.36,-4404.49,9.30901,0.627438,300,0,0,42,0,0,0,0,0), +(@GUID+136,20102,1,1,1,0,0,6747.03,-4664.43,724.551,3.61009,300,0,0,42,0,0,0,0,0), +(@GUID+137,20102,1,1,1,0,0,-938.792,-3735.2,8.57162,3.66385,300,0,0,42,0,0,0,0,0), +(@GUID+138,20102,1,1,1,0,0,-7177.24,-3810.02,8.3753,0.711558,300,0,0,42,0,0,0,0,0), +(@GUID+139,20102,0,1,1,0,0,-14464.9,470.287,15.0369,5.96098,300,0,0,42,0,0,0,0,0), +(@GUID+140,20102,530,1,1,0,0,-1888.02,5400.44,-12.4278,5.97919,300,0,0,42,0,0,0,0,0), +(@GUID+141,20102,530,1,1,0,0,3035.51,3635.08,144.47,0.901821,300,0,0,42,0,0,0,0,0), +(@GUID+142,20102,1,1,1,0,0,6745.48,-4667.44,723.103,1.03712,300,0,0,42,0,0,0,0,0), +(@GUID+143,20102,1,1,1,0,0,-936.306,-3738.3,8.96324,3.35283,300,0,0,42,0,0,0,0,0), +(@GUID+144,20102,1,1,1,0,0,-7173.14,-3808.58,8.37043,3.3285,300,0,0,42,0,0,0,0,0), +(@GUID+145,20102,0,1,1,0,0,-14461.4,468.507,15.1232,2.66545,300,0,0,42,0,0,0,0,0), +(@GUID+146,20102,530,1,1,0,0,-1884.63,5397.52,-12.4278,2.51637,300,0,0,42,0,0,0,0,0); +-- Assignment of creatures to game event. +DELETE FROM `game_event_creature` WHERE `eventEntry`=51 AND `guid` BETWEEN @GUID AND @GUID+146; +INSERT INTO `game_event_creature` (`eventEntry`, `guid`) VALUES +(51,@GUID),(51,@GUID+1),(51,@GUID+2),(51,@GUID+3),(51,@GUID+4),(51,@GUID+5), +(51,@GUID+6),(51,@GUID+7),(51,@GUID+8),(51,@GUID+9),(51,@GUID+10), +(51,@GUID+11),(51,@GUID+12),(51,@GUID+13),(51,@GUID+14),(51,@GUID+15), +(51,@GUID+16),(51,@GUID+17),(51,@GUID+18),(51,@GUID+19),(51,@GUID+20), +(51,@GUID+21),(51,@GUID+22),(51,@GUID+23),(51,@GUID+24),(51,@GUID+25), +(51,@GUID+26),(51,@GUID+27),(51,@GUID+28),(51,@GUID+29),(51,@GUID+30), +(51,@GUID+31),(51,@GUID+32),(51,@GUID+33),(51,@GUID+34),(51,@GUID+35), +(51,@GUID+36),(51,@GUID+37),(51,@GUID+38),(51,@GUID+39),(51,@GUID+40), +(51,@GUID+41),(51,@GUID+42),(51,@GUID+43),(51,@GUID+44),(51,@GUID+45), +(51,@GUID+46),(51,@GUID+47),(51,@GUID+48),(51,@GUID+49),(51,@GUID+50), +(51,@GUID+51),(51,@GUID+52),(51,@GUID+53),(51,@GUID+54),(51,@GUID+55), +(51,@GUID+56),(51,@GUID+57),(51,@GUID+58),(51,@GUID+59),(51,@GUID+60), +(51,@GUID+61),(51,@GUID+62),(51,@GUID+63),(51,@GUID+64),(51,@GUID+65), +(51,@GUID+66),(51,@GUID+67),(51,@GUID+68),(51,@GUID+69),(51,@GUID+70), +(51,@GUID+71),(51,@GUID+72),(51,@GUID+73),(51,@GUID+74),(51,@GUID+75), +(51,@GUID+76),(51,@GUID+77),(51,@GUID+78),(51,@GUID+79),(51,@GUID+80), +(51,@GUID+81),(51,@GUID+82),(51,@GUID+83),(51,@GUID+84),(51,@GUID+85), +(51,@GUID+86),(51,@GUID+87),(51,@GUID+88),(51,@GUID+89),(51,@GUID+90), +(51,@GUID+91),(51,@GUID+92),(51,@GUID+93),(51,@GUID+94),(51,@GUID+95), +(51,@GUID+96),(51,@GUID+97),(51,@GUID+98),(51,@GUID+99),(51,@GUID+100), +(51,@GUID+101),(51,@GUID+102),(51,@GUID+103),(51,@GUID+104),(51,@GUID+105), +(51,@GUID+106),(51,@GUID+107),(51,@GUID+108),(51,@GUID+109),(51,@GUID+110), +(51,@GUID+111),(51,@GUID+112),(51,@GUID+113),(51,@GUID+114),(51,@GUID+115), +(51,@GUID+116),(51,@GUID+117),(51,@GUID+118),(51,@GUID+119),(51,@GUID+120), +(51,@GUID+121),(51,@GUID+122),(51,@GUID+123),(51,@GUID+124),(51,@GUID+125), +(51,@GUID+126),(51,@GUID+127),(51,@GUID+128),(51,@GUID+129),(51,@GUID+130), +(51,@GUID+131),(51,@GUID+132),(51,@GUID+133),(51,@GUID+134),(51,@GUID+135), +(51,@GUID+136),(51,@GUID+137),(51,@GUID+138),(51,@GUID+139),(51,@GUID+140), +(51,@GUID+141),(51,@GUID+142),(51,@GUID+143),(51,@GUID+144),(51,@GUID+145), +(51,@GUID+146); +-- Gameobject spawns +SET @GUID := 76237; +DELETE FROM `gameobject` WHERE `guid` BETWEEN @GUID AND @GUID+313; +INSERT INTO `gameobject` (`guid`, `id`, `map`, `spawnMask`, `phaseMask`, `position_x`, `position_y`, `position_z`, `orientation`, `rotation0`, `rotation1`, `rotation2`, `rotation3`, `spawntimesecs`, `animprogress`, `state`) VALUES +(@GUID,195066,1,1,1,-984.309,-72.3299,20.9918,0,0,0,0,1,180,100,1), +(@GUID+1,195069,0,1,1,-9330.98,181.918,62.7222,2.54818,0,0,0,1,180,100,1), +(@GUID+2,182807,530,1,1,9672.12,-7346.44,11.9311,-0.244346,0,0,0.121869,-0.992546,180,100,1), +(@GUID+3,195307,0,1,1,1780.5,269.08,59.8237,3.00195,0,0,0,1,180,100,1), +(@GUID+4,195090,0,1,1,-5155.34,-862.141,507.655,4.22449,0,0,0.856962,-0.515379,300,0,1), +(@GUID+5,195307,1,1,1,10054.2,2129.03,1329.66,-2.30383,0,0,0,1,180,100,1), +(@GUID+6,195307,0,1,1,1792.51,241.774,60.5867,-2.30383,0,0,0,1,180,100,1), +(@GUID+7,195307,1,1,1,10053.8,2127.78,1329.67,-2.30383,0,0,0,1,180,100,1), +(@GUID+8,195307,1,1,1,10049.7,2113.11,1329.68,-2.79252,0,0,0,1,180,100,1), +(@GUID+9,195087,0,1,1,-9333.99,181.712,61.5651,4.14018,0,0,0.87792,-0.478807,300,0,1), +(@GUID+10,195087,1,1,1,1177.92,-4467.1,21.3191,1.02726,0,0,0.49134,0.870968,300,0,1), +(@GUID+11,195067,1,1,1,1179.08,-4469.52,21.5266,1.0194,0,0,0.487916,0.87289,300,0,1), +(@GUID+12,195067,1,1,1,1174.65,-4455.39,21.539,1.12543,0,0,0.533485,0.845809,300,0,1), +(@GUID+13,195067,1,1,1,1186.5,-4461.7,21.136,1.23932,0,0,0.580757,0.814077,300,0,1), +(@GUID+14,195087,571,1,65535,5851.71,759.739,640.824,0.177921,0,0,0.088843,0.996046,300,0,1), +(@GUID+15,195087,0,1,1,1831.24,213.873,60.339,4.59476,0,0,0.747449,-0.66432,300,0,1), +(@GUID+16,195087,530,1,1,9410.84,-6856.04,14.8094,5.30187,0,0,0.471204,-0.882024,300,0,1), +(@GUID+17,195087,1,1,1,10051.5,2108.48,1329.65,5.63954,0,0,0.316296,-0.948661,300,0,1), +(@GUID+18,195087,1,1,1,-978.502,-68.0701,19.8816,2.48265,0,0,0.946214,0.323543,300,0,1), +(@GUID+19,195087,530,1,1,-4320.88,-12435.8,17.794,2.95615,0,0,0.995704,0.0925905,300,0,1), +(@GUID+20,195087,530,1,1,-1795.3,4913.74,-21.6189,5.79582,0,0,0.241278,-0.970456,300,0,1), +(@GUID+21,195087,0,1,1,-5167.15,-868.97,506.692,3.55298,0,0,0.97892,-0.204245,300,0,1), +(@GUID+22,195067,571,1,65535,5842.99,757.208,641.032,3.23312,0,0,0.998953,-0.0457468,300,0,1), +(@GUID+23,195067,571,1,65535,5848.67,757.932,640.765,0.331072,0,0,0.164781,0.98633,300,0,1), +(@GUID+24,195067,571,1,65535,5826.98,742.899,642.182,0.40961,0,0,0.203376,0.979101,300,0,1), +(@GUID+25,195067,571,1,65535,5833.05,758.772,640.632,6.22548,0,0,0.0288469,-0.999584,300,0,1), +(@GUID+26,195067,571,1,65535,5838.49,754.714,640.99,5.00419,0,0,0.596791,-0.802397,300,0,1), +(@GUID+27,195067,0,1,1,-9325.85,176.738,61.6842,4.03415,0,0,0.902059,-0.431613,300,0,1), +(@GUID+28,195067,0,1,1,-9339.4,177.75,61.5578,2.84035,0,0,0.988678,0.150053,300,0,1), +(@GUID+29,195067,0,1,1,-9341.6,186.007,61.5588,0.590182,0,0,0.290827,0.956776,300,0,1), +(@GUID+30,195067,0,1,1,-9349.4,172.027,61.5583,3.72,0,0,0.958472,-0.285187,300,0,1), +(@GUID+31,195067,0,1,1,-9333.49,166.771,61.5731,4.50147,0,0,0.777611,-0.628745,300,0,1), +(@GUID+32,195067,0,1,1,1838.15,218.056,60.1301,6.04382,0,0,0.119397,-0.992847,300,0,1), +(@GUID+33,195067,0,1,1,1824.56,214.048,60.2184,2.55272,0,0,0.956966,0.290199,300,0,1), +(@GUID+34,195067,0,1,1,1826.85,224.597,60.3819,1.15864,0,0,0.547456,0.836835,300,0,1), +(@GUID+35,195067,0,1,1,1834.25,227.476,60.3832,0.0394494,0,0,0.0197234,0.999805,300,0,1), +(@GUID+36,195067,530,1,1,9408.5,-6861.43,14.8097,5.18014,0,0,0.523987,-0.851727,300,0,1), +(@GUID+37,195067,530,1,1,9414.83,-6847.96,15.2124,0.302815,0,0,0.15083,0.98856,300,0,1), +(@GUID+38,195067,530,1,1,9406.18,-6848.78,15.7346,4.10414,0,0,0.886406,-0.462909,300,0,1), +(@GUID+39,195067,1,1,1,10040.1,2118.35,1329.71,6.16969,0,0,0.0567171,-0.99839,300,0,1), +(@GUID+40,195067,1,1,1,10054.5,2128.79,1329.66,0.15354,0,0,0.0766945,0.997055,300,0,1), +(@GUID+41,195067,1,1,1,10064.3,2124.92,1329.66,5.938,0,0,0.171738,-0.985143,300,0,1), +(@GUID+42,195067,1,1,1,10048.2,2118.42,1329.87,6.00475,0,0,0.138768,-0.990325,300,0,1), +(@GUID+43,195067,1,1,1,-981.572,-70.544,20.3174,2.24703,0,0,0.901626,0.432516,300,0,1), +(@GUID+44,195067,1,1,1,-982.861,-78.1374,20.4409,2.76147,0,0,0.981992,0.188921,300,0,1), +(@GUID+45,195067,1,1,1,-979.741,-82.5911,20.4482,2.84001,0,0,0.988652,0.150222,300,0,1), +(@GUID+46,195067,1,1,1,-985.891,-59.0171,27.1512,2.98923,0,0,0.9971,0.0761065,300,0,1), +(@GUID+47,195067,530,1,1,-4330.57,-12441.9,18.6116,1.10261,0,0,0.523798,0.851843,300,0,1), +(@GUID+48,195067,530,1,1,-4331.79,-12444.3,18.6116,1.10261,0,0,0.523798,0.851843,300,0,1), +(@GUID+49,195067,530,1,1,-4320.15,-12431.6,18.6801,3.86328,0,0,0.935599,-0.353065,300,0,1), +(@GUID+50,195067,530,1,1,-4318.44,-12430.1,18.6801,3.84757,0,0,0.938343,-0.345706,300,0,1), +(@GUID+51,195067,530,1,1,-4322.19,-12440.2,17.4944,3.02291,0,0,0.99824,0.0593089,300,0,1), +(@GUID+52,195067,530,1,1,-4323.07,-12450.7,16.8485,5.33983,0,0,0.454382,-0.890807,300,0,1), +(@GUID+53,195067,530,1,1,-4311.45,-12442.3,17.3037,0.772738,0,0,0.376827,0.926284,300,0,1), +(@GUID+54,195067,530,1,1,-1791.77,4917.77,-21.025,1.42901,0,0,0.655244,0.755417,300,0,1), +(@GUID+55,195067,530,1,1,-1789.47,4922.28,-21.0992,1.01275,0,0,0.48501,0.874508,300,0,1), +(@GUID+56,195067,530,1,1,-1784.66,4926.07,-21.1388,0.521876,0,0,0.257987,0.966148,300,0,1), +(@GUID+57,195067,530,1,1,-1799.03,4911.63,-21.3716,4.9201,0,0,0.62999,-0.776603,300,0,1), +(@GUID+58,195067,530,1,1,-1811.06,4914.83,-21.8399,3.80091,0,0,0.946153,-0.32372,300,0,1), +(@GUID+59,195067,530,1,1,-1804.87,4922.87,-21.9285,0.341232,0,0,0.169789,0.98548,300,0,1), +(@GUID+60,195067,0,1,1,-5157.02,-875.2,507.717,5.59108,0,0,0.339185,-0.94072,300,0,1), +(@GUID+61,195067,0,1,1,-5162.53,-877.151,507.269,3.8475,0,0,0.938356,-0.345672,300,0,1), +(@GUID+62,195067,0,1,1,-5168.31,-872.67,506.918,4.71929,0,0,0.704662,-0.709544,300,0,1), +(@GUID+63,195067,0,1,1,-5159.9,-868.605,507.293,4.7782,0,0,0.683461,-0.729987,300,0,1), +(@GUID+64,195067,0,1,1,-5153.67,-856.503,508.317,1.38528,0,0,0.63857,0.769564,300,0,1), +(@GUID+65,195090,0,1,1,-5153.07,-855.424,508.469,2.04894,0,0,0.854438,0.519553,300,0,1), +(@GUID+66,195090,1,1,1,1187.46,-4465.48,21.3276,5.08777,0,0,0.562749,-0.826628,300,0,1), +(@GUID+67,195090,1,1,1,1184.69,-4469.05,21.3202,3.92145,0,0,0.924935,-0.380125,300,0,1), +(@GUID+68,195090,1,1,1,1178.71,-4465.61,21.3464,2.50381,0,0,0.949584,0.313514,300,0,1), +(@GUID+69,195090,1,1,1,1173.45,-4463.9,21.2566,2.95934,0,0,0.995851,0.0909994,300,0,1), +(@GUID+70,195090,1,1,1,1174.56,-4459.12,21.5159,1.31393,0,0,0.610717,0.791849,300,0,1), +(@GUID+71,195090,1,1,1,1178.38,-4459.37,21.4634,6.03418,0,0,0.124183,-0.992259,300,0,1), +(@GUID+72,195090,1,1,1,1183.11,-4462.38,21.173,0.457849,0,0,0.22693,0.973911,300,0,1), +(@GUID+73,195090,0,1,1,-9319.35,175.184,61.6322,5.94267,0,0,0.169436,-0.985541,300,0,1), +(@GUID+74,195090,0,1,1,-9321.89,177.068,61.6465,5.64422,0,0,0.314075,-0.949398,300,0,1), +(@GUID+75,195090,0,1,1,-9324.42,178.952,61.9249,5.64422,0,0,0.314075,-0.949398,300,0,1), +(@GUID+76,195090,0,1,1,-9327.35,181.579,61.6579,5.76203,0,0,0.257639,-0.966241,300,0,1), +(@GUID+77,195090,0,1,1,-9329.68,183.137,61.6151,5.69527,0,0,0.289742,-0.957105,300,0,1), +(@GUID+78,195090,0,1,1,-9332.5,185.014,61.5442,5.69527,0,0,0.289742,-0.957105,300,0,1), +(@GUID+79,195090,0,1,1,-9336.77,184.723,61.5328,1.08891,0,0,0.517952,0.85541,300,0,1), +(@GUID+80,195090,0,1,1,-9340.96,187.22,61.5554,0.865071,0,0,0.419174,0.907906,300,0,1), +(@GUID+81,195090,0,1,1,-9347.4,178.086,61.558,4.29726,0,0,0.837647,-0.546212,300,0,1), +(@GUID+82,195090,0,1,1,-9349.37,175.371,61.7816,4.06557,0,0,0.895168,-0.445729,300,0,1), +(@GUID+83,195090,0,1,1,-9351.22,172.514,61.5657,4.2737,0,0,0.844024,-0.536305,300,0,1), +(@GUID+84,195090,0,1,1,-9352.79,169.484,61.5833,4.19909,0,0,0.86344,-0.504452,300,0,1), +(@GUID+85,195090,0,1,1,-9328.38,163.069,62.1162,5.656,0,0,0.308476,-0.951232,300,0,1), +(@GUID+86,195090,0,1,1,-9324.64,167.678,61.5815,2.66756,0,0,0.972043,0.234801,300,0,1), +(@GUID+87,195090,0,1,1,-9327.99,170.234,61.6257,2.49478,0,0,0.948158,0.317799,300,0,1), +(@GUID+88,195090,0,1,1,-9330.76,172.21,61.6444,2.42016,0,0,0.935645,0.352943,300,0,1), +(@GUID+89,195090,0,1,1,-9333.31,174.06,61.6475,2.60866,0,0,0.964707,0.263324,300,0,1), +(@GUID+90,195090,0,1,1,-9335.44,175.283,61.6076,2.62044,0,0,0.966242,0.257637,300,0,1), +(@GUID+91,195090,0,1,1,-9329.47,179.114,61.7075,1.27741,0,0,0.596156,0.802868,300,0,1), +(@GUID+92,195090,571,1,65535,5853.87,762.992,641.211,6.18229,0,0,0.0504241,-0.998728,300,0,1), +(@GUID+93,195090,571,1,65535,5855.51,765.516,641.483,0.212483,0,0,0.106042,0.994362,300,0,1), +(@GUID+94,195090,571,1,65535,5853.92,767.065,641.349,0.656233,0,0,0.322261,0.946651,300,0,1), +(@GUID+95,195090,571,1,65535,5851.19,767.209,640.997,0.597328,0,0,0.294244,0.95573,300,0,1), +(@GUID+96,195090,571,1,65535,5851.3,769.624,640.886,1.09213,0,0,0.519328,0.854575,300,0,1), +(@GUID+97,195090,571,1,65535,5849.36,771.084,640.573,1.31204,0,0,0.609968,0.792426,300,0,1), +(@GUID+98,195090,571,1,65535,5843.35,763.212,640.647,3.49938,0,0,0.984042,-0.177939,300,0,1), +(@GUID+99,195090,571,1,65535,5832.79,754.608,640.935,4.05308,0,0,0.897934,-0.440131,300,0,1), +(@GUID+100,195090,571,1,65535,5828.7,749.25,641.164,4.17874,0,0,0.868526,-0.495643,300,0,1), +(@GUID+101,195090,571,1,65535,5835.35,751.259,641.084,0.400976,0,0,0.199148,0.97997,300,0,1), +(@GUID+102,195090,571,1,65535,5827.74,742.946,642.332,0.687646,0,0,0.337089,0.941473,300,0,1), +(@GUID+103,195090,571,1,65535,5809.37,743.705,640.998,3.12238,0,0,0.999954,0.00960593,300,0,1), +(@GUID+104,195090,571,1,65535,5822.29,758.23,640.365,1.61049,0,0,0.721,0.692935,300,0,1), +(@GUID+105,195090,571,1,65535,5811.39,757.19,640.324,2.50977,0,0,0.950514,0.310683,300,0,1), +(@GUID+106,195090,571,1,65535,5846.75,758.117,640.939,6.14616,0,0,0.0684576,-0.997654,300,0,1), +(@GUID+107,195090,0,1,1,1830.63,211.165,60.3098,4.80682,0,0,0.672944,-0.739693,300,0,1), +(@GUID+108,195090,0,1,1,1840.85,213.082,61.3837,5.26628,0,0,0.486826,-0.873499,300,0,1), +(@GUID+109,195090,0,1,1,1841.8,219.772,60.7409,1.28038,0,0,0.597349,0.801981,300,0,1), +(@GUID+110,195090,0,1,1,1823.03,229.093,60.4377,2.72944,0,0,0.978842,0.204619,300,0,1), +(@GUID+111,195090,0,1,1,1827.77,222.032,60.6016,4.97961,0,0,0.60661,-0.795,300,0,1), +(@GUID+112,195090,0,1,1,1827.52,217.594,60.5054,4.65367,0,0,0.72756,-0.686044,300,0,1), +(@GUID+113,195090,0,1,1,1832.1,217.303,60.342,6.21268,0,0,0.0352447,-0.999379,300,0,1), +(@GUID+114,195090,0,1,1,1834.79,220.5,60.2436,1.11937,0,0,0.530921,0.847421,300,0,1), +(@GUID+115,195090,0,1,1,1814.67,217.597,60.2211,3.50306,0,0,0.983712,-0.17975,300,0,1), +(@GUID+116,195090,530,1,1,9407.83,-6850.31,15.4148,6.05585,0,0,0.113421,-0.993547,300,0,1), +(@GUID+117,195090,530,1,1,9412.52,-6848.4,15.3197,0.703365,0,0,0.344478,0.938794,300,0,1), +(@GUID+118,195090,530,1,1,9414.82,-6851.42,15.0296,5.58069,0,0,0.344071,-0.938944,300,0,1), +(@GUID+119,195090,530,1,1,9410.57,-6853.66,14.9713,3.57007,0,0,0.977139,-0.212602,300,0,1), +(@GUID+120,195090,530,1,1,9405.72,-6861.46,14.9588,4.79136,0,0,0.678642,-0.734469,300,0,1), +(@GUID+121,195090,530,1,1,9412.52,-6861.73,14.6487,5.88699,0,0,0.196805,-0.980443,300,0,1), +(@GUID+122,195090,530,1,1,9416.75,-6856.38,14.8519,5.80845,0,0,0.235147,-0.97196,300,0,1), +(@GUID+123,195090,530,1,1,9418.64,-6852.18,14.9737,5.72205,0,0,0.2769,-0.960899,300,0,1), +(@GUID+124,195090,1,1,1,10062.7,2128.29,1329.77,1.94816,0,0,0.827186,0.561928,300,0,1), +(@GUID+125,195090,1,1,1,10066.2,2127.23,1329.66,4.62637,0,0,0.736856,-0.67605,300,0,1), +(@GUID+126,195090,1,1,1,10065.9,2121.66,1330.2,4.78738,0,0,0.680104,-0.733115,300,0,1), +(@GUID+127,195090,1,1,1,10064.8,2117.6,1330.03,4.56746,0,0,0.756445,-0.654057,300,0,1), +(@GUID+128,195090,1,1,1,10063.4,2113.77,1330.06,4.01769,0,0,0.905582,-0.424171,300,0,1), +(@GUID+129,195090,1,1,1,10054.1,2110.63,1329.93,3.8449,0,0,0.938805,-0.344449,300,0,1), +(@GUID+130,195090,1,1,1,10049.1,2112.98,1330.03,2.00314,0,0,0.842318,0.538981,300,0,1), +(@GUID+131,195090,1,1,1,10046.4,2109.25,1329.96,4.10408,0,0,0.88642,-0.462882,300,0,1), +(@GUID+132,195090,1,1,1,10053.1,2126.22,1330.07,1.08422,0,0,0.515946,0.856621,300,0,1), +(@GUID+133,195090,1,1,1,10054,2130.84,1330.02,1.00961,0,0,0.483637,0.875269,300,0,1), +(@GUID+134,195090,1,1,1,10060.3,2124.09,1330.01,4.74418,0,0,0.695778,-0.718257,300,0,1), +(@GUID+135,195090,1,1,1,10059.9,2135.05,1330.75,1.53583,0,0,0.694637,0.719361,300,0,1), +(@GUID+136,195090,1,1,1,10066.4,2132.16,1332.09,2.49402,0,0,0.948037,0.31816,300,0,1), +(@GUID+137,195090,1,1,1,10052.2,2104.91,1330.92,3.28727,0,0,0.997349,-0.0727721,300,0,1), +(@GUID+138,195090,1,1,1,-988.152,-59.1082,27.5232,5.15851,0,0,0.533167,-0.84601,300,0,1), +(@GUID+139,195090,1,1,1,-977.555,-56.5706,26.7082,5.00143,0,0,0.5979,-0.801571,300,0,1), +(@GUID+140,195090,1,1,1,-979.763,-72.5159,19.6852,3.24999,0,0,0.998531,-0.0541744,300,0,1), +(@GUID+141,195090,1,1,1,-979.359,-76.7106,19.6107,3.13611,0,0,0.999996,0.00274046,300,0,1), +(@GUID+142,195090,1,1,1,-976.6,-74.4185,18.8465,3.47776,0,0,0.985907,-0.167293,300,0,1), +(@GUID+143,195090,1,1,1,-981.652,-79.1964,20.249,3.91758,0,0,0.925669,-0.378334,300,0,1), +(@GUID+144,195090,1,1,1,-985.178,-75.001,21.0173,3.12433,0,0,0.999963,0.00863036,300,0,1), +(@GUID+145,195090,1,1,1,-981.153,-66.7737,20.9042,2.28788,0,0,0.910272,0.41401,300,0,1), +(@GUID+146,195090,530,1,1,-4319.45,-12430.9,18.6806,2.09613,0,0,0.866459,0.499248,300,0,1), +(@GUID+147,195090,530,1,1,-4320.99,-12432.3,18.6806,3.9536,0,0,0.918707,-0.394941,300,0,1), +(@GUID+148,195090,530,1,1,-4331.11,-12443.6,18.6114,2.34746,0,0,0.922199,0.386715,300,0,1), +(@GUID+149,195090,530,1,1,-4325.9,-12451.6,16.6623,0.839496,0,0,0.40753,0.913192,300,0,1), +(@GUID+150,195090,530,1,1,-4326.17,-12455.4,16.9729,0.509629,0,0,0.252066,0.96771,300,0,1), +(@GUID+151,195090,530,1,1,-4320.52,-12456.9,17.3025,0.721686,0,0,0.353063,0.9356,300,0,1), +(@GUID+152,195090,530,1,1,-4321.35,-12454.2,17.2013,0.914109,0,0,0.441307,0.897356,300,0,1), +(@GUID+153,195090,530,1,1,-4320.01,-12449.5,17.0817,0.800226,0,0,0.389522,0.921017,300,0,1), +(@GUID+154,195090,530,1,1,-4314.66,-12447.8,17.3873,1.00836,0,0,0.483088,0.875572,300,0,1), +(@GUID+155,195090,530,1,1,-4311.21,-12446.3,17.4275,1.0869,0,0,0.51709,0.855931,300,0,1), +(@GUID+156,195090,530,1,1,-4316.32,-12444.3,17.1922,0.88662,0,0,0.428932,0.903337,300,0,1), +(@GUID+157,195090,530,1,1,-4310.89,-12440.6,17.2147,1.05941,0,0,0.505278,0.862957,300,0,1), +(@GUID+158,195090,530,1,1,-1801.49,4910.65,-21.3903,5.6034,0,0,0.333386,-0.94279,300,0,1), +(@GUID+159,195090,530,1,1,-1796.61,4911.2,-21.382,0.113465,0,0,0.0567022,0.998391,300,0,1), +(@GUID+160,195090,530,1,1,-1792.12,4916.53,-21.0244,1.24837,0,0,0.584434,0.811441,300,0,1), +(@GUID+161,195090,530,1,1,-1788.82,4923.25,-21.0863,1.01275,0,0,0.485009,0.874509,300,0,1), +(@GUID+162,195090,530,1,1,-1786.08,4925.63,-21.1386,0.243056,0,0,0.121229,0.992625,300,0,1), +(@GUID+163,195090,530,1,1,-1806.29,4914.21,-22.0573,3.90301,0,0,0.928401,-0.371579,300,0,1), +(@GUID+164,195090,530,1,1,-1814.82,4912.82,-21.4843,3.71452,0,0,0.95925,-0.28256,300,0,1), +(@GUID+165,195090,530,1,1,-1808.63,4922.35,-21.8564,1.05594,0,0,0.503782,0.863831,300,0,1), +(@GUID+166,195090,530,1,1,-1810.52,4926.39,-21.734,1.05202,0,0,0.502085,0.864818,300,0,1), +(@GUID+167,195090,530,1,1,-1812.06,4920.92,-21.9526,0.945987,0,0,0.455553,0.890209,300,0,1), +(@GUID+168,195090,530,1,1,-1795.43,4927.2,-22.1493,0.270544,0,0,0.13486,0.990865,300,0,1), +(@GUID+169,195090,530,1,1,-1796.32,4931.29,-22.3174,0.129173,0,0,0.0645415,0.997915,300,0,1), +(@GUID+170,195090,530,1,1,-1799.12,4928.21,-22.2813,0.707226,0,0,0.346289,0.938128,300,0,1), +(@GUID+171,195090,530,1,1,-1783.82,4935.44,-22.5892,5.4471,0,0,0.405971,-0.913886,300,0,1), +(@GUID+172,195090,530,1,1,-1829.25,4920.79,-21.671,4.42216,0,0,0.801927,-0.597422,300,0,1), +(@GUID+173,195090,530,1,1,-1835.24,4924,-21.3785,4.00983,0,0,0.907242,-0.420609,300,0,1), +(@GUID+174,195090,530,1,1,-1798.26,4902.69,-21.4127,5.45889,0,0,0.400579,-0.916262,300,0,1), +(@GUID+175,195090,530,1,1,-1792.22,4911.42,-21.4162,5.16829,0,0,0.529021,-0.848609,300,0,1), +(@GUID+176,195090,0,1,1,-5146.92,-846.795,509.814,4.73578,0,0,0.698788,-0.715329,300,0,1), +(@GUID+177,195090,0,1,1,-5148.88,-848.813,510.175,3.96217,0,0,0.917006,-0.398873,300,0,1), +(@GUID+178,195090,0,1,1,-5154.23,-851.792,509.604,3.80116,0,0,0.946112,-0.323839,300,0,1), +(@GUID+179,195090,0,1,1,-5151.12,-850.78,510.203,2.82334,0,0,0.987366,0.158455,300,0,1), +(@GUID+180,195090,0,1,1,-5157.25,-865.505,507.488,4.03286,0,0,0.902338,-0.431029,300,0,1), +(@GUID+181,195090,0,1,1,-5162.21,-871.414,507.192,3.93861,0,0,0.921641,-0.388044,300,0,1), +(@GUID+182,195090,0,1,1,-5158.06,-875.801,507.508,4.08391,0,0,0.891043,-0.453918,300,0,1), +(@GUID+183,195090,0,1,1,-5163.62,-875.984,507.254,4.18994,0,0,0.865739,-0.500496,300,0,1), +(@GUID+184,195090,0,1,1,-5166.94,-874.019,507.083,2.13612,0,0,0.876268,0.481825,300,0,1), +(@GUID+185,195090,0,1,1,-5166.83,-871.411,506.884,1.14652,0,0,0.542373,0.840138,300,0,1), +(@GUID+186,195090,0,1,1,-5164.94,-867.229,506.913,1.14652,0,0,0.542373,0.840138,300,0,1), +(@GUID+187,195090,0,1,1,-5167.77,-861.231,506.701,0.420025,0,0,0.208472,0.978028,300,0,1), +(@GUID+188,195090,0,1,1,-5165.58,-860.107,506.446,0.475003,0,0,0.235275,0.971929,300,0,1), +(@GUID+189,195090,0,1,1,-5163.08,-858.823,506.659,0.475003,0,0,0.235275,0.971929,300,0,1), +(@GUID+190,195090,0,1,1,-5160.59,-857.539,506.642,0.475003,0,0,0.235275,0.971929,300,0,1), +(@GUID+191,195090,0,1,1,-5157.78,-856.092,507.248,0.475003,0,0,0.235275,0.971929,300,0,1), +(@GUID+192,195307,1,1,1,10054.6,2131.96,1329.66,-2.75761,0,0,0,1,180,100,1), +(@GUID+193,195307,1,1,1,10062.8,2129.42,1329.66,-2.30383,0,0,0,1,180,100,1), +(@GUID+194,195307,0,1,1,-5159.66,-869.708,507.315,3.00195,0,0,0,1,180,100,1), +(@GUID+195,195307,0,1,1,-5160.8,-869.684,507.251,-2.30383,0,0,0,1,180,100,1), +(@GUID+196,195307,0,1,1,-9328.34,171.941,62.8343,3.00195,0,0,0,1,180,100,1), +(@GUID+197,195307,0,1,1,-9351.13,177.262,62.7149,-2.30383,0,0,0,1,180,100,1), +(@GUID+198,195307,1,1,1,1171.94,-4462.66,21.3171,3.00195,0,0,0,1,180,100,1), +(@GUID+199,195307,1,1,1,1177.22,-4464.5,22.4542,-2.30383,0,0,0,1,180,100,1), +(@GUID+200,195307,1,1,1,-984.535,-75.8281,20.8642,3.00195,0,0,0,1,180,100,1), +(@GUID+201,195307,1,1,1,-979.977,-71.342,20.7172,-2.30383,0,0,0,1,180,100,1), +(@GUID+202,195068,0,1,1,1780.14,269.759,59.8725,0,0,0,0,1,180,100,1), +(@GUID+203,195068,0,1,1,1777.31,220.538,59.5768,0,0,0,0,1,180,100,1), +(@GUID+204,195068,1,1,1,10053.6,2109.59,1329.65,0,0,0,0,1,180,100,1), +(@GUID+205,195068,1,1,1,10065,2118.72,1329.66,0,0,0,0,1,180,100,1), +(@GUID+206,195068,1,1,1,10053.4,2128.55,1329.66,0,0,0,0,1,180,100,1), +(@GUID+207,195068,0,1,1,-5160.02,-869.03,507.29,0,0,0,0,1,180,100,1), +(@GUID+208,195068,0,1,1,-5159.92,-870.566,507.307,0,0,0,0,1,180,100,1), +(@GUID+209,195068,0,1,1,-9328.37,170.188,61.6268,0,0,0,0,1,180,100,1), +(@GUID+210,195068,0,1,1,-9327.13,181.863,61.6551,0,0,0,0,1,180,100,1), +(@GUID+211,195068,1,1,1,1180.13,-4457.48,21.4889,0,0,0,0,1,180,100,1), +(@GUID+212,195068,1,1,1,1186.07,-4471.15,21.3707,0,0,0,0,1,180,100,1), +(@GUID+213,195068,1,1,1,1172.28,-4463.25,21.2866,0,0,0,0,1,180,100,1), +(@GUID+214,195068,1,1,1,-983.009,-70.0955,20.7835,0,0,0,0,1,180,100,1), +(@GUID+215,195068,1,1,1,-984.639,-76.1319,20.8549,0,0,0,0,1,180,100,1), +(@GUID+216,195068,1,1,1,-984.92,-75.1719,20.9388,0,0,0,0,1,180,100,1), +(@GUID+217,195067,0,1,1,1778.85,260.073,59.498,0,0,0,0,1,180,100,1), +(@GUID+218,195067,1,1,1,10054.1,2124.82,1329.7,0,0,0,0,1,180,100,1), +(@GUID+219,195067,1,1,1,10047.4,2110.17,1329.65,0,0,0,0,1,180,100,1), +(@GUID+220,195067,1,1,1,10059.8,2122.52,1329.67,0,0,0,0,1,180,100,1), +(@GUID+221,195067,0,1,1,-5161.69,-869.67,507.202,0,0,0,0,1,180,100,1), +(@GUID+222,195067,0,1,1,-9352.43,172.927,61.5748,0,0,0,0,1,180,100,1), +(@GUID+223,195067,1,1,1,1175.47,-4455.32,21.5219,0,0,0,0,1,180,100,1), +(@GUID+224,195067,1,1,1,1185.36,-4460.86,21.102,0,0,0,0,1,180,100,1), +(@GUID+225,195067,1,1,1,1179.27,-4468.45,21.2471,0,0,0,0,1,180,100,1), +(@GUID+226,195067,1,1,1,-983.566,-73.3247,20.6424,0,0,0,0,1,180,100,1), +(@GUID+227,195067,1,1,1,-980.892,-79.2656,20.1022,0,0,0,0,1,180,100,1), +(@GUID+228,195063,1,1,1,1191.1,-4465.38,21.489,0,0,0,0,1,180,100,1), +(@GUID+229,195063,1,1,1,1176.06,-4456.3,21.5271,0,0,0,0,1,180,100,1), +(@GUID+230,195063,1,1,1,1185.15,-4469.57,21.3318,0,0,0,0,1,180,100,1), +(@GUID+231,195063,0,1,1,1776.75,250.743,59.8824,0,0,0,0,1,180,100,1), +(@GUID+232,195063,0,1,1,1782.6,260.549,59.42,0,0,0,0,1,180,100,1), +(@GUID+233,195063,0,1,1,1776.35,223.174,59.5078,0,0,0,0,1,180,100,1), +(@GUID+234,195063,0,1,1,1781.6,252.318,59.5262,0,0,0,0,1,180,100,1), +(@GUID+235,195063,0,1,1,1779.51,268.924,59.893,0,0,0,0,1,180,100,1), +(@GUID+236,195063,1,1,1,10066.4,2120.48,1329.66,0,0,0,0,1,180,100,1), +(@GUID+237,195063,1,1,1,10046.7,2110.08,1329.65,0,0,0,0,1,180,100,1), +(@GUID+238,195063,1,1,1,10050.3,2118.57,1331.05,0,0,0,0,1,180,100,1), +(@GUID+239,195063,1,1,1,10063.6,2112.16,1329.66,0,0,0,0,1,180,100,1), +(@GUID+240,195063,1,1,1,10055,2111.28,1329.65,0,0,0,0,1,180,100,1), +(@GUID+241,195063,0,1,1,-5158.94,-869.955,507.357,0,0,0,0,1,180,100,1), +(@GUID+242,195063,0,1,1,-5160.05,-871.753,507.315,0,0,0,0,1,180,100,1), +(@GUID+243,195063,0,1,1,-5161.04,-868.969,507.233,0,0,0,0,1,180,100,1), +(@GUID+244,195063,0,1,1,-5149.86,-882.234,508.225,0,0,0,0,1,180,100,1), +(@GUID+245,195063,0,1,1,-5162.1,-870.601,507.185,0,0,0,0,1,180,100,1), +(@GUID+246,195063,0,1,1,-5149.59,-854.429,509.499,0,0,0,0,1,180,100,1), +(@GUID+247,195063,0,1,1,-9323.89,179.863,64.6421,0,0,0,0,1,180,100,1), +(@GUID+248,195063,0,1,1,-9330.93,172.332,61.6442,0,0,0,0,1,180,100,1), +(@GUID+249,195063,0,1,1,-9331.52,182.493,61.6,0,0,0,0,1,180,100,1), +(@GUID+250,195063,0,1,1,-9334.96,176.014,63.3874,0,0,0,0,1,180,100,1), +(@GUID+251,195063,0,1,1,-9340.66,187.524,61.5517,0,0,0,0,1,180,100,1), +(@GUID+252,195063,1,1,1,1176.77,-4463.59,22.4735,0,0,0,0,1,180,100,1), +(@GUID+253,195063,1,1,1,1177.63,-4467.96,21.307,0,0,0,0,1,180,100,1), +(@GUID+254,195063,1,1,1,1174.72,-4455.49,21.5368,0,0,0,0,1,180,100,1), +(@GUID+255,195063,1,1,1,-980.41,-71.3438,20.7185,0,0,0,0,1,180,100,1), +(@GUID+256,195063,1,1,1,-983.493,-72.6302,20.6698,0,0,0,0,1,180,100,1), +(@GUID+257,195063,1,1,1,-982.13,-68.0764,20.8836,0,0,0,0,1,180,100,1), +(@GUID+258,195063,1,1,1,-984.149,-77.3333,20.7527,0,0,0,0,1,180,100,1), +(@GUID+259,195063,1,1,1,-980.212,-80.2552,20.0676,0,0,0,0,1,180,100,1), +(@GUID+260,182807,1,1,1,1184.02,-4469.83,21.2852,0,0,0,0,1,180,100,1), +(@GUID+261,182807,530,1,1,9672.12,-7346.44,11.9311,-0.244346,0,0,0.121869,-0.992546,180,100,1), +(@GUID+262,182807,0,1,1,1780.18,214.781,59.8534,0,0,0,0,1,180,100,1), +(@GUID+263,182807,0,1,1,1780.76,215.611,59.7988,0,0,0,0,1,180,100,1), +(@GUID+264,182807,1,1,1,10063.4,2111.85,1329.66,0,0,0,0,1,180,100,1), +(@GUID+265,182807,1,1,1,10062.7,2129.98,1329.66,0,0,0,0,1,180,100,1), +(@GUID+266,182807,1,1,1,10065.5,2118.46,1329.66,0,0,0,0,1,180,100,1), +(@GUID+267,182807,1,1,1,10054.8,2132.24,1329.66,0,0,0,0,1,180,100,1), +(@GUID+268,182807,1,1,1,10053.7,2125.31,1329.69,0,0,0,0,1,180,100,1), +(@GUID+269,182807,0,1,1,-5161.27,-870.734,507.233,0,0,0,0,1,180,100,1), +(@GUID+270,182807,0,1,1,-5160.73,-871.283,507.27,0,0,0,0,1,180,100,1), +(@GUID+271,182807,0,1,1,-9326.85,170.807,62.8254,0,0,0,0,1,180,100,1), +(@GUID+272,182807,0,1,1,-9335.46,175.405,61.6072,0,0,0,0,1,180,100,1), +(@GUID+273,182807,1,1,1,1174.36,-4455.34,21.5514,0,0,0,0,1,180,100,1), +(@GUID+274,182807,1,1,1,-984.738,-73.1875,20.9946,0,0,0,0,1,180,100,1), +(@GUID+275,182807,1,1,1,-980.771,-79.8229,20.1335,0,0,0,0,1,180,100,1), +(@GUID+276,180885,0,1,1,1805.89,217.134,60.6002,1.51844,0,0,0,1,180,100,1), +(@GUID+277,180885,1,1,1,10050.3,2118.06,1329.94,0.750491,0,0,0,1,180,100,1), +(@GUID+278,180885,0,1,1,-5149.52,-854.931,508.432,0.750491,0,0,0,1,180,100,1), +(@GUID+279,180885,0,1,1,-9331.44,181.991,61.63,0.750491,0,0,0,1,180,100,1), +(@GUID+280,180885,1,1,1,1176.85,-4464.09,21.3468,0.750491,0,0,0,1,180,100,1), +(@GUID+281,180885,1,1,1,-980.33,-71.8455,19.5878,0.750491,0,0,0,1,180,100,1), +(@GUID+282,195066,0,1,1,-9328.34,170.201,61.6675,0,0,0,0,1,180,100,1), +(@GUID+283,195069,0,1,1,-9331.48,181.45,62.7343,-0.890117,0,0,0,1,180,100,1), +(@GUID+284,195069,0,1,1,-9332.01,182.043,62.6892,-0.157079,0,0,0,1,180,100,1), +(@GUID+285,195066,0,1,1,-9327.13,181.875,61.6549,0,0,0,0,1,180,100,1), +(@GUID+286,195069,0,1,1,-5149.05,-855.003,509.504,2.54818,0,0,0,1,180,100,1), +(@GUID+287,195069,0,1,1,-5149.55,-855.472,509.469,-0.890117,0,0,0,1,180,100,1), +(@GUID+288,195069,0,1,1,-5150.07,-854.878,509.496,-0.157079,0,0,0,1,180,100,1), +(@GUID+289,195066,0,1,1,-5159.99,-869.016,507.291,0,0,0,0,1,180,100,1), +(@GUID+290,195066,0,1,1,-5159.91,-870.554,507.307,0,0,0,0,1,180,100,1), +(@GUID+291,195069,1,1,1,10049.8,2118.11,1331.01,-0.157079,0,0,0,1,180,100,1), +(@GUID+292,195069,1,1,1,10050.9,2117.89,1331.03,1.72787,0,0,0,1,180,100,1), +(@GUID+293,195066,1,1,1,10065.1,2118.72,1329.66,0,0,0,0,1,180,100,1), +(@GUID+294,195066,1,1,1,10053.5,2128.55,1329.66,0,0,0,0,1,180,100,1), +(@GUID+295,195069,1,1,1,10050.3,2117.48,1330.99,-0.890117,0,0,0,1,180,100,1), +(@GUID+296,195066,1,1,1,10053.6,2109.59,1329.65,0,0,0,0,1,180,100,1), +(@GUID+297,195066,0,1,1,1777.32,220.55,59.5767,0,0,0,0,1,180,100,1), +(@GUID+298,195066,0,1,1,1780.16,269.773,59.8725,0,0,0,0,1,180,100,1), +(@GUID+299,195069,0,1,1,1805.33,217.408,61.5327,-0.157079,0,0,0,1,180,100,1), +(@GUID+300,195069,0,1,1,1805.86,216.814,61.5886,-0.890117,0,0,0,1,180,100,1), +(@GUID+301,195069,0,1,1,1806.35,217.283,61.5437,2.54818,0,0,0,1,180,100,1), +(@GUID+302,195066,1,1,1,1186.07,-4471.14,21.3708,0,0,0,0,1,180,100,1), +(@GUID+303,195066,1,1,1,1180.13,-4457.47,21.4891,0,0,0,0,1,180,100,1), +(@GUID+304,195069,1,1,1,1176.29,-4464.04,22.4501,-0.157079,0,0,0,1,180,100,1), +(@GUID+305,195066,1,1,1,1172.31,-4463.23,21.2882,0,0,0,0,1,180,100,1), +(@GUID+306,195069,1,1,1,1177.32,-4464.16,22.4611,2.54818,0,0,0,1,180,100,1), +(@GUID+307,195069,1,1,1,1176.82,-4464.63,22.4507,-0.890117,0,0,0,1,180,100,1), +(@GUID+308,195066,1,1,1,-984.632,-76.1215,20.8542,0,0,0,0,1,180,100,1), +(@GUID+309,195069,1,1,1,-979.866,-71.9184,20.7017,2.54818,0,0,0,1,180,100,1), +(@GUID+310,195066,1,1,1,-983.002,-70.0833,20.7837,0,0,0,0,1,180,100,1), +(@GUID+311,195066,1,1,1,-984.913,-75.1597,20.9375,0,0,0,0,1,180,100,1), +(@GUID+312,195069,1,1,1,-980.894,-71.7934,20.7099,-0.157079,0,0,0,1,180,100,1), +(@GUID+313,195069,1,1,1,-980.365,-72.3872,20.7085,-0.890117,0,0,0,1,180,100,1); +-- Assignment of gameobjects to event +DELETE FROM `game_event_gameobject` WHERE `eventEntry`=51 AND `guid` BETWEEN @GUID AND @GUID+314; +INSERT INTO `game_event_gameobject` (`eventEntry`, `guid`) VALUES +(51,@GUID),(51,@GUID+1),(51,@GUID+2),(51,@GUID+3),(51,@GUID+4),(51,@GUID+5),(51,@GUID+6),(51,@GUID+7),(51,@GUID+8),(51,@GUID+9),(51,@GUID+10), +(51,@GUID+11),(51,@GUID+12),(51,@GUID+13),(51,@GUID+14),(51,@GUID+15),(51,@GUID+16),(51,@GUID+17),(51,@GUID+18),(51,@GUID+19),(51,@GUID+20), +(51,@GUID+21),(51,@GUID+22),(51,@GUID+23),(51,@GUID+24),(51,@GUID+25),(51,@GUID+26),(51,@GUID+27),(51,@GUID+28),(51,@GUID+29),(51,@GUID+30), +(51,@GUID+31),(51,@GUID+32),(51,@GUID+33),(51,@GUID+34),(51,@GUID+35),(51,@GUID+36),(51,@GUID+37),(51,@GUID+38),(51,@GUID+39),(51,@GUID+40), +(51,@GUID+41),(51,@GUID+42),(51,@GUID+43),(51,@GUID+44),(51,@GUID+45),(51,@GUID+46),(51,@GUID+47),(51,@GUID+48),(51,@GUID+49),(51,@GUID+50), +(51,@GUID+51),(51,@GUID+52),(51,@GUID+53),(51,@GUID+54),(51,@GUID+55),(51,@GUID+56),(51,@GUID+57),(51,@GUID+58),(51,@GUID+59),(51,@GUID+60), +(51,@GUID+61),(51,@GUID+62),(51,@GUID+63),(51,@GUID+64),(51,@GUID+65),(51,@GUID+66),(51,@GUID+67),(51,@GUID+68),(51,@GUID+69),(51,@GUID+70), +(51,@GUID+71),(51,@GUID+72),(51,@GUID+73),(51,@GUID+74),(51,@GUID+75),(51,@GUID+76),(51,@GUID+77),(51,@GUID+78),(51,@GUID+79),(51,@GUID+80), +(51,@GUID+81),(51,@GUID+82),(51,@GUID+83),(51,@GUID+84),(51,@GUID+85),(51,@GUID+86),(51,@GUID+87),(51,@GUID+88),(51,@GUID+89),(51,@GUID+90), +(51,@GUID+91),(51,@GUID+92),(51,@GUID+93),(51,@GUID+94),(51,@GUID+95),(51,@GUID+96),(51,@GUID+97),(51,@GUID+98),(51,@GUID+99),(51,@GUID+100), +(51,@GUID+101),(51,@GUID+102),(51,@GUID+103),(51,@GUID+104),(51,@GUID+105),(51,@GUID+106),(51,@GUID+107),(51,@GUID+108),(51,@GUID+109),(51,@GUID+110), +(51,@GUID+111),(51,@GUID+112),(51,@GUID+113),(51,@GUID+114),(51,@GUID+115),(51,@GUID+116),(51,@GUID+117),(51,@GUID+118),(51,@GUID+119),(51,@GUID+120), +(51,@GUID+121),(51,@GUID+122),(51,@GUID+123),(51,@GUID+124),(51,@GUID+125),(51,@GUID+126),(51,@GUID+127),(51,@GUID+128),(51,@GUID+129),(51,@GUID+130), +(51,@GUID+131),(51,@GUID+132),(51,@GUID+133),(51,@GUID+134),(51,@GUID+135),(51,@GUID+136),(51,@GUID+137),(51,@GUID+138),(51,@GUID+139),(51,@GUID+140), +(51,@GUID+141),(51,@GUID+142),(51,@GUID+143),(51,@GUID+144),(51,@GUID+145),(51,@GUID+146),(51,@GUID+147),(51,@GUID+148),(51,@GUID+149),(51,@GUID+150), +(51,@GUID+151),(51,@GUID+152),(51,@GUID+153),(51,@GUID+154),(51,@GUID+155),(51,@GUID+156),(51,@GUID+157),(51,@GUID+158),(51,@GUID+159),(51,@GUID+160), +(51,@GUID+161),(51,@GUID+162),(51,@GUID+163),(51,@GUID+164),(51,@GUID+165),(51,@GUID+166),(51,@GUID+167),(51,@GUID+168),(51,@GUID+169),(51,@GUID+170), +(51,@GUID+171),(51,@GUID+172),(51,@GUID+173),(51,@GUID+174),(51,@GUID+175),(51,@GUID+176),(51,@GUID+177),(51,@GUID+178),(51,@GUID+179),(51,@GUID+180), +(51,@GUID+181),(51,@GUID+182),(51,@GUID+183),(51,@GUID+184),(51,@GUID+185),(51,@GUID+186),(51,@GUID+187),(51,@GUID+188),(51,@GUID+189),(51,@GUID+190), +(51,@GUID+191),(51,@GUID+192),(51,@GUID+193),(51,@GUID+194),(51,@GUID+195),(51,@GUID+196),(51,@GUID+197),(51,@GUID+198),(51,@GUID+199),(51,@GUID+200), +(51,@GUID+201),(51,@GUID+202),(51,@GUID+203),(51,@GUID+204),(51,@GUID+205),(51,@GUID+206),(51,@GUID+207),(51,@GUID+208),(51,@GUID+209),(51,@GUID+210), +(51,@GUID+211),(51,@GUID+212),(51,@GUID+213),(51,@GUID+214),(51,@GUID+215),(51,@GUID+216),(51,@GUID+217),(51,@GUID+218),(51,@GUID+219),(51,@GUID+220), +(51,@GUID+221),(51,@GUID+222),(51,@GUID+223),(51,@GUID+224),(51,@GUID+225),(51,@GUID+226),(51,@GUID+227),(51,@GUID+228),(51,@GUID+229),(51,@GUID+230), +(51,@GUID+231),(51,@GUID+232),(51,@GUID+233),(51,@GUID+234),(51,@GUID+235),(51,@GUID+236),(51,@GUID+237),(51,@GUID+238),(51,@GUID+239),(51,@GUID+240), +(51,@GUID+241),(51,@GUID+242),(51,@GUID+243),(51,@GUID+244),(51,@GUID+245),(51,@GUID+246),(51,@GUID+247),(51,@GUID+248),(51,@GUID+249),(51,@GUID+250), +(51,@GUID+251),(51,@GUID+252),(51,@GUID+253),(51,@GUID+254),(51,@GUID+255),(51,@GUID+256),(51,@GUID+257),(51,@GUID+258),(51,@GUID+259),(51,@GUID+260), +(51,@GUID+261),(51,@GUID+262),(51,@GUID+263),(51,@GUID+264),(51,@GUID+265),(51,@GUID+266),(51,@GUID+267),(51,@GUID+268),(51,@GUID+269),(51,@GUID+270), +(51,@GUID+271),(51,@GUID+272),(51,@GUID+273),(51,@GUID+274),(51,@GUID+275),(51,@GUID+276),(51,@GUID+277),(51,@GUID+278),(51,@GUID+279),(51,@GUID+280), +(51,@GUID+281),(51,@GUID+282),(51,@GUID+283),(51,@GUID+284),(51,@GUID+285),(51,@GUID+286),(51,@GUID+287),(51,@GUID+288),(51,@GUID+289),(51,@GUID+290), +(51,@GUID+291),(51,@GUID+292),(51,@GUID+293),(51,@GUID+294),(51,@GUID+295),(51,@GUID+296),(51,@GUID+297),(51,@GUID+298),(51,@GUID+299),(51,@GUID+300), +(51,@GUID+301),(51,@GUID+302),(51,@GUID+303),(51,@GUID+304),(51,@GUID+305),(51,@GUID+306),(51,@GUID+307),(51,@GUID+308),(51,@GUID+309),(51,@GUID+310), +(51,@GUID+311),(51,@GUID+312),(51,@GUID+313); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 4803: To Catch a Sparrowhawk +-- Sparrowhawk SAI +SET @Sparrowhawk := 22979; +SET @Net := 39810; +SET @ItemSpell := 39812; +SET @QuestItem := 32320; +SET @Script := 39810; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@Sparrowhawk; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@Sparrowhawk AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@Sparrowhawk,0,0,0,13,0,100,0,0,0,0,0,25,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Sparrowhawk - On target casting spell on it - Flee'), +(@Sparrowhawk,0,1,2,8,0,100,0,@Net,0,0,0,85,@ItemSpell,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Sparrowhawk - On spell hit by net - Ivoker cast on self spell for item'), +(@Sparrowhawk,0,2,3,61,0,100,0,0,0,0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Sparrowhawk - Linked with previous event - Set unseen'), +(@Sparrowhawk,0,3,0,61,0,100,0,0,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Sparrowhawk - Linked with previous event - Despawn in 1 sec'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 4843: Stop the Ascension! +-- Halfdan SAI +SET @Halfdan := 23671; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@Halfdan; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@Halfdan AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@Halfdan,0,0,0,54,0,100,0,0,0,0,0,1,0,0,0,0,0,0,1,0,2000,0,0,0,0,0, 'Halfdan - On summoned - Say line 1'), +(@Halfdan,0,1,0,52,0,100,0,0,@Halfdan,0,0,1,1,2000,0,0,0,0,1,0,0,0,0,0,0,0, 'Halfdan - On text 1 over - Say line 2'), +(@Halfdan,0,2,3,52,0,100,0,1,@Halfdan,0,0,2,14,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Halfdan - IC - Change faction to unfriendly'), +(@Halfdan,0,3,0,61,0,100,0,0,0,0,0,46,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Halfdan - Linked with previous event - Move 1 forward to aggro'), +(@Halfdan,0,4,0,0,0,100,0,2000,5000,9500,11500,11,35263,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Halfdan - IC - Cast Frost attack'), +(@Halfdan,0,5,0,0,0,100,0,2500,5000,6000,10000,11,32736,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Halfdan - IC - Cast Mortal Strike'), +(@Halfdan,0,6,0,0,0,100,0,1250,5000,5000,6000,11,12169,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Halfdan - IC - Cast Shield Block'), +(@Halfdan,0,7,0,0,0,100,0,3000,8000,4000,12000,11,32015,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Halfdan - IC - Cast Knockdown'), +(@Halfdan,0,8,0,9,0,100,0,8,25,5000,5000,11,19131,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Halfdan - On target in range - Cast Shield Charge'), +(@Halfdan,0,9,10,2,0,100,1,75,75,120000,120000,1,2,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Halfdan - At 75% HP - Say line 3'), +(@Halfdan,0,10,0,61,0,100,0,0,0,0,0,11,8599,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Halfdan - Linked with previous event - Cast Enrage on self'), +(@Halfdan,0,11,0,2,0,100,1,25,25,120000,120000,1,3,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Halfdan - At 25% HP - Say line 4'), +(@Halfdan,0,12,13,1,0,100,0,20000,20000,20000,20000,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Halfdan - OOC more than 20 sec - Set unseen'), +(@Halfdan,0,13,0,61,0,100,0,0,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Halfdan - Linked with previous event - Despawn in 1 sec'); +-- Texts +DELETE FROM `creature_text` WHERE `entry`=@Halfdan; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(@Halfdan,0,0, 'You think I do not know what you are trying to do? You think I haven''t been watching you?',12,0,100,1,2000,0, 'Halfdan'), +(@Halfdan,1,0, 'Hah! You thought to interfere with my ascension? Nothing can stop me now!',12,0,100,1,2000,0, 'Halfdan'), +(@Halfdan,2,0, 'You will not stop my ascension, tiny $C. Time to die!',14,0,100,1,2000,0, 'Halfdan'), +(@Halfdan,3,0, 'No! You will not defeat me!',14,0,100,1,1000,0, 'Halfdan'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Issue 4996: Melding of Influences +-- Primal Ooze and Captured Fel Ooze SAIs +SET @POoze := 6557; +SET @CFOoze := 10290; +SET @GFOoze := 9621; -- Gargantuan Ooze = result of merging +SET @SpellTrigger := 16031; -- Cast Releasing Corrupt Ooze - can be used only with target of Primal Ooze to summon the Corrupted Ooze and trigger events +SET @MergingOozes := 16032; -- Spell visual for Oozes at the moment of meging +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (@POoze,@CFOoze); +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid` IN (@POoze,@CFOoze); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@POoze,0,0,0,8,0,100,0,@SpellTrigger,0,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Primal Ooze - On hit by spell Releasing Ooze - Set phase 2'), +-- Phase 2 - used to delay a bit Primal Ooze actions, so the Corrupted Ooze will be spawned +(@POoze,0,1,2,60,2,100,1,1500,1500,0,0,45,0,1,0,0,0,0,9,@CFOoze,0,35,0,0,0,0, 'Primal Ooze - On event update in phase 2 - Set data 0 1 on Corrupted Ooze'), +(@POoze,0,2,0,61,2,100,0,0,0,0,0,29,0,0,10290,1,1,0,9,@CFOoze,0,35,0,0,0,0, 'Primal Ooze - Linked with previous event - Follow Captured felwood ooze'), +(@POoze,0,3,4,65,2,100,0,0,0,0,0,47,0,0,0,0,0,0,0,0,1,0,0,0,0,0, 'Primal Ooze - On follow complete - Set unseen'), +(@POoze,0,4,5,61,2,100,0,0,0,0,0,12,@GFOoze,6,20000,0,0,0,1,0,0,0,0,0,0,0, 'Primal Ooze - Linked with previous event - Spawn Gargantuan Ooze'), +(@POoze,0,5,6,61,2,100,0,0,0,0,0,11,@MergingOozes,0,0,0,0,0,9,@GFOoze,0,5,0,0,0,0, 'Captured Fel Ooze - Linked with previous event - Cast Merging Oozes on Gargantuan Ooze'), +(@POoze,0,6,0,61,2,100,0,0,0,0,0,41,50,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Primal Ooze - Linked with previous event - Despawn self'), +-- <<<>>>> +(@CFOoze,0,0,0,38,0,100,0,0,1,0,0,29,0,0,@POoze,0,1,0,9,@POoze,0,20,0,0,0,0, 'Captured Fel Ooze - On data set 0 1 - Follow Primal Ooze in less than 20 range'), +(@CFOoze,0,1,2,65,0,100,0,0,0,0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Captured Fel Ooze - On follow complete - Set unseen'), +(@CFOoze,0,2,0,61,0,100,0,0,0,0,0,41,1000,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Captured Fel Ooze - Linked with previous event - Despawn'); +-- Add conditions for Releasing Corrupt Ooze +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=@SpellTrigger; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(17,0,@SpellTrigger,0,0,31,1,3,@POoze,0,0,0, '', 'Releasing Corrupted Ooze can be casted only on Primal Ooze'); +-- Condition for Merging Oozes so it can hit only Gargantuan Ooze +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=@MergingOozes; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,@MergingOozes,0,0,31,0,3,@GFOoze,0,0,0, '', 'Merging Oozes can hit only Gargantuan Ooze'); +-- -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +DELETE FROM `creature_addon` WHERE `guid`=53882; diff --git a/sql/updates/world/2012_11_18_00_world_ormorok.sql b/sql/updates/world/2012_11_18_00_world_ormorok.sql new file mode 100644 index 00000000000..0ec8d13fd64 --- /dev/null +++ b/sql/updates/world/2012_11_18_00_world_ormorok.sql @@ -0,0 +1,56 @@ +-- Crystal Spikes - Script Effect - Spell casted by Ormorok - Triggers one summon spell in every direction +DELETE FROM `spell_scripts` WHERE `id` IN (47958,57082); +INSERT INTO `spell_scripts`(`id`,`command`,`datalong`,`datalong2`) VALUES +-- Non heroic +(47958,15,47954,1), +(47958,15,47955,1), +(47958,15,47956,1), +(47958,15,47957,1), +-- Heroic +(57082,15,57077,1), +(57082,15,57078,1), +(57082,15,57080,1), +(57082,15,57081,1); + +DELETE FROM `spelldifficulty_dbc` WHERE `id` IN (47958,48016,48017) OR `spellid0` IN (47958,48016,48017); +INSERT INTO `spelldifficulty_dbc`(`id`,`spellid0`,`spellid1`) VALUES +(47958,47958,57082), -- Crystal Spikes +(48016,48016,57066), -- Trample +(48017,48017,57086); -- Frenzy + +-- Assign aura script for spawning Crystal Spike rows +DELETE FROM `spell_script_names` WHERE `spell_id`=47941; +INSERT INTO `spell_script_names`(`spell_id`,`ScriptName`) VALUES +(47941,'spell_crystal_spike'); + +-- Apply aura to triggers +DELETE FROM `creature_template_addon` WHERE `entry` IN (27101,27079); +INSERT INTO `creature_template_addon`(`entry`,`auras`) VALUES +(27101,'47941'), -- Aura to summon the next trigger after 250ms +(27079,'47941'); -- Aura to summon the next trigger after 250ms and visual effect + +-- Assign core scripts and SmartAI to trigger +UPDATE `creature_template` SET `AIName`='',`ScriptName`='npc_crystal_spike_trigger' WHERE `entry` IN (27101,27079); +UPDATE `creature_template` SET `AIName`='SmartAI',`ScriptName`='' WHERE `entry`=27099; + +-- SAI for Crystal Spike (Damage dealer) +DELETE FROM `smart_scripts` WHERE `entryorguid`=27099 AND `source_type`=0; +INSERT INTO `smart_scripts`(`entryorguid`,`event_type`,`action_type`,`action_param1`,`action_param2`,`target_type`,`comment`) VALUES +(27099,54,80,2709900,2,1,'Crystal Spike - Is summoned - Call timed action list'); + +-- Timed action list +DELETE FROM `smart_scripts` WHERE `entryorguid`=2709900 AND `source_type`=9; +INSERT INTO `smart_scripts`(`entryorguid`,`source_type`,`id`,`event_param1`,`event_param2`,`action_type`,`action_param1`,`action_param2`,`target_type`,`comment`) VALUES +(2709900,9,1,2100,2100,11,47944,2,1,'Crystal Spike - Timed action list - Cast damage spell'), +(2709900,9,2,0,0,41,0,0,1,'Crystal Spike - Timed action list - Despawn'); + +-- Creature texts for the boss +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1576024 AND -1576020; + +DELETE FROM `creature_text` WHERE `entry`=26794; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`comment`) VALUES +(26794,1,'Noo!',14,13328,'ormorok SAY_AGGRO'), +(26794,2,'Aaggh!',14,13330,'ormorok SAY_DEATH'), +(26794,3,'Back!',14,13331,'ormorok SAY_REFLECT'), +(26794,4,'Bleed!',14,13332,'ormorok SAY_CRYSTAL_SPIKES'), +(26794,5,'Aaggh! Kill!',14,13329,'ormorok SAY_KILL'); diff --git a/sql/updates/world/2012_11_18_01_world_creature_text.sql b/sql/updates/world/2012_11_18_01_world_creature_text.sql new file mode 100644 index 00000000000..5d8da97f1f0 --- /dev/null +++ b/sql/updates/world/2012_11_18_01_world_creature_text.sql @@ -0,0 +1,15 @@ +-- Ossirian the Unscarred +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1509027 AND -1509018; +DELETE FROM `creature_text` WHERE `entry`=15339; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(15339, 0, 0, 'I am rejuvinated!', 14, 0, 100, 0, 0, 8593, 'SAY_SUPREME_1'), +(15339, 0, 1, 'My powers are renewed!', 14, 0, 100, 0, 0, 8595, 'SAY_SUPREME_2'), +(15339, 0, 2, 'My powers return!', 14, 0, 100, 0, 0, 8596, 'SAY_SUPREME_3'), +(15339, 1, 0, 'Protect the city at all costs!', 14, 0, 100, 0, 0, 8597, 'SAY_INTRO_1'), +(15339, 1, 1, 'To your posts. Defend the city.', 14, 0, 100, 0, 0, 8600, 'SAY_INTRO_2'), +(15339, 1, 2, 'Tresspassers will be terminated.', 14, 0, 100, 0, 0, 8601, 'SAY_INTRO_3'), +(15339, 2, 0, 'Sands of the desert rise and block out the sun!', 14, 0, 100, 0, 0, 8598, 'SAY_AGGRO'), +(15339, 3, 0, 'You are terminated.', 14, 0, 100, 0, 0, 8602, 'SAY_SLAY'), +(15339, 4, 0, 'I...have...failed.', 14, 0, 100, 0, 0, 8594, 'SAY_DEATH'), +(15339, 5, 0, 'The walls have been breached!', 14, 0, 100, 0, 0, 8599, 'SAY_KURINAXX_DEATH'); + diff --git a/sql/updates/world/2012_11_18_01_world_gameobject.sql b/sql/updates/world/2012_11_18_01_world_gameobject.sql new file mode 100644 index 00000000000..d82f9a07e7e --- /dev/null +++ b/sql/updates/world/2012_11_18_01_world_gameobject.sql @@ -0,0 +1,3 @@ +-- Ossirian Crystal +UPDATE `gameobject_template` SET `ScriptName`='go_ossirian_crystal' WHERE `entry`=180619; + diff --git a/sql/updates/world/2012_11_18_02_world_toc.sql b/sql/updates/world/2012_11_18_02_world_toc.sql new file mode 100644 index 00000000000..9262aceed7a --- /dev/null +++ b/sql/updates/world/2012_11_18_02_world_toc.sql @@ -0,0 +1,150 @@ +-- Trial of the Crusader Death knight Death grip scriptname +DELETE FROM `spell_script_names` WHERE `spell_id` IN (66017, 68753, 68754, 68755); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(66017, 'spell_faction_champion_death_grip'), +(68753, 'spell_faction_champion_death_grip'), +(68754, 'spell_faction_champion_death_grip'), +(68755, 'spell_faction_champion_death_grip'); + +-- Trial of the Crusader shaman heroism/bloodlust +DELETE FROM `spell_script_names` WHERE `spell_id` IN (65983, 65980); +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(65983, 'spell_toc_heroism'), +(65980, 'spell_toc_bloodlust'); + +-- impale scriptname +DELETE FROM `spell_script_names` WHERE `spell_id`=65919; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(65919, 'spell_impale'); + +-- firebomb scriptname and modelid (ToC Gormok encounter) +UPDATE `creature_template` SET `ScriptName`="npc_firebomb" WHERE `entry`=34854; + +-- frost sphere corrections +UPDATE `creature_template` SET `minlevel`=80, `InhabitType`=4, `RegenHealth`=0 WHERE `entry` IN (34606, 34649); + +-- Dark / Light essence removing +DELETE FROM `spell_linked_spell` WHERE `spell_trigger` IN (-67222, -67223, -67224, -65686, -67176, -67177, -67178, -65684); +INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES +(-67222, -67511, 0, 'Light Essence 25M'), +(-67223, -67512, 0, 'Light Essence 10M H'), +(-67224, -67513, 0, 'Light Essence 25M H'), +(-65686, -65811, 0, 'Light Essence 10M'), +(-67176, -67179, 0, 'Dark Essence 25M'), +(-67177, -67180, 0, 'Dark Essence 10M H'), +(-67178, -67181, 0, 'Dark Essence 25M H'), +(-65684, -65827, 0, 'Dark Essence 10M'); + +-- Gormoks Fire Bomb scriptname +DELETE FROM `spell_script_names` WHERE `spell_id`=66313; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(66313, 'spell_gormok_fire_bomb'); + +-- correcting hitbox of Anub'Arak +UPDATE `creature_model_info` SET `bounding_radius`=1.085, `combat_reach`=10.5 WHERE `modelid`=29268; + +-- correcting hitbox of Acidmaw +UPDATE `creature_model_info` SET `bounding_radius`=1.24, `combat_reach`=12 WHERE `modelid`=29815; + +-- spawn the Anub'arak gate in all versions of the instance +UPDATE `gameobject` SET `spawnMask`=15 WHERE `guid`=151192; + +-- adding ToC boss immunities +UPDATE `creature_template` SET `mechanic_immune_mask`=`mechanic_immune_mask` | 1 | 2 | 4 | 8 | 16 | 32 | 64 | 128 | 256 | 512 | 1024 | 2048 | 4096 | 8192 | 65536 | 131072 | 524288 | 4194304 | 8388608 | 67108864 | 536870912 WHERE `entry` IN (34796, 35438, 35439, 35440, 34799, 35514, 35515, 35516, 35144, 35511, 35512, 35513, 34797, 35447, 35448, 35449, 34780, 35216, 35268, 35269, 36066, 35347, 35348, 35349, 34497, 35350, 35351, 35352, 34564, 34566, 35615, 35616); + +-- adding Teleport locations to Trial of the Crusader/champion for GMs +DELETE FROM `game_tele` WHERE `name` LIKE '%TrialOfTheCrusader%' OR `name` LIKE '%TrialOfTheChampion%'; +INSERT INTO `game_tele` (`position_x`, `position_y`, `position_z`, `orientation`, `map`, `name`) VALUES +(8515.63, 714.174, 558.248, 1.57298, 571, 'TrialOfTheCrusader'), +(8588.42, 791.888, 558.236, 3.23819, 571, 'TrialOfTheChampion'); + +-- misc fixes for higher boss brackets +UPDATE `creature_template` SET `dmg_multiplier`=70 WHERE `entry` IN (35440, 35513, 35516, 35449, 35269, 35352, 35349, 35616, 35664, 35670, 35673, 35676, 35682, 35685, 35688, 35691, 35694, 35697, 35701, 35704, 35707, 35710, 35713, 35716, 35720, 35723, 35726, 35730, 35733, 35736, 35739, 35742, 35745, 35748, 35749); +UPDATE `creature_template` SET `flags_extra`=`flags_extra` | 1 WHERE `entry` IN (35438, 35439, 35440, 35511, 35512, 35513, 35514, 35515, 35516, 35662, 35663, 35664, 35665, 35666, 35667, 35668, 35669, 35670, 35671, 35672, 35673, 35674, 35675, 35676, 35680, 35681, 35682, 35683, 35684, 35685, 35686, 35687, 35688, 35689, 35690, 35691, 35692, 35693, 35694, 35695, 35696, 35697, 35699, 35700, 35701, 35702, 35703, 35704, 35705, 35706, 35707, 35708, 35709, 35710, 35711, 35712, 35713, 35714, 35715, 35716, 35718, 35719, 35720, 35721, 35722, 35723, 35724, 35725, 35726, 35728, 35729, 35730, 35731, 35732, 35733, 35734, 35735, 35736, 35737, 35738, 35739, 35740, 35741, 35742, 35743, 35744, 35745, 35746, 35747, 35748, 34442, 34443, 35749); +UPDATE `creature_template` SET `speed_walk`=2.8, `speed_run`=1.71429 WHERE `entry` IN (35350, 35351, 35352, 35347, 35348, 35349); +UPDATE `creature_template` SET `speed_walk`=2, `speed_run`=1.14286 WHERE `entry` IN (34566, 35615, 35616); +UPDATE `creature_template` SET `skinloot`=34797 WHERE `entry` IN (35447, 35448, 35449); +UPDATE `creature_template` SET `skinloot`=70214 WHERE `entry` IN (34566, 35615, 35616); +UPDATE `creature_template` SET `mindmg`=388, `maxdmg`=583, `attackpower`=146 WHERE `entry` IN (35711, 35712, 35713); +UPDATE `creature_template` SET `mindmg`=468, `maxdmg`=702, `attackpower`=175 WHERE `entry` IN (35699, 35700, 35701); +UPDATE `creature_template` SET `dmg_multiplier`=35 WHERE `entry` IN (34472, 34454); +UPDATE `creature_template` SET `unit_class`=1 WHERE `entry` IN (34461, 35743, 35744, 35745); + +-- adding Jaraxxus add immunities +UPDATE `creature_template` SET `mechanic_immune_mask`=`mechanic_immune_mask` | 1024 | 2048 WHERE `entry` IN (34815, 35262, 35263, 35264, 34826, 35270, 35271, 35272); +UPDATE `creature_template` SET `mechanic_immune_mask`=`mechanic_immune_mask` | 262144 WHERE `entry` IN (35263, 35264); +-- adding Nether portal and Infernal volcano immunities to knockout/grip +UPDATE `creature_template` SET `mechanic_immune_mask`=`mechanic_immune_mask` | 32 | 8192 WHERE `entry` IN (34825, 35278, 35279, 35280, 34813, 35265, 35266, 35267); + +-- cast Forbearance together with Divine shield (ToC Faction Champions paladin) +DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=66010; +INSERT INTO `spell_linked_spell` (`spell_trigger`, `spell_effect`, `type`, `comment`) VALUES +(66010, 25771, 0, 'Divine Shield - Forbearance'); + +-- make all Diminishing returns rules apply in faction champions +UPDATE `creature_template` SET `flags_extra`=`flags_extra` | 1048576 WHERE `entry` IN +(34445,35705,35706,35707, +34459,35686,35687,35688, +34447,35683,35684,35685, +34455,35680,35681,35682, +34453,35718,35719,35720, +34458,35692,35693,35694, +34454,35711,35712,35713, +34448,35724,35725,35726, +34441,34442,34443,35749, +34450,35695,35696,35697, +35610,35774,35775,35776, +35465,36301,36302,36303, +34451,35671,35672,35673, +34449,35689,35690,35691, +34444,35740,35741,35742, +34456,35708,35709,35710, +34460,35702,35703,35704, +34461,35743,35744,35745, +34463,35734,35735,35736, +34465,35746,35747,35748, +34466,35665,35666,35667, +34467,35662,35663,35664, +34468,35721,35722,35723, +34469,35714,35715,35716, +34470,35728,35729,35730, +34473,35674,35675,35676, +34474,35731,35732,35733, +34475,35737,35738,35739, +34471,35668,35669,35670, +34472,35699,35700,35701); + +-- correcting faction champions dmg multipliers +UPDATE `creature_template` SET `dmg_multiplier`=10.8 WHERE `entry` IN (34445,34459,34447,34455,34453,34458,34454,34448,34441,34450,35610,35465,34451,34449,34444,34456,34460,34461,34463,34465,34466,34467,34468,34469,34470,34473,34474,34475,34472, 34471); +UPDATE `creature_template` SET `dmg_multiplier`=16.1 WHERE `entry` IN (35705,35706,35686,35687,35683,35684,35680,35681,35718,35719,35692,35693,35711,35712,35724,35725,34442,34443,35695,35696,35774,35775,36301,36302,35671,35672,35689,35690,35740,35741,35708,35709,35702,35703,35743,35744,35734,35735,35746,35747,35665,35666,35662,35663,35721,35722,35714,35715,35728,35729,35674,35675,35731,35732,35737,35738,35699,35700, 35668, 35669); +UPDATE `creature_template` SET `dmg_multiplier`=21.5 WHERE `entry` IN (35707,35688,35685,35682,35720,35694,35713,35726,35749,35697,35776,36303,35673,35691,35742,35710,35704,35745,35736,35748,35667,35664,35723,35716,35730,35676,35733,35739,35701, 35670); + +-- ToC warlock pet db corrections +UPDATE `creature_template` SET `minlevel`=80, `maxlevel`=80, `exp`=2, `faction_A`=16, `faction_H`=16, `mindmg`=417, `maxdmg`=582, `attackpower`=608, `unit_class`=2, `dynamicflags`=8, `minrangedmg`=341, `maxrangedmg`=506, `rangedattackpower`=80 WHERE `entry` IN (36301, 36302, 36303); +UPDATE `creature_template` SET `faction_A`=16, `faction_H`=16, `difficulty_entry_1`=36301, `difficulty_entry_2`=36302, `difficulty_entry_3`=36303 WHERE `entry`=35465; +UPDATE `creature_template` SET `name`="Zhaagrym (1)" WHERE `entry`=36301; + +-- Jaraxxus Mistress Kiss +DELETE FROM `spell_script_names` WHERE `ScriptName`='spell_mistress_kiss_area'; +INSERT INTO `spell_script_names` (spell_id, `ScriptName`) VALUES +(66336, 'spell_mistress_kiss_area'), +(67076, 'spell_mistress_kiss_area'), +(67077, 'spell_mistress_kiss_area'), +(67078, 'spell_mistress_kiss_area'); + +DELETE FROM `spell_script_names` WHERE `ScriptName` = 'spell_mistress_kiss'; +INSERT INTO `spell_script_names` (`spell_id`, `ScriptName`) VALUES +(66334, 'spell_mistress_kiss'), +(67905, 'spell_mistress_kiss'), +(67906, 'spell_mistress_kiss'), +(67907, 'spell_mistress_kiss'); + +-- Gormoks Rising anger targeting +DELETE FROM `conditions` WHERE `SourceEntry`=66636; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES +(13, 1, 66636, 31, 3, 34796, 'Rising Anger'); + +-- Twins loot correction +UPDATE `creature_loot_template` SET `maxcount`=1 WHERE `entry`=34497 AND `mincountOrRef` IN (-34296, -34302); +-- Anubarak loot correction +UPDATE `creature_loot_template` SET `maxcount`=2 WHERE `entry`=34564 AND `mincountOrRef` IN (-34298, -34304); diff --git a/sql/updates/world/2012_11_19_00_world_various_fixes.sql b/sql/updates/world/2012_11_19_00_world_various_fixes.sql new file mode 100644 index 00000000000..ca78611fc0b --- /dev/null +++ b/sql/updates/world/2012_11_19_00_world_various_fixes.sql @@ -0,0 +1,539 @@ +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 856: NPC Jezelle Pruitt +-- Update AI in Creature_Template to Smart AI +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=5702; +-- Delete static spawns of Jezelles Imp,Voidwalker and Felhunter. +DELETE FROM `creature` WHERE `id` IN (5726,5729,5730); +-- Smart Script For Jezelle Pruitt +DELETE FROM `smart_scripts` WHERE `entryorguid`=5702; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(5702,0,0,0,1,0,100,0,0,0,235000,235000,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 0"), +(5702,0,1,0,1,0,100,0,10000,10000,235000,235000,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 1"), +(5702,0,2,0,1,0,100,0,13000,13000,235000,235000,11,8677,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Cast Summon Effect"), +(5702,0,3,0,1,0,100,0,18000,18000,235000,235000,12,5730,2,30000,0,0,0,8,0,0,0,1793.26,128.034,-63.8432,3.14159,"Jezelle Pruitt - OOC - Spawn Jezelle's Imp"), +(5702,0,4,0,1,0,100,0,20000,20000,235000,235000,1,2,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 2"), +(5702,0,5,0,1,0,100,0,50000,50000,235000,235000,1,3,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 3"), +(5702,0,6,0,1,0,100,0,53000,53000,235000,235000,11,8677,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Cast Summon Effect"), +(5702,0,7,0,1,0,100,0,58000,58000,235000,235000,12,5729,2,30000,0,0,0,8,0,0,0,1793.26,128.034,-63.8432,3.14159,"Jezelle Pruitt - OOC - Spawn Jezelle's Voidwalker"), +(5702,0,8,0,1,0,100,0,60000,60000,235000,235000,1,4,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 4"), +(5702,0,9,0,1,0,100,0,90000,90000,235000,235000,1,5,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 5"), +(5702,0,10,0,1,0,100,0,93000,93000,235000,235000,11,8677,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Cast Summon Effect"), +(5702,0,11,0,1,0,100,0,98000,98000,235000,235000,12,5728,2,30000,0,0,0,8,0,0,0,1793.26,128.034,-63.8432,3.14159,"Jezelle Pruitt - OOC - Spawn Jezelle's Succubus"), +(5702,0,12,0,1,0,100,0,100000,100000,235000,235000,1,6,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 6"), +(5702,0,13,0,1,0,100,0,130000,130000,235000,235000,1,7,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 7"), +(5702,0,14,0,1,0,100,0,133000,133000,235000,235000,11,8677,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Cast Summon Effect"), +(5702,0,15,0,1,0,100,0,138000,138000,235000,235000,12,5726,2,30000,0,0,0,8,0,0,0,1793.26,128.034,-63.8432,3.14159,"Jezelle Pruitt - OOC - Spawn Jezelle's FelHunter"), +(5702,0,16,0,1,0,100,0,140000,140000,235000,235000,1,8,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 8"), +(5702,0,17,0,1,0,100,0,170000,170000,235000,235000,1,9,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 9"), +(5702,0,18,0,1,0,100,0,173000,173000,235000,235000,11,8677,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Cast Summon Effect"), +(5702,0,19,0,1,0,100,0,178000,178000,235000,235000,12,5727,2,30000,0,0,0,8,0,0,0,1793.26,128.034,-63.8432,3.14159,"Jezelle Pruitt - OOC - Spawn Jezelle's Felsteed"), +(5702,0,20,0,1,0,100,0,180000,180000,235000,235000,1,10,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 10"), +(5702,0,21,0,1,0,100,0,210000,210000,235000,235000,1,11,0,0,0,0,0,1,0,0,0,0,0,0,0,"Jezelle Pruitt - OOC - Say Line 11"); +-- Jezelle Pruitt Texts +DELETE FROM `creature_text` WHERE `entry`=5702; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(5702,0,0, 'If you''re here, then it means you are prepared to begin the study of summoning demonic cohorts to do your bidding. We will start with the lowliest creatures you will be able to call and continue from there. Let us begin.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,1,0, 'The easiest creature for you to summon is the imp. You should already be able to bring forth this minion but for completeness'' sake I will start with him.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,2,0, 'This foul little beast is the imp. It is small and weak, making it almost useless as a meatshield, and its damage output is mediocre at best. This creature is best used for support of a larger group.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,3,0, 'Now that you have had a chance to study imp, let us move on the next minion you will be able to summon, the voidwalker.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,4,0, 'This demonic entity is known as the Voidwalker. Its strength and endurance are significant, making it ideal for defence. Send it to attack your enemy, then use it as a shield while you use your spells and abilities to drain away your opponent''s life.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,5,0, 'If you''ve never seen one, it is a sight to behold. A very impressive creature both on and off the field of battle. Next let us take a look at what I am sure all you male students have been waiting for. The succubus.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,6,0, 'All right now. Asside from the obvious distractions a minion like this will provide against your more masculine foes, she is also capable of dealing out impressive amounts of damage. However, her fragile endurance makes her almost useless as a shield.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,7,0, 'Study hard and you might one day be able to summon one on your own, but for now it''s time to move on to the felhunter.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,8,0, 'What you see before you is a felhunter. This creature''s natural talents include spell lock and other abilities which make it unequalled when facing a magically attuned opponent.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,9,0, 'When facing a spellcaster of any kind, this feral beast will be your best friend. Now, let us take a look at something a bit different. This next creature will aid your travels and make your future journeys much easier. Let''s take a look at a felsteed.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,10,0, 'I doubt you have had much occasion to see such a creature. These demonic equines will make your travels much faster by acting as your mount as long as you control them. However, they are difficult to control, so be sure you are ready before attempting it.',12,33,100,0,0,0, 'Jezelle Pruitt'), +(5702,11,0, 'There you have it. Our lesson on summoning has come to an end. A new class will begin shortly, so if you wish to brush up, feel free to stay around.',12,33,100,0,0,0, 'Jezelle Pruitt'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 1539: Standards and Practices +SET @GUID := 371; +DELETE FROM `gameobject` WHERE `id`=182263; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(22718,182263,530,1,1,-2532.99,6306.90,14.0280,2.81871,0,0,0.986996,0.160743,181,100,1),-- already in TDB +(371,182263,530,1,1,-2474.44,6111.16,91.7629,3.66388,0,0,0.966096,-0.258184,181,100,1), +(379,182263,530,1,1,-2533.21,6168.56,59.9387,3.75028,0,0,0.954044,-0.299666,181,100,1); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 1977: An Improper Burial +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=39189; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,39189,0,0,31,0,3,21846,0,0,0,'',"set Sha'tari Torch implicit target to Slain Auchenai Warrior"), +(13,1,39189,0,1,31,0,3,21859,0,0,0,'',"set Sha'tari Torch implicit target to Slain Sha'tar Vindicator"); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 2350: Postponing the Inevitable +-- Mark Quest Invisman - Buying Time (26105) as trigger +UPDATE `creature_template` SET `flags_extra` = 128 WHERE `entry` = 26105; +-- Add event_script for Activate Interdimensional Refabricator (46547) Effect #2 http://old.wowhead.com/spell=46547 +-- Any idea how can this be made with SAI? +DELETE FROM `event_scripts` WHERE id = 17364; +INSERT INTO `event_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`dataint`,`x`,`y`,`z`,`o`) VALUES +(17364,0,8,26105,0,0,0,0,0,0); +-- Increase GO Range to 25 (original=10) +UPDATE `gameobject_template` SET `data1`=25 WHERE `entry`=300183; +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 2782: Rune of Dawn +-- Seal of the Dawn (13209) & Rune of the Dawn (19812) scourgestones fix +UPDATE `item_template` SET `spellid_2`=17670, `spelltrigger_2`=1 WHERE `entry` IN (13209,19812); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 4013: No Rest For The Wicked +-- Add support for quest "No Rest For the Wicked" - H {13367/13368 - daily}<>A {13367/13368 - daily} +-- Credits: based on Kiperr, Kandera and Jankic fixes +SET @SummonBunny := 32347; +SET @Alumeth := 32300; +SET @Trigger := 60831; -- Spell Alumeth's Remains that can hit only summoning bunny to trigger it +UPDATE `creature_template` SET `AIName`='SmartAI',`unit_flags`=4,`flags_extra`=128 WHERE `entry`=@SummonBunny; +UPDATE `creature_template` SET `AIName`='SmartAI',`faction_A`=21,`faction_H`=21 WHERE `entry`=@Alumeth; -- faction from sniffs +UPDATE `creature` SET `spawndist`=0,`MovementType`=0 WHERE `guid`=122317; -- Summon Bunny should stay at spawn point +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@SummonBunny,@Alumeth) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@SummonBunny,0,0,0,8,0,100,0,60834,0,0,0,12,32300,6,20000,0,0,8,0,0,0,8219.157,2187.093,499.8201,3.106686,0, 'Alumeth Summon Bunny - On Spellhit - Summon Alumeth the Ascended'), -- He should dissapear after death, not on timer after summon. +(@Alumeth,0,0,0,0,0,100,0,8000,9000 ,8000,9000 ,11,60472,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Alumeth - IC - Cast Mindflay'), +(@Alumeth,0,1,0,0,0,100,0,8000,10000,8000,10000,11,34322,1,0,0,0,0,2,0,0,0,0,0,0,0, 'Alumeth - IC - Cast Psychicscream'), +(@Alumeth,0,2,0,0,0,100,0,9000,12000,9000,12000,11,37978,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Alumeth - IC - Cast Renew'), +(@Alumeth,0,3,0,0,0,100,0,7000,10000,7000,10000,11,34942,1,0,0,0,0,2,0,0,0,0,0,0,0, 'Alumeth - IC - Cast Shadow Word: Pain'); +-- Fix Alumeth Soulstone GO spell focus data range +UPDATE `gameobject_template` SET `data1`=25 WHERE `entry`=300241; -- This GO isn't sniffed and is temp for that reason, value over 300k so it can be edited. +-- Add conditions for spell trigger to summon boss +DELETE FROM `conditions` WHERE `SourceEntry` IN (@Trigger,60834) AND `SourceTypeOrReferenceId`=13; +DELETE FROM `conditions` WHERE `SourceEntry`=@Trigger AND `SourceTypeOrReferenceId`=17; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(17,0,@Trigger,0,0,29,0,@Alumeth,40,0,1,0,'', 'Alumeth''s Remains can be used only, if he is not near caster in 40 yards'), +(13,1,@Trigger,0,0,31,0,3,@SummonBunny,0,0,0,'', 'Alumeth''s Remains can hit only summoning bunny'), +(13,1,60834,0,0,31,0,3,@SummonBunny,0,0,0,'','Ping Alumeth Summon Bunny can hit only SummonBunny'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 4350: Gregory Tabor +-- Spawn Gregory Tabor +SET @GUID := 43465; +DELETE FROM `creature` WHERE `id`=34675; +INSERT INTO `creature` (`guid`,`id`, `map`, `spawnMask`, `phaseMask`, `modelid`, `equipment_id`, `position_x`, `position_y`, `position_z`, `orientation`, `spawntimesecs`, `spawndist`, `currentwaypoint`, `curhealth`, `curmana`, `MovementType`, `npcflag`, `unit_flags`, `dynamicflags`) VALUES +(@GUID,34675,0,1,1,0,0,-9130.26,351.84,93.85,2.0151,300,0,0,1524,0,0,0,0,0); +DELETE FROM `game_event_creature` WHERE `eventEntry`=26 AND `guid`=@GUID; +INSERT INTO `game_event_creature` (`eventEntry`,`guid`) VALUES +(26,@GUID); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 4551: Anatoly Will Talk +DELETE FROM `npc_spellclick_spells` WHERE npc_entry = 27626; +INSERT INTO `npc_spellclick_spells` (`npc_entry`,`spell_id`,`cast_flags`,`user_type` ) VALUES +(27626,49138,1,0); +UPDATE creature_template SET faction_a = 16, faction_h = 16, `AIName` = 'SmartAI' WHERE `entry` = 27626; +DELETE FROM smart_scripts WHERE `entryorguid` in (27626,2762600); +INSERT INTO smart_scripts VALUES +(27626,0,1,0,8,0,100,0x1,49134,0,0,0,12,27626,1,300000,0,0,0,0,0,0,0,0,0,0,0, 'Tatjana''s horse - On Spell Hit - resumm'), +(27626,0,2,0,54,0,100,0,0,0,0,0,80,2762600,0,2,0,0,0,1,0,0,0,0,0,0,0,'On time - Run Script'), +(27626,0,3,0,40,0,100,1,18,0,0,0,15,12330,0,0,0,0,0,18,5,0,0,0,0,0,0,'WP 18 - KC'), +(27626,0,4,0,40,0,100,1,19,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'WP 19 - Despawn'), +(27626,0,5,0,40,0,100,1,1,0,0,0,59,1,0,0,0,0,0,1,0,0,0,0.0,0.0,0.0,0.0,"Set Run"), +(27626,0,6,0,8,0,100,0x1,49134,0,0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Tatjana''s horse - On Spell Hit - Invisible'), +(27626,0,7,0,8,0,100,0x1,49134,0,0,0,41,500,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Tatjana''s horse - On Spell Hit - Despawn'), +(27626,0,8,0,54,0,100,0,0,0,0,0,2,35,0,0,0,0,0,1,0,0,0,0,0,0,0,'On time - faction'), +(2762600,9,0,0,0,0,100,1,4000,4000,0,0,53,0,27626,0,0,0,2,0,0,0,0,0,0,0,0,'On Script - WP Start'); +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=49134; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `Comment`) VALUES +(13,1,49134,31,3,27626, 'Tranquilizer Dart targets Tatjana''s Horse'); +DELETE FROM `waypoints` WHERE `entry`= 27626; +INSERT INTO `waypoints` +(`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) +VALUES +(27626,1,4042.49,-4378.298,261.47,''), +(27626,2,4052.839,-4381.89,260.577,''), +(27626,3,4061.94,-4374.57,260.44,''), +(27626,4,4078.97,-4375.19,260.93,''), +(27626,5,4090.33,-4361.82,261.34,''), +(27626,6,4091.73,-4341.6,261.34,''), +(27626,7,4094.09,-4325.83,260.91,''), +(27626,8,4108.3,-4300.63,252.85,''), +(27626,9,4124.35,-4281.08,251.25,''), +(27626,10,4126.15,-4258.29,251.3,''), +(27626,11,4126.1,-4243.9,248.35,''), +(27626,12,4100.1,-4224.51,237.86,''), +(27626,13,4087.17,-4208.72,230.58,''), +(27626,14,4082.93,-4172.83,218.13,''), +(27626,15,4077.66,-4151.22,211.94,''), +(27626,16,4083.57,-4138.46,212.4,''), +(27626,17,4079.16,-4127.81,212.26,''), +(27626,18,4067.57,-4127.6,211.13,''), +(27626,19,4068.35,-4128.44,211.3,''); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 5025: Pilgrim's Bounty +-- Insert into proper DB table Piligrim's Bounty quest to prevent random showing it during the year +DELETE FROM `creature_involvedrelation` WHERE `quest`=14036; +DELETE FROM `game_event_creature_quest` WHERE `quest`=14036; +INSERT INTO `game_event_creature_quest` (`eventEntry`, `id`, `quest`) VALUES +(26,34677,14036); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 5419: The Fallen Sisters Bugged again +-- Quest - The Fallen Sisters +SET @ENTRY := 23678; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@ENTRY*100 AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`, `source_type`, `id`, `link`, `event_type`, `event_phase_mask`, `event_chance`, `event_flags`, `event_param1`, `event_param2`, `event_param3`, `event_param4`, `action_type`, `action_param1`, `action_param2`, `action_param3`, `action_param4`, `action_param5`, `action_param6`, `target_type`, `target_param1`, `target_param2`, `target_param3`, `target_x`, `target_y`, `target_z`, `target_o`, `comment`) VALUES +(@ENTRY,0,0,0,11,0,100,0,0,571,495,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - Respawn - reset faction'), +(@ENTRY,0,1,0,25,0,100,0,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - Reset - set phase 1'), +(@ENTRY,0,2,3,2,0,100,1,0,30,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - On health 30% - Do text emote'), +(@ENTRY,0,3,0,61,0,100,0,0,0,0,0,22,2,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - On health 30% - set phase 2'), +(@ENTRY,0,4,0,0,0,75,0,2000,3000,2000,2000,11,9739,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Chill Nymph - In Combat - Cast Wrath on victim'), +(@ENTRY,0,5,6,8,2,100,0,43340,0,30000,30000,66,0,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Chill Nymph - On Spell hit 43340 - Face invoker'), +(@ENTRY,0,6,7,61,0,100,0,0,0,0,0,33,24117,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Chill Nymph - On Spell hit 43340 - Give Quest credit'), +(@ENTRY,0,7,0,61,0,100,0,0,0,0,0,80,2367800,2,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - On Spell hit 43340 - Load script'), +(@ENTRY,0,8,0,40,0,100,0,1,23678,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - On reach waypoint 1 - Despawn'), +(@ENTRY*100,9,0,0,0,0,100,0,0,0,0,0,24,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - Script 2 - Evade'), +(@ENTRY*100,9,1,0,0,0,100,0,0,0,0,0,2,35,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - Script 3 - Set faction 35'), +(@ENTRY*100,9,2,0,0,0,100,0,2000,2000,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - Script 4 - Say text 1'), +(@ENTRY*100,9,3,0,0,0,100,0,1000,1000,0,0,53,1,23678,0,0,0,0,1,0,0,0,0,0,0,0, 'Chill Nymph - Script 5 - Start waypoint movement'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 5647: The Lost Spirits +-- Update Event Type From On Summon(11) to Reset(25) +UPDATE `smart_scripts` SET `event_type`=25 WHERE `entryorguid`=25321 AND `source_type`=0 AND `id`=0; +UPDATE `smart_scripts` SET `event_type`=25 WHERE `entryorguid`=25322 AND `source_type`=0 AND `id`=0; +-- Update Core of Malice drop rate +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=-100 WHERE `entry`=25355 AND `item`=34711; +-- Remove item Tuskarr Ritual Object from Beryl Hounds +DELETE FROM `creature_loot_template` WHERE `item`=34713; +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 5679: Feedin' Da Goolz +SET @GHOUL := 28565; +SET @TRIGER := 28591; +SET @SOURCETYPE := 0; +UPDATE `creature_template` SET `AiName`='SmartAI',`flags_extra`=`flags_extra`|2|128 WHERE `entry`=@TRIGER; +UPDATE `creature_template` SET `AiName`='SmartAI' WHERE `entry`=@GHOUL; +DELETE FROM `creature_ai_scripts`WHERE `creature_id` IN (@GHOUL,@TRIGER); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@GHOUL,@TRIGER); +INSERT INTO `smart_scripts` VALUES +(@GHOUL,@SOURCETYPE,0,0,38,0,100,0,0,1,0,0,29,1,1,28591,0,0,0,19,@TRIGER,15,0,0,0,0,0, 'Ghoul - on data 1 set - start follow'), +(@GHOUL,@SOURCETYPE,1,2,65,0,100,0,0,0,0,0,33,28591,0,0,0,0,0,21,20,0,0,0,0,0,0, 'Ghoul - on follow completed - give kill credit'), +(@GHOUL,@SOURCETYPE,2,3,61,0,100,0,0,0,0,0,41,2000,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Ghoul - on follow completed - despawn'), +(@GHOUL,@SOURCETYPE,3,0,61,0,100,0,0,0,0,0,51,0,0,0,0,0,0,11,@TRIGER,50,0,0,0,0,0, 'Ghoul - on follow completed - kill ghoul'), +(@TRIGER,@SOURCETYPE,0,0,25,0,100,0,0,0,0,0,45,0,1,0,0,0,0,19,@GHOUL,15,0,0,0,0,0, 'Ghoul Trigger - on just summoned - set data 1 on nearest Ghoul'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 5764: The One That Got Away +-- Fix quest The One That Got Away /Alliance only/ ID: 11410 +SET @Frostfin := 24500; -- The required npc to be summoned +SET @Bite := 48287; -- Npc special attack +SET @Event := 16103; +-- Makes the specific spell that already have the callevent defined summon Frostfin +DELETE FROM `event_scripts` WHERE `id`=@Event; +INSERT INTO `event_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`x`,`y`,`z`,`o`) VALUES +(16103,0,10,@Frostfin,300000,2321.083740,-5260.119629,221.108795,0.248830); +-- Add SAI for Frostfin +UPDATE `creature_template` SET `InhabitType`=2,`AIName`= 'SmartAI' WHERE `entry`= @Frostfin; +DELETE FROM `creature_ai_scripts` WHERE creature_id = @Frostfin; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@Frostfin; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@Frostfin,0,0,0,0,0,100,0,2000,3000,5000,8000,11,@Bite,0,0,0,0,0,2,0,0,0,0,0,0,0,'IC - Cast Powerful Bite'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 5785: Find the Ancient Hero +SET @Mjordin := 30718; +SET @Iskalder := 30884; -- the hostile version +SET @FriendlyI := 30886; -- the friendly version +SET @Script1 := 3088400; -- spawn mjoldir on gossip +SET @Script2 := 3088401; -- spawn Iskalder on gossip +SET @Amulet := 3921; -- the spell casted on Iskalder +SET @Witch := 30232; -- Bonne witch +SET @Credit := 25729; -- quest credit +-- Add SAI for Slumbering Mjording +UPDATE `creature_template` SET AIName='SmartAI', unit_flags=0 WHERE `entry`=@Mjordin; +DELETE FROM `smart_scripts` WHERE entryorguid IN(@Mjordin,@Script1,@Script2); +INSERT INTO `smart_scripts` VALUES +(@Mjordin,0,0,0,62,0,100,0,10008,0,0,0,87,@Script1,@Script1,@Script1,@Script2,@Script1,@Script1,1,0,0,0,0,0,0,0,'Slumbering Mjordin - Gossip - Random Script'), +(@Script1,9,0,0,0,0,100,0,500,500,0,0,2,14,0,0,0,0,0,1,0,0,0,0,0,0,0,'Slumbering Mjordin - Script - Enemy'), -- Option 1 +(@Script1,9,1,0,0,0,100,0,1000,1000,0,0,8,2,0,0,0,0,0,1,0,0,0,0,0,0,0,'Slumbering Mjordin - Script - Aggresive'), +(@Script2,9,0,0,0,0,100,0,1000,1000,0,0,12,@Iskalder,3,180000,0,0,0,1,0,0,0,0,0, 0,0,'Slumbering Mjordin - Script - Summon Iskalder '), -- Option 2 +(@Script2,9,1,0,0,0,100,0,0,0,0,0,47,0,0,0,0,0,0,1,0,0,0,0,0, 0,0,'Slumbering Mjordin - Script - Unseen'), +(@Script2,9,2,0,0,0,100,0,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0, 0,0,'Slumbering Mjordin - Script - Despawn'); +-- Add SAI for Iskalder hostile - these values are not sniffed they are guessed by wowhead comments... +UPDATE `creature_template` SET `exp`=2,`faction_A`=14, `faction_H`=14, `minlevel`=80, `maxlevel`=80, `mindmg`=300, `maxdmg`=350, `AIName`='SmartAI' WHERE `entry`=@Iskalder; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@Iskalder; +INSERT INTO `smart_scripts` VALUES +(@Iskalder,0,0,0,54,0,100,0,0,0,0,0,1,1,100,0,0,0,0,1,0,0,0,0,0,0,0,'Iskalder - On summon - Say text'), +(@Iskalder,0,1,0,8,0,100,0,@Amulet,0,0,0,41,5000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Iskalder - On hit by spell from amulet - Despawn'); +-- Add SAI for Iskalder Friendly +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry`=@FriendlyI; +DELETE FROM `smart_scripts` WHERE `entryorguid`=@FriendlyI; +INSERT INTO `smart_scripts` VALUES +(@FriendlyI,0,0,0,0,0,100,1,1,1,1,1,18,512,0,0,0,0,0,1,0,0,0,0,0,0,0,'Friendly Iskalder - On IC - Change field flag to immune to npc/prevents from not moving bug/'), +(@FriendlyI,0,1,0,1,0,100,0,2000,3000,2000,3000,29,0,0,@Witch,0,1,0,9,@Witch,1,10,0,0,0,0,'Friendly Iskalder - On OOC - Follow Bonnewitch if in range 10 yards'), +(@FriendlyI,0,2,0,65,0,100,0,0,0,0,0,11,@Credit,0,0,0,0,0,23,0,0,0,0,0,0,0,'Friendly Iskalder - On follow complete - Cast spell credit to player'); +-- Makes amulet target only the required npc +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=@Amulet; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(17,0,@Amulet,0,0,31,1,3,@Iskalder,0,0,0,'','Amulet can target only Iskalder'); +-- The purple beam effect of amulet can target only Iskalder +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=@Amulet; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,2,@Amulet,0,0,31,1,3,@Iskalder,0,0,0,'','The purple beam effect of amulet can target only Iskalder'); +-- Cast amulet on Iskalder warning /text/ +DELETE FROM `creature_text` WHERE `entry`=@Iskalder; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(@Iskalder,1,1,'You have found him! Now is the time to use the The Bone Witch"s Amulet!',41,0,100,0,100,0,'Originaly it as the Bonne witch guide'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 5821: Shattrath Daily Quests missing ExclusiveGroup +-- Set ExclusiveGroup for Shattrath Daily Quests, you can have only one per questgiver +UPDATE `quest_template` SET `ExclusiveGroup`=11364 WHERE `Id` IN (11376, 11383, 11385, 11371, 11389, 11500, 11364, 11387); +UPDATE `quest_template` SET `ExclusiveGroup`=11354 WHERE `Id` IN (11382, 11368, 11378, 11374, 11499, 11370, 11372, 11369, 11388, 11362, 11363, 11375, 11354, 11386, 11373, 11384); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 6284: Nether Drake Egg +UPDATE `gameobject_template` SET `data10`=36326,`data5`=1 WHERE `entry`=184867; +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 6627: Quest - 28056 +-- Add condition for gossip option +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=1282; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(15,1282,0,0,0,9,3566,0,0,0,0,'','Alter of Suntara - Show gossip option only if player has taken quest "Rise, Obsidion"'); +-- Adding SmartAI Text for Lathoric the Black +DELETE FROM `creature_text` WHERE `entry`=8391; +INSERT INTO creature_text (`entry`, `groupid`, `id`, `text`, `type`, `language`, `probability`, `emote`, `duration`, `sound`, `comment`) VALUES +(8391,0,0, 'You are here to stop the Archduke?',14,0,100,0,0,0, 'Lathoric the Black'), +(8391,1,0, 'Fools. Obsidion! Rise, and destroy the interlopers!',14,0,100,0,0,0, 'Lathoric the Black'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 5760: Before the Gate of Horror +-- Fix {Qs} Before the Gate of Horror Id: 13335 /Alliance/ and Before the Gate of Horror Id: 13329 /Horde/ +SET @SkeletalReaver := 32467; -- The main npcs that can be hit with spell Dissolve only in dead condition +SET @FreedRemnant := 32288; -- Kill credit from quest that has no spell to be used with, so requires action 33 +SET @Dissolve := 60428; -- Spell used to trigger npc to cast kill credit on invoker +-- Add SAI for Skeletal Reaver +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=@SkeletalReaver; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@SkeletalReaver; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@SkeletalReaver,0,0,1,8,0,100,0,@Dissolve,0,0,0,33,@FreedRemnant,0,0,0,0,0,7,0,0,0,0,0,0,0,'Skeletal Reaver - On hit by spell Dissolve - Give kill credit to invoker'), +(@SkeletalReaver,0,1,2,61,0,100,0,0,0,0,0,47,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Skeletal Reaver - Linked with previous event - Set unseen'), +(@SkeletalReaver,0,2,0,61,0,100,0,0,0,0,0,41,1,0,0,0,0,0,1,0,0,0,0,0,0,0,'Skeletal Reaver - Linked with previous event - Set despawn in 1 ms'); +-- Add conditions for spell Dissolve to target only dead Skeletal Reavers +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=17 AND `SourceEntry`=@Dissolve; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition` ,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(17,0,@Dissolve,0,0,36,1,0,0,0,1,0,'','Dissolve can be casted only on creatures that are not alive'), +(17,0,@Dissolve,0,0,31,1,3,@SkeletalReaver,0,0,0,'','Dissolve can be casted only on Skeletal Reavers'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 6632: Quest Audio - 12593 +UPDATE `creature_template` SET `AIName`= 'SmartAI' WHERE `entry`=25462; +DELETE FROM `smart_scripts` WHERE (`entryorguid`=25462 AND `source_type`=0); +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(25462,0,0,0,19,0,100,0,12593,0,0,0,4,14734,0,0,0,0,0,1,0,0,0,0,0,0,0, 'The Lich King - On Quest Accept - Play Sound'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 6724: Souls of the Decursed +DELETE FROM `conditions` WHERE `SourceEntry`=46485 AND `ConditionValue2`=26814; -- /slap to the guy that entered this query +UPDATE `conditions` SET `ConditionValue2`=25814,`ElseGroup`=0 WHERE `SourceEntry`=46485 AND `ConditionTypeOrReference`=31; +DELETE FROM `smart_scripts` WHERE `entryorguid`=25814 AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(25814,0,0,0,4,0,100,0,0,0,0,0,1,1,10000,0,0,0,0,0,0,0,0,0,0,0,0, 'Fizzcrank Mechagnome - On Aggro - Say Line'), +(25814,0,1,0,8,0,100,0,45980,0,0,0,33,25773,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Fizzcrank Mechagnome - On Spellhit 45980 - Give Kill Credit (Re-Cursive)'), +(25814,0,2,3,8,0,100,0,46485,0,0,0,33,26096,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Fizzcrank Mechagnome - On Spellhit 46485 - Give Kill Credit (Souls of the Decursed'), +(25814,0,3,0,61,0,100,0,0,0,0,0,41,10,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Fizzcrank Mechagnome - On Spellhit 46485 - Despawn after 10 ms'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 7837: Norgannon's Shell (12872,12928) +-- Loot +DELETE FROM `creature_loot_template` WHERE `entry`=29775 AND `item`=41258; +INSERT INTO `creature_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES +(29775,41258,-100,1,0,1,1); -- Norgannon's Shell +-- Charged Disk event script for summoning Archivist Mechaton +DELETE FROM `creature` WHERE `id`=29775; +DELETE FROM `event_scripts` WHERE `id`=19410; +INSERT INTO `event_scripts` (`id`,`delay`,`command`,`datalong`,`datalong2`,`dataint`,`x`,`y`,`z`,`o`) VALUES +(19410,2,10,29775,300000,0,7991.81,-827.674,968.263,2.89725); +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 7907: Windcaller Yessendra (15498),Warden Haro (15499),Keyl Swiftclaw (15500),Mokvar (16012) & Deliana (16013) quests +UPDATE `quest_template` SET `RequiredClasses`=1 WHERE `Id`=8556; -- Warrior +UPDATE `quest_template` SET `RequiredClasses`=2 WHERE `Id`=8703; -- Paladin +UPDATE `quest_template` SET `RequiredClasses`=4 WHERE `Id`=8704; -- Hunter +UPDATE `quest_template` SET `RequiredClasses`=8 WHERE `Id`=8701; -- Rogue +UPDATE `quest_template` SET `RequiredClasses`=16 WHERE `Id`=8697; -- Priest +UPDATE `quest_template` SET `RequiredClasses`=64 WHERE `Id`=8698; -- Shaman +UPDATE `quest_template` SET `RequiredClasses`=128 WHERE `Id`=8699; -- Mage +UPDATE `quest_template` SET `RequiredClasses`=256 WHERE `Id`=8702; -- Warlock +UPDATE `quest_template` SET `RequiredClasses`=1024 WHERE `Id`=8700; -- Druid +-- Warden Haro (15499) quests RequiredClasses fix by nelegalno +UPDATE `quest_template` SET `RequiredClasses`=1 WHERE `Id`=8558; -- Warrior +UPDATE `quest_template` SET `RequiredClasses`=2 WHERE `Id`=8711; -- Paladin +UPDATE `quest_template` SET `RequiredClasses`=4 WHERE `Id`=8712; -- Hunter +UPDATE `quest_template` SET `RequiredClasses`=8 WHERE `Id`=8709; -- Rogue +UPDATE `quest_template` SET `RequiredClasses`=16 WHERE `Id`=8705; -- Priest +UPDATE `quest_template` SET `RequiredClasses`=64 WHERE `Id`=8706; -- Shaman +UPDATE `quest_template` SET `RequiredClasses`=128 WHERE `Id`=8707; -- Mage +UPDATE `quest_template` SET `RequiredClasses`=256 WHERE `Id`=8710; -- Warlock +UPDATE `quest_template` SET `RequiredClasses`=1024 WHERE `Id`=8708; -- Druid +-- Keyl Swiftclaw (15500) quests RequiredClasses fix by nelegalno +UPDATE `quest_template` SET `RequiredClasses`=1 WHERE `Id`=8557; -- Warrior +UPDATE `quest_template` SET `RequiredClasses`=2 WHERE `Id`=8695; -- Paladin +UPDATE `quest_template` SET `RequiredClasses`=4 WHERE `Id`=8696; -- Hunter +UPDATE `quest_template` SET `RequiredClasses`=8 WHERE `Id`=8693; -- Rogue +UPDATE `quest_template` SET `RequiredClasses`=16 WHERE `Id`=8689; -- Priest +UPDATE `quest_template` SET `RequiredClasses`=64 WHERE `Id`=8690; -- Shaman +UPDATE `quest_template` SET `RequiredClasses`=128 WHERE `Id`=8691; -- Mage +UPDATE `quest_template` SET `RequiredClasses`=256 WHERE `Id`=8694; -- Warlock +UPDATE `quest_template` SET `RequiredClasses`=1024 WHERE `Id`=8692; -- Druid +-- Mokvar (16012) quests RequiredClasses fix by nelegalno +UPDATE `quest_template` SET `RequiredClasses`=1 WHERE `Id` IN (8920,8944,9013,9022); -- Warrior +UPDATE `quest_template` SET `RequiredClasses`=2 WHERE `Id` IN (10493,10495,10497,10499); -- Paladin +UPDATE `quest_template` SET `RequiredClasses`=4 WHERE `Id` IN (8914,8938,9008,9017); -- Hunter +UPDATE `quest_template` SET `RequiredClasses`=8 WHERE `Id` IN (8917,8941,9010,9020); -- Rogue +UPDATE `quest_template` SET `RequiredClasses`=16 WHERE `Id` IN (8916,8940,9009,9019); -- Priest +UPDATE `quest_template` SET `RequiredClasses`=64 WHERE `Id` IN (8918,8942,8957,9011); -- Shaman +UPDATE `quest_template` SET `RequiredClasses`=128 WHERE `Id` IN (8915,8939,9014,9018); -- Mage +UPDATE `quest_template` SET `RequiredClasses`=256 WHERE `Id` IN (8919,8943,9012,9021); -- Warlock +UPDATE `quest_template` SET `RequiredClasses`=1024 WHERE `Id` IN (8913,8927,9007,9016); -- Druid +-- Deliana (16013) quests RequiredClasses fix by nelegalno +UPDATE `quest_template` SET `RequiredClasses`=1 WHERE `Id` IN (8912,8959,8937,9006); -- Warrior +UPDATE `quest_template` SET `RequiredClasses`=2 WHERE `Id` IN (8908,8954,10494,9002); -- Paladin +UPDATE `quest_template` SET `RequiredClasses`=4 WHERE `Id` IN (8906,8952,8931,9000); -- Hunter +UPDATE `quest_template` SET `RequiredClasses`=8 WHERE `Id` IN (8910,8956,8935,9004); -- Rogue +UPDATE `quest_template` SET `RequiredClasses`=16 WHERE `Id` IN (8909,8955,8934,9003); -- Priest +UPDATE `quest_template` SET `RequiredClasses`=64 WHERE `Id` IN (10492,10496,10494,10498); -- Shaman +UPDATE `quest_template` SET `RequiredClasses`=128 WHERE `Id` IN (8907,8953,8932,9001); -- Mage +UPDATE `quest_template` SET `RequiredClasses`=256 WHERE `Id` IN (8911,8958,8936,9005); -- Warlock +UPDATE `quest_template` SET `RequiredClasses`=1024 WHERE `Id` IN (8905,8951,8926,8999); -- Druid +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 7908: Attunement to the Core (7487,7848) +-- Attunement to the Core (7848) quest RequiredRaces fix by nelegalno +-- UPDATE `quest_template` SET `RequiredRaces`=0 WHERE `Id`=7848; +-- Revert previous Attunement to the Core (7487,7848) quest fix +UPDATE `quest_template` SET `RequiredRaces`=1101 WHERE `Id`=7848; -- A +UPDATE `quest_template` SET `RequiredRaces`=690 WHERE `Id`=7487; -- H +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 8021: spawn location in OG near Rogg (37072) +SET @GUID := 387; -- set by TDB team +DELETE FROM `gameobject` WHERE `guid`=@GUID; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(@GUID,1685,1,1,1,1523.778,-4368.241,18.21412,6.07367,0,0,0,1,300,100,1); +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 8086: Missing Fires for Hallow End Q +-- This won't fix the quest until the rest of the event is scripted. +SET @CREATURE_GUID := 85701; -- set by TDB team +DELETE FROM `creature` WHERE `id` IN (23537,23686) AND `guid` BETWEEN @CREATURE_GUID+00 AND @CREATURE_GUID+12; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +-- Spawn fire dummys for fire effigys +(@CREATURE_GUID+00,23537,530,1,1,0,0,-4192.38,-12268.1,2.53389,-1.72788,300,0,0,45780,0,0,0,0,0), +(@CREATURE_GUID+01,23537,530,1,1,0,0,-4207.84,-12276.7,4.82085,-0.069813,300,0,0,45780,0,0,0,0,0), +(@CREATURE_GUID+02,23537,0,1,1,0,0,-5753.24,-533.652,405.022,1.15192,300,0,0,45780,0,0,0,0,0), +(@CREATURE_GUID+03,23537,0,1,1,0,0,-5761.17,-528.193,404.855,1.16937,300,0,0,15260,0,0,0,0,0), +(@CREATURE_GUID+04,23537,0,1,1,0,0,-5747.52,-527.634,401.297,0.610865,300,0,0,15260,0,0,0,0,0), +(@CREATURE_GUID+05,23537,1,1,1,0,0,286.565,-4561.45,28.5742,2.42601,300,0,0,15260,0,0,0,0,0), +(@CREATURE_GUID+06,23537,530,1,1,0,0,9235.05,-6783.4,26.4426,1.5708,300,0,0,15260,0,0,0,0,0), +(@CREATURE_GUID+07,23537,0,1,1,0,0,2240.44,459.159,39.2838,0.820305,300,0,0,15260,0,0,0,0,0), +(@CREATURE_GUID+08,23537,0,1,1,0,0,2239.49,487.861,38.3446,-0.715585,300,0,0,15260,0,0,0,0,0), +(@CREATURE_GUID+09,23537,0,1,1,0,0,-9328.25,56.2778,63.2509,2.60054,300,0,0,15260,0,0,0,0,0), +(@CREATURE_GUID+10,23537,0,1,1,0,0,-9314.1,52.4562,77.7343,2.93215,300,0,0,15260,0,0,0,0,0), +-- Spawn Fire Handlers for villages +(@CREATURE_GUID+11,23686,1,1,1,0,0,305.144,-4724.5,9.83766,3.68348,300,0,0,7185,7196,0,0,0,0), +(@CREATURE_GUID+12,23686,0,1,1,0,0,-9465.54,63.2228,55.8587,6.25841,300,0,0,7185,7196,0,0,0,0); +DELETE FROM `game_event_creature` WHERE `guid` BETWEEN @CREATURE_GUID+00 AND @CREATURE_GUID+12; +INSERT INTO `game_event_creature` VALUES +(12,@CREATURE_GUID+00), +(12,@CREATURE_GUID+01), +(12,@CREATURE_GUID+02), +(12,@CREATURE_GUID+03), +(12,@CREATURE_GUID+04), +(12,@CREATURE_GUID+05), +(12,@CREATURE_GUID+06), +(12,@CREATURE_GUID+07), +(12,@CREATURE_GUID+08), +(12,@CREATURE_GUID+09), +(12,@CREATURE_GUID+10), +(12,@CREATURE_GUID+11), +(12,@CREATURE_GUID+12); +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 8133: Wickerman Festival NPC & GO's +-- Wickerman Festival +SET @GO_GUID := 17868; -- set by TDB team (14) +SET @CREATURE_GUID := 85632; -- set by TDB team (5) +UPDATE `gameobject_template` SET `flags` = 17 WHERE `entry` = 180433; +DELETE FROM `gameobject` WHERE id IN (180432,180433,180434,180437,180405,180406) AND `guid` BETWEEN @GO_GUID+00 AND @GO_GUID+13; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +-- Forsaken Banner +(@GO_GUID+00,180432,0,1,1,1749.28,507.611,39.2312,1.49635,0,0,0.680301,0.732933,300,0,1), +(@GO_GUID+01,180432,0,1,1,1712.63,507.05,38.2495,1.58824,0,0,0.713246,0.700914,300,0,1), +-- The Wickerman +(@GO_GUID+02,180433,0,1,1,1734.04,504.05,42.2861,1.4131,0,0,0.649213,0.760607,300,0,0), +-- Bonfire +(@GO_GUID+03,180434,0,1,1,1758.89,513.276,35.8655,1.28897,0,0,0.600788,0.799409,300,0,1), +(@GO_GUID+04,180434,0,1,1,1704.48,518.689,35.4045,1.30704,0,0,0.607984,0.793949,300,0,1), +(@GO_GUID+05,180434,0,1,1,1739.78,473.238,61.6565,1.59371,0,0,0.71516,0.698961,300,0,1), +(@GO_GUID+06,180434,0,1,1,1717.32,472.723,61.6566,1.59371,0,0,0.71516,0.698961,300,0,1), +-- Wickerman Ember +(@GO_GUID+07,180437,0,1,1,1744.62,504.954,40.8518,1.23403,0,0,0.578603,0.81561,300,0,1), +(@GO_GUID+08,180437,0,1,1,1729.13,510.378,40.8719,1.23403,0,0,0.578603,0.81561,300,0,1), +(@GO_GUID+09,180437,0,1,1,1721.77,503.938,41.1381,1.23403,0,0,0.578603,0.81561,300,0,1), +(@GO_GUID+10,180437,0,1,1,1744.96,496.25,41.44,1.24581,0,0,0.583397,0.812187,300,0,1), +-- G_Pumpkin_01 +(@GO_GUID+11,180405,0,1,1,1746.07,517.066,38.936,2.83466,0,0,0.988247,0.152864,300,0,1), +(@GO_GUID+12,180405,0,1,1,1728,475.099,63.6779,3.08363,0,0,0.99958,0.0289791,300,0,1), +-- G_Pumpkin_02 +(@GO_GUID+13,180406,0,1,1,1719.67,522.979,36.8828,2.93283,0,0,0.994557,0.10419,300,0,1); +DELETE FROM `creature` WHERE `id` IN (15195,15197,15199) AND `guid` BETWEEN @CREATURE_GUID+00 AND @CREATURE_GUID+04; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +-- Wickerman Guardian +(@CREATURE_GUID+00,15195,0,1,1,0,0,1713.1,511.295,37.2005,1.48063,300,0,0,45780,0,0,0,0,0), +(@CREATURE_GUID+01,15195,0,1,1,0,0,1750.57,511.697,37.7587,1.25444,300,0,0,45780,0,0,0,0,0), +(@CREATURE_GUID+02,15195,0,1,1,0,0,1732.31,520.874,36.3326,1.30942,300,0,0,45780,0,0,0,0,0), +-- Darkcaller Yanka +(@CREATURE_GUID+03,15197,0,1,1,0,0,1734.6,508.803,41.2847,1.6173,300,0,0,15260,0,0,0,0,0), +-- Sergeant Hartman +(@CREATURE_GUID+04,15199,0,1,1,0,0,-813.614,-547.184,15.6377,1.69193,300,0,0,15260,0,0,0,0,0); +DELETE FROM `game_event_gameobject` WHERE `guid` BETWEEN @GO_GUID+00 AND @GO_GUID+13; +INSERT INTO `game_event_gameobject` VALUES +(12,@GO_GUID+00), +(12,@GO_GUID+01), +(12,@GO_GUID+02), +(12,@GO_GUID+03), +(12,@GO_GUID+04), +(12,@GO_GUID+05), +(12,@GO_GUID+06), +(12,@GO_GUID+07), +(12,@GO_GUID+08), +(12,@GO_GUID+09), +(12,@GO_GUID+10), +(12,@GO_GUID+11), +(12,@GO_GUID+12), +(12,@GO_GUID+13); +DELETE FROM `game_event_creature` WHERE `guid` BETWEEN @CREATURE_GUID+00 AND @CREATURE_GUID+04; +INSERT INTO `game_event_creature` VALUES +(12,@CREATURE_GUID+00), +(12,@CREATURE_GUID+01), +(12,@CREATURE_GUID+02), +(12,@CREATURE_GUID+03), +(12,@CREATURE_GUID+04); +-- Wickerman Ashes +DELETE FROM `gossip_menu` WHERE `entry` = 6535; +INSERT INTO `gossip_menu` VALUES +(6535,7737), +(6535,7738); +DELETE FROM `gossip_menu_option` WHERE `menu_id`=6535 AND `id`=0; +INSERT INTO `gossip_menu_option` (`menu_id`,`id`,`option_icon`,`option_text`,`option_id`,`npc_option_npcflag`,`action_menu_id`,`action_poi_id`,`box_coded`,`box_money`,`box_text`) VALUES +(6535,0,0, 'Smear the ash on my face like war paint!',1,1,0,0,0,0, ''); -- need text confirmation +-- gossip conditions +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (14,15) AND `SourceGroup`=6535; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(14,6535,7738,0,0,1,0,24705,0,0,0,0, '', 'Wickerman Ember - Show different gossip if player is affected by aura 24705'), +(14,6535,7737,0,0,1,0,24705,0,0,1,0, '', 'Wickerman Ember - Show different gossip if player is affected by aura 24705'), +(15,6535,0,0,0,1,0,24705,0,0,1,0, '', 'Wickerman Ember - Show different gossip option if player is affected by aura 24705'); +-- GO smart script +UPDATE `gameobject_template` SET `AIName`='SmartGameObjectAI' WHERE `entry`=180437; +DELETE FROM `smart_scripts` WHERE `entryorguid`=180437 AND `source_type`=1; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(180437,1,0,1,62,0,100,0,6535,0,0,0,85,24705,34,0,0,0,0,7,0,0,0,0,0,0,0, 'Wickerman Ember - on Gossip Select - Cast Invocation of the Wickerman'), +(180437,1,1,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Wickerman Ember - on Link - Close gossip'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 8244: Hallow's End Pumpkin Treat & Tricky Treat time fix +-- Hallow's End Pumpkin Treat time fix & Tricky Treat time fix +UPDATE `item_template` SET `flagsCustom`=1 WHERE `entry` IN(20557,33226); +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +-- Issue 8288: Exhausted Vrykul - not responding after using discipline stick on him +SET @ENTRY := 30146; -- Exhausted Vrykul +SET @SPELL := 56033; -- Disciplining Rod +DELETE FROM `creature_template_addon` WHERE `entry`=@ENTRY; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (@ENTRY*100,@ENTRY*100+1) AND `source_type`=9; +DELETE FROM `smart_scripts` WHERE `source_type`=0 AND `entryorguid`=@ENTRY; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(@ENTRY,0,0,0,25,0,100,1,0,0,0,0,22,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - Reset - Switch to Phase 1'), +(@ENTRY,0,1,0,1,1,100,0,0,0,0,0,90,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - On phase 1 - Seat'), +(@ENTRY,0,2,3,8,1,100,0,@SPELL,0,0,0,33,29886,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Exhausted Vrykul - On Spell hit & phase 1 - Kill Credit'), +(@ENTRY,0,3,0,61,1,100,0,0,0,0,0,31,2,3,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - Link Spell hit - Switch to Phase 2 or 3'), +(@ENTRY,0,4,5,1,2,100,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - If phase 2 - Say random text 0'), +(@ENTRY,0,5,6,61,2,100,0,0,0,0,0,91,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - If phase 2 - Stand up'), +(@ENTRY,0,6,0,61,2,100,0,0,0,0,0,49,0,0,0,0,0,0,7,0,0,0,0,0,0,0, 'Exhausted Vrykul - On phase 2 - Start Attack'), +(@ENTRY,0,7,8,1,4,100,1,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - On phase 3 - Say random text 1'), +(@ENTRY,0,8,9,61,4,100,0,0,0,0,0,91,1,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - If phase 3 - Stand up'), +(@ENTRY,0,9,10,61,4,100,0,0,0,0,0,46,6,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - If phase 3 - walk 6 yards'), +(@ENTRY,0,10,0,61,4,100,0,0,0,0,0,17,233,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - On phase 3 - Emote Work mining'), +(@ENTRY,0,11,0,1,4,100,1,60000,60000,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0, 'Exhausted Vrykul - On phase 3 & 1 minute OOC - despawn'), +(@ENTRY,0,12,0,2,0,100,1,0,30,0,0,11,57395,0,0,0,0,0,2,0,0,0,0,0,0,0, 'Exhausted Vrykul - At 30% Hp - Cast Desperate Blow'); +-- ------------------------------------------------------------------------------------------------------------------------------------------------ +DELETE FROM `creature_addon` WHERE `guid` IN (45214,45215,45146,85486); diff --git a/sql/updates/world/2012_11_19_01_world_pilgrims_bounty.sql b/sql/updates/world/2012_11_19_01_world_pilgrims_bounty.sql new file mode 100644 index 00000000000..56cda092be6 --- /dev/null +++ b/sql/updates/world/2012_11_19_01_world_pilgrims_bounty.sql @@ -0,0 +1,4740 @@ +-- ------------------ +-- -- Event Definition -- +-- ------------------ +SET @Event = 26; -- game_event.entry - Set by TDB +DELETE FROM `game_event` WHERE `eventEntry`=@Event; +INSERT INTO `game_event` (`eventEntry`,`start_time`,`end_time`,`occurence`,`length`,`holiday`,`description`,`world_event`) VALUES +(@Event,'2011-11-18 01:00:00','2020-12-31 05:00:00',525600,10020,404, 'Pilgrim''s Bounty',0); +-- ------------------ +-- -- Event Spawns -- +-- ------------------ +SET @CGUID := 138255; -- Set by TDB +SET @OGUID := 76055; -- Set by TDB +DELETE FROM `creature` WHERE `guid` BETWEEN @CGUID AND @CGUID+3998; +INSERT INTO `creature` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`modelid`,`equipment_id`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`currentwaypoint`,`curhealth`,`curmana`,`MovementType`,`npcflag`,`unit_flags`,`dynamicflags`) VALUES +(@CGUID,20102,530,1,1,0,0,3038.56,3635.53,144.012,3.32713,300,0,0,42,0,0,0,0,0), +(@CGUID+1,32823,0,1,1,0,0,-5082.28,-792.136,495.678,1.86906,300,0,0,1,0,0,0,0,0), +(@CGUID+2,32823,0,1,1,0,0,-5093.01,-795.451,495.128,3.49483,300,0,0,1,0,0,0,0,0), +(@CGUID+3,32823,0,1,1,0,0,-5092.7,-803.861,495.148,0.164747,300,0,0,1,0,0,0,0,0), +(@CGUID+4,32823,0,1,1,0,0,-5079.45,-800.684,495.127,0.258995,300,0,0,1,0,0,0,0,0), +(@CGUID+5,34812,0,1,1,0,0,-5078.48,-796.243,495.176,4.6533,300,0,0,112,120,0,0,0,0), +(@CGUID+6,34812,0,1,1,0,0,-5085.3,-792.972,495.558,0.412147,300,0,0,112,120,0,0,0,0), +(@CGUID+7,34812,0,1,1,0,0,-5089.67,-800.427,495.127,4.22918,300,0,0,112,120,0,0,0,0), +(@CGUID+8,34812,0,1,1,0,0,-5092.47,-799.083,495.128,1.88084,300,0,0,112,120,0,0,0,0), +(@CGUID+9,34823,0,1,1,0,0,-5087.72,-803.254,495.127,3.21995,300,0,0,112,120,0,0,0,0), +(@CGUID+10,34823,0,1,1,0,0,-5097.2,-797.589,495.127,0.435709,300,0,0,112,120,0,0,0,0), +(@CGUID+11,34823,0,1,1,0,0,-5083.38,-787.805,495.911,4.78682,300,0,0,112,120,0,0,0,0), +(@CGUID+12,34823,0,1,1,0,0,-5074.94,-799.68,495.127,3.3299,300,0,0,112,120,0,0,0,0), +(@CGUID+13,34819,0,1,1,0,0,-5076.41,-803.853,495.127,2.04185,300,0,0,112,120,0,0,0,0), +(@CGUID+14,34819,0,1,1,0,0,-5090.39,-807.055,495.08,2.00258,300,0,0,112,120,0,0,0,0), +(@CGUID+15,34819,0,1,1,0,0,-5095.91,-792.882,495.157,5.22664,300,0,0,112,120,0,0,0,0), +(@CGUID+16,34819,0,1,1,0,0,-5079.43,-789.073,495.722,3.73046,300,0,0,112,120,0,0,0,0), +(@CGUID+17,34822,0,1,1,0,0,-5079.51,-793.698,495.44,2.5445,300,0,0,112,120,0,0,0,0), +(@CGUID+18,34822,0,1,1,0,0,-5081.14,-803.525,495.128,0.848043,300,0,0,112,120,0,0,0,0), +(@CGUID+19,34822,0,1,1,0,0,-5094.72,-806.292,495.161,0.745942,300,0,0,112,120,0,0,0,0), +(@CGUID+20,34824,0,1,1,0,0,-5095.77,-802.078,495.132,5.84318,300,0,0,112,120,0,0,0,0), +(@CGUID+21,34824,0,1,1,0,0,-5089.96,-796.654,495.151,2.80369,300,0,0,112,120,0,0,0,0), +(@CGUID+22,34824,0,1,1,0,0,-5082.59,-795.26,495.322,1.50385,300,0,0,112,120,0,0,0,0), +(@CGUID+23,34824,0,1,1,0,0,-5082.54,-798.894,495.137,5.86674,300,0,0,112,120,0,0,0,0), +(@CGUID+24,34653,0,1,1,0,0,-5071.89,-801.345,495.128,0.094064,300,0,0,5342,0,0,0,0,0), +(@CGUID+25,34708,0,1,1,0,0,-5079.31,-809.352,495.833,1.53919,600,0,0,1524,0,0,0,0,0), +(@CGUID+26,34645,0,1,1,0,0,-5076.66,-808.073,495.833,2.01829,600,0,0,1524,0,0,0,0,0), +(@CGUID+27,35340,0,1,1,0,0,-5073.03,-787.526,495.117,4.57476,600,0,0,1524,0,0,0,0,0), +(@CGUID+28,34644,0,1,1,0,0,-5084.24,-808.46,495.832,0.977634,300,0,0,1524,0,0,0,0,0), +(@CGUID+29,32823,0,1,1,0,0,-9116.83,309.643,93.1605,1.45805,300,0,0,1,0,0,0,0,0), +(@CGUID+30,32823,0,1,1,0,0,-9115.63,320.223,93.189,1.45805,300,0,0,1,0,0,0,0,0), +(@CGUID+31,32823,0,1,1,0,0,-9114.71,332.007,93.1289,1.50517,300,0,0,1,0,0,0,0,0), +(@CGUID+32,32823,0,1,1,0,0,-9113.9,344.27,93.6394,1.50517,300,0,0,1,0,0,0,0,0), +(@CGUID+33,34812,0,1,1,0,0,-9118.42,345.069,93.9817,0.0993054,300,0,0,112,120,0,0,0,0), +(@CGUID+34,34812,0,1,1,0,0,-9118.93,332.436,93.3026,0.0521796,300,0,0,112,120,0,0,0,0), +(@CGUID+35,34812,0,1,1,0,0,-9119.35,320.819,93.3331,0.20926,300,0,0,112,120,0,0,0,0), +(@CGUID+36,34823,0,1,1,0,0,-9116.52,314.55,93.0822,4.65069,300,0,0,112,120,0,0,0,0), +(@CGUID+37,34823,0,1,1,0,0,-9115.78,325.128,93.2047,4.70174,300,0,0,112,120,0,0,0,0), +(@CGUID+38,34823,0,1,1,0,0,-9114.1,336.911,93.4026,4.61927,300,0,0,112,120,0,0,0,0), +(@CGUID+39,34823,0,1,1,0,0,-9113.13,348.931,93.5571,4.53288,300,0,0,112,120,0,0,0,0), +(@CGUID+40,34819,0,1,1,0,0,-9110.13,345.405,93.4552,3.04455,300,0,0,112,120,0,0,0,0), +(@CGUID+41,34819,0,1,1,0,0,-9111.31,333.146,93.2693,3.15058,300,0,0,112,120,0,0,0,0), +(@CGUID+42,34819,0,1,1,0,0,-9111.83,320.705,93.1879,2.86784,300,0,0,112,120,0,0,0,0), +(@CGUID+43,34819,0,1,1,0,0,-9113.34,310.046,93.2807,2.96208,300,0,0,112,120,0,0,0,0), +(@CGUID+44,34822,0,1,1,0,0,-9114.8,307.034,93.4531,2.28664,300,0,0,112,120,0,0,0,0), +(@CGUID+45,34824,0,1,1,0,0,-9119.35,307.993,93.1764,0.637305,300,0,0,112,120,0,0,0,0), +(@CGUID+46,34822,0,1,1,0,0,-9114.01,317.994,93.1465,2.10207,300,0,0,112,120,0,0,0,0), +(@CGUID+47,34824,0,1,1,0,0,-9118.64,318.192,93.207,0.484153,300,0,0,112,120,0,0,0,0), +(@CGUID+48,34822,0,1,1,0,0,-9112.75,329.259,93.1734,2.12564,300,0,0,112,120,0,0,0,0), +(@CGUID+49,34824,0,1,1,0,0,-9116.74,329.417,93.1118,0.923976,300,0,0,112,120,0,0,0,0), +(@CGUID+50,34822,0,1,1,0,0,-9112.46,341.845,93.5009,1.93714,300,0,0,112,120,0,0,0,0), +(@CGUID+51,34824,0,1,1,0,0,-9116.35,342.758,93.8079,0.637305,300,0,0,112,120,0,0,0,0), +(@CGUID+52,34653,0,1,1,0,0,-9118.91,350.746,93.735,2.14134,300,0,0,5342,0,0,0,0,0), +(@CGUID+53,34710,0,1,1,0,0,-9118.18,359.164,93.2702,1.90179,600,0,0,1524,0,0,0,0,0), +(@CGUID+54,35337,0,1,1,0,0,-9111.63,353.697,93.4015,2.40837,600,0,0,1524,0,0,0,0,0), +(@CGUID+55,34744,0,1,1,0,0,-9127.56,351.404,94.2329,2.13741,300,0,0,1524,0,0,0,0,0), +(@CGUID+56,34682,0,1,1,0,0,-9110.83,366.354,94.0632,2.67934,600,0,0,1524,0,0,0,0,0), +(@CGUID+57,34675,0,1,1,0,0,-9125.02,352.824,94.2342,2.1217,300,0,0,1524,0,0,0,0,0), +(@CGUID+58,32823,1,1,1,0,0,9992.89,2213.08,1328.19,3.36582,300,0,0,1,0,0,0,0,0), +(@CGUID+59,32823,1,1,1,0,0,9981.25,2210.43,1328.79,3.36582,300,0,0,1,0,0,0,0,0), +(@CGUID+60,32823,1,1,1,0,0,9993.91,2203.28,1327.78,3.25587,300,0,0,1,0,0,0,0,0), +(@CGUID+61,32823,1,1,1,0,0,9983.74,2200.09,1328.61,3.29906,300,0,0,1,0,0,0,0,0), +(@CGUID+62,34812,1,1,1,0,0,9993.46,2199.34,1327.76,1.65758,300,0,0,112,120,0,0,0,0), +(@CGUID+63,34812,1,1,1,0,0,9992.41,2209.12,1328.09,1.68507,300,0,0,112,120,0,0,0,0), +(@CGUID+64,34812,1,1,1,0,0,9980.51,2206.25,1328.83,1.56333,300,0,0,112,120,0,0,0,0), +(@CGUID+65,34812,1,1,1,0,0,9982.89,2195.91,1328.74,1.6026,300,0,0,112,120,0,0,0,0), +(@CGUID+66,34812,1,1,1,0,0,9983.28,2195.71,1328.72,1.66543,300,0,0,112,120,0,0,0,0), +(@CGUID+67,34812,1,1,1,0,0,9992.85,2209.39,1328.08,1.77146,300,0,0,112,120,0,0,0,0), +(@CGUID+68,34823,1,1,1,0,0,9978.58,2199.07,1328.9,0.224227,300,0,0,112,120,0,0,0,0), +(@CGUID+69,34823,1,1,1,0,0,9989.41,2202.1,1328.03,0.275278,300,0,0,112,120,0,0,0,0), +(@CGUID+70,34823,1,1,1,0,0,9988.13,2211.82,1328.38,0.184957,300,0,0,112,120,0,0,0,0), +(@CGUID+71,34823,1,1,1,0,0,9976.38,2209.67,1329.13,0.18103,300,0,0,112,120,0,0,0,0), +(@CGUID+72,34819,1,1,1,0,0,9979.04,2213.85,1328.94,5.02301,300,0,0,112,120,0,0,0,0), +(@CGUID+73,34819,1,1,1,0,0,9982.03,2203.39,1328.71,4.97982,300,0,0,112,120,0,0,0,0), +(@CGUID+74,34819,1,1,1,0,0,9992.22,2206.94,1327.99,4.79132,300,0,0,112,120,0,0,0,0), +(@CGUID+75,34819,1,1,1,0,0,9991.3,2216.25,1328.36,4.81096,300,0,0,112,120,0,0,0,0), +(@CGUID+76,34822,1,1,1,0,0,9994.93,2215.9,1328.41,4.06483,300,0,0,112,120,0,0,0,0), +(@CGUID+77,34824,1,1,1,0,0,9996.01,2211.72,1327.97,2.72966,300,0,0,112,120,0,0,0,0), +(@CGUID+78,34822,1,1,1,0,0,9996.69,2205.42,1327.76,3.63286,300,0,0,112,120,0,0,0,0), +(@CGUID+79,34824,1,1,1,0,0,9996.37,2202.04,1327.71,2.83176,300,0,0,112,120,0,0,0,0), +(@CGUID+80,34822,1,1,1,0,0,9985.68,2202.2,1328.39,3.78994,300,0,0,112,120,0,0,0,0), +(@CGUID+81,34824,1,1,1,0,0,9986.2,2198.49,1328.35,2.72966,300,0,0,112,120,0,0,0,0), +(@CGUID+82,34822,1,1,1,0,0,9982.99,2213.05,1328.67,4.06483,300,0,0,112,120,0,0,0,0), +(@CGUID+83,34824,1,1,1,0,0,9984.15,2208.95,1328.59,2.74536,300,0,0,112,120,0,0,0,0), +(@CGUID+84,35338,1,1,1,0,0,9992.78,2238.74,1330.6,3.11451,600,0,0,1524,0,0,0,0,0), +(@CGUID+85,35338,1,1,1,0,0,9989.53,2237.63,1330.96,3.11451,600,0,0,1524,0,0,0,0,0), +(@CGUID+86,35338,1,1,1,0,0,9987.13,2238.11,1331.16,2.8082,600,0,0,1524,0,0,0,0,0), +(@CGUID+87,34711,1,1,1,0,0,10001.8,2228.02,1330.16,2.9535,600,0,0,1524,0,0,0,0,0), +(@CGUID+88,34653,1,1,1,0,0,9975.5,2212.18,1329.26,3.14199,300,0,0,5342,0,0,0,0,0), +(@CGUID+89,34681,1,1,1,0,0,9982.08,2243.54,1332.54,3.01633,600,0,0,1524,0,0,0,0,0), +(@CGUID+90,34676,1,1,1,0,0,9982.13,2246.34,1332.72,3.12629,300,0,0,1524,0,0,0,0,0), +(@CGUID+91,32823,530,1,1,0,0,-3975.02,-11870.6,0.510499,1.83564,300,0,0,1,0,0,0,0,0), +(@CGUID+92,32823,530,1,1,0,0,-3966.15,-11868.9,0.677072,4.56098,300,0,0,1,0,0,0,0,0), +(@CGUID+93,32823,530,1,1,0,0,-3967.7,-11879,0.698275,4.67093,300,0,0,1,0,0,0,0,0), +(@CGUID+94,32823,530,1,1,0,0,-3975.57,-11879.1,0.563379,4.59239,300,0,0,1,0,0,0,0,0), +(@CGUID+95,34812,530,1,1,0,0,-3972.39,-11880.5,0.620286,3.0805,300,0,0,112,120,0,0,0,0), +(@CGUID+96,34812,530,1,1,0,0,-3964.17,-11880.1,0.780479,3.19438,300,0,0,112,120,0,0,0,0), +(@CGUID+97,34812,530,1,1,0,0,-3963.04,-11870.8,0.75601,2.91164,300,0,0,112,120,0,0,0,0), +(@CGUID+98,34812,530,1,1,0,0,-3978.56,-11870.4,0.457089,0.131328,300,0,0,112,120,0,0,0,0), +(@CGUID+99,34823,530,1,1,0,0,-3976.38,-11866.3,0.459333,5.05185,300,0,0,112,120,0,0,0,0), +(@CGUID+100,34823,530,1,1,0,0,-3966.71,-11873.1,0.697868,1.5097,300,0,0,112,120,0,0,0,0), +(@CGUID+101,34823,530,1,1,0,0,-3967.81,-11883.4,0.71311,1.655,300,0,0,112,120,0,0,0,0), +(@CGUID+102,34823,530,1,1,0,0,-3976.18,-11882.9,0.572993,1.26623,300,0,0,112,120,0,0,0,0), +(@CGUID+103,34819,530,1,1,0,0,-3978.81,-11880.6,0.5216,0.00173759,300,0,0,112,120,0,0,0,0), +(@CGUID+104,34822,530,1,1,0,0,-3977.04,-11876.4,0.52305,4.85943,300,0,0,112,120,0,0,0,0), +(@CGUID+105,34824,530,1,1,0,0,-3973.01,-11877.4,0.588198,3.97193,300,0,0,112,120,0,0,0,0), +(@CGUID+106,34819,530,1,1,0,0,-3972.32,-11868,0.553342,3.75202,300,0,0,112,120,0,0,0,0), +(@CGUID+107,34822,530,1,1,0,0,-3972.28,-11872,0.574069,2.48753,300,0,0,112,120,0,0,0,0), +(@CGUID+108,34824,530,1,1,0,0,-3975.92,-11873.2,0.516282,1.21125,300,0,0,112,120,0,0,0,0), +(@CGUID+109,34819,530,1,1,0,0,-3969.74,-11869.6,0.615128,5.97469,300,0,0,112,120,0,0,0,0), +(@CGUID+110,34822,530,1,1,0,0,-3967.42,-11866.3,0.628005,5.11075,300,0,0,112,120,0,0,0,0), +(@CGUID+111,34824,530,1,1,0,0,-3963.33,-11867.2,0.713348,3.7638,300,0,0,112,120,0,0,0,0), +(@CGUID+112,34819,530,1,1,0,0,-3970.89,-11880,0.636388,6.24172,300,0,0,112,120,0,0,0,0), +(@CGUID+113,34822,530,1,1,0,0,-3969.61,-11876.8,0.648169,5.31496,300,0,0,112,120,0,0,0,0), +(@CGUID+114,34824,530,1,1,0,0,-3965.25,-11877.4,0.745982,3.85019,300,0,0,112,120,0,0,0,0), +(@CGUID+115,34653,530,1,1,0,0,-3978.75,-11863,0.438156,3.94051,300,0,0,5342,0,0,0,0,0), +(@CGUID+116,34785,530,1,1,0,0,-3957.89,-11863,0.778528,3.47713,600,0,0,1524,0,0,0,0,0), +(@CGUID+117,34783,530,1,1,0,0,-3981.01,-11861.1,1.12189,4.16906,600,0,0,1524,0,0,0,0,0), +(@CGUID+118,35340,530,1,1,0,0,-3955.87,-11866.3,0.850197,5.07934,600,0,0,1524,0,0,0,0,0), +(@CGUID+119,32823,1,1,1,0,0,1282.83,-4418.29,26.5714,0.327693,300,0,0,1,0,0,0,0,0), +(@CGUID+120,32823,1,1,1,0,0,1274.4,-4425.46,26.665,0.704684,300,0,0,1,0,0,0,0,0), +(@CGUID+121,32823,1,1,1,0,0,1280.76,-4432.94,27.0913,0.704684,300,0,0,1,0,0,0,0,0), +(@CGUID+122,32823,1,1,1,0,0,1290.11,-4426.16,26.7342,0.641852,300,0,0,1,0,0,0,0,0), +(@CGUID+123,34654,1,1,1,0,0,1293.13,-4405.79,26.3839,4.12117,300,0,0,5342,0,0,0,0,0), +(@CGUID+124,34812,1,1,1,0,0,1282,-4414.97,26.508,5.33068,300,0,0,112,120,0,0,0,0), +(@CGUID+125,34812,1,1,1,0,0,1288.88,-4422.93,26.6279,5.421,300,0,0,112,120,0,0,0,0), +(@CGUID+126,34812,1,1,1,0,0,1279.11,-4429.42,26.8343,5.4799,300,0,0,112,120,0,0,0,0), +(@CGUID+127,34812,1,1,1,0,0,1272.58,-4422.59,26.6228,5.47598,300,0,0,112,120,0,0,0,0), +(@CGUID+128,35342,1,1,1,0,0,1296.57,-4421.63,26.6309,5.13825,600,0,0,1524,0,0,0,0,0), +(@CGUID+129,35342,1,1,1,0,0,1294.78,-4421.96,26.6249,5.14218,600,0,0,1524,0,0,0,0,0), +(@CGUID+130,35342,1,1,1,0,0,1293.33,-4420.44,26.5897,5.25292,600,0,0,1524,0,0,0,0,0), +(@CGUID+131,34713,1,1,1,0,0,1300.64,-4407.67,26.5393,3.71747,600,0,0,1524,0,0,0,0,0), +(@CGUID+132,34679,1,1,1,0,0,1296.81,-4417.88,27.3402,2.33909,300,0,0,1524,0,0,0,0,0), +(@CGUID+133,34685,1,1,1,0,0,1294.88,-4419.93,27.2965,2.29982,600,0,0,1524,0,0,0,0,0), +(@CGUID+134,34823,1,1,1,0,0,1287.22,-4416.93,26.5846,3.44651,300,0,0,112,120,0,0,0,0), +(@CGUID+135,34819,1,1,1,0,0,1285.47,-4420.7,26.597,2.05635,300,0,0,112,120,0,0,0,0), +(@CGUID+136,34822,1,1,1,0,0,1281.16,-4420.96,26.5957,0.835057,300,0,0,112,120,0,0,0,0), +(@CGUID+137,34824,1,1,1,0,0,1279.78,-4418.23,26.5395,0.0378778,300,0,0,112,120,0,0,0,0), +(@CGUID+138,34823,1,1,1,0,0,1293.65,-4423.68,26.651,3.53683,300,0,0,112,120,0,0,0,0), +(@CGUID+139,34819,1,1,1,0,0,1293.54,-4427.88,26.7986,2.43727,300,0,0,112,120,0,0,0,0), +(@CGUID+140,34822,1,1,1,0,0,1289.68,-4429.39,26.893,1.29844,300,0,0,112,120,0,0,0,0), +(@CGUID+141,34824,1,1,1,0,0,1287.16,-4425.62,26.7042,6.25431,300,0,0,112,120,0,0,0,0), +(@CGUID+142,34823,1,1,1,0,0,1284.08,-4430.27,26.9355,3.83528,300,0,0,112,120,0,0,0,0), +(@CGUID+143,34819,1,1,1,0,0,1284.44,-4434.11,27.246,2.59828,300,0,0,112,120,0,0,0,0), +(@CGUID+144,34822,1,1,1,0,0,1280.6,-4435.71,27.2582,1.36128,300,0,0,112,120,0,0,0,0), +(@CGUID+145,34824,1,1,1,0,0,1278.08,-4433.26,27.0236,0.20674,300,0,0,112,120,0,0,0,0), +(@CGUID+146,34823,1,1,1,0,0,1277.61,-4422.57,26.5793,3.88633,300,0,0,112,120,0,0,0,0), +(@CGUID+147,34819,1,1,1,0,0,1277.84,-4426.82,26.693,2.42942,300,0,0,112,120,0,0,0,0), +(@CGUID+148,34822,1,1,1,0,0,1274.16,-4428.29,26.7377,1.28274,300,0,0,112,120,0,0,0,0), +(@CGUID+149,34824,1,1,1,0,0,1271.67,-4426.25,26.6933,0.265645,300,0,0,112,120,0,0,0,0), +(@CGUID+150,32823,1,1,1,0,0,-1328.29,188.777,60.5313,3.36455,300,0,0,1,0,0,0,0,0), +(@CGUID+151,32823,1,1,1,0,0,-1321.55,190.334,59.733,3.36848,300,0,0,1,0,0,0,0,0), +(@CGUID+152,32823,1,1,1,0,0,-1330.56,196.448,59.9585,3.26245,300,0,0,1,0,0,0,0,0), +(@CGUID+153,32823,1,1,1,0,0,-1323.39,197.319,59.3536,3.26245,300,0,0,1,0,0,0,0,0), +(@CGUID+154,34812,1,1,1,0,0,-1331.3,193.186,60.3687,1.69951,300,0,0,112,120,0,0,0,0), +(@CGUID+155,34812,1,1,1,0,0,-1329.04,184.933,60.846,1.78198,300,0,0,112,120,0,0,0,0), +(@CGUID+156,34812,1,1,1,0,0,-1321.85,186.615,60.0284,1.75449,300,0,0,112,120,0,0,0,0), +(@CGUID+157,34812,1,1,1,0,0,-1323.98,194.051,59.6589,1.80161,300,0,0,112,120,0,0,0,0), +(@CGUID+158,34823,1,1,1,0,0,-1327.57,196.437,59.7425,0.25045,300,0,0,112,120,0,0,0,0), +(@CGUID+159,34819,1,1,1,0,0,-1325.66,200.086,59.307,5.02568,300,0,0,112,120,0,0,0,0), +(@CGUID+160,34822,1,1,1,0,0,-1321.87,199.529,59.1138,3.86329,300,0,0,112,120,0,0,0,0), +(@CGUID+161,34824,1,1,1,0,0,-1321.08,195.488,59.3111,2.53204,300,0,0,112,120,0,0,0,0), +(@CGUID+162,34823,1,1,1,0,0,-1325.78,189.261,60.2152,0.22689,300,0,0,112,120,0,0,0,0), +(@CGUID+163,34819,1,1,1,0,0,-1323.78,192.972,59.7357,5.12385,300,0,0,112,120,0,0,0,0), +(@CGUID+164,34822,1,1,1,0,0,-1319.91,192.594,59.4278,3.87507,300,0,0,112,120,0,0,0,0), +(@CGUID+165,34824,1,1,1,0,0,-1318.95,189.15,59.6095,2.7598,300,0,0,112,120,0,0,0,0), +(@CGUID+166,34823,1,1,1,0,0,-1332.53,187.47,60.7196,0.289728,300,0,0,112,120,0,0,0,0), +(@CGUID+167,34819,1,1,1,0,0,-1330.72,191.145,60.51,5.02961,300,0,0,112,120,0,0,0,0), +(@CGUID+168,34822,1,1,1,0,0,-1327.19,191.169,60.1974,4.03608,300,0,0,112,120,0,0,0,0), +(@CGUID+169,34824,1,1,1,0,0,-1326.18,186.987,60.4491,2.2493,300,0,0,112,120,0,0,0,0), +(@CGUID+170,34823,1,1,1,0,0,-1335.05,195.361,60.4403,0.285803,300,0,0,112,120,0,0,0,0), +(@CGUID+171,34819,1,1,1,0,0,-1332.47,199.595,59.7487,4.96678,300,0,0,112,120,0,0,0,0), +(@CGUID+172,34822,1,1,1,0,0,-1329.34,199.006,59.6342,4.10677,300,0,0,112,120,0,0,0,0), +(@CGUID+173,34824,1,1,1,0,0,-1328.41,194.364,60,2.34748,300,0,0,112,120,0,0,0,0), +(@CGUID+174,34714,1,1,1,0,0,-1314.67,206.382,58.8653,3.50594,600,0,0,1524,0,0,0,0,0), +(@CGUID+175,34654,1,1,1,0,0,-1337.67,190.598,60.8631,4.17745,300,0,0,5342,0,0,0,0,0), +(@CGUID+176,35343,1,1,1,0,0,-1317.71,208.647,58.8602,5.42231,600,0,0,1524,0,0,0,0,0), +(@CGUID+177,35343,1,1,1,0,0,-1317.08,185.668,59.6624,4.92751,600,0,0,1524,0,0,0,0,0), +(@CGUID+178,34684,1,1,1,0,0,-1313.09,189.957,59.9336,2.56739,600,0,0,1524,0,0,0,0,0), +(@CGUID+179,34678,1,1,1,0,0,-1311.92,192.569,59.8367,2.6852,300,0,0,1524,0,0,0,0,0), +(@CGUID+180,32823,0,1,1,0,0,1834.55,253.055,59.7593,2.898,300,0,0,1,0,0,0,0,0), +(@CGUID+181,32823,0,1,1,0,0,1824.34,255.595,59.9598,2.898,300,0,0,1,0,0,0,0,0), +(@CGUID+182,32823,0,1,1,0,0,1836.01,219.866,60.2,2.98046,300,0,0,1,0,0,0,0,0), +(@CGUID+183,32823,0,1,1,0,0,1826.08,221.479,60.564,2.98046,300,0,0,1,0,0,0,0,0), +(@CGUID+184,34812,0,1,1,0,0,1824.34,218.407,60.4028,1.2251,300,0,0,112,120,0,0,0,0), +(@CGUID+185,34812,0,1,1,0,0,1834.58,216.635,60.194,1.39003,300,0,0,112,120,0,0,0,0), +(@CGUID+186,34812,0,1,1,0,0,1833.11,250.272,59.7872,1.50784,300,0,0,112,120,0,0,0,0), +(@CGUID+187,34812,0,1,1,0,0,1822.42,252.376,60.0278,1.25259,300,0,0,112,120,0,0,0,0), +(@CGUID+188,34823,0,1,1,0,0,1819.47,256.351,60.0177,6.08671,300,0,0,112,120,0,0,0,0), +(@CGUID+189,34819,0,1,1,0,0,1823.47,259.36,59.921,4.44916,300,0,0,112,120,0,0,0,0), +(@CGUID+190,34822,0,1,1,0,0,1826.98,256.962,59.7774,3.40851,300,0,0,112,120,0,0,0,0), +(@CGUID+191,34824,0,1,1,0,0,1825.59,252.345,59.9664,2.01836,300,0,0,112,120,0,0,0,0), +(@CGUID+192,34823,0,1,1,0,0,1830.29,254.158,59.6774,6.02781,300,0,0,112,120,0,0,0,0), +(@CGUID+193,34819,0,1,1,0,0,1833.77,256.523,59.7223,4.64552,300,0,0,112,120,0,0,0,0), +(@CGUID+194,34822,0,1,1,0,0,1837.2,254.766,59.856,3.58916,300,0,0,112,120,0,0,0,0), +(@CGUID+195,34824,0,1,1,0,0,1836.83,251.094,59.922,2.54065,300,0,0,112,120,0,0,0,0), +(@CGUID+196,34823,0,1,1,0,0,1821.62,222.529,60.1521,6.01211,300,0,0,112,120,0,0,0,0), +(@CGUID+197,34819,0,1,1,0,0,1825.06,224.891,60.2886,4.72799,300,0,0,112,120,0,0,0,0), +(@CGUID+198,34822,0,1,1,0,0,1828.78,223.155,60.5687,3.59309,300,0,0,112,120,0,0,0,0), +(@CGUID+199,34824,0,1,1,0,0,1828.2,219.471,60.6056,2.42991,300,0,0,112,120,0,0,0,0), +(@CGUID+200,34823,0,1,1,0,0,1831.58,220.664,60.5304,6.01918,300,0,0,112,120,0,0,0,0), +(@CGUID+201,34819,0,1,1,0,0,1834.82,223.437,60.2865,4.83323,300,0,0,112,120,0,0,0,0), +(@CGUID+202,34822,0,1,1,0,0,1838.43,221.277,60.1987,3.55697,300,0,0,112,120,0,0,0,0), +(@CGUID+203,34824,0,1,1,0,0,1837.5,217.672,60.1333,2.31996,300,0,0,112,120,0,0,0,0), +(@CGUID+204,34654,0,1,1,0,0,1828.25,248.785,59.9713,4.91178,300,0,0,5342,0,0,0,0,0), +(@CGUID+205,34654,0,1,1,0,0,1830.22,228.484,60.2551,1.65238,300,0,0,5342,0,0,0,0,0), +(@CGUID+206,34712,0,1,1,0,0,1822.06,266.801,60.0993,5.01388,600,0,0,1524,0,0,0,0,0), +(@CGUID+207,34768,0,1,1,0,0,1817.01,258.573,60.721,4.95498,300,0,0,1524,0,0,0,0,0), +(@CGUID+208,34683,0,1,1,0,0,1814.56,257.735,60.6853,4.9589,600,0,0,1524,0,0,0,0,0), +(@CGUID+209,34677,0,1,1,0,0,1811.74,257.052,60.6289,4.87643,300,0,0,1524,0,0,0,0,0), +(@CGUID+210,35341,0,1,1,0,0,1827.28,266.018,60.0083,0.203308,600,0,0,1524,0,0,0,0,0), +(@CGUID+211,35341,0,1,1,0,0,1830.09,263.893,59.7316,0.22687,600,0,0,1524,0,0,0,0,0), +(@CGUID+212,35341,0,1,1,0,0,1818.25,260.215,60.0523,4.03212,600,0,0,1524,0,0,0,0,0), +(@CGUID+213,32823,530,1,1,0,0,9298,-7223.78,16.7799,1.75493,300,0,0,1,0,0,0,0,0), +(@CGUID+214,32823,530,1,1,0,0,9296.96,-7213.65,16.3391,1.67246,300,0,0,1,0,0,0,0,0), +(@CGUID+215,32823,530,1,1,0,0,9289.92,-7224.35,16.434,1.69603,300,0,0,1,0,0,0,0,0), +(@CGUID+216,32823,530,1,1,0,0,9288.17,-7214.89,16.2739,1.80598,300,0,0,1,0,0,0,0,0), +(@CGUID+217,34812,530,1,1,0,0,9284.31,-7214.59,16.2382,0.203766,300,0,0,112,120,0,0,0,0), +(@CGUID+218,34812,530,1,1,0,0,9293.31,-7213.1,16.3096,0.0702483,300,0,0,112,120,0,0,0,0), +(@CGUID+219,34812,530,1,1,0,0,9286.66,-7223.4,16.2791,0.105589,300,0,0,112,120,0,0,0,0), +(@CGUID+220,34812,530,1,1,0,0,9294.7,-7222.76,16.6244,0.0663194,300,0,0,112,120,0,0,0,0), +(@CGUID+221,34823,530,1,1,0,0,9297.16,-7219.19,16.6719,4.90438,300,0,0,112,120,0,0,0,0), +(@CGUID+222,34819,530,1,1,0,0,9301.47,-7221.08,16.7434,3.52208,300,0,0,112,120,0,0,0,0), +(@CGUID+223,34822,530,1,1,0,0,9300.59,-7225.64,16.6246,2.31649,300,0,0,112,120,0,0,0,0), +(@CGUID+224,34824,530,1,1,0,0,9296.27,-7226.62,16.7478,1.09127,300,0,0,112,120,0,0,0,0), +(@CGUID+225,34823,530,1,1,0,0,9289.11,-7219.58,16.2432,4.95542,300,0,0,112,120,0,0,0,0), +(@CGUID+226,34819,530,1,1,0,0,9292.91,-7221.98,16.4884,3.49066,300,0,0,112,120,0,0,0,0), +(@CGUID+227,34822,530,1,1,0,0,9292.41,-7226.39,16.6304,2.39895,300,0,0,112,120,0,0,0,0), +(@CGUID+228,34824,530,1,1,0,0,9288.09,-7226.98,16.5047,1.02451,300,0,0,112,120,0,0,0,0), +(@CGUID+229,34823,530,1,1,0,0,9287.09,-7210.47,16.4172,4.94364,300,0,0,112,120,0,0,0,0), +(@CGUID+230,34819,530,1,1,0,0,9290.92,-7212.86,16.314,3.40426,300,0,0,112,120,0,0,0,0), +(@CGUID+231,34822,530,1,1,0,0,9290.26,-7216.64,16.2758,2.35968,300,0,0,112,120,0,0,0,0), +(@CGUID+232,34824,530,1,1,0,0,9286.61,-7217.47,16.1966,1.24049,300,0,0,112,120,0,0,0,0), +(@CGUID+233,34823,530,1,1,0,0,9296.25,-7209.03,16.2939,4.86118,300,0,0,112,120,0,0,0,0), +(@CGUID+234,34819,530,1,1,0,0,9300.17,-7211.93,16.2018,3.35715,300,0,0,112,120,0,0,0,0), +(@CGUID+235,34822,530,1,1,0,0,9299.22,-7215.91,16.5658,2.45001,300,0,0,112,120,0,0,0,0), +(@CGUID+236,34824,530,1,1,0,0,9295.06,-7215.99,16.3911,0.918483,300,0,0,112,120,0,0,0,0), +(@CGUID+237,34654,530,1,1,0,0,9304.13,-7219.49,16.4335,5.7801,300,0,0,5342,0,0,0,0,0), +(@CGUID+238,34787,530,1,1,0,0,9305.74,-7211.06,16.6184,5.76831,600,0,0,1524,0,0,0,0,0), +(@CGUID+239,34786,530,1,1,0,0,9282.31,-7206.7,16.6141,5.7094,600,0,0,1524,0,0,0,0,0), +(@CGUID+240,35342,530,1,1,0,0,9285.98,-7199.02,17.4229,5.64657,600,0,0,1524,0,0,0,0,0), +(@CGUID+241,32820,0,1,1,0,0,-14286,283.778,32.739,1.543,600,20,0,2,0,1,0,0,0), +(@CGUID+242,32820,0,1,1,0,0,-14187,731,24.75,1.778,600,20,0,2,0,1,0,0,0), +(@CGUID+243,32820,0,1,1,0,0,1953.33,1514.46,88.0872,5.32666,600,20,0,2,0,1,0,0,0), +(@CGUID+244,32820,0,1,1,0,0,2008.17,1571.98,78.9962,2.06544,600,20,0,2,0,1,0,0,0), +(@CGUID+245,32820,0,1,1,0,0,-11550,-228,28.285,6.161,600,20,0,2,0,1,0,0,0), +(@CGUID+246,32820,0,1,1,0,0,2041.98,1535.7,77.489,5.11492,600,20,0,2,0,1,0,0,0), +(@CGUID+247,32820,0,1,1,0,0,2034.85,1631.35,70.8452,4.14039,600,20,0,2,0,1,0,0,0), +(@CGUID+248,32820,0,1,1,0,0,1927.26,1692.24,80.6916,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+249,32820,0,1,1,0,0,1998.23,1590.11,80.3288,0.610921,600,20,0,2,0,1,0,0,0), +(@CGUID+250,32820,0,1,1,0,0,2051.76,1763.78,87.6605,5.93412,600,20,0,2,0,1,0,0,0), +(@CGUID+251,32820,0,1,1,0,0,2118.09,1685.36,75.11,1.20324,600,20,0,2,0,1,0,0,0), +(@CGUID+252,32820,0,1,1,0,0,2084.58,1630.43,71.3452,2.4115,600,20,0,2,0,1,0,0,0), +(@CGUID+253,32820,0,1,1,0,0,2139.72,1655.26,79.3505,2.00735,600,20,0,2,0,1,0,0,0), +(@CGUID+254,32820,0,1,1,0,0,-10836,-2953,13.941,3.054,600,20,0,2,0,1,0,0,0), +(@CGUID+255,32820,0,1,1,0,0,-10779,-1194,35.275,0.915,600,20,0,2,0,1,0,0,0), +(@CGUID+256,32820,0,1,1,0,0,-10575,-3377,22.344,0.017,600,20,0,2,0,1,0,0,0), +(@CGUID+257,32820,0,1,1,0,0,-10559,1206.87,31.476,5.616,600,20,0,2,0,1,0,0,0), +(@CGUID+258,32820,0,1,1,0,0,-10181,83.288,24.122,4.197,600,20,0,2,0,1,0,0,0), +(@CGUID+259,32820,0,1,1,0,0,-10170,227.366,22.462,1.415,600,20,0,2,0,1,0,0,0), +(@CGUID+260,32820,0,1,1,0,0,-10154,619.3,27.052,4.304,600,20,0,2,0,1,0,0,0), +(@CGUID+261,32820,0,1,1,0,0,-10149,1053.31,36.284,5.61,600,20,0,2,0,1,0,0,0), +(@CGUID+262,32820,0,1,1,0,0,-10111,648.959,36.886,5.357,600,20,0,2,0,1,0,0,0), +(@CGUID+263,32820,0,1,1,0,0,-10107,690.702,32.081,3.962,600,20,0,2,0,1,0,0,0), +(@CGUID+264,32820,0,1,1,0,0,-10085,687.327,35.046,5.849,600,20,0,2,0,1,0,0,0), +(@CGUID+265,32820,0,1,1,0,0,-10083,545.919,29.148,0.695,600,20,0,2,0,1,0,0,0), +(@CGUID+266,32820,0,1,1,0,0,-10071,633.184,39.449,6.174,600,20,0,2,0,1,0,0,0), +(@CGUID+267,32820,0,1,1,0,0,-10059,155.731,27.684,3.863,600,20,0,2,0,1,0,0,0), +(@CGUID+268,32820,0,1,1,0,0,-10056,553.198,32.706,2.992,600,20,0,2,0,1,0,0,0), +(@CGUID+269,32820,0,1,1,0,0,-10055,49.171,31.882,3.217,600,20,0,2,0,1,0,0,0), +(@CGUID+270,32820,0,1,1,0,0,-10049,48.827,32.967,5.34,600,20,0,2,0,1,0,0,0), +(@CGUID+271,32820,0,1,1,0,0,-10045,225.886,27.451,3.413,600,20,0,2,0,1,0,0,0), +(@CGUID+272,32820,0,1,1,0,0,-10043,139.908,28.927,3.603,600,20,0,2,0,1,0,0,0), +(@CGUID+273,32820,0,1,1,0,0,-10042,139.466,29.229,1.223,600,20,0,2,0,1,0,0,0), +(@CGUID+274,32820,0,1,1,0,0,-10042,674.065,36.148,2.347,600,20,0,2,0,1,0,0,0), +(@CGUID+275,32820,0,1,1,0,0,-10039,283.298,30.42,6.267,600,20,0,2,0,1,0,0,0), +(@CGUID+276,32820,0,1,1,0,0,-10033,72.485,34.809,0.916,600,20,0,2,0,1,0,0,0), +(@CGUID+277,32820,0,1,1,0,0,-10031,143.328,31.699,0.896,600,20,0,2,0,1,0,0,0), +(@CGUID+278,32820,0,1,1,0,0,-10027,185.975,29.686,0,600,20,0,2,0,1,0,0,0), +(@CGUID+279,32820,0,1,1,0,0,-10022,20.283,36.088,5.391,600,20,0,2,0,1,0,0,0), +(@CGUID+280,32820,0,1,1,0,0,-10019,660.572,36.286,1.038,600,20,0,2,0,1,0,0,0), +(@CGUID+281,32820,0,1,1,0,0,-10017,654.089,37.149,5.412,600,20,0,2,0,1,0,0,0), +(@CGUID+282,32820,0,1,1,0,0,-10016,383.118,33.056,5.043,600,20,0,2,0,1,0,0,0), +(@CGUID+283,32820,0,1,1,0,0,-10014,37.605,35.253,0.768,600,20,0,2,0,1,0,0,0), +(@CGUID+284,32820,0,1,1,0,0,-10014,108.05,33.946,2.447,600,20,0,2,0,1,0,0,0), +(@CGUID+285,32820,0,1,1,0,0,-10012,216.285,30.095,1.123,600,20,0,2,0,1,0,0,0), +(@CGUID+286,32820,0,1,1,0,0,-10010,325.804,32.068,2.688,600,20,0,2,0,1,0,0,0), +(@CGUID+287,32820,0,1,1,0,0,-10010,582.399,38.946,5.949,600,20,0,2,0,1,0,0,0), +(@CGUID+288,32820,0,1,1,0,0,-10008,65.212,34.866,0.262,600,20,0,2,0,1,0,0,0), +(@CGUID+289,32820,0,1,1,0,0,-10008,209.363,30.628,0.802,600,20,0,2,0,1,0,0,0), +(@CGUID+290,32820,0,1,1,0,0,-10008,225.141,30.128,3.086,600,20,0,2,0,1,0,0,0), +(@CGUID+291,32820,0,1,1,0,0,-10005,52.82,34.654,0.297,600,20,0,2,0,1,0,0,0), +(@CGUID+292,32820,0,1,1,0,0,-10002,657.114,36.623,1.815,600,20,0,2,0,1,0,0,0), +(@CGUID+293,32820,0,1,1,0,0,-9999,206.431,30.798,0.059,600,20,0,2,0,1,0,0,0), +(@CGUID+294,32820,0,1,1,0,0,-9999,273.547,32.871,0.12,600,20,0,2,0,1,0,0,0), +(@CGUID+295,32820,0,1,1,0,0,-9997,356.614,35.086,5.825,600,20,0,2,0,1,0,0,0), +(@CGUID+296,32820,0,1,1,0,0,-9997,665.204,36.668,3.77,600,20,0,2,0,1,0,0,0), +(@CGUID+297,32820,0,1,1,0,0,-9995,471.122,33.046,5.384,600,20,0,2,0,1,0,0,0), +(@CGUID+298,32820,0,1,1,0,0,-9993,233.377,30.43,3.647,600,20,0,2,0,1,0,0,0), +(@CGUID+299,32820,0,1,1,0,0,-9993,298.491,34.711,1.195,600,20,0,2,0,1,0,0,0), +(@CGUID+300,32820,0,1,1,0,0,-9993,319.126,35.156,5.748,600,20,0,2,0,1,0,0,0), +(@CGUID+301,32820,0,1,1,0,0,-9991,474.728,33.654,6.098,600,20,0,2,0,1,0,0,0), +(@CGUID+302,32820,0,1,1,0,0,-9990,310.445,35.333,3.769,600,20,0,2,0,1,0,0,0), +(@CGUID+303,32820,0,1,1,0,0,-9989,-1478,24.047,5.275,600,20,0,2,0,1,0,0,0), +(@CGUID+304,32820,0,1,1,0,0,-9989,238.463,30.235,2.087,600,20,0,2,0,1,0,0,0), +(@CGUID+305,32820,0,1,1,0,0,-9989,270.974,33.069,1.406,600,20,0,2,0,1,0,0,0), +(@CGUID+306,32820,0,1,1,0,0,-9988,472.114,34.029,1.646,600,20,0,2,0,1,0,0,0), +(@CGUID+307,32820,0,1,1,0,0,-9987,303.128,34.983,3.132,600,20,0,2,0,1,0,0,0), +(@CGUID+308,32820,0,1,1,0,0,-9986,191.426,31.517,1.057,600,20,0,2,0,1,0,0,0), +(@CGUID+309,32820,0,1,1,0,0,-9986,453.746,35.546,0.018,600,20,0,2,0,1,0,0,0), +(@CGUID+310,32820,0,1,1,0,0,-9985,446.073,36.32,4.079,600,20,0,2,0,1,0,0,0), +(@CGUID+311,32820,0,1,1,0,0,-9984,448.163,36.195,5.497,600,20,0,2,0,1,0,0,0), +(@CGUID+312,32820,0,1,1,0,0,-9982,562.627,37.885,1.274,600,20,0,2,0,1,0,0,0), +(@CGUID+313,32820,0,1,1,0,0,-9981,542.102,37.19,5.026,600,20,0,2,0,1,0,0,0), +(@CGUID+314,32820,0,1,1,0,0,-9980,156.79,34.349,0.199,600,20,0,2,0,1,0,0,0), +(@CGUID+315,32820,0,1,1,0,0,-9979,644.991,37.125,5.198,600,20,0,2,0,1,0,0,0), +(@CGUID+316,32820,0,1,1,0,0,-9976,-24,35.04,2.754,600,20,0,2,0,1,0,0,0), +(@CGUID+317,32820,0,1,1,0,0,-9975,-27,34.762,4.23,600,20,0,2,0,1,0,0,0), +(@CGUID+318,32820,0,1,1,0,0,-9975,292.899,36.336,4.86,600,20,0,2,0,1,0,0,0), +(@CGUID+319,32820,0,1,1,0,0,-9853.68,284.862,37.987,1.89787,600,20,0,2,0,1,0,0,0), +(@CGUID+320,32820,0,1,1,0,0,-9962,307.319,36.992,0.284,600,20,0,2,0,1,0,0,0), +(@CGUID+321,32820,0,1,1,0,0,-9961,917.581,44.361,0.689,600,20,0,2,0,1,0,0,0), +(@CGUID+322,32820,0,1,1,0,0,-9960,-144,24.59,0.618,600,20,0,2,0,1,0,0,0), +(@CGUID+323,32820,0,1,1,0,0,-9959,925.294,45.374,5.412,600,20,0,2,0,1,0,0,0), +(@CGUID+324,32820,0,1,1,0,0,-9957,-1421,25.077,0.994,600,20,0,2,0,1,0,0,0), +(@CGUID+325,32820,0,1,1,0,0,-9957,-1280,24.766,2.885,600,20,0,2,0,1,0,0,0), +(@CGUID+326,32820,0,1,1,0,0,-9957,-274,26.367,3.351,600,20,0,2,0,1,0,0,0), +(@CGUID+327,32820,0,1,1,0,0,-9957,-46,33.197,3.964,600,20,0,2,0,1,0,0,0), +(@CGUID+328,32820,0,1,1,0,0,-9955,41.774,33.476,1.127,600,20,0,2,0,1,0,0,0), +(@CGUID+329,32820,0,1,1,0,0,-9954,554.6,39.256,0.457,600,20,0,2,0,1,0,0,0), +(@CGUID+330,32820,0,1,1,0,0,-9952,-133,25.452,3.594,600,20,0,2,0,1,0,0,0), +(@CGUID+331,32820,0,1,1,0,0,-9952,-19,34.434,5.494,600,20,0,2,0,1,0,0,0), +(@CGUID+332,32820,0,1,1,0,0,-9951,675.731,32.108,3.045,600,20,0,2,0,1,0,0,0), +(@CGUID+333,32820,0,1,1,0,0,-9950,413.263,35.043,3.409,600,20,0,2,0,1,0,0,0), +(@CGUID+334,32820,0,1,1,0,0,-9950,615.613,37.291,1.169,600,20,0,2,0,1,0,0,0), +(@CGUID+335,32820,0,1,1,0,0,-9950,621.918,37.356,5.061,600,20,0,2,0,1,0,0,0), +(@CGUID+336,32820,0,1,1,0,0,-9948,-55,32.847,5.109,600,20,0,2,0,1,0,0,0), +(@CGUID+337,32820,0,1,1,0,0,-9948,-20,34.2,5.984,600,20,0,2,0,1,0,0,0), +(@CGUID+338,32820,0,1,1,0,0,-9947,-44,33.23,1.308,600,20,0,2,0,1,0,0,0), +(@CGUID+339,32820,0,1,1,0,0,-9946,129.134,33.365,0.596,600,20,0,2,0,1,0,0,0), +(@CGUID+340,32820,0,1,1,0,0,-9946,604.266,38.356,1.857,600,20,0,2,0,1,0,0,0), +(@CGUID+341,32820,0,1,1,0,0,-9958.61,-153.27,22.3896,5.7039,600,20,0,2,0,1,0,0,0), +(@CGUID+342,32820,0,1,1,0,0,-9942,-1560,25.45,2.348,600,20,0,2,0,1,0,0,0), +(@CGUID+343,32820,0,1,1,0,0,-9937,650.755,33.537,0.565,600,20,0,2,0,1,0,0,0), +(@CGUID+344,32820,0,1,1,0,0,-9936,583.854,37.895,3.957,600,20,0,2,0,1,0,0,0), +(@CGUID+345,32820,0,1,1,0,0,-9933,-1164,20.941,4.451,600,20,0,2,0,1,0,0,0), +(@CGUID+346,32820,0,1,1,0,0,-9933,-1093,23.46,6.133,600,20,0,2,0,1,0,0,0), +(@CGUID+347,32820,0,1,1,0,0,-9931,-45,30.883,5.497,600,20,0,2,0,1,0,0,0), +(@CGUID+348,32820,0,1,1,0,0,-9929,-1157,22.215,3.421,600,20,0,2,0,1,0,0,0), +(@CGUID+349,32820,0,1,1,0,0,-9929,-1098,24.09,2.897,600,20,0,2,0,1,0,0,0), +(@CGUID+350,32820,0,1,1,0,0,-9928,-1452,27.62,1.308,600,20,0,2,0,1,0,0,0), +(@CGUID+351,32820,0,1,1,0,0,-9925,-90,29.881,0.517,600,20,0,2,0,1,0,0,0), +(@CGUID+352,32820,0,1,1,0,0,-9924,-979,20.854,2.209,600,20,0,2,0,1,0,0,0), +(@CGUID+353,32820,0,1,1,0,0,-9924,38.387,32.595,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+354,32820,0,1,1,0,0,-9923,-1477,24.17,2.616,600,20,0,2,0,1,0,0,0), +(@CGUID+355,32820,0,1,1,0,0,-9923,79.156,32.697,3.526,600,20,0,2,0,1,0,0,0), +(@CGUID+356,32820,0,1,1,0,0,-9921,-1244,25.03,2.628,600,20,0,2,0,1,0,0,0), +(@CGUID+357,32820,0,1,1,0,0,-9920,-419,24.92,3.004,600,20,0,2,0,1,0,0,0), +(@CGUID+358,32820,0,1,1,0,0,-9920,613.934,40.759,3.77,600,20,0,2,0,1,0,0,0), +(@CGUID+359,32820,0,1,1,0,0,-9919,-64,30.693,1.277,600,20,0,2,0,1,0,0,0), +(@CGUID+360,32820,0,1,1,0,0,-9918,-839,20.029,1.622,600,20,0,2,0,1,0,0,0), +(@CGUID+361,32820,0,1,1,0,0,-9918,42.296,32.719,2.63,600,20,0,2,0,1,0,0,0), +(@CGUID+362,32820,0,1,1,0,0,-9918,415.128,35.311,0,600,20,0,2,0,1,0,0,0), +(@CGUID+363,32820,0,1,1,0,0,-9917,599.298,39.564,0,600,20,0,2,0,1,0,0,0), +(@CGUID+364,32820,0,1,1,0,0,-9914,-1657,22.859,4.768,600,20,0,2,0,1,0,0,0), +(@CGUID+365,32820,0,1,1,0,0,-9914,-1056,25.676,4.699,600,20,0,2,0,1,0,0,0), +(@CGUID+366,32820,0,1,1,0,0,-9914,-911,23.237,2.325,600,20,0,2,0,1,0,0,0), +(@CGUID+367,32820,0,1,1,0,0,-9913,646.473,36.822,4.221,600,20,0,2,0,1,0,0,0), +(@CGUID+368,32820,0,1,1,0,0,-9911,-377,31.405,5.939,600,20,0,2,0,1,0,0,0), +(@CGUID+369,32820,0,1,1,0,0,-9911,456.769,34.47,2.141,600,20,0,2,0,1,0,0,0), +(@CGUID+370,32820,0,1,1,0,0,-9910,-894,23.534,0.697,600,20,0,2,0,1,0,0,0), +(@CGUID+371,32820,0,1,1,0,0,-9908,-1489,26.38,5.963,600,20,0,2,0,1,0,0,0), +(@CGUID+372,32820,0,1,1,0,0,-9907,-331,33.75,3.793,600,20,0,2,0,1,0,0,0), +(@CGUID+373,32820,0,1,1,0,0,-9906,-56,29.896,0.191,600,20,0,2,0,1,0,0,0), +(@CGUID+374,32820,0,1,1,0,0,-9902,81.655,32.322,5.607,600,20,0,2,0,1,0,0,0), +(@CGUID+375,32820,0,1,1,0,0,-9901,-1281,32.436,4.133,600,20,0,2,0,1,0,0,0), +(@CGUID+376,32820,0,1,1,0,0,-9901,-303,34.373,0.437,600,20,0,2,0,1,0,0,0), +(@CGUID+377,32820,0,1,1,0,0,-9896,-1061,28.464,5.99,600,20,0,2,0,1,0,0,0), +(@CGUID+378,32820,0,1,1,0,0,-9896,329.928,36.451,1.921,600,20,0,2,0,1,0,0,0), +(@CGUID+379,32820,0,1,1,0,0,-9895,-1281,33.821,4.304,600,20,0,2,0,1,0,0,0), +(@CGUID+380,32820,0,1,1,0,0,-9892,-1359,34.463,6.268,600,20,0,2,0,1,0,0,0), +(@CGUID+381,32820,0,1,1,0,0,-9892,-296,34.618,3.511,600,20,0,2,0,1,0,0,0), +(@CGUID+382,32820,0,1,1,0,0,-9891,-291,34.098,3.514,600,20,0,2,0,1,0,0,0), +(@CGUID+383,32820,0,1,1,0,0,-9890,-1332,32.508,3.66,600,20,0,2,0,1,0,0,0), +(@CGUID+384,32820,0,1,1,0,0,-9890,338.467,36.649,2.758,600,20,0,2,0,1,0,0,0), +(@CGUID+385,32820,0,1,1,0,0,-9770.83,279.166,43.1248,0.1198,600,20,0,2,0,1,0,0,0), +(@CGUID+386,32820,0,1,1,0,0,-9833.96,188.524,22.577,5.79556,600,20,0,2,0,1,0,0,0), +(@CGUID+387,32820,0,1,1,0,0,-9887,-749,22.768,1.657,600,20,0,2,0,1,0,0,0), +(@CGUID+388,32820,0,1,1,0,0,-9884,-299,34.827,2.17,600,20,0,2,0,1,0,0,0), +(@CGUID+389,32820,0,1,1,0,0,-9883,-1496,29.322,2.166,600,20,0,2,0,1,0,0,0), +(@CGUID+390,32820,0,1,1,0,0,-9883,-1017,29.945,0.262,600,20,0,2,0,1,0,0,0), +(@CGUID+391,32820,0,1,1,0,0,-9882,-446,30.028,3.263,600,20,0,2,0,1,0,0,0), +(@CGUID+392,32820,0,1,1,0,0,-9882,685.787,34.208,0.54,600,20,0,2,0,1,0,0,0), +(@CGUID+393,32820,0,1,1,0,0,-9881,322.619,37.824,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+394,32820,0,1,1,0,0,-9879,-816,28.519,1.704,600,20,0,2,0,1,0,0,0), +(@CGUID+395,32820,0,1,1,0,0,-9878,-309,36.016,0.577,600,20,0,2,0,1,0,0,0), +(@CGUID+396,32820,0,1,1,0,0,-9876,-1097,27.52,0.855,600,20,0,2,0,1,0,0,0), +(@CGUID+397,32820,0,1,1,0,0,-9876,-15,26.9,1.334,600,20,0,2,0,1,0,0,0), +(@CGUID+398,32820,0,1,1,0,0,-9870,-1232,31.674,2.685,600,20,0,2,0,1,0,0,0), +(@CGUID+399,32820,0,1,1,0,0,-9869,-1537,26.111,0.722,600,20,0,2,0,1,0,0,0), +(@CGUID+400,32820,0,1,1,0,0,-9867,-917,36.258,0.774,600,20,0,2,0,1,0,0,0), +(@CGUID+401,32820,0,1,1,0,0,-9953.17,491.623,31.376,1.92737,600,20,0,2,0,1,0,0,0), +(@CGUID+402,32820,0,1,1,0,0,-9865,-222,35.965,0.876,600,20,0,2,0,1,0,0,0), +(@CGUID+403,32820,0,1,1,0,0,-9864,-190,35.805,5.313,600,20,0,2,0,1,0,0,0), +(@CGUID+404,32820,0,1,1,0,0,-9864,932.292,31.144,4.844,600,20,0,2,0,1,0,0,0), +(@CGUID+405,32820,0,1,1,0,0,-9862,-1481,32.855,0.064,600,20,0,2,0,1,0,0,0), +(@CGUID+406,32820,0,1,1,0,0,-9861,-124,28.832,2.762,600,20,0,2,0,1,0,0,0), +(@CGUID+407,32820,0,1,1,0,0,-9859.72,-226.423,35.9223,0.545298,600,20,0,2,0,1,0,0,0), +(@CGUID+408,32820,0,1,1,0,0,-9860,-129,29.292,0.763,600,20,0,2,0,1,0,0,0), +(@CGUID+409,32820,0,1,1,0,0,-9860,471.51,36.643,4.627,600,20,0,2,0,1,0,0,0), +(@CGUID+410,32820,0,1,1,0,0,-9860,924.283,30.318,1.217,600,20,0,2,0,1,0,0,0), +(@CGUID+411,32820,0,1,1,0,0,-9859,922.723,30.178,0.581,600,20,0,2,0,1,0,0,0), +(@CGUID+412,32820,0,1,1,0,0,-9858,365.972,36.337,1.815,600,20,0,2,0,1,0,0,0), +(@CGUID+413,32820,0,1,1,0,0,-9857,-930,37.532,2.233,600,20,0,2,0,1,0,0,0), +(@CGUID+414,32820,0,1,1,0,0,-9857,-715,30.994,3.81,600,20,0,2,0,1,0,0,0), +(@CGUID+415,32820,0,1,1,0,0,-9857,-135,29.663,6.193,600,20,0,2,0,1,0,0,0), +(@CGUID+416,32820,0,1,1,0,0,-9857,671.134,37.354,2.036,600,20,0,2,0,1,0,0,0), +(@CGUID+417,32820,0,1,1,0,0,-9856,-1199,32.526,2.099,600,20,0,2,0,1,0,0,0), +(@CGUID+418,32820,0,1,1,0,0,-9856,-920,38.461,1.038,600,20,0,2,0,1,0,0,0), +(@CGUID+419,32820,0,1,1,0,0,-9855,-1380,40.682,1.781,600,20,0,2,0,1,0,0,0), +(@CGUID+420,32820,0,1,1,0,0,-9854,-993,36.544,1.231,600,20,0,2,0,1,0,0,0), +(@CGUID+421,32820,0,1,1,0,0,-9853,-1134,27.79,0.14,600,20,0,2,0,1,0,0,0), +(@CGUID+422,32820,0,1,1,0,0,-9851,-913,39.336,2.219,600,20,0,2,0,1,0,0,0), +(@CGUID+423,32820,0,1,1,0,0,-9850,-593,20.515,4.231,600,20,0,2,0,1,0,0,0), +(@CGUID+424,32820,0,1,1,0,0,-9850,644.698,39.705,3.528,600,20,0,2,0,1,0,0,0), +(@CGUID+425,32820,0,1,1,0,0,-9804.73,240.662,41.1706,4.86251,600,20,0,2,0,1,0,0,0), +(@CGUID+426,32820,0,1,1,0,0,-9848,-1652,22.788,0.41,600,20,0,2,0,1,0,0,0), +(@CGUID+427,32820,0,1,1,0,0,-9847,-1585,26.385,2.191,600,20,0,2,0,1,0,0,0), +(@CGUID+428,32820,0,1,1,0,0,-9845,-924,40.598,6.244,600,20,0,2,0,1,0,0,0), +(@CGUID+429,32820,0,1,1,0,0,-9843,-1486,35.741,4.619,600,20,0,2,0,1,0,0,0), +(@CGUID+430,32820,0,1,1,0,0,-9841,-514,28.703,0.697,600,20,0,2,0,1,0,0,0), +(@CGUID+431,32820,0,1,1,0,0,-9840,-1050,34.617,4.469,600,20,0,2,0,1,0,0,0), +(@CGUID+432,32820,0,1,1,0,0,-9840,-839,38.619,4.48,600,20,0,2,0,1,0,0,0), +(@CGUID+433,32820,0,1,1,0,0,-9840,94.95,38.219,3.128,600,20,0,2,0,1,0,0,0), +(@CGUID+434,32820,0,1,1,0,0,-9839,-1016,36.34,3.464,600,20,0,2,0,1,0,0,0), +(@CGUID+435,32820,0,1,1,0,0,-9836,-1589,27.767,5.994,600,20,0,2,0,1,0,0,0), +(@CGUID+436,32820,0,1,1,0,0,-9836,-1503,39.312,5.869,600,20,0,2,0,1,0,0,0), +(@CGUID+437,32820,0,1,1,0,0,-9835,-1180,33.735,6.256,600,20,0,2,0,1,0,0,0), +(@CGUID+438,32820,0,1,1,0,0,-9835,-1014,36.715,3.416,600,20,0,2,0,1,0,0,0), +(@CGUID+439,32820,0,1,1,0,0,-9834,-1641,27.372,0.369,600,20,0,2,0,1,0,0,0), +(@CGUID+440,32820,0,1,1,0,0,-9843.61,198.627,22.7217,5.28962,600,20,0,2,0,1,0,0,0), +(@CGUID+441,32820,0,1,1,0,0,-9832,-1498,39.74,5.377,600,20,0,2,0,1,0,0,0), +(@CGUID+442,32820,0,1,1,0,0,-9831,-919,41.841,3.293,600,20,0,2,0,1,0,0,0), +(@CGUID+443,32820,0,1,1,0,0,-9829,-546,26.926,2.84,600,20,0,2,0,1,0,0,0), +(@CGUID+444,32820,0,1,1,0,0,-9829,471.386,36.938,0.335,600,20,0,2,0,1,0,0,0), +(@CGUID+445,32820,0,1,1,0,0,-9829,562.429,39.357,6.275,600,20,0,2,0,1,0,0,0), +(@CGUID+446,32820,0,1,1,0,0,-9826,-1192,35.56,4.098,600,20,0,2,0,1,0,0,0), +(@CGUID+447,32820,0,1,1,0,0,-9826,261.761,40.683,1.78,600,20,0,2,0,1,0,0,0), +(@CGUID+448,32820,0,1,1,0,0,-9826,285.082,38.577,1.575,600,20,0,2,0,1,0,0,0), +(@CGUID+449,32820,0,1,1,0,0,-9826,543.539,36.069,1.571,600,20,0,2,0,1,0,0,0), +(@CGUID+450,32820,0,1,1,0,0,-9826,550.792,37.732,4.378,600,20,0,2,0,1,0,0,0), +(@CGUID+451,32820,0,1,1,0,0,-9825,-358,54.618,2.712,600,20,0,2,0,1,0,0,0), +(@CGUID+452,32820,0,1,1,0,0,-9825,269.418,39.451,3.454,600,20,0,2,0,1,0,0,0), +(@CGUID+453,32820,0,1,1,0,0,-9824,81.413,3.073,4.745,600,20,0,2,0,1,0,0,0), +(@CGUID+454,32820,0,1,1,0,0,-9823,39.419,32.713,5.261,600,20,0,2,0,1,0,0,0), +(@CGUID+455,32820,0,1,1,0,0,-9822,180.986,22.808,0.379,600,20,0,2,0,1,0,0,0), +(@CGUID+456,32820,0,1,1,0,0,-9821,-1582,30.796,5.815,600,20,0,2,0,1,0,0,0), +(@CGUID+457,32820,0,1,1,0,0,-9821,-760,37.255,3.793,600,20,0,2,0,1,0,0,0), +(@CGUID+458,32820,0,1,1,0,0,-9821,-235,37.324,4.182,600,20,0,2,0,1,0,0,0), +(@CGUID+459,32820,0,1,1,0,0,-9821,270.262,39.826,3.543,600,20,0,2,0,1,0,0,0), +(@CGUID+460,32820,0,1,1,0,0,-9820,-1186,35.621,0.891,600,20,0,2,0,1,0,0,0), +(@CGUID+461,32820,0,1,1,0,0,-9806.61,181.334,22.481,0.226278,600,20,0,2,0,1,0,0,0), +(@CGUID+462,32820,0,1,1,0,0,-9819,-1014,38.261,2.284,600,20,0,2,0,1,0,0,0), +(@CGUID+463,32820,0,1,1,0,0,-9819,271.888,39.745,3.47,600,20,0,2,0,1,0,0,0), +(@CGUID+464,32820,0,1,1,0,0,-9819,448.569,36.18,4.211,600,20,0,2,0,1,0,0,0), +(@CGUID+465,32820,0,1,1,0,0,-9818,-173,33.968,0.393,600,20,0,2,0,1,0,0,0), +(@CGUID+466,32820,0,1,1,0,0,-9818,-77,25.713,3.213,600,20,0,2,0,1,0,0,0), +(@CGUID+467,32820,0,1,1,0,0,-9818,470.864,36.726,3.236,600,20,0,2,0,1,0,0,0), +(@CGUID+468,32820,0,1,1,0,0,-9818,610.676,41.971,1.021,600,20,0,2,0,1,0,0,0), +(@CGUID+469,32820,0,1,1,0,0,-9817,-856,39.261,5.935,600,20,0,2,0,1,0,0,0), +(@CGUID+470,32820,0,1,1,0,0,-9817,-291,41.486,3.443,600,20,0,2,0,1,0,0,0), +(@CGUID+471,32820,0,1,1,0,0,-9817,-81,26.183,0,600,20,0,2,0,1,0,0,0), +(@CGUID+472,32820,0,1,1,0,0,-9817,49.706,34.991,3.594,600,20,0,2,0,1,0,0,0), +(@CGUID+473,32820,0,1,1,0,0,-9817,139.933,5.035,4.008,600,20,0,2,0,1,0,0,0), +(@CGUID+474,32820,0,1,1,0,0,-9817,415.699,36.716,0,600,20,0,2,0,1,0,0,0), +(@CGUID+475,32820,0,1,1,0,0,-9816,-184,36.307,0,600,20,0,2,0,1,0,0,0), +(@CGUID+476,32820,0,1,1,0,0,-9816,451.863,36.203,4.279,600,20,0,2,0,1,0,0,0), +(@CGUID+477,32820,0,1,1,0,0,-9815,-1161,34.012,4.563,600,20,0,2,0,1,0,0,0), +(@CGUID+478,32820,0,1,1,0,0,-9815,-1034,37.253,4.324,600,20,0,2,0,1,0,0,0), +(@CGUID+479,32820,0,1,1,0,0,-9815,-120,28.903,6.033,600,20,0,2,0,1,0,0,0), +(@CGUID+480,32820,0,1,1,0,0,-9813,-1023,37.602,1.692,600,20,0,2,0,1,0,0,0), +(@CGUID+481,32820,0,1,1,0,0,-9812,-1007,39.106,6.136,600,20,0,2,0,1,0,0,0), +(@CGUID+482,32820,0,1,1,0,0,-9809,-8,27.107,2.378,600,20,0,2,0,1,0,0,0), +(@CGUID+483,32820,0,1,1,0,0,-9818.85,181.23,22.8492,3.23508,600,20,0,2,0,1,0,0,0), +(@CGUID+484,32820,0,1,1,0,0,-9808,-1257,35.589,3.087,600,20,0,2,0,1,0,0,0), +(@CGUID+485,32820,0,1,1,0,0,-9808,-931,39.855,0.515,600,20,0,2,0,1,0,0,0), +(@CGUID+486,32820,0,1,1,0,0,-9808,700.085,33.112,4.485,600,20,0,2,0,1,0,0,0), +(@CGUID+487,32820,0,1,1,0,0,-9806,-932,39.941,1.082,600,20,0,2,0,1,0,0,0), +(@CGUID+488,32820,0,1,1,0,0,-9806,-927,39.94,4.34,600,20,0,2,0,1,0,0,0), +(@CGUID+489,32820,0,1,1,0,0,-9806,444.748,36.487,4.376,600,20,0,2,0,1,0,0,0), +(@CGUID+490,32820,0,1,1,0,0,-9803,369.894,39.797,0.106,600,20,0,2,0,1,0,0,0), +(@CGUID+491,32820,0,1,1,0,0,-9803,698.179,33.112,4.377,600,20,0,2,0,1,0,0,0), +(@CGUID+492,32820,0,1,1,0,0,-9801,-339,50.996,2.859,600,20,0,2,0,1,0,0,0), +(@CGUID+493,32820,0,1,1,0,0,-9828.89,215.772,15.5806,4.06545,600,20,0,2,0,1,0,0,0), +(@CGUID+494,32820,0,1,1,0,0,-9801,428.308,37.763,5.009,600,20,0,2,0,1,0,0,0), +(@CGUID+495,32820,0,1,1,0,0,-9800,-1545,40.87,6.055,600,20,0,2,0,1,0,0,0), +(@CGUID+496,32820,0,1,1,0,0,-9800,-69,25.769,2.678,600,20,0,2,0,1,0,0,0), +(@CGUID+497,32820,0,1,1,0,0,-9799,-84,25.817,2.924,600,20,0,2,0,1,0,0,0), +(@CGUID+498,32820,0,1,1,0,0,-9799,109.791,24.437,2.13,600,20,0,2,0,1,0,0,0), +(@CGUID+499,32820,0,1,1,0,0,-9825.36,199.121,13.9991,5.394,600,20,0,2,0,1,0,0,0), +(@CGUID+500,32820,0,1,1,0,0,-9798,-1566,37.678,4.835,600,20,0,2,0,1,0,0,0), +(@CGUID+501,32820,0,1,1,0,0,-9798,-71,25.992,2.625,600,20,0,2,0,1,0,0,0), +(@CGUID+502,32820,0,1,1,0,0,-9798,460.417,36.02,1.952,600,20,0,2,0,1,0,0,0), +(@CGUID+503,32820,0,1,1,0,0,-9797,-1545,41.124,6.074,600,20,0,2,0,1,0,0,0), +(@CGUID+504,32820,0,1,1,0,0,-9797,99.441,27.848,3.72,600,20,0,2,0,1,0,0,0), +(@CGUID+505,32820,0,1,1,0,0,-9797,140.117,23.51,0.629,600,20,0,2,0,1,0,0,0), +(@CGUID+506,32820,0,1,1,0,0,-9796,-1328,44.102,3.989,600,20,0,2,0,1,0,0,0), +(@CGUID+507,32820,0,1,1,0,0,-9796,-92,26.825,4.658,600,20,0,2,0,1,0,0,0), +(@CGUID+508,32820,0,1,1,0,0,-9768.37,231.5,46.3995,2.64377,600,20,0,2,0,1,0,0,0), +(@CGUID+509,32820,0,1,1,0,0,-9795,109.769,46.1,1.688,600,20,0,2,0,1,0,0,0), +(@CGUID+510,32820,0,1,1,0,0,-9795,470.588,35.875,5.219,600,20,0,2,0,1,0,0,0), +(@CGUID+511,32820,0,1,1,0,0,-9793,-76,26.349,0.763,600,20,0,2,0,1,0,0,0), +(@CGUID+512,32820,0,1,1,0,0,-9790,-891,40.109,0.336,600,20,0,2,0,1,0,0,0), +(@CGUID+513,32820,0,1,1,0,0,-9790,811.494,25.983,5.441,600,20,0,2,0,1,0,0,0), +(@CGUID+514,32820,0,1,1,0,0,-9789,-52,26.779,3.638,600,20,0,2,0,1,0,0,0), +(@CGUID+515,32820,0,1,1,0,0,-9788,111.106,46.738,4.66,600,20,0,2,0,1,0,0,0), +(@CGUID+516,32820,0,1,1,0,0,-9787,-555,32.218,1.918,600,20,0,2,0,1,0,0,0), +(@CGUID+517,32820,0,1,1,0,0,-9787,446.78,37.712,3.265,600,20,0,2,0,1,0,0,0), +(@CGUID+518,32820,0,1,1,0,0,-9787,731.342,33.005,2.531,600,20,0,2,0,1,0,0,0), +(@CGUID+519,32820,0,1,1,0,0,-9786,-338,52.05,3.137,600,20,0,2,0,1,0,0,0), +(@CGUID+520,32820,0,1,1,0,0,-9785,-1131,35.206,4.418,600,20,0,2,0,1,0,0,0), +(@CGUID+521,32820,0,1,1,0,0,-9785,-369,53.851,0.932,600,20,0,2,0,1,0,0,0), +(@CGUID+522,32820,0,1,1,0,0,-9785,-312,47.715,1.767,600,20,0,2,0,1,0,0,0), +(@CGUID+523,32820,0,1,1,0,0,-9784,-1540,43.124,6.088,600,20,0,2,0,1,0,0,0), +(@CGUID+524,32820,0,1,1,0,0,-9784,-984,40.225,2.491,600,20,0,2,0,1,0,0,0), +(@CGUID+525,32820,0,1,1,0,0,-9784,583.306,37.658,0,600,20,0,2,0,1,0,0,0), +(@CGUID+526,32820,0,1,1,0,0,-9783,-643,38.064,3.106,600,20,0,2,0,1,0,0,0), +(@CGUID+527,32820,0,1,1,0,0,-9783,-206,40.169,4.714,600,20,0,2,0,1,0,0,0), +(@CGUID+528,32820,0,1,1,0,0,-9783,108.722,46.037,1.602,600,20,0,2,0,1,0,0,0), +(@CGUID+529,32820,0,1,1,0,0,-9782,-1214,40.11,4.743,600,20,0,2,0,1,0,0,0), +(@CGUID+530,32820,0,1,1,0,0,-9781,-340,52.759,6.267,600,20,0,2,0,1,0,0,0), +(@CGUID+531,32820,0,1,1,0,0,-9781,38.677,34.476,3.719,600,20,0,2,0,1,0,0,0), +(@CGUID+532,32820,0,1,1,0,0,-9781,818.493,25.876,5.222,600,20,0,2,0,1,0,0,0), +(@CGUID+533,32820,0,1,1,0,0,-9780,-713,37.885,4.901,600,20,0,2,0,1,0,0,0), +(@CGUID+534,32820,0,1,1,0,0,-9774,42.294,35.31,3.105,600,20,0,2,0,1,0,0,0), +(@CGUID+535,32820,0,1,1,0,0,-9773,-877,39.698,0.241,600,20,0,2,0,1,0,0,0), +(@CGUID+536,32820,0,1,1,0,0,-9773,-663,38.65,4.342,600,20,0,2,0,1,0,0,0), +(@CGUID+537,32820,0,1,1,0,0,-9773,-625,38.944,4.624,600,20,0,2,0,1,0,0,0), +(@CGUID+538,32820,0,1,1,0,0,-9773,-85,28.616,5.453,600,20,0,2,0,1,0,0,0), +(@CGUID+539,32820,0,1,1,0,0,-9772,-741,39.829,5.986,600,20,0,2,0,1,0,0,0), +(@CGUID+540,32820,0,1,1,0,0,-9771,-857,39.585,4.254,600,20,0,2,0,1,0,0,0), +(@CGUID+541,32820,0,1,1,0,0,-9771,-579,36.326,3.167,600,20,0,2,0,1,0,0,0), +(@CGUID+542,32820,0,1,1,0,0,-9771,111.906,47.054,2.732,600,20,0,2,0,1,0,0,0), +(@CGUID+543,32820,0,1,1,0,0,-9758.04,191.688,51.0349,3.51339,600,20,0,2,0,1,0,0,0), +(@CGUID+544,32820,0,1,1,0,0,-9770,205.796,46.15,3.377,600,20,0,2,0,1,0,0,0), +(@CGUID+545,32820,0,1,1,0,0,-9769,-1566,41.704,5.201,600,20,0,2,0,1,0,0,0), +(@CGUID+546,32820,0,1,1,0,0,-9769,-77,28.542,4.893,600,20,0,2,0,1,0,0,0), +(@CGUID+547,32820,0,1,1,0,0,-9765,-740,40.328,1.356,600,20,0,2,0,1,0,0,0), +(@CGUID+548,32820,0,1,1,0,0,-9765,-640,40.579,3.144,600,20,0,2,0,1,0,0,0), +(@CGUID+549,32820,0,1,1,0,0,-9764,-1627,47.481,2.482,600,20,0,2,0,1,0,0,0), +(@CGUID+550,32820,0,1,1,0,0,-9764,-580,37.913,5.737,600,20,0,2,0,1,0,0,0), +(@CGUID+551,32820,0,1,1,0,0,-9763,325.363,43.322,2.428,600,20,0,2,0,1,0,0,0), +(@CGUID+552,32820,0,1,1,0,0,-9762,54.415,38.711,1.661,600,20,0,2,0,1,0,0,0), +(@CGUID+553,32820,0,1,1,0,0,-9761,-1015,40.758,1.741,600,20,0,2,0,1,0,0,0), +(@CGUID+554,32820,0,1,1,0,0,-9761,-948,39.179,5.835,600,20,0,2,0,1,0,0,0), +(@CGUID+555,32820,0,1,1,0,0,-9759,-643,40.987,6.268,600,20,0,2,0,1,0,0,0), +(@CGUID+556,32820,0,1,1,0,0,-9758,-137,32.806,0.543,600,20,0,2,0,1,0,0,0), +(@CGUID+557,32820,0,1,1,0,0,-9758,-73,30.879,3.776,600,20,0,2,0,1,0,0,0), +(@CGUID+558,32820,0,1,1,0,0,-9757,-734,40.014,1.117,600,20,0,2,0,1,0,0,0), +(@CGUID+559,32820,0,1,1,0,0,-9757,212.414,47.7,0.285,600,20,0,2,0,1,0,0,0), +(@CGUID+560,32820,0,1,1,0,0,-9756,-743,41.258,3.814,600,20,0,2,0,1,0,0,0), +(@CGUID+561,32820,0,1,1,0,0,-9754,-1314,47.153,3.479,600,20,0,2,0,1,0,0,0), +(@CGUID+562,32820,0,1,1,0,0,-9754,83.393,42.845,3.962,600,20,0,2,0,1,0,0,0), +(@CGUID+563,32820,0,1,1,0,0,-9753,-265,46.591,4.372,600,20,0,2,0,1,0,0,0), +(@CGUID+564,32820,0,1,1,0,0,-9752,-1450,49.442,5.795,600,20,0,2,0,1,0,0,0), +(@CGUID+565,32820,0,1,1,0,0,-9752,-219,44.307,5.562,600,20,0,2,0,1,0,0,0), +(@CGUID+566,32820,0,1,1,0,0,-9752,317.84,44.536,1.763,600,20,0,2,0,1,0,0,0), +(@CGUID+567,32820,0,1,1,0,0,-9751,-747,41.764,5.172,600,20,0,2,0,1,0,0,0), +(@CGUID+568,32820,0,1,1,0,0,-9750,-749,41.764,5.17,600,20,0,2,0,1,0,0,0), +(@CGUID+569,32820,0,1,1,0,0,-9750,317.248,44.883,6.075,600,20,0,2,0,1,0,0,0), +(@CGUID+570,32820,0,1,1,0,0,-9750,520.191,35.408,4.794,600,20,0,2,0,1,0,0,0), +(@CGUID+571,32820,0,1,1,0,0,-9749,-147,35.487,1.987,600,20,0,2,0,1,0,0,0), +(@CGUID+572,32820,0,1,1,0,0,-9826.07,186.314,12.2822,1.2734,600,20,0,2,0,1,0,0,0), +(@CGUID+573,32820,0,1,1,0,0,-9748,-753,41.264,5.73,600,20,0,2,0,1,0,0,0), +(@CGUID+574,32820,0,1,1,0,0,-9748,-348,54.392,0.792,600,20,0,2,0,1,0,0,0), +(@CGUID+575,32820,0,1,1,0,0,-9748,311.153,45.449,6.103,600,20,0,2,0,1,0,0,0), +(@CGUID+576,32820,0,1,1,0,0,-9747,-1530,49.29,4.695,600,20,0,2,0,1,0,0,0), +(@CGUID+577,32820,0,1,1,0,0,-9747,-918,39.343,6.169,600,20,0,2,0,1,0,0,0), +(@CGUID+578,32820,0,1,1,0,0,-9747,103.541,45.928,0.122,600,20,0,2,0,1,0,0,0), +(@CGUID+579,32820,0,1,1,0,0,-9851.49,213.185,14.1337,2.54401,600,20,0,2,0,1,0,0,0), +(@CGUID+580,32820,0,1,1,0,0,-9744,87.153,12.71,6.018,600,20,0,2,0,1,0,0,0), +(@CGUID+581,32820,0,1,1,0,0,-9743,-361,53.892,3.28,600,20,0,2,0,1,0,0,0), +(@CGUID+582,32820,0,1,1,0,0,-9743,-1,37.689,2.205,600,20,0,2,0,1,0,0,0), +(@CGUID+583,32820,0,1,1,0,0,-9743,430.639,38.11,3.056,600,20,0,2,0,1,0,0,0), +(@CGUID+584,32820,0,1,1,0,0,-9742,-759,41.002,4.724,600,20,0,2,0,1,0,0,0), +(@CGUID+585,32820,0,1,1,0,0,-9742,-725,40.918,1.935,600,20,0,2,0,1,0,0,0), +(@CGUID+586,32820,0,1,1,0,0,-9741,-837,40.12,4.08,600,20,0,2,0,1,0,0,0), +(@CGUID+587,32820,0,1,1,0,0,-9741,165.586,50.495,0.571,600,20,0,2,0,1,0,0,0), +(@CGUID+588,32820,0,1,1,0,0,-9903.68,226.756,16.4163,0.336615,600,20,0,2,0,1,0,0,0), +(@CGUID+589,32820,0,1,1,0,0,-9739,518.949,35.619,1.928,600,20,0,2,0,1,0,0,0), +(@CGUID+590,32820,0,1,1,0,0,-9738,-1213,47.634,2.495,600,20,0,2,0,1,0,0,0), +(@CGUID+591,32820,0,1,1,0,0,-9738,921.018,26.584,5.289,600,20,0,2,0,1,0,0,0), +(@CGUID+592,32820,0,1,1,0,0,-9735,-989,42.063,0.381,600,20,0,2,0,1,0,0,0), +(@CGUID+593,32820,0,1,1,0,0,-9735,-79,34.112,3.089,600,20,0,2,0,1,0,0,0), +(@CGUID+594,32820,0,1,1,0,0,-9735,138.105,19.025,0.554,600,20,0,2,0,1,0,0,0), +(@CGUID+595,32820,0,1,1,0,0,-9734,114.787,24.424,5.405,600,20,0,2,0,1,0,0,0), +(@CGUID+596,32820,0,1,1,0,0,-9731,115.349,24.41,4.975,600,20,0,2,0,1,0,0,0), +(@CGUID+597,32820,0,1,1,0,0,-9731,447.916,37.187,2.678,600,20,0,2,0,1,0,0,0), +(@CGUID+598,32820,0,1,1,0,0,-9730,-1466,52.464,4.684,600,20,0,2,0,1,0,0,0), +(@CGUID+599,32820,0,1,1,0,0,-9730,-259,47.41,2.503,600,20,0,2,0,1,0,0,0), +(@CGUID+600,32820,0,1,1,0,0,-9730,103.062,46.948,5.309,600,20,0,2,0,1,0,0,0), +(@CGUID+601,32820,0,1,1,0,0,-9730,341.769,43.205,2.423,600,20,0,2,0,1,0,0,0), +(@CGUID+602,32820,0,1,1,0,0,-9729,437.74,37.602,2.513,600,20,0,2,0,1,0,0,0), +(@CGUID+603,32820,0,1,1,0,0,-9728,-1553,52.11,6.186,600,20,0,2,0,1,0,0,0), +(@CGUID+604,32820,0,1,1,0,0,-9728,-746,41.971,0.902,600,20,0,2,0,1,0,0,0), +(@CGUID+605,32820,0,1,1,0,0,-9728,290.418,48.336,1.483,600,20,0,2,0,1,0,0,0), +(@CGUID+606,32820,0,1,1,0,0,-9727,-1089,38.716,2.975,600,20,0,2,0,1,0,0,0), +(@CGUID+607,32820,0,1,1,0,0,-9727,40.062,39.599,3.984,600,20,0,2,0,1,0,0,0), +(@CGUID+608,32820,0,1,1,0,0,-9727,474.598,35.212,2.846,600,20,0,2,0,1,0,0,0), +(@CGUID+609,32820,0,1,1,0,0,-9727,720.553,28.913,6.131,600,20,0,2,0,1,0,0,0), +(@CGUID+610,32820,0,1,1,0,0,-9726,-1129,39.08,2.512,600,20,0,2,0,1,0,0,0), +(@CGUID+611,32820,0,1,1,0,0,-9726,712.112,29.85,2.776,600,20,0,2,0,1,0,0,0), +(@CGUID+612,32820,0,1,1,0,0,-9724,-1310,48.816,0.756,600,20,0,2,0,1,0,0,0), +(@CGUID+613,32820,0,1,1,0,0,-9724,-1112,40.213,3.67,600,20,0,2,0,1,0,0,0), +(@CGUID+614,32820,0,1,1,0,0,-9724,-930,38.308,2.72,600,20,0,2,0,1,0,0,0), +(@CGUID+615,32820,0,1,1,0,0,-9723,-581,45.81,5.94,600,20,0,2,0,1,0,0,0), +(@CGUID+616,32820,0,1,1,0,0,-9722,128.517,47.234,0.323,600,20,0,2,0,1,0,0,0), +(@CGUID+617,32820,0,1,1,0,0,-9722,197.088,50.27,4.67,600,20,0,2,0,1,0,0,0), +(@CGUID+618,32820,0,1,1,0,0,-9722,256.462,49.063,1.155,600,20,0,2,0,1,0,0,0), +(@CGUID+619,32820,0,1,1,0,0,-9721,23.362,39.87,5.61,600,20,0,2,0,1,0,0,0), +(@CGUID+620,32820,0,1,1,0,0,-9721,428.239,38.853,0,600,20,0,2,0,1,0,0,0), +(@CGUID+621,32820,0,1,1,0,0,-9721,745.296,30.548,5.925,600,20,0,2,0,1,0,0,0), +(@CGUID+622,32820,0,1,1,0,0,-9720,-1205,49.588,5.101,600,20,0,2,0,1,0,0,0), +(@CGUID+623,32820,0,1,1,0,0,-9720,429.388,38.745,2.756,600,20,0,2,0,1,0,0,0), +(@CGUID+624,32820,0,1,1,0,0,-9719,-395,50.859,0.383,600,20,0,2,0,1,0,0,0), +(@CGUID+625,32820,0,1,1,0,0,-9718,-85,36.09,3.028,600,20,0,2,0,1,0,0,0), +(@CGUID+626,32820,0,1,1,0,0,-9718,371.821,42.544,5.649,600,20,0,2,0,1,0,0,0), +(@CGUID+627,32820,0,1,1,0,0,-9717,-1490,50.84,4.318,600,20,0,2,0,1,0,0,0), +(@CGUID+628,32820,0,1,1,0,0,-9717,-1303,50.725,4.052,600,20,0,2,0,1,0,0,0), +(@CGUID+629,32820,0,1,1,0,0,-9717,755.86,30.836,4.349,600,20,0,2,0,1,0,0,0), +(@CGUID+630,32820,0,1,1,0,0,-9716,-1144,40.123,0.638,600,20,0,2,0,1,0,0,0), +(@CGUID+631,32820,0,1,1,0,0,-9716,-818,43.924,1.439,600,20,0,2,0,1,0,0,0), +(@CGUID+632,32820,0,1,1,0,0,-9715,-1537,54.61,0.335,600,20,0,2,0,1,0,0,0), +(@CGUID+633,32820,0,1,1,0,0,-9715,-716,45.383,1.985,600,20,0,2,0,1,0,0,0), +(@CGUID+634,32820,0,1,1,0,0,-9715,-245,48.313,0.157,600,20,0,2,0,1,0,0,0), +(@CGUID+635,32820,0,1,1,0,0,-9714,-7,38.999,6.216,600,20,0,2,0,1,0,0,0), +(@CGUID+636,32820,0,1,1,0,0,-9714,410.541,40.489,5.066,600,20,0,2,0,1,0,0,0), +(@CGUID+637,32820,0,1,1,0,0,-9713,-646,46.941,5.807,600,20,0,2,0,1,0,0,0), +(@CGUID+638,32820,0,1,1,0,0,-9712,-660,46.67,0.96,600,20,0,2,0,1,0,0,0), +(@CGUID+639,32820,0,1,1,0,0,-9712,-181,43.842,3.608,600,20,0,2,0,1,0,0,0), +(@CGUID+640,32820,0,1,1,0,0,-9712,-113,36.01,5.03,600,20,0,2,0,1,0,0,0), +(@CGUID+641,32820,0,1,1,0,0,-9712,579.657,37.595,0.698,600,20,0,2,0,1,0,0,0), +(@CGUID+642,32820,0,1,1,0,0,-9711,-1546,56.61,1.215,600,20,0,2,0,1,0,0,0), +(@CGUID+643,32820,0,1,1,0,0,-9711,245.09,49.688,5.531,600,20,0,2,0,1,0,0,0), +(@CGUID+644,32820,0,1,1,0,0,-9709,-515,53.228,5.221,600,20,0,2,0,1,0,0,0), +(@CGUID+645,32820,0,1,1,0,0,-9708,-375,53.215,4.519,600,20,0,2,0,1,0,0,0), +(@CGUID+646,32820,0,1,1,0,0,-9708,726.474,30.275,0.921,600,20,0,2,0,1,0,0,0), +(@CGUID+647,32820,0,1,1,0,0,-9707,-1225,54.113,6.001,600,20,0,2,0,1,0,0,0), +(@CGUID+648,32820,0,1,1,0,0,-9706,-448,51.78,3.097,600,20,0,2,0,1,0,0,0), +(@CGUID+649,32820,0,1,1,0,0,-9706,-50,38.471,0.338,600,20,0,2,0,1,0,0,0), +(@CGUID+650,32820,0,1,1,0,0,-9705,-986,41.854,0.701,600,20,0,2,0,1,0,0,0), +(@CGUID+651,32820,0,1,1,0,0,-9729.64,590.888,32.8345,2.93918,600,20,0,2,0,1,0,0,0), +(@CGUID+652,32820,0,1,1,0,0,-9703,-194,45.877,3.77,600,20,0,2,0,1,0,0,0), +(@CGUID+653,32820,0,1,1,0,0,-9701,-343,56.395,0.109,600,20,0,2,0,1,0,0,0), +(@CGUID+654,32820,0,1,1,0,0,-9699,-1219,53.988,3.839,600,20,0,2,0,1,0,0,0), +(@CGUID+655,32820,0,1,1,0,0,-9699,754.402,31.08,4.664,600,20,0,2,0,1,0,0,0), +(@CGUID+656,32820,0,1,1,0,0,-9698,-79,38.762,4.605,600,20,0,2,0,1,0,0,0), +(@CGUID+657,32820,0,1,1,0,0,-9698,-73,38.956,5.983,600,20,0,2,0,1,0,0,0), +(@CGUID+658,32820,0,1,1,0,0,-9697,-77,38.994,4.625,600,20,0,2,0,1,0,0,0), +(@CGUID+659,32820,0,1,1,0,0,-9696,-563,47.972,4.491,600,20,0,2,0,1,0,0,0), +(@CGUID+660,32820,0,1,1,0,0,-9696,-518,51.99,2.203,600,20,0,2,0,1,0,0,0), +(@CGUID+661,32820,0,1,1,0,0,-9696,-287,58.855,3.667,600,20,0,2,0,1,0,0,0), +(@CGUID+662,32820,0,1,1,0,0,-9696,119.949,48.207,3.006,600,20,0,2,0,1,0,0,0), +(@CGUID+663,32820,0,1,1,0,0,-9696,605.496,39.227,0.987,600,20,0,2,0,1,0,0,0), +(@CGUID+664,32820,0,1,1,0,0,-9695,-596,48.613,2.691,600,20,0,2,0,1,0,0,0), +(@CGUID+665,32820,0,1,1,0,0,-9694,-338,57.316,1.581,600,20,0,2,0,1,0,0,0), +(@CGUID+666,32820,0,1,1,0,0,-9694,-325,56.084,3.284,600,20,0,2,0,1,0,0,0), +(@CGUID+667,32820,0,1,1,0,0,-9693,-891,42.969,3.883,600,20,0,2,0,1,0,0,0), +(@CGUID+668,32820,0,1,1,0,0,-9693,-681,46.882,3.713,600,20,0,2,0,1,0,0,0), +(@CGUID+669,32820,0,1,1,0,0,-9693,-565,48.472,1.692,600,20,0,2,0,1,0,0,0), +(@CGUID+670,32820,0,1,1,0,0,-9693,-12,40.812,2.241,600,20,0,2,0,1,0,0,0), +(@CGUID+671,32820,0,1,1,0,0,-9693,757.182,31.571,2.831,600,20,0,2,0,1,0,0,0), +(@CGUID+672,32820,0,1,1,0,0,-9691,-179,45.468,3.793,600,20,0,2,0,1,0,0,0), +(@CGUID+673,32820,0,1,1,0,0,-9690,-684,47.855,1.707,600,20,0,2,0,1,0,0,0), +(@CGUID+674,32820,0,1,1,0,0,-9690,214.238,51.084,2.691,600,20,0,2,0,1,0,0,0), +(@CGUID+675,32820,0,1,1,0,0,-9689,-702,48.288,1.51,600,20,0,2,0,1,0,0,0), +(@CGUID+676,32820,0,1,1,0,0,-9689,-582,50.154,5.298,600,20,0,2,0,1,0,0,0), +(@CGUID+677,32820,0,1,1,0,0,-9689,-311,56.459,1.525,600,20,0,2,0,1,0,0,0), +(@CGUID+678,32820,0,1,1,0,0,-9688,-1583,56.778,3.584,600,20,0,2,0,1,0,0,0), +(@CGUID+679,32820,0,1,1,0,0,-9688,-708,48.174,4.93,600,20,0,2,0,1,0,0,0), +(@CGUID+680,32820,0,1,1,0,0,-9688,-363,55.84,4.373,600,20,0,2,0,1,0,0,0), +(@CGUID+681,32820,0,1,1,0,0,-9688,212.671,51.334,2.213,600,20,0,2,0,1,0,0,0), +(@CGUID+682,32820,0,1,1,0,0,-9688,535.311,38.85,4.16,600,20,0,2,0,1,0,0,0), +(@CGUID+683,32820,0,1,1,0,0,-9687,-750,46.082,3.762,600,20,0,2,0,1,0,0,0), +(@CGUID+684,32820,0,1,1,0,0,-9687,-684,48.302,6.184,600,20,0,2,0,1,0,0,0), +(@CGUID+685,32820,0,1,1,0,0,-9687,-684,48.895,0,600,20,0,2,0,1,0,0,0), +(@CGUID+686,32820,0,1,1,0,0,-9686,-1131,40.541,4.802,600,20,0,2,0,1,0,0,0), +(@CGUID+687,32820,0,1,1,0,0,-9686,-349,57.389,2.183,600,20,0,2,0,1,0,0,0), +(@CGUID+688,32820,0,1,1,0,0,-9686,-168,45.128,3.634,600,20,0,2,0,1,0,0,0), +(@CGUID+689,32820,0,1,1,0,0,-9685,-421,54.012,2.846,600,20,0,2,0,1,0,0,0), +(@CGUID+690,32820,0,1,1,0,0,-9685,-269,61.53,3.605,600,20,0,2,0,1,0,0,0), +(@CGUID+691,32820,0,1,1,0,0,-9684,-951,41.894,1.231,600,20,0,2,0,1,0,0,0), +(@CGUID+692,32820,0,1,1,0,0,-9683,-50,39.54,2.438,600,20,0,2,0,1,0,0,0), +(@CGUID+693,32820,0,1,1,0,0,-9682,-327,56.332,3.443,600,20,0,2,0,1,0,0,0), +(@CGUID+694,32820,0,1,1,0,0,-9682,136.4,47.849,0.967,600,20,0,2,0,1,0,0,0), +(@CGUID+695,32820,0,1,1,0,0,-9681,-416,54.327,3.698,600,20,0,2,0,1,0,0,0), +(@CGUID+696,32820,0,1,1,0,0,-9681,-335,57.205,3.703,600,20,0,2,0,1,0,0,0), +(@CGUID+697,32820,0,1,1,0,0,-9681,-164,45.229,0.723,600,20,0,2,0,1,0,0,0), +(@CGUID+698,32820,0,1,1,0,0,-9681,-135,43.235,5.441,600,20,0,2,0,1,0,0,0), +(@CGUID+699,32820,0,1,1,0,0,-9680,356.074,43.955,3.999,600,20,0,2,0,1,0,0,0), +(@CGUID+700,32820,0,1,1,0,0,-9680,754.835,33.07,1.964,600,20,0,2,0,1,0,0,0), +(@CGUID+701,32820,0,1,1,0,0,-9678,-1581,57.199,3.789,600,20,0,2,0,1,0,0,0), +(@CGUID+702,32820,0,1,1,0,0,-9678,-183,46.748,4.703,600,20,0,2,0,1,0,0,0), +(@CGUID+703,32820,0,1,1,0,0,-9678,598.149,39.802,4.33,600,20,0,2,0,1,0,0,0), +(@CGUID+704,32820,0,1,1,0,0,-9677,-567,49.951,3.448,600,20,0,2,0,1,0,0,0), +(@CGUID+705,32820,0,1,1,0,0,-9676,-1601,54.754,2.82,600,20,0,2,0,1,0,0,0), +(@CGUID+706,32820,0,1,1,0,0,-9676,-1573,55.732,3.81,600,20,0,2,0,1,0,0,0), +(@CGUID+707,32820,0,1,1,0,0,-9676,-423,54.769,3.825,600,20,0,2,0,1,0,0,0), +(@CGUID+708,32820,0,1,1,0,0,-9676,108.541,45.798,5.688,600,20,0,2,0,1,0,0,0), +(@CGUID+709,32820,0,1,1,0,0,-9675,-815,47.432,3.599,600,20,0,2,0,1,0,0,0), +(@CGUID+710,32820,0,1,1,0,0,-9675,174.857,49.398,0.567,600,20,0,2,0,1,0,0,0), +(@CGUID+711,32820,0,1,1,0,0,-9674,-905,42.956,3.032,600,20,0,2,0,1,0,0,0), +(@CGUID+712,32820,0,1,1,0,0,-9673,-492,51.997,4.616,600,20,0,2,0,1,0,0,0), +(@CGUID+713,32820,0,1,1,0,0,-9673,318.748,46.291,2.546,600,20,0,2,0,1,0,0,0), +(@CGUID+714,32820,0,1,1,0,0,-9673,374.112,43.139,2.698,600,20,0,2,0,1,0,0,0), +(@CGUID+715,32820,0,1,1,0,0,-9671,374.911,43.226,1.907,600,20,0,2,0,1,0,0,0), +(@CGUID+716,32820,0,1,1,0,0,-9667,-434,54.843,0.73,600,20,0,2,0,1,0,0,0), +(@CGUID+717,32820,0,1,1,0,0,-9667,-429,55.276,2.6,600,20,0,2,0,1,0,0,0), +(@CGUID+718,32820,0,1,1,0,0,-9667,494.199,38.632,5.933,600,20,0,2,0,1,0,0,0), +(@CGUID+719,32820,0,1,1,0,0,-9666,541.163,41.336,3.046,600,20,0,2,0,1,0,0,0), +(@CGUID+720,32820,0,1,1,0,0,-9665,693.473,36.846,3.491,600,20,0,2,0,1,0,0,0), +(@CGUID+721,32820,0,1,1,0,0,-9663,-1154,40.172,0.397,600,20,0,2,0,1,0,0,0), +(@CGUID+722,32820,0,1,1,0,0,-9663,401.738,40.652,5.242,600,20,0,2,0,1,0,0,0), +(@CGUID+723,32820,0,1,1,0,0,-9663,603.806,40.344,0.648,600,20,0,2,0,1,0,0,0), +(@CGUID+724,32820,0,1,1,0,0,-9662,-190,50.471,0.433,600,20,0,2,0,1,0,0,0), +(@CGUID+725,32820,0,1,1,0,0,-9661,-1084,43.3,0.976,600,20,0,2,0,1,0,0,0), +(@CGUID+726,32820,0,1,1,0,0,-9660,525.708,41.011,2.836,600,20,0,2,0,1,0,0,0), +(@CGUID+727,32820,0,1,1,0,0,-9658,108.193,46.029,3.889,600,20,0,2,0,1,0,0,0), +(@CGUID+728,32820,0,1,1,0,0,-9658,208.041,48.973,1.677,600,20,0,2,0,1,0,0,0), +(@CGUID+729,32820,0,1,1,0,0,-9658,384.124,41.988,2.129,600,20,0,2,0,1,0,0,0), +(@CGUID+730,32820,0,1,1,0,0,-9657,177.253,48.539,1.592,600,20,0,2,0,1,0,0,0), +(@CGUID+731,32820,0,1,1,0,0,-9656,-186,52.282,5.817,600,20,0,2,0,1,0,0,0), +(@CGUID+732,32820,0,1,1,0,0,-9655,-430,56.846,3.104,600,20,0,2,0,1,0,0,0), +(@CGUID+733,32820,0,1,1,0,0,-9655,161.958,47.921,4.104,600,20,0,2,0,1,0,0,0), +(@CGUID+734,32820,0,1,1,0,0,-9654,-589,55.268,6.118,600,20,0,2,0,1,0,0,0), +(@CGUID+735,32820,0,1,1,0,0,-9654,564.774,41.556,4.709,600,20,0,2,0,1,0,0,0), +(@CGUID+736,32820,0,1,1,0,0,-9654,659.651,38.735,5.69,600,20,0,2,0,1,0,0,0), +(@CGUID+737,32820,0,1,1,0,0,-9653,-1626,56.418,0.262,600,20,0,2,0,1,0,0,0), +(@CGUID+738,32820,0,1,1,0,0,-9653,625.699,38.357,0.42,600,20,0,2,0,1,0,0,0), +(@CGUID+739,32820,0,1,1,0,0,-9652,654.731,38.735,0.454,600,20,0,2,0,1,0,0,0), +(@CGUID+740,32820,0,1,1,0,0,-9651,-923,46.883,3.953,600,20,0,2,0,1,0,0,0), +(@CGUID+741,32820,0,1,1,0,0,-9651,-451,55.271,0.3,600,20,0,2,0,1,0,0,0), +(@CGUID+742,32820,0,1,1,0,0,-9651,346.356,43.78,3.174,600,20,0,2,0,1,0,0,0), +(@CGUID+743,32820,0,1,1,0,0,-9651,534.697,43.157,2.778,600,20,0,2,0,1,0,0,0), +(@CGUID+744,32820,0,1,1,0,0,-9651,608.674,41.892,5.38,600,20,0,2,0,1,0,0,0), +(@CGUID+745,32820,0,1,1,0,0,-9650,141.491,45.918,3.654,600,20,0,2,0,1,0,0,0), +(@CGUID+746,32820,0,1,1,0,0,-9650,661.417,38.735,5.027,600,20,0,2,0,1,0,0,0), +(@CGUID+747,32820,0,1,1,0,0,-9646,-259,62.374,4.038,600,20,0,2,0,1,0,0,0), +(@CGUID+748,32820,0,1,1,0,0,-9644,-117,50.891,5.77,600,20,0,2,0,1,0,0,0), +(@CGUID+749,32820,0,1,1,0,0,-9643,-390,60.446,1.07,600,20,0,2,0,1,0,0,0), +(@CGUID+750,32820,0,1,1,0,0,-9643,-52,43.822,4.879,600,20,0,2,0,1,0,0,0), +(@CGUID+751,32820,0,1,1,0,0,-9643,377.555,42.262,0.399,600,20,0,2,0,1,0,0,0), +(@CGUID+752,32820,0,1,1,0,0,-9642,-208,53.564,3.837,600,20,0,2,0,1,0,0,0), +(@CGUID+753,32820,0,1,1,0,0,-9642,171.817,47.878,1.497,600,20,0,2,0,1,0,0,0), +(@CGUID+754,32820,0,1,1,0,0,-9641,-423,60.277,2.665,600,20,0,2,0,1,0,0,0), +(@CGUID+755,32820,0,1,1,0,0,-9638,696.574,38.652,0.302,600,20,0,2,0,1,0,0,0), +(@CGUID+756,32820,0,1,1,0,0,-9635,56.194,59.917,4.14,600,20,0,2,0,1,0,0,0), +(@CGUID+757,32820,0,1,1,0,0,-9633,304.301,47.332,5.973,600,20,0,2,0,1,0,0,0), +(@CGUID+758,32820,0,1,1,0,0,-9631,-1569,55.883,5.065,600,20,0,2,0,1,0,0,0), +(@CGUID+759,32820,0,1,1,0,0,-9631,-45,44.366,2.666,600,20,0,2,0,1,0,0,0), +(@CGUID+760,32820,0,1,1,0,0,-9629,212.808,47.86,2.653,600,20,0,2,0,1,0,0,0), +(@CGUID+761,32820,0,1,1,0,0,-9621.46,-1038.96,39.6437,0.24935,600,20,0,2,0,1,0,0,0), +(@CGUID+762,32820,0,1,1,0,0,-9621,195.889,47.699,4.419,600,20,0,2,0,1,0,0,0), +(@CGUID+763,32820,0,1,1,0,0,-9620,-1070,39.575,0.448,600,20,0,2,0,1,0,0,0), +(@CGUID+764,32820,0,1,1,0,0,-9617,-884,49.006,5.743,600,20,0,2,0,1,0,0,0), +(@CGUID+765,32820,0,1,1,0,0,-9617,-854,45.009,4.939,600,20,0,2,0,1,0,0,0), +(@CGUID+766,32820,0,1,1,0,0,-9616,-1039,39.999,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+767,32820,0,1,1,0,0,-9616,358.532,44.245,2.353,600,20,0,2,0,1,0,0,0), +(@CGUID+768,32820,0,1,1,0,0,-9615,-1164,42.549,2.742,600,20,0,2,0,1,0,0,0), +(@CGUID+769,32820,0,1,1,0,0,-9615,-877,48.881,0.785,600,20,0,2,0,1,0,0,0), +(@CGUID+770,32820,0,1,1,0,0,-9614,-884,49.325,3.363,600,20,0,2,0,1,0,0,0), +(@CGUID+771,32820,0,1,1,0,0,-9612,-880,48.976,2.975,600,20,0,2,0,1,0,0,0), +(@CGUID+772,32820,0,1,1,0,0,-9610.42,-1072.08,39.5028,3.2748,600,20,0,2,0,1,0,0,0), +(@CGUID+773,32820,0,1,1,0,0,-9610,-1032,41.306,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+774,32820,0,1,1,0,0,-9610,640.565,38.652,2.732,600,20,0,2,0,1,0,0,0), +(@CGUID+775,32820,0,1,1,0,0,-9609,-873,48.006,0.976,600,20,0,2,0,1,0,0,0), +(@CGUID+776,32820,0,1,1,0,0,-9606,-1474,59.74,2.897,600,20,0,2,0,1,0,0,0), +(@CGUID+777,32820,0,1,1,0,0,-9606,541.682,45.521,3.87,600,20,0,2,0,1,0,0,0), +(@CGUID+778,32820,0,1,1,0,0,-9606,684.352,38.652,1.964,600,20,0,2,0,1,0,0,0), +(@CGUID+779,32820,0,1,1,0,0,-9605,-536,55.4,2.668,600,20,0,2,0,1,0,0,0), +(@CGUID+780,32820,0,1,1,0,0,-9600,-617,56.301,5.539,600,20,0,2,0,1,0,0,0), +(@CGUID+781,32820,0,1,1,0,0,-9598,-625,56.651,3.35,600,20,0,2,0,1,0,0,0), +(@CGUID+782,32820,0,1,1,0,0,-9596,-614,56.776,2.182,600,20,0,2,0,1,0,0,0), +(@CGUID+783,32820,0,1,1,0,0,-9592,-614,57.006,3.361,600,20,0,2,0,1,0,0,0), +(@CGUID+784,32820,0,1,1,0,0,-9590,-1128,44.706,1.545,600,20,0,2,0,1,0,0,0), +(@CGUID+785,32820,0,1,1,0,0,-9588,-438,60.505,3.263,600,20,0,2,0,1,0,0,0), +(@CGUID+786,32820,0,1,1,0,0,-9587,-1545,59.617,6.028,600,20,0,2,0,1,0,0,0), +(@CGUID+787,32820,0,1,1,0,0,-9587,-1149,45.731,5.771,600,20,0,2,0,1,0,0,0), +(@CGUID+788,32820,0,1,1,0,0,-9586,435.596,39.798,3.141,600,20,0,2,0,1,0,0,0), +(@CGUID+789,32820,0,1,1,0,0,-9586,459.753,41.175,3.861,600,20,0,2,0,1,0,0,0), +(@CGUID+790,32820,0,1,1,0,0,-9584,-160,57.909,5.738,600,20,0,2,0,1,0,0,0), +(@CGUID+791,32820,0,1,1,0,0,-9582,-317,61.673,1.959,600,20,0,2,0,1,0,0,0), +(@CGUID+792,32820,0,1,1,0,0,-9580,727.4,34.263,6.273,600,20,0,2,0,1,0,0,0), +(@CGUID+793,32820,0,1,1,0,0,-9578,576.959,49.341,1.091,600,20,0,2,0,1,0,0,0), +(@CGUID+794,32820,0,1,1,0,0,-9576,-718,99.27,3.054,600,20,0,2,0,1,0,0,0), +(@CGUID+795,32820,0,1,1,0,0,-9576,314.797,55.528,2.647,600,20,0,2,0,1,0,0,0), +(@CGUID+796,32820,0,1,1,0,0,-9575,-424,62.826,1.817,600,20,0,2,0,1,0,0,0), +(@CGUID+797,32820,0,1,1,0,0,-9575,-297,61.31,2.498,600,20,0,2,0,1,0,0,0), +(@CGUID+798,32820,0,1,1,0,0,-9572.62,88.1464,58.8819,5.974,600,20,0,2,0,1,0,0,0), +(@CGUID+799,32820,0,1,1,0,0,-9571,-432,62.519,0.868,600,20,0,2,0,1,0,0,0), +(@CGUID+800,32820,0,1,1,0,0,-9570,-1141,43.698,5.645,600,20,0,2,0,1,0,0,0), +(@CGUID+801,32820,0,1,1,0,0,-9570,518.539,48.457,1.061,600,20,0,2,0,1,0,0,0), +(@CGUID+802,32820,0,1,1,0,0,-9568,-1482,61.479,0.377,600,20,0,2,0,1,0,0,0), +(@CGUID+803,32820,0,1,1,0,0,-9568,-1260,47.978,3.074,600,20,0,2,0,1,0,0,0), +(@CGUID+804,32820,0,1,1,0,0,-9568,-1142,43.928,5.745,600,20,0,2,0,1,0,0,0), +(@CGUID+805,32820,0,1,1,0,0,-9568,-1011,47.385,2.208,600,20,0,2,0,1,0,0,0), +(@CGUID+806,32820,0,1,1,0,0,-9568,-439,61.607,0.36,600,20,0,2,0,1,0,0,0), +(@CGUID+807,32820,0,1,1,0,0,-9568,-222,62.061,6.001,600,20,0,2,0,1,0,0,0), +(@CGUID+808,32820,0,1,1,0,0,-9567,81.004,58.881,0.348,600,20,0,2,0,1,0,0,0), +(@CGUID+809,32820,0,1,1,0,0,-9567,195.622,59.003,3.211,600,20,0,2,0,1,0,0,0), +(@CGUID+810,32820,0,1,1,0,0,-9565,-1139,43.958,3.8,600,20,0,2,0,1,0,0,0), +(@CGUID+811,32820,0,1,1,0,0,-9563,-307,63.23,2.619,600,20,0,2,0,1,0,0,0), +(@CGUID+812,32820,0,1,1,0,0,-9562,103.726,58.882,4.918,600,20,0,2,0,1,0,0,0), +(@CGUID+813,32820,0,1,1,0,0,-9560.06,74.1694,58.8881,0.905975,600,20,0,2,0,1,0,0,0), +(@CGUID+814,32820,0,1,1,0,0,-9563.21,76.4257,58.8835,0.935819,600,20,0,2,0,1,0,0,0), +(@CGUID+815,32820,0,1,1,0,0,-9558,104.884,58.882,4.923,600,20,0,2,0,1,0,0,0), +(@CGUID+816,32820,0,1,1,0,0,-9557,89.681,58.881,4.876,600,20,0,2,0,1,0,0,0), +(@CGUID+817,32820,0,1,1,0,0,-9557,129.744,58.881,5.82,600,20,0,2,0,1,0,0,0), +(@CGUID+818,32820,0,1,1,0,0,-9556,-316,62.352,6.073,600,20,0,2,0,1,0,0,0), +(@CGUID+819,32820,0,1,1,0,0,-9555,181.645,59.138,2.708,600,20,0,2,0,1,0,0,0), +(@CGUID+820,32820,0,1,1,0,0,-9554,-390,62.948,0.279,600,20,0,2,0,1,0,0,0), +(@CGUID+821,32820,0,1,1,0,0,-9554,-313,62.556,4.793,600,20,0,2,0,1,0,0,0), +(@CGUID+822,32820,0,1,1,0,0,-9553,-1502,61.176,6.117,600,20,0,2,0,1,0,0,0), +(@CGUID+823,32820,0,1,1,0,0,-9553,-728,99.252,2.164,600,20,0,2,0,1,0,0,0), +(@CGUID+824,32820,0,1,1,0,0,-9553,-244,62.128,1.554,600,20,0,2,0,1,0,0,0), +(@CGUID+825,32820,0,1,1,0,0,-9553,108.151,58.882,0.059,600,20,0,2,0,1,0,0,0), +(@CGUID+826,32820,0,1,1,0,0,-9552,140.323,58.881,5.078,600,20,0,2,0,1,0,0,0), +(@CGUID+827,32820,0,1,1,0,0,-9551.31,-712.266,75.0554,3.9444,600,20,0,2,0,1,0,0,0), +(@CGUID+828,32820,0,1,1,0,0,-9551,209.447,57.854,3.198,600,20,0,2,0,1,0,0,0), +(@CGUID+829,32820,0,1,1,0,0,-9550,-315,62.703,2.76,600,20,0,2,0,1,0,0,0), +(@CGUID+830,32820,0,1,1,0,0,-9549,-381,62.186,0.841,600,20,0,2,0,1,0,0,0), +(@CGUID+831,32820,0,1,1,0,0,-9548.14,-710.201,90.4265,3.76926,600,20,0,2,0,1,0,0,0), +(@CGUID+832,32820,0,1,1,0,0,-9548,-540,60.557,3.038,600,20,0,2,0,1,0,0,0), +(@CGUID+833,32820,0,1,1,0,0,-9548,67.039,59.25,1.844,600,20,0,2,0,1,0,0,0), +(@CGUID+834,32820,0,1,1,0,0,-9547,-975,49.27,2.344,600,20,0,2,0,1,0,0,0), +(@CGUID+835,32820,0,1,1,0,0,-9547,-551,60.16,3.215,600,20,0,2,0,1,0,0,0), +(@CGUID+836,32820,0,1,1,0,0,-9546,-187,61.342,5.506,600,20,0,2,0,1,0,0,0), +(@CGUID+837,32820,0,1,1,0,0,-9545,-1401,53.933,2.466,600,20,0,2,0,1,0,0,0), +(@CGUID+838,32820,0,1,1,0,0,-9545,-1145,46.409,4.804,600,20,0,2,0,1,0,0,0), +(@CGUID+839,32820,0,1,1,0,0,-9545,126.803,59.076,2.364,600,20,0,2,0,1,0,0,0), +(@CGUID+840,32820,0,1,1,0,0,-9544.87,77.7707,59.0124,5.92404,600,20,0,2,0,1,0,0,0), +(@CGUID+841,32820,0,1,1,0,0,-9544,-1495,61.319,0.796,600,20,0,2,0,1,0,0,0), +(@CGUID+842,32820,0,1,1,0,0,-9544,-886,46.261,3.139,600,20,0,2,0,1,0,0,0), +(@CGUID+843,32820,0,1,1,0,0,-9543,-1003,51.05,3.629,600,20,0,2,0,1,0,0,0), +(@CGUID+844,32820,0,1,1,0,0,-9542,-517,63.119,1.22,600,20,0,2,0,1,0,0,0), +(@CGUID+845,32820,0,1,1,0,0,-9542,299.005,53.319,4.581,600,20,0,2,0,1,0,0,0), +(@CGUID+846,32820,0,1,1,0,0,-9541.55,-716.649,99.212,3.32507,600,20,0,2,0,1,0,0,0), +(@CGUID+847,32820,0,1,1,0,0,-9541,-1533,61.272,0,600,20,0,2,0,1,0,0,0), +(@CGUID+848,32820,0,1,1,0,0,-9541,-1067,47.727,0.79,600,20,0,2,0,1,0,0,0), +(@CGUID+849,32820,0,1,1,0,0,-9541,-537,61.838,5.395,600,20,0,2,0,1,0,0,0), +(@CGUID+850,32820,0,1,1,0,0,-9540,85.383,59.121,6.25,600,20,0,2,0,1,0,0,0), +(@CGUID+851,32820,0,1,1,0,0,-9539,508.213,50.727,4.763,600,20,0,2,0,1,0,0,0), +(@CGUID+852,32820,0,1,1,0,0,-9538,112.447,58.885,6.095,600,20,0,2,0,1,0,0,0), +(@CGUID+853,32820,0,1,1,0,0,-9539.97,71.6819,58.8818,1.48463,600,20,0,2,0,1,0,0,0), +(@CGUID+854,32820,0,1,1,0,0,-9537,-1214,48.234,4.904,600,20,0,2,0,1,0,0,0), +(@CGUID+855,32820,0,1,1,0,0,-9537,513.434,51.446,2.756,600,20,0,2,0,1,0,0,0), +(@CGUID+856,32820,0,1,1,0,0,-9536,-1273,43.544,5.542,600,20,0,2,0,1,0,0,0), +(@CGUID+857,32820,0,1,1,0,0,-9536,277.975,53.924,5.843,600,20,0,2,0,1,0,0,0), +(@CGUID+858,32820,0,1,1,0,0,-9535,-486,62.979,2.737,600,20,0,2,0,1,0,0,0), +(@CGUID+859,32820,0,1,1,0,0,-9535,92,58.8819,4.462,600,20,0,2,0,1,0,0,0), +(@CGUID+860,32820,0,1,1,0,0,-9535,280.233,54.284,4.968,600,20,0,2,0,1,0,0,0), +(@CGUID+861,32820,0,1,1,0,0,-9534,-1303,44.488,5.102,600,20,0,2,0,1,0,0,0), +(@CGUID+862,32820,0,1,1,0,0,-9534,-451,60.238,0.334,600,20,0,2,0,1,0,0,0), +(@CGUID+863,32820,0,1,1,0,0,-9534,-378,59.494,0.528,600,20,0,2,0,1,0,0,0), +(@CGUID+864,32820,0,1,1,0,0,-9533,-34,56.448,2.767,600,20,0,2,0,1,0,0,0), +(@CGUID+865,32820,0,1,1,0,0,-9533,80.093,58.881,6.104,600,20,0,2,0,1,0,0,0), +(@CGUID+866,32820,0,1,1,0,0,-9532,-730,62.635,3.772,600,20,0,2,0,1,0,0,0), +(@CGUID+867,32820,0,1,1,0,0,-9531.92,-1222.34,47.6548,5.61777,600,20,0,2,0,1,0,0,0), +(@CGUID+868,32820,0,1,1,0,0,-9531,-264,59.372,6.006,600,20,0,2,0,1,0,0,0), +(@CGUID+869,32820,0,1,1,0,0,-9531,-252,58.833,5.188,600,20,0,2,0,1,0,0,0), +(@CGUID+870,32820,0,1,1,0,0,-9531,81.822,58.881,0.107,600,20,0,2,0,1,0,0,0), +(@CGUID+871,32820,0,1,1,0,0,-9530,82.757,58.881,0.078,600,20,0,2,0,1,0,0,0), +(@CGUID+872,32820,0,1,1,0,0,-9530,173.256,57.863,4.879,600,20,0,2,0,1,0,0,0), +(@CGUID+873,32820,0,1,1,0,0,-9530,534.204,51.063,3.854,600,20,0,2,0,1,0,0,0), +(@CGUID+874,32820,0,1,1,0,0,-9529,-651,63.198,0.171,600,20,0,2,0,1,0,0,0), +(@CGUID+875,32820,0,1,1,0,0,-9528,175.567,57.614,0.737,600,20,0,2,0,1,0,0,0), +(@CGUID+876,32820,0,1,1,0,0,-9528,177.394,57.646,2.687,600,20,0,2,0,1,0,0,0), +(@CGUID+877,32820,0,1,1,0,0,-9526,-986,51.973,3.31,600,20,0,2,0,1,0,0,0), +(@CGUID+878,32820,0,1,1,0,0,-9526,-138,61.369,2.666,600,20,0,2,0,1,0,0,0), +(@CGUID+879,32820,0,1,1,0,0,-9523,-1290,44.27,0.136,600,20,0,2,0,1,0,0,0), +(@CGUID+880,32820,0,1,1,0,0,-9522,-1048,49.724,4.858,600,20,0,2,0,1,0,0,0), +(@CGUID+881,32820,0,1,1,0,0,-9522,409.066,52.694,4.811,600,20,0,2,0,1,0,0,0), +(@CGUID+882,32820,0,1,1,0,0,-9521,-532,63.048,3.274,600,20,0,2,0,1,0,0,0), +(@CGUID+883,32820,0,1,1,0,0,-9520,472.334,53.101,0.539,600,20,0,2,0,1,0,0,0), +(@CGUID+884,32820,0,1,1,0,0,-9519,-452,59.807,2.554,600,20,0,2,0,1,0,0,0), +(@CGUID+885,32820,0,1,1,0,0,-9519,484.227,52.792,2.03,600,20,0,2,0,1,0,0,0), +(@CGUID+886,32820,0,1,1,0,0,-9517,79.223,59.568,6.194,600,20,0,2,0,1,0,0,0), +(@CGUID+887,32820,0,1,1,0,0,-9517,85.71,59.509,6.172,600,20,0,2,0,1,0,0,0), +(@CGUID+888,32820,0,1,1,0,0,-9516,409.141,52.729,3.851,600,20,0,2,0,1,0,0,0), +(@CGUID+889,32820,0,1,1,0,0,-9516,427.811,54.883,0.716,600,20,0,2,0,1,0,0,0), +(@CGUID+890,32820,0,1,1,0,0,-9516,551.302,51.241,3.004,600,20,0,2,0,1,0,0,0), +(@CGUID+891,32820,0,1,1,0,0,-9513,-1370,49.18,5.36,600,20,0,2,0,1,0,0,0), +(@CGUID+892,32820,0,1,1,0,0,-9512,-518,63.121,6.079,600,20,0,2,0,1,0,0,0), +(@CGUID+893,32820,0,1,1,0,0,-9512,-303,55.091,5.382,600,20,0,2,0,1,0,0,0), +(@CGUID+894,32820,0,1,1,0,0,-9511,-1286,44.145,3.789,600,20,0,2,0,1,0,0,0), +(@CGUID+895,32820,0,1,1,0,0,-9511,-1005,54.496,1.658,600,20,0,2,0,1,0,0,0), +(@CGUID+896,32820,0,1,1,0,0,-9511,-780,60.461,2.016,600,20,0,2,0,1,0,0,0), +(@CGUID+897,32820,0,1,1,0,0,-9509,419.477,52.881,3.244,600,20,0,2,0,1,0,0,0), +(@CGUID+898,32820,0,1,1,0,0,-9508,-1091,49.683,4.721,600,20,0,2,0,1,0,0,0), +(@CGUID+899,32820,0,1,1,0,0,-9508,174.773,57.988,5.893,600,20,0,2,0,1,0,0,0), +(@CGUID+900,32820,0,1,1,0,0,-9507,-1063,50.982,5.505,600,20,0,2,0,1,0,0,0), +(@CGUID+901,32820,0,1,1,0,0,-9507,-1003,54.765,4.067,600,20,0,2,0,1,0,0,0), +(@CGUID+902,32820,0,1,1,0,0,-9507,391.523,50.688,2.994,600,20,0,2,0,1,0,0,0), +(@CGUID+903,32820,0,1,1,0,0,-9505,-210,52.069,0.998,600,20,0,2,0,1,0,0,0), +(@CGUID+904,32820,0,1,1,0,0,-9504,-1286,43.067,4.472,600,20,0,2,0,1,0,0,0), +(@CGUID+905,32820,0,1,1,0,0,-9504,389.215,50.779,5.28319,600,20,0,2,0,1,0,0,0), +(@CGUID+906,32820,0,1,1,0,0,-9503,-1520,61.407,3.675,600,20,0,2,0,1,0,0,0), +(@CGUID+907,32820,0,1,1,0,0,-9499,-960,54.024,3.495,600,20,0,2,0,1,0,0,0), +(@CGUID+908,32820,0,1,1,0,0,-9499,-56,59.989,1.879,600,20,0,2,0,1,0,0,0), +(@CGUID+909,32820,0,1,1,0,0,-9498,66.229,56.528,6.109,600,20,0,2,0,1,0,0,0), +(@CGUID+910,32820,0,1,1,0,0,-9497,-1274,43.456,0.703,600,20,0,2,0,1,0,0,0), +(@CGUID+911,32820,0,1,1,0,0,-9496,-939,54.836,0.463,600,20,0,2,0,1,0,0,0), +(@CGUID+912,32820,0,1,1,0,0,-9496,73.146,56.438,6.088,600,20,0,2,0,1,0,0,0), +(@CGUID+913,32820,0,1,1,0,0,-9494,-1063,52.208,2.649,600,20,0,2,0,1,0,0,0), +(@CGUID+914,32820,0,1,1,0,0,-9494,83.081,56.474,6.151,600,20,0,2,0,1,0,0,0), +(@CGUID+915,32820,0,1,1,0,0,-9494,324.211,52.561,6.057,600,20,0,2,0,1,0,0,0), +(@CGUID+916,32820,0,1,1,0,0,-9493,-450,56.073,5.054,600,20,0,2,0,1,0,0,0), +(@CGUID+917,32820,0,1,1,0,0,-9492,-559,64.456,1.584,600,20,0,2,0,1,0,0,0), +(@CGUID+918,32820,0,1,1,0,0,-9491,-1193,49.564,4.063,600,20,0,2,0,1,0,0,0), +(@CGUID+919,32820,0,1,1,0,0,-9491,-53,60.493,5.207,600,20,0,2,0,1,0,0,0), +(@CGUID+920,32820,0,1,1,0,0,-9491,-21,58.339,2.126,600,20,0,2,0,1,0,0,0), +(@CGUID+921,32820,0,1,1,0,0,-9490,-958,55.971,3.14,600,20,0,2,0,1,0,0,0), +(@CGUID+922,32820,0,1,1,0,0,-9490,-31,59.078,1.199,600,20,0,2,0,1,0,0,0), +(@CGUID+923,32820,0,1,1,0,0,-9490,-29,58.923,4.502,600,20,0,2,0,1,0,0,0), +(@CGUID+924,32820,0,1,1,0,0,-9490,475.371,51.298,6.274,600,20,0,2,0,1,0,0,0), +(@CGUID+925,32820,0,1,1,0,0,-9489,482.235,51.715,5.562,600,20,0,2,0,1,0,0,0), +(@CGUID+926,32820,0,1,1,0,0,-9488,-766,61.281,1.937,600,20,0,2,0,1,0,0,0), +(@CGUID+927,32820,0,1,1,0,0,-9487,-1254,43.483,1.865,600,20,0,2,0,1,0,0,0), +(@CGUID+928,32820,0,1,1,0,0,-9487,-1028,53.171,0.616,600,20,0,2,0,1,0,0,0), +(@CGUID+929,32820,0,1,1,0,0,-9487,271.435,52.855,4.1,600,20,0,2,0,1,0,0,0), +(@CGUID+930,32820,0,1,1,0,0,-9486,246.719,54.08,4.007,600,20,0,2,0,1,0,0,0), +(@CGUID+931,32820,0,1,1,0,0,-9485,-329,54.892,0.419,600,20,0,2,0,1,0,0,0), +(@CGUID+932,32820,0,1,1,0,0,-9484,-350,60.2,4.378,600,20,0,2,0,1,0,0,0), +(@CGUID+933,32820,0,1,1,0,0,-9483,-1356,46.958,1.011,600,20,0,2,0,1,0,0,0), +(@CGUID+934,32820,0,1,1,0,0,-9482,266.885,53.234,1.097,600,20,0,2,0,1,0,0,0), +(@CGUID+935,32820,0,1,1,0,0,-9482,425.988,53.979,4.061,600,20,0,2,0,1,0,0,0), +(@CGUID+936,32820,0,1,1,0,0,-9480,-786,60.603,5.01,600,20,0,2,0,1,0,0,0), +(@CGUID+937,32820,0,1,1,0,0,-9479,-183,58.503,1.554,600,20,0,2,0,1,0,0,0), +(@CGUID+938,32820,0,1,1,0,0,-9478,280.815,53.192,4.36,600,20,0,2,0,1,0,0,0), +(@CGUID+939,32820,0,1,1,0,0,-9476,-1207,48.181,4.108,600,20,0,2,0,1,0,0,0), +(@CGUID+940,32820,0,1,1,0,0,-9126.18,394.417,91.7424,3.92184,600,20,0,2,0,1,0,0,0), +(@CGUID+941,32820,0,1,1,0,0,-9474,533.132,54.285,2.501,600,20,0,2,0,1,0,0,0), +(@CGUID+942,32820,0,1,1,0,0,-9473,-18,57.595,1.346,600,20,0,2,0,1,0,0,0), +(@CGUID+943,32820,0,1,1,0,0,-9473,-9,49.794,0.233,600,20,0,2,0,1,0,0,0), +(@CGUID+944,32820,0,1,1,0,0,-9473,46.977,56.887,5.067,600,20,0,2,0,1,0,0,0), +(@CGUID+945,32820,0,1,1,0,0,-9472,-838,60.511,4.709,600,20,0,2,0,1,0,0,0), +(@CGUID+946,32820,0,1,1,0,0,-9472,-271,58.229,2.496,600,20,0,2,0,1,0,0,0), +(@CGUID+947,32820,0,1,1,0,0,-9472,-5,49.794,5.611,600,20,0,2,0,1,0,0,0), +(@CGUID+948,32820,0,1,1,0,0,-9472,34.1,63.82,4.407,600,20,0,2,0,1,0,0,0), +(@CGUID+949,32820,0,1,1,0,0,-9471,-165,59.226,1.293,600,20,0,2,0,1,0,0,0), +(@CGUID+950,32820,0,1,1,0,0,-9471,27.047,56.339,5.751,600,20,0,2,0,1,0,0,0), +(@CGUID+951,32820,0,1,1,0,0,-9471,46.904,56.764,4.637,600,20,0,2,0,1,0,0,0), +(@CGUID+952,32820,0,1,1,0,0,-9471,419.262,53.117,4.697,600,20,0,2,0,1,0,0,0), +(@CGUID+953,32820,0,1,1,0,0,-9470.26,-1289.42,41.1047,2.80465,600,20,0,2,0,1,0,0,0), +(@CGUID+954,32820,0,1,1,0,0,-9470,-379,59.032,4.241,600,20,0,2,0,1,0,0,0), +(@CGUID+955,32820,0,1,1,0,0,-9469,-1355,47.429,1.03,600,20,0,2,0,1,0,0,0), +(@CGUID+956,32820,0,1,1,0,0,-9468,108.976,57.661,1.798,600,20,0,2,0,1,0,0,0), +(@CGUID+957,32820,0,1,1,0,0,-9468,241.764,56.08,3.422,600,20,0,2,0,1,0,0,0), +(@CGUID+958,32820,0,1,1,0,0,-9468,298.53,53.903,5.522,600,20,0,2,0,1,0,0,0), +(@CGUID+959,32820,0,1,1,0,0,-9467,-5,49.793,4.691,600,20,0,2,0,1,0,0,0), +(@CGUID+960,32820,0,1,1,0,0,-9467,-5,57.033,1.641,600,20,0,2,0,1,0,0,0), +(@CGUID+961,32820,0,1,1,0,0,-9467,275.755,53.695,0.512,600,20,0,2,0,1,0,0,0), +(@CGUID+962,32820,0,1,1,0,0,-9466,0.061,57.033,0.742,600,20,0,2,0,1,0,0,0), +(@CGUID+963,32820,0,1,1,0,0,-9466,12.645,63.904,1.1,600,20,0,2,0,1,0,0,0), +(@CGUID+964,32820,0,1,1,0,0,-9466,48.142,56.968,1.466,600,20,0,2,0,1,0,0,0), +(@CGUID+965,32820,0,1,1,0,0,-9466,74.007,56.779,5.336,600,20,0,2,0,1,0,0,0), +(@CGUID+966,32820,0,1,1,0,0,-9465,9.633,57.146,1.449,600,20,0,2,0,1,0,0,0), +(@CGUID+967,32820,0,1,1,0,0,-9465,93.99,58.527,0,600,20,0,2,0,1,0,0,0), +(@CGUID+968,32820,0,1,1,0,0,-9464,87.43,58.344,0.437,600,20,0,2,0,1,0,0,0), +(@CGUID+969,32820,0,1,1,0,0,-9463,-827,60.746,0.319,600,20,0,2,0,1,0,0,0), +(@CGUID+970,32820,0,1,1,0,0,-9463,-239,57.831,1.002,600,20,0,2,0,1,0,0,0), +(@CGUID+971,32820,0,1,1,0,0,-9463,-236,57.742,1.557,600,20,0,2,0,1,0,0,0), +(@CGUID+972,32820,0,1,1,0,0,-9463,16.192,57.046,3.037,600,20,0,2,0,1,0,0,0), +(@CGUID+973,32820,0,1,1,0,0,-9462,109.353,57.878,2.653,600,20,0,2,0,1,0,0,0), +(@CGUID+974,32820,0,1,1,0,0,-9461,-551,67.28,0.317,600,20,0,2,0,1,0,0,0), +(@CGUID+975,32820,0,1,1,0,0,-9461,33.134,63.904,4.363,600,20,0,2,0,1,0,0,0), +(@CGUID+976,32820,0,1,1,0,0,-9420.84,-1302.43,47.8857,5.23631,600,20,0,2,0,1,0,0,0), +(@CGUID+977,32820,0,1,1,0,0,-9460,8.411,57.146,1.466,600,20,0,2,0,1,0,0,0), +(@CGUID+978,32820,0,1,1,0,0,-9460,31.939,57.049,2.985,600,20,0,2,0,1,0,0,0), +(@CGUID+979,32820,0,1,1,0,0,-9459,-992,57.716,2.639,600,20,0,2,0,1,0,0,0), +(@CGUID+980,32820,0,1,1,0,0,-9459,325.026,53.68,1.983,600,20,0,2,0,1,0,0,0), +(@CGUID+981,32820,0,1,1,0,0,-9457,29.361,63.904,2.967,600,20,0,2,0,1,0,0,0), +(@CGUID+982,32820,0,1,1,0,0,-9457,99.168,58.343,4.304,600,20,0,2,0,1,0,0,0), +(@CGUID+983,32820,0,1,1,0,0,-9455.22,-1386.21,47.1356,1.81376,600,20,0,2,0,1,0,0,0), +(@CGUID+984,32820,0,1,1,0,0,-9455,73.496,56.996,3.142,600,20,1,2,0,1,0,0,0), +(@CGUID+985,32820,0,1,1,0,0,-9455,87.35,58.343,2.628,600,20,0,2,0,1,0,0,0), +(@CGUID+986,32820,0,1,1,0,0,-9454.16,-1385.95,47.1707,1.71476,600,20,0,2,0,1,0,0,0), +(@CGUID+987,32820,0,1,1,0,0,-9452,-1051,57.28,0.36,600,20,0,2,0,1,0,0,0), +(@CGUID+988,32820,0,1,1,0,0,-9452,520.263,56.225,2.973,600,20,0,2,0,1,0,0,0), +(@CGUID+989,32820,0,1,1,0,0,-9451,-957,55.738,4.467,600,20,0,2,0,1,0,0,0), +(@CGUID+990,32820,0,1,1,0,0,-9449,-1449,59.031,0.017,600,20,0,2,0,1,0,0,0), +(@CGUID+991,32820,0,1,1,0,0,-9449,-779,62.301,1.985,600,20,0,2,0,1,0,0,0), +(@CGUID+992,32820,0,1,1,0,0,-9448,-494,63.785,5.27,600,20,0,2,0,1,0,0,0), +(@CGUID+993,32820,0,1,1,0,0,-9448,217.373,59.931,0,600,20,0,2,0,1,0,0,0), +(@CGUID+994,32820,0,1,1,0,0,-9448,339.654,54.638,0.588,600,20,0,2,0,1,0,0,0), +(@CGUID+995,32820,0,1,1,0,0,-9448,462.158,52.286,4.192,600,20,0,2,0,1,0,0,0), +(@CGUID+996,32820,0,1,1,0,0,-9445,-973,55.591,4.366,600,20,0,2,0,1,0,0,0), +(@CGUID+997,32820,0,1,1,0,0,-9445,-595,65.405,3.864,600,20,0,2,0,1,0,0,0), +(@CGUID+998,32820,0,1,1,0,0,-9444.1,-1412.31,46.6621,1.63715,600,20,0,2,0,1,0,0,0), +(@CGUID+999,32820,0,1,1,0,0,-9444,-900,58.153,3.64,600,20,0,2,0,1,0,0,0), +(@CGUID+1000,32820,0,1,1,0,0,-9444,459.607,52.21,4.193,600,20,0,2,0,1,0,0,0), +(@CGUID+1001,32820,0,1,1,0,0,-9440.76,-1391.15,46.7888,2.02346,600,20,0,2,0,1,0,0,0), +(@CGUID+1002,32820,0,1,1,0,0,-9440,-1379,46.953,0.955,600,20,0,2,0,1,0,0,0), +(@CGUID+1003,32820,0,1,1,0,0,-9439,-675,64.124,4.529,600,20,0,2,0,1,0,0,0), +(@CGUID+1004,32820,0,1,1,0,0,-9438.49,-1405,46.662,4.60941,600,20,0,2,0,1,0,0,0), +(@CGUID+1005,32820,0,1,1,0,0,-9438.22,-1412.35,46.662,1.68739,600,20,0,2,0,1,0,0,0), +(@CGUID+1006,32820,0,1,1,0,0,-9438,-655,65.773,2.11,600,20,0,2,0,1,0,0,0), +(@CGUID+1007,32820,0,1,1,0,0,-9438,470.249,53.274,4.009,600,20,0,2,0,1,0,0,0), +(@CGUID+1008,32820,0,1,1,0,0,-9437,-1452,59.817,6.09,600,20,0,2,0,1,0,0,0), +(@CGUID+1009,32820,0,1,1,0,0,-9435,-639,66.116,5.863,600,20,0,2,0,1,0,0,0), +(@CGUID+1010,32820,0,1,1,0,0,-9434,-1253,49.267,2.305,600,20,0,2,0,1,0,0,0), +(@CGUID+1011,32820,0,1,1,0,0,-9433,482.528,53.247,2.295,600,20,0,2,0,1,0,0,0), +(@CGUID+1012,32820,0,1,1,0,0,-9432,-1387,46.663,5.947,600,20,0,2,0,1,0,0,0), +(@CGUID+1013,32820,0,1,1,0,0,-9432,133.199,58.837,6.151,600,20,0,2,0,1,0,0,0), +(@CGUID+1014,32820,0,1,1,0,0,-9432,150.687,55.834,2.532,600,20,0,2,0,1,0,0,0), +(@CGUID+1015,32820,0,1,1,0,0,-9431,-2104,65.708,2.979,600,20,0,2,0,1,0,0,0), +(@CGUID+1016,32820,0,1,1,0,0,-9430,-1514,68.918,0.448,600,20,0,2,0,1,0,0,0), +(@CGUID+1017,32820,0,1,1,0,0,-9430,132.438,59.079,2.802,600,20,0,2,0,1,0,0,0), +(@CGUID+1018,32820,0,1,1,0,0,-9430,134.259,58.901,3.849,600,20,0,2,0,1,0,0,0), +(@CGUID+1019,32820,0,1,1,0,0,-9429,-1262,49.045,1.86,600,20,0,2,0,1,0,0,0), +(@CGUID+1020,32820,0,1,1,0,0,-9429,-1261,49.154,5.276,600,20,0,2,0,1,0,0,0), +(@CGUID+1021,32820,0,1,1,0,0,-9427,-671,64.684,4.566,600,20,0,2,0,1,0,0,0), +(@CGUID+1022,32820,0,1,1,0,0,-9427,323.42,55.912,3.39,600,20,0,2,0,1,0,0,0), +(@CGUID+1023,32820,0,1,1,0,0,-9426.71,-1323.56,51.4573,2.53904,600,20,0,2,0,1,0,0,0), +(@CGUID+1024,32820,0,1,1,0,0,-9422,-1239,52.7,5.807,600,20,0,2,0,1,0,0,0), +(@CGUID+1025,32820,0,1,1,0,0,-9422,-1182,56.483,6.115,600,20,0,2,0,1,0,0,0), +(@CGUID+1026,32820,0,1,1,0,0,-9421,-566,67.708,4.625,600,20,0,2,0,1,0,0,0), +(@CGUID+1027,32820,0,1,1,0,0,-9421,-453,60.422,3.662,600,20,0,2,0,1,0,0,0), +(@CGUID+1028,32820,0,1,1,0,0,-9419,-728,65.583,3.245,600,20,0,2,0,1,0,0,0), +(@CGUID+1029,32820,0,1,1,0,0,-9418,-1362,50.564,4.5,600,20,0,2,0,1,0,0,0), +(@CGUID+1030,32820,0,1,1,0,0,-9416,-782,66.395,1.487,600,20,0,2,0,1,0,0,0), +(@CGUID+1031,32820,0,1,1,0,0,-9416,155.709,56.403,5.045,600,20,0,2,0,1,0,0,0), +(@CGUID+1032,32820,0,1,1,0,0,-9415,295.758,60.265,4.891,600,20,0,2,0,1,0,0,0), +(@CGUID+1033,32820,0,1,1,0,0,-9414,-845,62.561,0.004,600,20,0,2,0,1,0,0,0), +(@CGUID+1034,32820,0,1,1,0,0,-9412,-387,57.469,2.226,600,20,0,2,0,1,0,0,0), +(@CGUID+1035,32820,0,1,1,0,0,-9412,-314,60.602,0,600,20,0,2,0,1,0,0,0), +(@CGUID+1036,32820,0,1,1,0,0,-9411,-1350,50.028,1.498,600,20,0,2,0,1,0,0,0), +(@CGUID+1037,32820,0,1,1,0,0,-9410,-1271,49.832,5.483,600,20,0,2,0,1,0,0,0), +(@CGUID+1038,32820,0,1,1,0,0,-9410,-853,62.711,0.461,600,20,0,2,0,1,0,0,0), +(@CGUID+1039,32820,0,1,1,0,0,-9410,-324,59.375,1.682,600,20,0,2,0,1,0,0,0), +(@CGUID+1040,32820,0,1,1,0,0,-9410,208.355,61.079,3.912,600,20,0,2,0,1,0,0,0), +(@CGUID+1041,32820,0,1,1,0,0,-9409,243.329,61.172,1.582,600,20,0,2,0,1,0,0,0), +(@CGUID+1042,32820,0,1,1,0,0,-9408,-999,61.864,2.694,600,20,0,2,0,1,0,0,0), +(@CGUID+1043,32820,0,1,1,0,0,-9407,-1107,61.211,5.323,600,20,0,2,0,1,0,0,0), +(@CGUID+1044,32820,0,1,1,0,0,-9405,-1344,50.111,2.461,600,20,0,2,0,1,0,0,0), +(@CGUID+1045,32820,0,1,1,0,0,-9404,-30,64.335,1.721,600,20,0,2,0,1,0,0,0), +(@CGUID+1046,32820,0,1,1,0,0,-9402,324.172,58.219,0.634,600,20,0,2,0,1,0,0,0), +(@CGUID+1047,32820,0,1,1,0,0,-9400.99,-1336.26,50.0274,3.16106,600,20,0,2,0,1,0,0,0), +(@CGUID+1048,32820,0,1,1,0,0,-9397,-443,60.336,0.515,600,20,0,2,0,1,0,0,0), +(@CGUID+1049,32820,0,1,1,0,0,-9397,305.106,61.005,5.919,600,20,0,2,0,1,0,0,0), +(@CGUID+1050,32820,0,1,1,0,0,-9396,-711,67.79,2.396,600,20,0,2,0,1,0,0,0), +(@CGUID+1051,32820,0,1,1,0,0,-9395,-1514,69.385,4.886,600,20,0,2,0,1,0,0,0), +(@CGUID+1052,32820,0,1,1,0,0,-9395,312.681,61.586,1.533,600,20,0,2,0,1,0,0,0), +(@CGUID+1053,32820,0,1,1,0,0,-9394,-2022,58.275,4.33,600,20,0,2,0,1,0,0,0), +(@CGUID+1054,32820,0,1,1,0,0,-9393,-1276,54.057,6.24,600,20,0,2,0,1,0,0,0), +(@CGUID+1055,32820,0,1,1,0,0,-9392,-345,59.169,5.621,600,20,0,2,0,1,0,0,0), +(@CGUID+1056,32820,0,1,1,0,0,-9390,-587,67.012,4.101,600,20,0,2,0,1,0,0,0), +(@CGUID+1057,32820,0,1,1,0,0,-9390,-508,68.811,2.179,600,20,0,2,0,1,0,0,0), +(@CGUID+1058,32820,0,1,1,0,0,-9390,56.554,59.985,3.128,600,20,0,2,0,1,0,0,0), +(@CGUID+1059,32820,0,1,1,0,0,-9390,528.081,61.321,3.906,600,20,0,2,0,1,0,0,0), +(@CGUID+1060,32820,0,1,1,0,0,-9389,-1275,55.114,3.004,600,20,0,2,0,1,0,0,0), +(@CGUID+1061,32820,0,1,1,0,0,-9387.13,-117.859,58.8626,2.81827,600,20,0,2,0,1,0,0,0), +(@CGUID+1062,32820,0,1,1,0,0,-9387,-1435,62.189,0.904,600,20,0,2,0,1,0,0,0), +(@CGUID+1063,32820,0,1,1,0,0,-9387,-963,63.591,2.721,600,20,0,2,0,1,0,0,0), +(@CGUID+1064,32820,0,1,1,0,0,-9386,-1276,55.562,2.717,600,20,0,2,0,1,0,0,0), +(@CGUID+1065,32820,0,1,1,0,0,-9384,-924,63.488,2.606,600,20,0,2,0,1,0,0,0), +(@CGUID+1066,32820,0,1,1,0,0,-9384,-486,68.886,1.506,600,20,0,2,0,1,0,0,0), +(@CGUID+1067,32820,0,1,1,0,0,-9384,-230,64.15,0.899,600,20,0,2,0,1,0,0,0), +(@CGUID+1068,32820,0,1,1,0,0,-9384,-21,62.361,0.496,600,20,0,2,0,1,0,0,0), +(@CGUID+1069,32820,0,1,1,0,0,-9384,343.232,56.396,4.664,600,20,0,2,0,1,0,0,0), +(@CGUID+1070,32820,0,1,1,0,0,-9381.82,-117.429,58.7558,4.28438,600,20,0,2,0,1,0,0,0), +(@CGUID+1071,32820,0,1,1,0,0,-9381,-280,64.459,0,600,20,0,2,0,1,0,0,0), +(@CGUID+1072,32820,0,1,1,0,0,-9381,127.141,61.364,3.11,600,20,0,2,0,1,0,0,0), +(@CGUID+1073,32820,0,1,1,0,0,-9380,-70,64.521,4.555,600,20,0,2,0,1,0,0,0), +(@CGUID+1074,32820,0,1,1,0,0,-9380,29.617,61.183,2.488,600,20,0,2,0,1,0,0,0), +(@CGUID+1075,32820,0,1,1,0,0,-9379,-112,58.793,2.077,600,20,0,2,0,1,0,0,0), +(@CGUID+1076,32820,0,1,1,0,0,-9378,-1127,62.701,1.784,600,20,0,2,0,1,0,0,0), +(@CGUID+1077,32820,0,1,1,0,0,-9378,-216,63.953,0.897,600,20,0,2,0,1,0,0,0), +(@CGUID+1078,32820,0,1,1,0,0,-9376,-74,64.521,3.456,600,20,0,2,0,1,0,0,0), +(@CGUID+1079,32820,0,1,1,0,0,-9376,-67,69.202,1.075,600,20,0,2,0,1,0,0,0), +(@CGUID+1080,32820,0,1,1,0,0,-9376,-66,69.202,5.798,600,20,0,2,0,1,0,0,0), +(@CGUID+1081,32820,0,1,1,0,0,-9374,-1225,63.762,5.091,600,20,0,2,0,1,0,0,0), +(@CGUID+1082,32820,0,1,1,0,0,-9374,-66,69.202,3.57,600,20,0,2,0,1,0,0,0), +(@CGUID+1083,32820,0,1,1,0,0,-9373,-1210,63.557,3.059,600,20,0,2,0,1,0,0,0), +(@CGUID+1084,32820,0,1,1,0,0,-9373,134.102,61.836,1.385,600,20,0,2,0,1,0,0,0), +(@CGUID+1085,32820,0,1,1,0,0,-9373,147.602,61.685,4.386,600,20,0,2,0,1,0,0,0), +(@CGUID+1086,32820,0,1,1,0,0,-9371,-944,65.101,5.773,600,20,0,2,0,1,0,0,0), +(@CGUID+1087,32820,0,1,1,0,0,-9371,-70,69.202,0.374,600,20,0,2,0,1,0,0,0), +(@CGUID+1088,32820,0,1,1,0,0,-9371,-68,69.202,5.049,600,20,0,2,0,1,0,0,0), +(@CGUID+1089,32820,0,1,1,0,0,-9371,134.791,61.985,4.722,600,20,0,2,0,1,0,0,0), +(@CGUID+1090,32820,0,1,1,0,0,-9369,-1192,63.624,0.609,600,20,0,2,0,1,0,0,0), +(@CGUID+1091,32820,0,1,1,0,0,-9369,-68,69.202,2.963,600,20,0,2,0,1,0,0,0), +(@CGUID+1092,32820,0,1,1,0,0,-9367,-1168,65.193,5.53,600,20,0,2,0,1,0,0,0), +(@CGUID+1093,32820,0,1,1,0,0,-9366,-810,65.544,2.616,600,20,0,2,0,1,0,0,0), +(@CGUID+1094,32820,0,1,1,0,0,-9365,-596,69.178,4.296,600,20,0,2,0,1,0,0,0), +(@CGUID+1095,32820,0,1,1,0,0,-9364,11.024,61.815,2.506,600,20,0,2,0,1,0,0,0), +(@CGUID+1096,32820,0,1,1,0,0,-9361,-1405,63.575,4.344,600,20,0,2,0,1,0,0,0), +(@CGUID+1097,32820,0,1,1,0,0,-9361,-869,64.962,3.987,600,20,0,2,0,1,0,0,0), +(@CGUID+1098,32820,0,1,1,0,0,-9358,-926,65.732,2.164,600,20,0,2,0,1,0,0,0), +(@CGUID+1099,32820,0,1,1,0,0,-9358,-849,63.997,2.375,600,20,0,2,0,1,0,0,0), +(@CGUID+1100,32820,0,1,1,0,0,-9354,-1404,63.973,4.167,600,20,0,2,0,1,0,0,0), +(@CGUID+1101,32820,0,1,1,0,0,-9354,-1195,66.266,2.266,600,20,0,2,0,1,0,0,0), +(@CGUID+1102,32820,0,1,1,0,0,-9354,-186,65.198,0.372,600,20,0,2,0,1,0,0,0), +(@CGUID+1103,32820,0,1,1,0,0,-9353,-904,66.04,6.18,600,20,0,2,0,1,0,0,0), +(@CGUID+1104,32820,0,1,1,0,0,-9353,-843,64.12,6.075,600,20,0,2,0,1,0,0,0), +(@CGUID+1105,32820,0,1,1,0,0,-9352,-1164,65.353,2.384,600,20,0,2,0,1,0,0,0), +(@CGUID+1106,32820,0,1,1,0,0,-9352,-1160,65.543,5.245,600,20,0,2,0,1,0,0,0), +(@CGUID+1107,32820,0,1,1,0,0,-9352,-611,71.313,1.553,600,20,0,2,0,1,0,0,0), +(@CGUID+1108,32820,0,1,1,0,0,-9352,503.765,50.321,4.473,600,20,0,2,0,1,0,0,0), +(@CGUID+1109,32820,0,1,1,0,0,-9350,-1166,65.293,1.933,600,20,0,2,0,1,0,0,0), +(@CGUID+1110,32820,0,1,1,0,0,-9347,-1445,66.672,1.459,600,20,0,2,0,1,0,0,0), +(@CGUID+1111,32820,0,1,1,0,0,-9346,-748,68.344,0.262,600,20,0,2,0,1,0,0,0), +(@CGUID+1112,32820,0,1,1,0,0,-9346,44.308,61.314,2.717,600,20,0,2,0,1,0,0,0), +(@CGUID+1113,32820,0,1,1,0,0,-9346,477.343,52.18,5.385,600,20,0,2,0,1,0,0,0), +(@CGUID+1114,32820,0,1,1,0,0,-9341,165.021,61.641,1.096,600,20,0,2,0,1,0,0,0), +(@CGUID+1115,32820,0,1,1,0,0,-9340,-1120,67.994,5.368,600,20,0,2,0,1,0,0,0), +(@CGUID+1116,32820,0,1,1,0,0,-9340,-716,67.003,4.005,600,20,0,2,0,1,0,0,0), +(@CGUID+1117,32820,0,1,1,0,0,-9338,-1155,67.043,0.595,600,20,0,2,0,1,0,0,0), +(@CGUID+1118,32820,0,1,1,0,0,-9336,-1254,66.113,5.261,600,20,0,2,0,1,0,0,0), +(@CGUID+1119,32820,0,1,1,0,0,-9336,-436,67.543,3.382,600,20,0,2,0,1,0,0,0), +(@CGUID+1120,32820,0,1,1,0,0,-9334,-947,67.321,5.957,600,20,0,2,0,1,0,0,0), +(@CGUID+1121,32820,0,1,1,0,0,-9331,-1168,66.517,3.206,600,20,0,2,0,1,0,0,0), +(@CGUID+1122,32820,0,1,1,0,0,-9330,-1313,65.07,0.091,600,20,0,2,0,1,0,0,0), +(@CGUID+1123,32820,0,1,1,0,0,-9328,-1318,65.451,3.679,600,20,0,2,0,1,0,0,0), +(@CGUID+1124,32820,0,1,1,0,0,-9327,366.189,66.437,4.384,600,20,0,2,0,1,0,0,0), +(@CGUID+1125,32820,0,1,1,0,0,-9326,325.428,68.249,2.474,600,20,0,2,0,1,0,0,0), +(@CGUID+1126,32820,0,1,1,0,0,-9324.74,-106.101,64.0093,1.6099,600,20,0,2,0,1,0,0,0), +(@CGUID+1127,32820,0,1,1,0,0,-9323,-557,69.447,0.586,600,20,0,2,0,1,0,0,0), +(@CGUID+1128,32820,0,1,1,0,0,-9322,-288,69.495,4.24,600,20,0,2,0,1,0,0,0), +(@CGUID+1129,32820,0,1,1,0,0,-9321,-1189,68.549,4.907,600,20,0,2,0,1,0,0,0), +(@CGUID+1130,32820,0,1,1,0,0,-9321,-386,67.161,3.968,600,20,0,2,0,1,0,0,0), +(@CGUID+1131,32820,0,1,1,0,0,-9321,551.713,77.139,2.583,600,20,0,2,0,1,0,0,0), +(@CGUID+1132,32820,0,1,1,0,0,-9320,-272,69.786,1.371,600,20,0,2,0,1,0,0,0), +(@CGUID+1133,32820,0,1,1,0,0,-9319,397.511,71.732,0.497,600,20,0,2,0,1,0,0,0), +(@CGUID+1134,32820,0,1,1,0,0,-9317,-1183,68.226,5.533,600,20,0,2,0,1,0,0,0), +(@CGUID+1135,32820,0,1,1,0,0,-9316,-719,67.299,5.341,600,20,0,2,0,1,0,0,0), +(@CGUID+1136,32820,0,1,1,0,0,-9316,-520,68.63,2.477,600,20,0,2,0,1,0,0,0), +(@CGUID+1137,32820,0,1,1,0,0,-9316,-495,69.81,1.649,600,20,0,2,0,1,0,0,0), +(@CGUID+1138,32820,0,1,1,0,0,-9315,324.735,70.124,0.198,600,20,0,2,0,1,0,0,0), +(@CGUID+1139,32820,0,1,1,0,0,-9313,281.484,70.538,2.381,600,20,0,2,0,1,0,0,0), +(@CGUID+1140,32820,0,1,1,0,0,-9313,291.223,70.619,4.102,600,20,0,2,0,1,0,0,0), +(@CGUID+1141,32820,0,1,1,0,0,-9313,335.962,69.282,5.109,600,20,0,2,0,1,0,0,0), +(@CGUID+1142,32820,0,1,1,0,0,-9312,-432,68.237,2.052,600,20,0,2,0,1,0,0,0), +(@CGUID+1143,32820,0,1,1,0,0,-9312,-169,65.719,4.121,600,20,0,2,0,1,0,0,0), +(@CGUID+1144,32820,0,1,1,0,0,-9310,355.481,70.081,4.042,600,20,0,2,0,1,0,0,0), +(@CGUID+1145,32820,0,1,1,0,0,-9309,-376,71.145,3.612,600,20,0,2,0,1,0,0,0), +(@CGUID+1146,32820,0,1,1,0,0,-9309,64.142,76.196,0.616,600,20,0,2,0,1,0,0,0), +(@CGUID+1147,32820,0,1,1,0,0,-9309,325.857,70.749,0.067,600,20,0,2,0,1,0,0,0), +(@CGUID+1148,32820,0,1,1,0,0,-9309.12,283.676,70.5382,2.26234,600,20,0,2,0,1,0,0,0), +(@CGUID+1149,32820,0,1,1,0,0,-9308,454.329,77.708,2.505,600,20,0,2,0,1,0,0,0), +(@CGUID+1150,32820,0,1,1,0,0,-9307,-287,70.447,3.22,600,20,0,2,0,1,0,0,0), +(@CGUID+1151,32820,0,1,1,0,0,-9307,-109,66.028,0.785,600,20,0,2,0,1,0,0,0), +(@CGUID+1152,32820,0,1,1,0,0,-9307,363.144,71.563,1.509,600,20,0,2,0,1,0,0,0), +(@CGUID+1153,32820,0,1,1,0,0,-9306,-1303,68.616,0.837,600,20,0,2,0,1,0,0,0), +(@CGUID+1154,32820,0,1,1,0,0,-9304,-65,67.552,1.358,600,20,0,2,0,1,0,0,0), +(@CGUID+1155,32820,0,1,1,0,0,-9303,-27,69.883,4.012,600,20,0,2,0,1,0,0,0), +(@CGUID+1156,32820,0,1,1,0,0,-9302,-105,67.37,0.023,600,20,0,2,0,1,0,0,0), +(@CGUID+1157,32820,0,1,1,0,0,-9303.19,-292.231,70.63,3.22,600,20,0,2,0,1,0,0,0), +(@CGUID+1158,32820,0,1,1,0,0,-9299,406.242,74.38,1.508,600,20,0,2,0,1,0,0,0), +(@CGUID+1159,32820,0,1,1,0,0,-9299,653.552,131.166,4.433,600,20,0,2,0,1,0,0,0), +(@CGUID+1160,32820,0,1,1,0,0,-9299,672.389,131.976,2.461,600,20,0,2,0,1,0,0,0), +(@CGUID+1161,32820,0,1,1,0,0,-9298,625.19,130.763,5.201,600,20,0,2,0,1,0,0,0), +(@CGUID+1162,32820,0,1,1,0,0,-9297,386.209,75.43,1.276,600,20,0,2,0,1,0,0,0), +(@CGUID+1163,32820,0,1,1,0,0,-9297,394.508,76.329,6.133,600,20,0,2,0,1,0,0,0), +(@CGUID+1164,32820,0,1,1,0,0,-9297,702.451,131.679,4.268,600,20,0,2,0,1,0,0,0), +(@CGUID+1165,32820,0,1,1,0,0,-9296,474.446,79.65,4.031,600,20,0,2,0,1,0,0,0), +(@CGUID+1166,32820,0,1,1,0,0,1684.79,1424.86,136.907,2.39333,600,20,0,2,0,1,0,0,0), +(@CGUID+1167,32820,0,1,1,0,0,-9295,693.985,132.569,1.479,600,20,0,2,0,1,0,0,0), +(@CGUID+1168,32820,0,1,1,0,0,-9293,-6,69.154,2.281,600,20,0,2,0,1,0,0,0), +(@CGUID+1169,32820,0,1,1,0,0,-9293,707.857,132.644,4.331,600,20,0,2,0,1,0,0,0), +(@CGUID+1170,32820,0,1,1,0,0,-9292,-674,64.812,1.99,600,20,0,2,0,1,0,0,0), +(@CGUID+1171,32820,0,1,1,0,0,-9292,388.547,76.684,2.622,600,20,0,2,0,1,0,0,0), +(@CGUID+1172,32820,0,1,1,0,0,2151.18,1679.44,84.4418,5.45437,600,20,0,2,0,1,0,0,0), +(@CGUID+1173,32820,0,1,1,0,0,-9289,-1268,71.882,3.342,600,20,0,2,0,1,0,0,0), +(@CGUID+1174,32820,0,1,1,0,0,-9289,-1243,70.201,1.858,600,20,0,2,0,1,0,0,0), +(@CGUID+1175,32820,0,1,1,0,0,-9289,-820,69.269,1.641,600,20,0,2,0,1,0,0,0), +(@CGUID+1176,32820,0,1,1,0,0,-9289,466.884,80.109,2.618,600,20,0,2,0,1,0,0,0), +(@CGUID+1177,32820,0,1,1,0,0,1992.5,1552.64,78.9382,5.31272,600,20,0,2,0,1,0,0,0), +(@CGUID+1178,32820,0,1,1,0,0,-9287,461.562,79.709,5.307,600,20,0,2,0,1,0,0,0), +(@CGUID+1179,32820,0,1,1,0,0,-9285,350.418,75.529,4.967,600,20,0,2,0,1,0,0,0), +(@CGUID+1180,32820,0,1,1,0,0,-9285,375.705,76.131,6.197,600,20,0,2,0,1,0,0,0), +(@CGUID+1181,32820,0,1,1,0,0,-9285,446.773,79.723,3.549,600,20,0,2,0,1,0,0,0), +(@CGUID+1182,32820,0,1,1,0,0,-9284,97.42,68.968,0.59,600,20,0,2,0,1,0,0,0), +(@CGUID+1183,32820,0,1,1,0,0,-9282,-579,65.184,5.812,600,20,0,2,0,1,0,0,0), +(@CGUID+1184,32820,0,1,1,0,0,-9282,-198,69.361,5.542,600,20,0,2,0,1,0,0,0), +(@CGUID+1185,32820,0,1,1,0,0,-9282,269.266,70.933,0.031,600,20,0,2,0,1,0,0,0), +(@CGUID+1186,32820,0,1,1,0,0,-9281,-1310,72.626,0.047,600,20,0,2,0,1,0,0,0), +(@CGUID+1187,32820,0,1,1,0,0,-9281,-1251,72.546,0.254,600,20,0,2,0,1,0,0,0), +(@CGUID+1188,32820,0,1,1,0,0,-9281,662.627,131.965,6.151,600,20,0,2,0,1,0,0,0), +(@CGUID+1189,32820,0,1,1,0,0,-9280,-1270,72.882,4.849,600,20,0,2,0,1,0,0,0), +(@CGUID+1190,32820,0,1,1,0,0,-9279,-1183,71.143,4.553,600,20,0,2,0,1,0,0,0), +(@CGUID+1191,32820,0,1,1,0,0,-9279,454.254,80.569,5.573,600,20,0,2,0,1,0,0,0), +(@CGUID+1192,32820,0,1,1,0,0,-9278,-1253,73.114,0.458,600,20,0,2,0,1,0,0,0), +(@CGUID+1193,32820,0,1,1,0,0,-9278,-1160,68.225,2.435,600,20,0,2,0,1,0,0,0), +(@CGUID+1194,32820,0,1,1,0,0,-9277,-686,63.879,2.484,600,20,0,2,0,1,0,0,0), +(@CGUID+1195,32820,0,1,1,0,0,-9277,-585,65.184,4.929,600,20,0,2,0,1,0,0,0), +(@CGUID+1196,32820,0,1,1,0,0,-9273,23.978,71.351,0.267,600,20,0,2,0,1,0,0,0), +(@CGUID+1197,32820,0,1,1,0,0,-9271,398.325,79.749,4.007,600,20,0,2,0,1,0,0,0), +(@CGUID+1198,32820,0,1,1,0,0,-9270,-549,66.459,5.589,600,20,0,2,0,1,0,0,0), +(@CGUID+1199,32820,0,1,1,0,0,-9268,459.041,81.799,3.677,600,20,0,2,0,1,0,0,0), +(@CGUID+1200,32820,0,1,1,0,0,-9266.12,354.4,76.6919,2.2945,600,20,0,2,0,1,0,0,0), +(@CGUID+1201,32820,0,1,1,0,0,-9265,294.519,71.125,2.064,600,20,0,2,0,1,0,0,0), +(@CGUID+1202,32820,0,1,1,0,0,-9261,111.896,70.995,2.075,600,20,0,2,0,1,0,0,0), +(@CGUID+1203,32820,0,1,1,0,0,-9260,-1972,77.436,6.126,600,20,0,2,0,1,0,0,0), +(@CGUID+1204,32820,0,1,1,0,0,-9259,-21,73.236,1.091,600,20,0,2,0,1,0,0,0), +(@CGUID+1205,32820,0,1,1,0,0,-9258,-1987,77.061,1.831,600,20,0,2,0,1,0,0,0), +(@CGUID+1206,32820,0,1,1,0,0,-9256,-981,68.516,3.069,600,20,0,2,0,1,0,0,0), +(@CGUID+1207,32820,0,1,1,0,0,-9256,-712,62.856,4.28319,600,20,0,2,0,1,0,0,0), +(@CGUID+1208,32820,0,1,1,0,0,-9256,-708,63.098,0.942,600,20,0,2,0,1,0,0,0), +(@CGUID+1209,32820,0,1,1,0,0,-9255,-1242,73.934,4.28319,600,20,0,2,0,1,0,0,0), +(@CGUID+1210,32820,0,1,1,0,0,-9254,-574,66.763,5.249,600,20,0,2,0,1,0,0,0), +(@CGUID+1211,32820,0,1,1,0,0,-9254,129.862,70.735,1.889,600,20,0,2,0,1,0,0,0), +(@CGUID+1212,32820,0,1,1,0,0,-9253,368.858,77.524,1.918,600,20,0,2,0,1,0,0,0), +(@CGUID+1213,32820,0,1,1,0,0,-9253,437.779,85.565,2.492,600,20,0,2,0,1,0,0,0), +(@CGUID+1214,32820,0,1,1,0,0,-9252,-1241,74.04,2.156,600,20,0,2,0,1,0,0,0), +(@CGUID+1215,32820,0,1,1,0,0,-9252,451.583,87.269,1.573,600,20,0,2,0,1,0,0,0), +(@CGUID+1216,32820,0,1,1,0,0,-9250,126.236,71.395,3.382,600,20,0,2,0,1,0,0,0), +(@CGUID+1217,32820,0,1,1,0,0,-9250,131.177,70.459,5.234,600,20,0,2,0,1,0,0,0), +(@CGUID+1218,32820,0,1,1,0,0,-9249,382.408,80.118,4.058,600,20,0,2,0,1,0,0,0), +(@CGUID+1219,32820,0,1,1,0,0,-9247,-577,66.772,4.605,600,20,0,2,0,1,0,0,0), +(@CGUID+1220,32820,0,1,1,0,0,-9246,-853,69.761,0.044,600,20,0,2,0,1,0,0,0), +(@CGUID+1221,32820,0,1,1,0,0,-9246,52.701,73.837,2.13,600,20,0,2,0,1,0,0,0), +(@CGUID+1222,32820,0,1,1,0,0,-9245,-713,63.039,1.92,600,20,0,2,0,1,0,0,0), +(@CGUID+1223,32820,0,1,1,0,0,-9245,48.974,73.712,1.003,600,20,0,2,0,1,0,0,0), +(@CGUID+1224,32820,0,1,1,0,0,-9245,275.584,72.016,2.785,600,20,0,2,0,1,0,0,0), +(@CGUID+1225,32820,0,1,1,0,0,-9244,-2261,63.933,4.036,600,20,0,2,0,1,0,0,0), +(@CGUID+1226,32820,0,1,1,0,0,-9244,238.294,71.189,2.089,600,20,0,2,0,1,0,0,0), +(@CGUID+1227,32820,0,1,1,0,0,-9242,-1161,63.476,1.693,600,20,0,2,0,1,0,0,0), +(@CGUID+1228,32820,0,1,1,0,0,-9239,-40,71.632,3.505,600,20,0,2,0,1,0,0,0), +(@CGUID+1229,32820,0,1,1,0,0,-9238,244.909,71.441,3.295,600,20,0,2,0,1,0,0,0), +(@CGUID+1230,32820,0,1,1,0,0,-9236,-1226,72.69,0.837,600,20,0,2,0,1,0,0,0), +(@CGUID+1231,32820,0,1,1,0,0,-9236,-67,73.709,4.015,600,20,0,2,0,1,0,0,0), +(@CGUID+1232,32820,0,1,1,0,0,-9234,265.97,72.531,2.269,600,20,0,2,0,1,0,0,0), +(@CGUID+1233,32820,0,1,1,0,0,-9232,361.053,73.698,0,600,20,0,2,0,1,0,0,0), +(@CGUID+1234,32820,0,1,1,0,0,-9230,-1199,67.716,1.134,600,20,0,2,0,1,0,0,0), +(@CGUID+1235,32820,0,1,1,0,0,-9230,46.47,74.578,2.233,600,20,0,2,0,1,0,0,0), +(@CGUID+1236,32820,0,1,1,0,0,-9229,67.144,75.609,5.941,600,20,0,2,0,1,0,0,0), +(@CGUID+1237,32820,0,1,1,0,0,-9228,-70,74.946,2.101,600,20,0,2,0,1,0,0,0), +(@CGUID+1238,32820,0,1,1,0,0,-9226,-1031,69.881,4.234,600,20,0,2,0,1,0,0,0), +(@CGUID+1239,32820,0,1,1,0,0,-9225,-62,74.978,3.717,600,20,0,2,0,1,0,0,0), +(@CGUID+1240,32820,0,1,1,0,0,-9225,9.06,76.471,3.721,600,20,0,2,0,1,0,0,0), +(@CGUID+1241,32820,0,1,1,0,0,-9224,-50,73.483,5.111,600,20,0,2,0,1,0,0,0), +(@CGUID+1242,32820,0,1,1,0,0,-9224,-40,73.401,4.839,600,20,0,2,0,1,0,0,0), +(@CGUID+1243,32820,0,1,1,0,0,-9223,-630,61.972,5.414,600,20,0,2,0,1,0,0,0), +(@CGUID+1244,32820,0,1,1,0,0,-9222,54.203,75.669,1.742,600,20,0,2,0,1,0,0,0), +(@CGUID+1245,32820,0,1,1,0,0,-9221,52.523,75.601,0,600,20,0,2,0,1,0,0,0), +(@CGUID+1246,32820,0,1,1,0,0,-9219,-1243,76.007,3.363,600,20,0,2,0,1,0,0,0), +(@CGUID+1247,32820,0,1,1,0,0,-9218,-1229,72.683,1.85,600,20,0,2,0,1,0,0,0), +(@CGUID+1248,32820,0,1,1,0,0,-9217,427.754,89.692,0.175,600,20,0,2,0,1,0,0,0), +(@CGUID+1249,32820,0,1,1,0,0,-9215,-39,75.276,0.921,600,20,0,2,0,1,0,0,0), +(@CGUID+1250,32820,0,1,1,0,0,-9214,-48,74.123,1.782,600,20,0,2,0,1,0,0,0), +(@CGUID+1251,32820,0,1,1,0,0,-9213,302.359,74.24,2.633,600,20,0,2,0,1,0,0,0), +(@CGUID+1252,32820,0,1,1,0,0,-9213,426.235,88.855,0.441,600,20,0,2,0,1,0,0,0), +(@CGUID+1253,32820,0,1,1,0,0,-9211,146.711,72.205,4.103,600,20,0,2,0,1,0,0,0), +(@CGUID+1254,32820,0,1,1,0,0,-9211,243.926,72.691,0.525,600,20,0,2,0,1,0,0,0), +(@CGUID+1255,32820,0,1,1,0,0,-9210,54.903,76.405,4.504,600,20,0,2,0,1,0,0,0), +(@CGUID+1256,32820,0,1,1,0,0,-9209,414.569,88.298,3.841,600,20,0,2,0,1,0,0,0), +(@CGUID+1257,32820,0,1,1,0,0,-9208,31.073,74.841,2.235,600,20,0,2,0,1,0,0,0), +(@CGUID+1258,32820,0,1,1,0,0,-9203,419.836,89.486,4.915,600,20,0,2,0,1,0,0,0), +(@CGUID+1259,32820,0,1,1,0,0,-9202.86,204.19,71.1686,3.47368,600,20,1,2,0,1,0,0,0), +(@CGUID+1260,32820,0,1,1,0,0,-9199,63.807,77.537,3.797,600,20,0,2,0,1,0,0,0), +(@CGUID+1261,32820,0,1,1,0,0,-9196,-1113,71.647,4.988,600,20,0,2,0,1,0,0,0), +(@CGUID+1262,32820,0,1,1,0,0,-9196,-846,70.045,2.073,600,20,0,2,0,1,0,0,0), +(@CGUID+1263,32820,0,1,1,0,0,-9195,-1215,68.435,1.082,600,20,0,2,0,1,0,0,0), +(@CGUID+1264,32820,0,1,1,0,0,-9195,-1003,70.54,3.322,600,20,0,2,0,1,0,0,0), +(@CGUID+1265,32820,0,1,1,0,0,-9190,356.967,76.234,5.988,600,20,0,2,0,1,0,0,0), +(@CGUID+1266,32820,0,1,1,0,0,-9189,-2301,90.541,3.807,600,20,0,2,0,1,0,0,0), +(@CGUID+1267,32820,0,1,1,0,0,-9185,-643,65.545,5.197,600,20,0,2,0,1,0,0,0), +(@CGUID+1268,32820,0,1,1,0,0,-9185,117.698,74.854,4.701,600,20,0,2,0,1,0,0,0), +(@CGUID+1269,32820,0,1,1,0,0,-9182,412.594,89.109,1.428,600,20,0,2,0,1,0,0,0), +(@CGUID+1270,32820,0,1,1,0,0,-9177,418.347,91.326,0.86,600,20,0,2,0,1,0,0,0), +(@CGUID+1271,32820,0,1,1,0,0,-9176,0.704,80.476,5.794,600,20,0,2,0,1,0,0,0), +(@CGUID+1272,32820,0,1,1,0,0,-9175,-1125,71.073,4.476,600,20,0,2,0,1,0,0,0), +(@CGUID+1273,32820,0,1,1,0,0,-9175,44.244,78.296,5.373,600,20,0,2,0,1,0,0,0), +(@CGUID+1274,32820,0,1,1,0,0,-9173.18,317.426,80.4488,0.5183,600,20,1,2,0,1,0,0,0), +(@CGUID+1275,32820,0,1,1,0,0,-9172,-1262,76.002,4.264,600,20,0,2,0,1,0,0,0), +(@CGUID+1276,32820,0,1,1,0,0,-9172,-1251,75.127,2.195,600,20,0,2,0,1,0,0,0), +(@CGUID+1277,32820,0,1,1,0,0,-9164.27,16.4855,78.7518,2.443,600,20,0,2,0,1,0,0,0), +(@CGUID+1278,32820,0,1,1,0,0,-9163,86.072,76.823,4.657,600,20,0,2,0,1,0,0,0), +(@CGUID+1279,32820,0,1,1,0,0,-9162,84.631,77.076,1.632,600,20,0,2,0,1,0,0,0), +(@CGUID+1280,32820,0,1,1,0,0,-9159,-591,59.162,2.716,600,20,0,2,0,1,0,0,0), +(@CGUID+1281,32820,0,1,1,0,0,-9159,15.513,78.548,0.996,600,20,0,2,0,1,0,0,0), +(@CGUID+1282,32820,0,1,1,0,0,-9155,-1277,77.293,4.105,600,20,0,2,0,1,0,0,0), +(@CGUID+1283,32820,0,1,1,0,0,-9154,-962,71.24,4.629,600,20,0,2,0,1,0,0,0), +(@CGUID+1284,32820,0,1,1,0,0,-9150,-1243,74.013,1.412,600,20,0,2,0,1,0,0,0), +(@CGUID+1285,32820,0,1,1,0,0,-9144,-1065,71.558,1.585,600,20,0,2,0,1,0,0,0), +(@CGUID+1286,32820,0,1,1,0,0,-9136,-1148,70.616,4.383,600,20,0,2,0,1,0,0,0), +(@CGUID+1287,32820,0,1,1,0,0,-9135,-818,70.427,2.753,600,20,0,2,0,1,0,0,0), +(@CGUID+1288,32820,0,1,1,0,0,-9132,-596,57.446,4.187,600,20,0,2,0,1,0,0,0), +(@CGUID+1289,32820,0,1,1,0,0,-9130,-984,76.181,2.059,600,20,0,2,0,1,0,0,0), +(@CGUID+1290,32820,0,1,1,0,0,-9122,-300,73.442,5.435,600,20,0,2,0,1,0,0,0), +(@CGUID+1291,32820,0,1,1,0,0,-9121,-386,73.345,0.785,600,20,0,2,0,1,0,0,0), +(@CGUID+1292,32820,0,1,1,0,0,-9121,-355,73.511,0.882,600,20,0,2,0,1,0,0,0), +(@CGUID+1293,32820,0,1,1,0,0,-9118,-1080,72.304,2.059,600,20,0,2,0,1,0,0,0), +(@CGUID+1294,32820,0,1,1,0,0,-9118,-1017,72.287,0.898,600,20,0,2,0,1,0,0,0), +(@CGUID+1295,32820,0,1,1,0,0,-9110,-257,75.005,1.177,600,20,0,2,0,1,0,0,0), +(@CGUID+1296,32820,0,1,1,0,0,-9107,-1217,65.194,0.54,600,20,0,2,0,1,0,0,0), +(@CGUID+1297,32820,0,1,1,0,0,-9100,-564,61.503,5.695,600,20,0,2,0,1,0,0,0), +(@CGUID+1298,32820,0,1,1,0,0,-9098,-1101,73.715,2.16,600,20,0,2,0,1,0,0,0), +(@CGUID+1299,32820,0,1,1,0,0,-9095,-12,91.408,3.817,600,20,0,2,0,1,0,0,0), +(@CGUID+1300,32820,0,1,1,0,0,-9092,-951,68.852,6.09,600,20,0,2,0,1,0,0,0), +(@CGUID+1301,32820,0,1,1,0,0,-9092,-238,74.343,0.921,600,20,0,2,0,1,0,0,0), +(@CGUID+1302,32820,0,1,1,0,0,-9091,-23,90.156,3.576,600,20,0,2,0,1,0,0,0), +(@CGUID+1303,32820,0,1,1,0,0,-9090,-417,74.617,0.975,600,20,0,2,0,1,0,0,0), +(@CGUID+1304,32820,0,1,1,0,0,-9087,-242,74.122,2.901,600,20,0,2,0,1,0,0,0), +(@CGUID+1305,32820,0,1,1,0,0,-9087,-31,89.033,2.37,600,20,0,2,0,1,0,0,0), +(@CGUID+1306,32820,0,1,1,0,0,-9085,-577,62.104,1.69,600,20,0,2,0,1,0,0,0), +(@CGUID+1307,32820,0,1,1,0,0,-9085,-556,60.266,5.407,600,20,0,2,0,1,0,0,0), +(@CGUID+1308,32820,0,1,1,0,0,-9085,-281,73.99,4.262,600,20,0,2,0,1,0,0,0), +(@CGUID+1309,32820,0,1,1,0,0,-9081,-180,74.765,4.778,600,20,0,2,0,1,0,0,0), +(@CGUID+1310,32820,0,1,1,0,0,-9079,-1050,72.226,1.654,600,20,0,2,0,1,0,0,0), +(@CGUID+1311,32820,0,1,1,0,0,-9079,-331,73.452,2.367,600,20,0,2,0,1,0,0,0), +(@CGUID+1312,32820,0,1,1,0,0,-9079.87,442.777,93.2956,5.26296,600,20,0,2,0,1,0,0,0), +(@CGUID+1313,32820,0,1,1,0,0,-9076,-1218,66.36,3.293,600,20,0,2,0,1,0,0,0), +(@CGUID+1314,32820,0,1,1,0,0,-9072,-348,73.45,6.175,600,20,0,2,0,1,0,0,0), +(@CGUID+1315,32820,0,1,1,0,0,-9059.67,417.093,93.2961,2.26746,600,20,0,2,0,1,0,0,0), +(@CGUID+1316,32820,0,1,1,0,0,-9065,-547,58.235,1.246,600,20,0,2,0,1,0,0,0), +(@CGUID+1317,32820,0,1,1,0,0,-9065,-312,73.452,2.842,600,20,0,2,0,1,0,0,0), +(@CGUID+1318,32820,0,1,1,0,0,-9064,-48,88.244,1.519,600,20,0,2,0,1,0,0,0), +(@CGUID+1319,32820,0,1,1,0,0,-9063,-39,87.959,4.575,600,20,0,2,0,1,0,0,0), +(@CGUID+1320,32820,0,1,1,0,0,-9060,148.566,115.222,1.606,600,20,0,2,0,1,0,0,0), +(@CGUID+1321,32820,0,1,1,0,0,-9093.46,425.22,92.1354,4.12178,600,20,0,2,0,1,0,0,0), +(@CGUID+1322,32820,0,1,1,0,0,-9059,-458,72.486,1.305,600,20,0,2,0,1,0,0,0), +(@CGUID+1323,32820,0,1,1,0,0,-9056,-459,72.524,1.373,600,20,0,2,0,1,0,0,0), +(@CGUID+1324,32820,0,1,1,0,0,-9056,152.629,115.116,3.159,600,20,0,2,0,1,0,0,0), +(@CGUID+1325,32820,0,1,1,0,0,-9053,-95,88.19,1.118,600,20,0,2,0,1,0,0,0), +(@CGUID+1326,32820,0,1,1,0,0,-9052,-621,53.577,4.241,600,20,0,2,0,1,0,0,0), +(@CGUID+1327,32820,0,1,1,0,0,-9052,-458,72.651,1.578,600,20,0,2,0,1,0,0,0), +(@CGUID+1328,32820,0,1,1,0,0,-9045,-553,55.85,6.107,600,20,0,2,0,1,0,0,0), +(@CGUID+1329,32820,0,1,1,0,0,-9045,-264,74.078,3.496,600,20,0,2,0,1,0,0,0), +(@CGUID+1330,32820,0,1,1,0,0,-9044,-45,88.36,2.96,600,20,0,2,0,1,0,0,0), +(@CGUID+1331,32820,0,1,1,0,0,-9041,-324,73.702,0.899,600,20,0,2,0,1,0,0,0), +(@CGUID+1332,32820,0,1,1,0,0,-9040,-1105,71.361,4.023,600,20,0,2,0,1,0,0,0), +(@CGUID+1333,32820,0,1,1,0,0,-9040,-607,53.241,1.478,600,20,0,2,0,1,0,0,0), +(@CGUID+1334,32820,0,1,1,0,0,-9036,-265,73.556,5.196,600,20,0,2,0,1,0,0,0), +(@CGUID+1335,32820,0,1,1,0,0,-9034,-368,75.484,4.205,600,20,0,2,0,1,0,0,0), +(@CGUID+1336,32820,0,1,1,0,0,-9031,10.083,87.884,4.486,600,20,0,2,0,1,0,0,0), +(@CGUID+1337,32820,0,1,1,0,0,-9029,-422,69.392,3.737,600,20,0,2,0,1,0,0,0), +(@CGUID+1338,32820,0,1,1,0,0,-9016,-149,83.221,5.737,600,20,0,2,0,1,0,0,0), +(@CGUID+1339,32820,0,1,1,0,0,-9013,-845,70.453,3.003,600,20,0,2,0,1,0,0,0), +(@CGUID+1340,32820,0,1,1,0,0,-9012,-981,69.494,5.286,600,20,0,2,0,1,0,0,0), +(@CGUID+1341,32820,0,1,1,0,0,-9012,-409,70.771,3.896,600,20,0,2,0,1,0,0,0), +(@CGUID+1342,32820,0,1,1,0,0,-9012,-376,74.271,5.453,600,20,0,2,0,1,0,0,0), +(@CGUID+1343,32820,0,1,1,0,0,-9012,-362,75.378,1.618,600,20,0,2,0,1,0,0,0), +(@CGUID+1344,32820,0,1,1,0,0,-9011,-1231,74.086,0.222,600,20,0,2,0,1,0,0,0), +(@CGUID+1345,32820,0,1,1,0,0,-9011,-867,69.49,1.788,600,20,0,2,0,1,0,0,0), +(@CGUID+1346,32820,0,1,1,0,0,-9003,-148,80.381,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1347,32820,0,1,1,0,0,-9001,-826,69.884,2,600,20,0,2,0,1,0,0,0), +(@CGUID+1348,32820,0,1,1,0,0,-9001,-404,71.292,6.259,600,20,0,2,0,1,0,0,0), +(@CGUID+1349,32820,0,1,1,0,0,-9000,-414,69.884,3.921,600,20,0,2,0,1,0,0,0), +(@CGUID+1350,32820,0,1,1,0,0,-8996,-818,69.715,2.023,600,20,0,2,0,1,0,0,0), +(@CGUID+1351,32820,0,1,1,0,0,-8914.36,-134.589,80.4957,2.23039,600,20,0,2,0,1,0,0,0), +(@CGUID+1352,32820,0,1,1,0,0,-8990,-771,73.386,5.568,600,20,0,2,0,1,0,0,0), +(@CGUID+1353,32820,0,1,1,0,0,-8989,-1174,65.43,1.623,600,20,0,2,0,1,0,0,0), +(@CGUID+1354,32820,0,1,1,0,0,-8987,-855,69.49,4.981,600,20,0,2,0,1,0,0,0), +(@CGUID+1355,32820,0,1,1,0,0,-8984,-1199,71.807,1.113,600,20,0,2,0,1,0,0,0), +(@CGUID+1356,32820,0,1,1,0,0,-8984,-1170,65.087,2.688,600,20,0,2,0,1,0,0,0), +(@CGUID+1357,32820,0,1,1,0,0,-8980,-208,73.729,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1358,32820,0,1,1,0,0,-8978,-339,73.712,5.346,600,20,0,2,0,1,0,0,0), +(@CGUID+1359,32820,0,1,1,0,0,-8974,-57,91.582,1.171,600,20,0,2,0,1,0,0,0), +(@CGUID+1360,32820,0,1,1,0,0,-8971,-359,73.401,2.806,600,20,0,2,0,1,0,0,0), +(@CGUID+1361,32820,0,1,1,0,0,-8967,-203,75.644,2.318,600,20,0,2,0,1,0,0,0), +(@CGUID+1362,32820,0,1,1,0,0,-8962,-406,68.404,3.042,600,20,0,2,0,1,0,0,0), +(@CGUID+1363,32820,0,1,1,0,0,-8961,-447,66.772,4.475,600,20,0,2,0,1,0,0,0), +(@CGUID+1364,32820,0,1,1,0,0,-8960,-807,69.773,1.665,600,20,0,2,0,1,0,0,0), +(@CGUID+1365,32820,0,1,1,0,0,-8960,-228,77.593,4.217,600,20,0,2,0,1,0,0,0), +(@CGUID+1366,32820,0,1,1,0,0,-8959,-792,69.974,1.393,600,20,0,2,0,1,0,0,0), +(@CGUID+1367,32820,0,1,1,0,0,-8956,-43,91.414,1.311,600,20,0,2,0,1,0,0,0), +(@CGUID+1368,32820,0,1,1,0,0,-8955,-373,72.205,2.905,600,20,0,2,0,1,0,0,0), +(@CGUID+1369,32820,0,1,1,0,0,-8952,-1145,66.507,6.157,600,20,0,2,0,1,0,0,0), +(@CGUID+1370,32820,0,1,1,0,0,-8952,-404,68.705,3.014,600,20,0,2,0,1,0,0,0), +(@CGUID+1371,32820,0,1,1,0,0,-8952,536.444,96.367,4.248,600,20,0,2,0,1,0,0,0), +(@CGUID+1372,32820,0,1,1,0,0,-8951,-790,69.117,0.205,600,20,0,2,0,1,0,0,0), +(@CGUID+1373,32820,0,1,1,0,0,-8951,-418,65.92,0.187,600,20,0,2,0,1,0,0,0), +(@CGUID+1374,32820,0,1,1,0,0,-8949,-78,89.266,2.86,600,20,0,2,0,1,0,0,0), +(@CGUID+1375,32820,0,1,1,0,0,-8948,-773,68.77,4.14,600,20,0,2,0,1,0,0,0), +(@CGUID+1376,32820,0,1,1,0,0,-8937,-378,71.14,1.232,600,20,0,2,0,1,0,0,0), +(@CGUID+1377,32820,0,1,1,0,0,-8937,518.506,96.366,3.598,600,20,0,2,0,1,0,0,0), +(@CGUID+1378,32820,0,1,1,0,0,-8935,-52,90.24,0.223,600,20,0,2,0,1,0,0,0), +(@CGUID+1379,32820,0,1,1,0,0,-8934,-167,80.842,5.977,600,20,0,2,0,1,0,0,0), +(@CGUID+1380,32820,0,1,1,0,0,-8932.9,-136.332,83.1518,1.6083,600,20,0,2,0,1,0,0,0), +(@CGUID+1381,32820,0,1,1,0,0,-8931,78.547,154.017,5.008,600,20,0,2,0,1,0,0,0), +(@CGUID+1382,32820,0,1,1,0,0,-8929,-734,70.519,5.786,600,20,0,2,0,1,0,0,0), +(@CGUID+1383,32820,0,1,1,0,0,-8929,-63,89.939,5.168,600,20,0,2,0,1,0,0,0), +(@CGUID+1384,32820,0,1,1,0,0,-8928,-202,80.682,2.204,600,20,0,2,0,1,0,0,0), +(@CGUID+1385,32820,0,1,1,0,0,-8927,-196,80.771,2.553,600,20,0,2,0,1,0,0,0), +(@CGUID+1386,32820,0,1,1,0,0,-8924,-438,67.911,0.277,600,20,0,2,0,1,0,0,0), +(@CGUID+1387,32820,0,1,1,0,0,-8947.97,-182.604,79.8355,5.84689,600,20,0,2,0,1,0,0,0), +(@CGUID+1388,32820,0,1,1,0,0,-8921,-1201,74.587,3.28319,600,20,0,2,0,1,0,0,0), +(@CGUID+1389,32820,0,1,1,0,0,-8918,-403,67.755,0.63,600,20,0,2,0,1,0,0,0), +(@CGUID+1390,32820,0,1,1,0,0,-8918,-208,82.309,6.282,600,20,0,2,0,1,0,0,0), +(@CGUID+1391,32820,0,1,1,0,0,-8917,-36,91.844,0.749,600,20,0,2,0,1,0,0,0), +(@CGUID+1392,32820,0,1,1,0,0,-8915,-438,69.636,1.035,600,20,0,2,0,1,0,0,0), +(@CGUID+1393,32820,0,1,1,0,0,-8915,-215,82.3,1.204,600,20,0,2,0,1,0,0,0), +(@CGUID+1394,32820,0,1,1,0,0,-8914,-810,68.928,3.611,600,20,0,2,0,1,0,0,0), +(@CGUID+1395,32820,0,1,1,0,0,-8910,-278,78.267,4.534,600,20,0,2,0,1,0,0,0), +(@CGUID+1396,32820,0,1,1,0,0,-8910,-262,79.214,4.587,600,20,0,2,0,1,0,0,0), +(@CGUID+1397,32820,0,1,1,0,0,-8910,-105,81.848,4.411,600,20,0,2,0,1,0,0,0), +(@CGUID+1398,32820,0,1,1,0,0,-8908.13,-108.89,81.8481,4.28817,600,20,0,2,0,1,0,0,0), +(@CGUID+1399,32820,0,1,1,0,0,-8906,-891,73.501,3.254,600,20,0,2,0,1,0,0,0), +(@CGUID+1400,32820,0,1,1,0,0,-8904,792.487,87.501,2.376,600,20,0,2,0,1,0,0,0), +(@CGUID+1401,32820,0,1,1,0,0,-8903,-286,77.597,3.899,600,20,0,2,0,1,0,0,0), +(@CGUID+1402,32820,0,1,1,0,0,-8903,-163,82.022,2.042,600,20,0,2,0,1,0,0,0), +(@CGUID+1403,32820,0,1,1,0,0,-8902,-182,113.24,0.873,600,20,0,2,0,1,0,0,0), +(@CGUID+1404,32820,0,1,1,0,0,-8901.56,-112.697,81.8482,3.18871,600,20,0,2,0,1,0,0,0), +(@CGUID+1405,32820,0,1,1,0,0,-8901,-362,71.707,5.729,600,20,0,2,0,1,0,0,0), +(@CGUID+1406,32820,0,1,1,0,0,-8901,-80,84.384,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1407,32820,0,1,1,0,0,-8898,-120,82.016,3.315,600,20,0,2,0,1,0,0,0), +(@CGUID+1408,32820,0,1,1,0,0,-8898,-19,92.553,1.283,600,20,0,2,0,1,0,0,0), +(@CGUID+1409,32820,0,1,1,0,0,-8897.47,-115.457,81.838,3.76358,600,20,0,2,0,1,0,0,0), +(@CGUID+1410,32820,0,1,1,0,0,-8896,-769,69.566,5.637,600,20,0,2,0,1,0,0,0), +(@CGUID+1411,32820,0,1,1,0,0,-8895,575.431,92.564,5.253,600,20,0,2,0,1,0,0,0), +(@CGUID+1412,32820,0,1,1,0,0,-8893,-1205,76.779,4.969,600,20,0,2,0,1,0,0,0), +(@CGUID+1413,32820,0,1,1,0,0,-8892,-47,86.954,4.215,600,20,0,2,0,1,0,0,0), +(@CGUID+1414,32820,0,1,1,0,0,-8890,-919,75.5,2.696,600,20,0,2,0,1,0,0,0), +(@CGUID+1415,32820,0,1,1,0,0,-8890,639.99,99.522,0.474,600,20,0,2,0,1,0,0,0), +(@CGUID+1416,32820,0,1,1,0,0,-8889,-755,69.426,1.799,600,20,0,2,0,1,0,0,0), +(@CGUID+1417,32820,0,1,1,0,0,-8889,-393,67.44,2.896,600,20,0,2,0,1,0,0,0), +(@CGUID+1418,32820,0,1,1,0,0,-8888,566.202,92.534,2.234,600,20,0,2,0,1,0,0,0), +(@CGUID+1419,32820,0,1,1,0,0,-8887,-779,69.713,0.855,600,20,0,2,0,1,0,0,0), +(@CGUID+1420,32820,0,1,1,0,0,-8887,635.868,99.606,0.765,600,20,0,2,0,1,0,0,0), +(@CGUID+1421,32820,0,1,1,0,0,-8886,-1023,72.819,4.919,600,20,0,2,0,1,0,0,0), +(@CGUID+1422,32820,0,1,1,0,0,-8885,6.25,94.517,4.712,600,20,0,2,0,1,0,0,0), +(@CGUID+1423,32820,0,1,1,0,0,-8885,752.073,96.195,5.432,600,20,0,2,0,1,0,0,0), +(@CGUID+1424,32820,0,1,1,0,0,-8883,-60,85.681,5.152,600,20,0,2,0,1,0,0,0), +(@CGUID+1425,32820,0,1,1,0,0,-8883,-33,88.557,5.21,600,20,0,2,0,1,0,0,0), +(@CGUID+1426,32820,0,1,1,0,0,-8882,6.896,93.946,0.412,600,20,0,2,0,1,0,0,0), +(@CGUID+1427,32820,0,1,1,0,0,-8879,-955,75.224,6.101,600,20,0,2,0,1,0,0,0), +(@CGUID+1428,32820,0,1,1,0,0,-8877,-1107,75.2,1.914,600,20,0,2,0,1,0,0,0), +(@CGUID+1429,32820,0,1,1,0,0,-8877,-1083,74.682,1.344,600,20,0,2,0,1,0,0,0), +(@CGUID+1430,32820,0,1,1,0,0,-8876,-186,81.938,1.482,600,20,0,2,0,1,0,0,0), +(@CGUID+1431,32820,0,1,1,0,0,-8875,13.938,92.975,1.121,600,20,0,2,0,1,0,0,0), +(@CGUID+1432,32820,0,1,1,0,0,-8874,-923,75.937,2.913,600,20,0,2,0,1,0,0,0), +(@CGUID+1433,32820,0,1,1,0,0,-8874,-78,83.112,5.152,600,20,0,2,0,1,0,0,0), +(@CGUID+1434,32820,0,1,1,0,0,-8869,-374,71.815,5.453,600,20,0,2,0,1,0,0,0), +(@CGUID+1435,32820,0,1,1,0,0,-8842.51,-270.136,81.1989,1.18472,600,20,0,2,0,1,0,0,0), +(@CGUID+1436,32820,0,1,1,0,0,-8865,-217,80.956,4.368,600,20,0,2,0,1,0,0,0), +(@CGUID+1437,32820,0,1,1,0,0,-8865,762.931,96.889,2.191,600,20,0,2,0,1,0,0,0), +(@CGUID+1438,32820,0,1,1,0,0,-8860,-813,70.458,0.663,600,20,0,2,0,1,0,0,0), +(@CGUID+1439,32820,0,1,1,0,0,-8857,937.947,102.143,0.53,600,20,0,2,0,1,0,0,0), +(@CGUID+1440,32820,0,1,1,0,0,-8856,-81,84.245,0.97,600,20,0,2,0,1,0,0,0), +(@CGUID+1441,32820,0,1,1,0,0,-8855,-1139,76.615,1.998,600,20,0,2,0,1,0,0,0), +(@CGUID+1442,32820,0,1,1,0,0,-8854,-938,76.242,4.371,600,20,0,2,0,1,0,0,0), +(@CGUID+1443,32820,0,1,1,0,0,-8854,-823,71.878,4.805,600,20,0,2,0,1,0,0,0), +(@CGUID+1444,32820,0,1,1,0,0,-8854,-192,81.933,3.32,600,20,0,2,0,1,0,0,0), +(@CGUID+1445,32820,0,1,1,0,0,-8854,541.299,105.898,4.976,600,20,0,2,0,1,0,0,0), +(@CGUID+1446,32820,0,1,1,0,0,-8853,-835,73.025,1.413,600,20,0,2,0,1,0,0,0), +(@CGUID+1447,32820,0,1,1,0,0,-8853,-776,70.516,5.55,600,20,0,2,0,1,0,0,0), +(@CGUID+1448,32820,0,1,1,0,0,-8851,-919,75.995,1.985,600,20,0,2,0,1,0,0,0), +(@CGUID+1449,32820,0,1,1,0,0,-8851,-223,81.562,4.969,600,20,0,2,0,1,0,0,0), +(@CGUID+1450,32820,0,1,1,0,0,-8851,-188,89.313,2.37,600,20,0,2,0,1,0,0,0), +(@CGUID+1451,32820,0,1,1,0,0,-8850,-287,78.741,0,600,20,0,2,0,1,0,0,0), +(@CGUID+1452,32820,0,1,1,0,0,-8849,-918,76.015,2.365,600,20,0,2,0,1,0,0,0), +(@CGUID+1453,32820,0,1,1,0,0,-8848,-812,70.712,4.206,600,20,0,2,0,1,0,0,0), +(@CGUID+1454,32820,0,1,1,0,0,-8848,-105,81.92,3.975,600,20,0,2,0,1,0,0,0), +(@CGUID+1455,32820,0,1,1,0,0,-8844,-1125,76.107,5.95,600,20,0,2,0,1,0,0,0), +(@CGUID+1456,32820,0,1,1,0,0,-8843,-981,74.577,1.568,600,20,0,2,0,1,0,0,0), +(@CGUID+1457,32820,0,1,1,0,0,-8838,-854,74.684,0.639,600,20,0,2,0,1,0,0,0), +(@CGUID+1458,32820,0,1,1,0,0,-8837,-999,74.077,6.018,600,20,0,2,0,1,0,0,0), +(@CGUID+1459,32820,0,1,1,0,0,-8835,-61,86.624,0.924,600,20,0,2,0,1,0,0,0), +(@CGUID+1460,32820,0,1,1,0,0,-8835,723.541,97.881,1.986,600,20,0,2,0,1,0,0,0), +(@CGUID+1461,32820,0,1,1,0,0,-8834,-881,74.428,2.025,600,20,0,2,0,1,0,0,0), +(@CGUID+1462,32820,0,1,1,0,0,-8833,542.104,96.942,2.753,600,20,1,2,0,1,0,0,0), +(@CGUID+1463,32820,0,1,1,0,0,-8828,-867,74.593,3.229,600,20,0,2,0,1,0,0,0), +(@CGUID+1464,32820,0,1,1,0,0,-8827,904.341,98.139,4.034,600,20,0,2,0,1,0,0,0), +(@CGUID+1465,32820,0,1,1,0,0,-8825,613.922,94.463,0.89,600,20,1,2,0,1,0,0,0), +(@CGUID+1466,32820,0,1,1,0,0,-8824,-142,80.839,5.912,600,20,0,2,0,1,0,0,0), +(@CGUID+1467,32820,0,1,1,0,0,-8821,-843,74.501,2.856,600,20,0,2,0,1,0,0,0), +(@CGUID+1468,32820,0,1,1,0,0,-8821,-122,80.865,3.5,600,20,0,2,0,1,0,0,0), +(@CGUID+1469,32820,0,1,1,0,0,-8818,97.723,164.66,4.413,600,20,0,2,0,1,0,0,0), +(@CGUID+1470,32820,0,1,1,0,0,-8817,810.273,99.022,3.975,600,20,0,2,0,1,0,0,0), +(@CGUID+1471,32820,0,1,1,0,0,-8813,803.688,98.623,3.761,600,20,0,2,0,1,0,0,0), +(@CGUID+1472,32820,0,1,1,0,0,-8812,-169,81.309,5.209,600,20,0,2,0,1,0,0,0), +(@CGUID+1473,32820,0,1,1,0,0,-8811,-1017,75.755,4.581,600,20,0,2,0,1,0,0,0), +(@CGUID+1474,32820,0,1,1,0,0,-8811,-244,82.142,2.682,600,20,0,2,0,1,0,0,0), +(@CGUID+1475,32820,0,1,1,0,0,-8809,-213,81.973,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1476,32820,0,1,1,0,0,-8809,-61,91.362,0.557,600,20,0,2,0,1,0,0,0), +(@CGUID+1477,32820,0,1,1,0,0,-8808,-96,83.649,5.901,600,20,0,2,0,1,0,0,0), +(@CGUID+1478,32820,0,1,1,0,0,-8808,623.519,94.485,2.347,600,20,0,2,0,1,0,0,0), +(@CGUID+1479,32820,0,1,1,0,0,-8803,-81,86.374,3.092,600,20,0,2,0,1,0,0,0), +(@CGUID+1480,32820,0,1,1,0,0,-8803,862.081,98.887,2.161,600,20,0,2,0,1,0,0,0), +(@CGUID+1481,32820,0,1,1,0,0,-8799,-1097,76.21,1.408,600,20,0,2,0,1,0,0,0), +(@CGUID+1482,32820,0,1,1,0,0,-8799,865.216,98.958,2.381,600,20,0,2,0,1,0,0,0), +(@CGUID+1483,32820,0,1,1,0,0,-8798,-99,83.259,2.092,600,20,0,2,0,1,0,0,0), +(@CGUID+1484,32820,0,1,1,0,0,-8797,-173,81.655,0,600,20,0,2,0,1,0,0,0), +(@CGUID+1485,32820,0,1,1,0,0,-8796,-211,82.807,2.339,600,20,0,2,0,1,0,0,0), +(@CGUID+1486,32820,0,1,1,0,0,-8795,-108,83.073,1.504,600,20,0,2,0,1,0,0,0), +(@CGUID+1487,32820,0,1,1,0,0,-8791,-129,82.513,4.16,600,20,0,2,0,1,0,0,0), +(@CGUID+1488,32820,0,1,1,0,0,-8790,-124,82.994,4.28319,600,20,0,2,0,1,0,0,0), +(@CGUID+1489,32820,0,1,1,0,0,-8790,-121,82.98,2.568,600,20,0,2,0,1,0,0,0), +(@CGUID+1490,32820,0,1,1,0,0,-8787,-935,74.019,3.324,600,20,0,2,0,1,0,0,0), +(@CGUID+1491,32820,0,1,1,0,0,-8787,-252,82.661,2.234,600,20,0,2,0,1,0,0,0), +(@CGUID+1492,32820,0,1,1,0,0,-8785,-278,78.736,0.996,600,20,0,2,0,1,0,0,0), +(@CGUID+1493,32820,0,1,1,0,0,-8782,-203,84.005,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1494,32820,0,1,1,0,0,-8780,-59,92.094,0.066,600,20,0,2,0,1,0,0,0), +(@CGUID+1495,32820,0,1,1,0,0,-8779,-250,82.702,2.752,600,20,0,2,0,1,0,0,0), +(@CGUID+1496,32820,0,1,1,0,0,-8779,-171,82.004,0.97,600,20,0,2,0,1,0,0,0), +(@CGUID+1497,32820,0,1,1,0,0,-8773,-127,83.395,3.134,600,20,0,2,0,1,0,0,0), +(@CGUID+1498,32820,0,1,1,0,0,-8772,-151,81.32,0.721,600,20,0,2,0,1,0,0,0), +(@CGUID+1499,32820,0,1,1,0,0,-8770,-158,81.992,4.023,600,20,0,2,0,1,0,0,0), +(@CGUID+1500,32820,0,1,1,0,0,-8770,-118,83.495,0,600,20,0,2,0,1,0,0,0), +(@CGUID+1501,32820,0,1,1,0,0,-8770,-102,87.125,5.647,600,20,0,2,0,1,0,0,0), +(@CGUID+1502,32820,0,1,1,0,0,-8769,-286,77.486,3.298,600,20,0,2,0,1,0,0,0), +(@CGUID+1503,32820,0,1,1,0,0,-8769,-272,78.433,0,600,20,0,2,0,1,0,0,0), +(@CGUID+1504,32820,0,1,1,0,0,-8768,-76,90.689,2.175,600,20,0,2,0,1,0,0,0), +(@CGUID+1505,32820,0,1,1,0,0,-8765,-232,85.305,5.685,600,20,0,2,0,1,0,0,0), +(@CGUID+1506,32820,0,1,1,0,0,-8765,-193,85.266,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+1507,32820,0,1,1,0,0,-8765,-183,84.088,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1508,32820,0,1,1,0,0,-8765,607.706,96.892,3.959,600,20,0,2,0,1,0,0,0), +(@CGUID+1509,32820,0,1,1,0,0,-8760.53,-109.372,85.435,3.84574,600,20,0,2,0,1,0,0,0), +(@CGUID+1510,32820,0,1,1,0,0,-8763,-158,82.828,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+1511,32820,0,1,1,0,0,-8762,-144,81.933,3.59,600,20,0,2,0,1,0,0,0), +(@CGUID+1512,32820,0,1,1,0,0,-8756,-186,84.99,4.422,600,20,0,2,0,1,0,0,0), +(@CGUID+1513,32820,0,1,1,0,0,-8756,-89,91.77,2.771,600,20,0,2,0,1,0,0,0), +(@CGUID+1514,32820,0,1,1,0,0,-8755,-129,83.029,2.396,600,20,0,2,0,1,0,0,0), +(@CGUID+1515,32820,0,1,1,0,0,-8753,-203,86.316,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1516,32820,0,1,1,0,0,-8744,-177,85.559,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+1517,32820,0,1,1,0,0,-8743,-120,85.732,1.077,600,20,0,2,0,1,0,0,0), +(@CGUID+1518,32820,0,1,1,0,0,-8742,-163,84.981,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1519,32820,0,1,1,0,0,-8741,-192,86.09,0.947,600,20,0,2,0,1,0,0,0), +(@CGUID+1520,32820,0,1,1,0,0,-8741,-97,89.23,2.363,600,20,0,2,0,1,0,0,0), +(@CGUID+1521,32820,0,1,1,0,0,-8737,-58,91.341,2.596,600,20,0,2,0,1,0,0,0), +(@CGUID+1522,32820,0,1,1,0,0,-8735,-103,87.046,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+1523,32820,0,1,1,0,0,-8728,375.537,101.265,3.352,600,20,0,2,0,1,0,0,0), +(@CGUID+1524,32820,0,1,1,0,0,-8600.26,-139.186,87.808,3.4111,600,20,0,2,0,1,0,0,0), +(@CGUID+1525,32820,0,1,1,0,0,-8724,-139,86.919,4.184,600,20,0,2,0,1,0,0,0), +(@CGUID+1526,32820,0,1,1,0,0,-8723,-208,89.648,3.229,600,20,0,2,0,1,0,0,0), +(@CGUID+1527,32820,0,1,1,0,0,-8717,-105,87.423,3.695,600,20,0,2,0,1,0,0,0), +(@CGUID+1528,32820,0,1,1,0,0,-8717,923.309,100.879,2.292,600,20,0,2,0,1,0,0,0), +(@CGUID+1529,32820,0,1,1,0,0,-8714,348.185,101.019,2.83,600,20,0,2,0,1,0,0,0), +(@CGUID+1530,32820,0,1,1,0,0,-8710,-80,90.094,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1531,32820,0,1,1,0,0,-8708,-188,99.205,5.373,600,20,0,2,0,1,0,0,0), +(@CGUID+1532,32820,0,1,1,0,0,-8698,-74,89.932,0.1,600,20,0,2,0,1,0,0,0), +(@CGUID+1533,32820,0,1,1,0,0,-8691,-122,88.343,2.098,600,20,0,2,0,1,0,0,0), +(@CGUID+1534,32820,0,1,1,0,0,-8685,-185,91.246,0.43,600,20,0,2,0,1,0,0,0), +(@CGUID+1535,32820,0,1,1,0,0,-8684,575.301,97.054,3.805,600,20,0,2,0,1,0,0,0), +(@CGUID+1536,32820,0,1,1,0,0,-8682,-100,89.536,2.684,600,20,0,2,0,1,0,0,0), +(@CGUID+1537,32820,0,1,1,0,0,-8680,-191,91.409,6.181,600,20,0,2,0,1,0,0,0), +(@CGUID+1538,32820,0,1,1,0,0,-8679,635.687,96.969,2.217,600,20,0,2,0,1,0,0,0), +(@CGUID+1539,32820,0,1,1,0,0,-8676,-203,94.627,4.422,600,20,0,2,0,1,0,0,0), +(@CGUID+1540,32820,0,1,1,0,0,-8676,638.406,96.969,2.26,600,20,0,2,0,1,0,0,0), +(@CGUID+1541,32820,0,1,1,0,0,-8675,869.995,97.016,2.455,600,20,0,2,0,1,0,0,0), +(@CGUID+1542,32820,0,1,1,0,0,-8586.41,-147.882,89.9644,2.233,600,20,0,2,0,1,0,0,0), +(@CGUID+1543,32820,0,1,1,0,0,-8556,-217.474,84.981,2.05473,600,20,0,2,0,1,0,0,0), +(@CGUID+1544,32820,0,1,1,0,0,-8644,801.707,96.67,2.527,600,20,1,2,0,1,0,0,0), +(@CGUID+1545,32820,0,1,1,0,0,-8561.69,-148.63,88.3487,3.41111,600,20,0,2,0,1,0,0,0), +(@CGUID+1546,32820,0,1,1,0,0,-8545.58,-159.898,87.1807,1.5772,600,20,0,2,0,1,0,0,0), +(@CGUID+1547,32820,0,1,1,0,0,-8539.24,-174.348,85.1864,2.13876,600,20,0,2,0,1,0,0,0), +(@CGUID+1548,32820,0,1,1,0,0,-8623,848.741,96.721,2.331,600,20,1,2,0,1,0,0,0), +(@CGUID+1549,32820,0,1,1,0,0,-8618,784.698,97.252,3.766,600,20,0,2,0,1,0,0,0), +(@CGUID+1550,32820,0,1,1,0,0,-8565.04,-218.299,85.4327,0.399106,600,20,0,2,0,1,0,0,0), +(@CGUID+1551,32820,0,1,1,0,0,-8613,778.144,97.243,3.864,600,20,0,2,0,1,0,0,0), +(@CGUID+1552,32820,0,1,1,0,0,-8551.88,-202.872,85.526,5.97622,600,20,0,2,0,1,0,0,0), +(@CGUID+1553,32820,0,1,1,0,0,-8533.56,-195.278,83.5968,1.74214,600,20,0,2,0,1,0,0,0), +(@CGUID+1554,32820,0,1,1,0,0,-8583.03,-173.171,90.9283,1.62904,600,20,0,2,0,1,0,0,0), +(@CGUID+1555,32820,0,1,1,0,0,-8644.95,-115.942,88.0407,3.95727,600,20,0,2,0,1,0,0,0), +(@CGUID+1556,32820,0,1,1,0,0,-8563.16,-203.576,84.3093,4.568,600,20,0,2,0,1,0,0,0), +(@CGUID+1557,32820,0,1,1,0,0,-8635.73,-111.035,86.8433,3.64311,600,20,0,2,0,1,0,0,0), +(@CGUID+1558,32820,0,1,1,0,0,-8544,502.641,98.552,5.48,600,20,0,2,0,1,0,0,0), +(@CGUID+1559,32820,0,1,1,0,0,-8887.99,-274.452,80.4154,4.88438,600,20,0,2,0,1,0,0,0), +(@CGUID+1560,32820,0,1,1,0,0,-8856.3,-252.666,81.1253,5.68549,600,20,0,2,0,1,0,0,0), +(@CGUID+1561,32820,0,1,1,0,0,-8534,692.766,97.669,3.918,600,20,1,2,0,1,0,0,0), +(@CGUID+1562,32820,0,1,1,0,0,-8368,542.082,91.797,2.27,600,20,0,2,0,1,0,0,0), +(@CGUID+1563,32820,0,1,1,0,0,-8217,-499,197.379,2.145,600,20,0,2,0,1,0,0,0), +(@CGUID+1564,32820,0,1,1,0,0,-8208,-485,193.739,5.354,600,20,0,2,0,1,0,0,0), +(@CGUID+1565,32820,0,1,1,0,0,-8205,-483,193.823,2.678,600,20,0,2,0,1,0,0,0), +(@CGUID+1566,32820,0,1,1,0,0,-8184,-577,200.644,4.471,600,20,0,2,0,1,0,0,0), +(@CGUID+1567,32820,0,1,1,0,0,-8177,-594,200.167,0.811,600,20,0,2,0,1,0,0,0), +(@CGUID+1568,32820,0,1,1,0,0,-8159,-597,199.913,2.554,600,20,0,2,0,1,0,0,0), +(@CGUID+1569,32820,0,1,1,0,0,-8150,-540,200.85,1.866,600,20,0,2,0,1,0,0,0), +(@CGUID+1570,32820,0,1,1,0,0,-7501,-2145,146.088,0.955,600,20,0,2,0,1,0,0,0), +(@CGUID+1571,32820,0,1,1,0,0,-6807,-2289,280.753,2.587,600,20,0,2,0,1,0,0,0), +(@CGUID+1572,32820,0,1,1,0,0,-6439,-1115,312.16,3.172,600,20,0,2,0,1,0,0,0), +(@CGUID+1573,32820,0,1,1,0,0,1901.5,1507.09,89.1851,0.850343,600,20,0,2,0,1,0,0,0), +(@CGUID+1574,32820,0,1,1,0,0,1939.89,1545.48,90.165,1.22525,600,20,0,2,0,1,0,0,0), +(@CGUID+1575,32820,0,1,1,0,0,1939.86,1574.08,82.4603,2.76817,600,20,0,2,0,1,0,0,0), +(@CGUID+1576,32820,0,1,1,0,0,1909.7,1514.67,87.3891,4.62487,600,20,0,2,0,1,0,0,0), +(@CGUID+1577,32820,0,1,1,0,0,-6160,325.568,399.968,1.928,600,20,0,2,0,1,0,0,0), +(@CGUID+1578,32820,0,1,1,0,0,1947.43,1559.7,87.6517,5.05464,600,20,0,2,0,1,0,0,0), +(@CGUID+1579,32820,0,1,1,0,0,1871.81,1511.04,88.1731,1.4094,600,20,0,2,0,1,0,0,0), +(@CGUID+1580,32820,0,1,1,0,0,1923.72,1546.34,87.5938,5.72714,600,20,0,2,0,1,0,0,0), +(@CGUID+1581,32820,0,1,1,0,0,1951.47,1608.03,83.4339,0.90738,600,20,0,2,0,1,0,0,0), +(@CGUID+1582,32820,0,1,1,0,0,1957.45,1559.31,86.7158,3.11913,600,20,0,2,0,1,0,0,0), +(@CGUID+1583,32820,0,1,1,0,0,1964.36,1596.41,88.1966,6.16458,600,20,0,2,0,1,0,0,0), +(@CGUID+1584,32820,0,1,1,0,0,1958.78,1605.91,88.1813,3.39428,600,20,0,2,0,1,0,0,0), +(@CGUID+1585,32820,0,1,1,0,0,1969.51,1611.49,88.1993,1.55372,600,20,0,2,0,1,0,0,0), +(@CGUID+1586,32820,0,1,1,0,0,1998.98,1702.84,79.2207,4.83678,600,20,0,2,0,1,0,0,0), +(@CGUID+1587,32820,0,1,1,0,0,1964.83,1611.97,88.1991,5.10508,600,20,0,2,0,1,0,0,0), +(@CGUID+1588,32820,0,1,1,0,0,1965.75,1611.9,83.5143,4.57629,600,20,0,2,0,1,0,0,0), +(@CGUID+1589,32820,0,1,1,0,0,1985.09,1674.03,77.8688,2.46003,600,20,0,2,0,1,0,0,0), +(@CGUID+1590,32820,0,1,1,0,0,1961.67,1604,83.4338,1.92067,600,20,0,2,0,1,0,0,0), +(@CGUID+1591,32820,0,1,1,0,0,1989.34,1614.82,82.0564,3.55892,600,20,0,2,0,1,0,0,0), +(@CGUID+1592,32820,0,1,1,0,0,1744.62,1564.06,115.271,4.91857,600,20,0,2,0,1,0,0,0), +(@CGUID+1593,32820,0,1,1,0,0,1992.71,1626.04,79.6506,1.53227,600,20,0,2,0,1,0,0,0), +(@CGUID+1594,32820,0,1,1,0,0,-5816,-3455,311.46,4.143,600,20,0,2,0,1,0,0,0), +(@CGUID+1595,32820,0,1,1,0,0,-5793,-2582,309.097,4.926,600,20,0,2,0,1,0,0,0), +(@CGUID+1596,32820,0,1,1,0,0,-5787,-3588,335.657,3.72,600,20,0,2,0,1,0,0,0), +(@CGUID+1597,32820,0,1,1,0,0,-5726,-3310,304.167,1.49,600,20,0,2,0,1,0,0,0), +(@CGUID+1598,32820,0,1,1,0,0,-5706,-3545,305.103,4.912,600,20,0,2,0,1,0,0,0), +(@CGUID+1599,32820,0,1,1,0,0,-5687,-3183,318.88,0.687,600,20,0,2,0,1,0,0,0), +(@CGUID+1600,32820,0,1,1,0,0,-5670,-528,398.13,2.381,600,20,0,2,0,1,0,0,0), +(@CGUID+1601,32820,0,1,1,0,0,-5656,-3646,315.12,5.039,600,20,0,2,0,1,0,0,0), +(@CGUID+1602,32820,0,1,1,0,0,-5614,-3701,315.196,4.999,600,20,0,2,0,1,0,0,0), +(@CGUID+1603,32820,0,1,1,0,0,-5559,-2779,364.792,0.143,600,20,0,2,0,1,0,0,0), +(@CGUID+1604,32820,0,1,1,0,0,-5485,-3766,317.351,0.37,600,20,0,2,0,1,0,0,0), +(@CGUID+1605,32820,0,1,1,0,0,-5454,-2859,348.231,3.275,600,20,0,2,0,1,0,0,0), +(@CGUID+1606,32820,0,1,1,0,0,-5425,-2851,345.649,3.473,600,20,0,2,0,1,0,0,0), +(@CGUID+1607,32820,0,1,1,0,0,-5352,-2892,341.729,1.654,600,20,0,2,0,1,0,0,0), +(@CGUID+1608,32820,0,1,1,0,0,-5325,-3759,309.441,0.148,600,20,0,2,0,1,0,0,0), +(@CGUID+1609,32820,0,1,1,0,0,-5250,-2806,345.624,3.708,600,20,0,2,0,1,0,0,0), +(@CGUID+1610,32820,0,1,1,0,0,-5224,-3745,313.321,0.176,600,20,0,2,0,1,0,0,0), +(@CGUID+1611,32820,0,1,1,0,0,-5212,-2780,338.271,1.048,600,20,0,2,0,1,0,0,0), +(@CGUID+1612,32820,0,1,1,0,0,-5165,-876,507.245,0.929,600,20,0,2,0,1,0,0,0), +(@CGUID+1613,32820,0,1,1,0,0,-5154,-2987,331.929,4.471,600,20,0,2,0,1,0,0,0), +(@CGUID+1614,32820,0,1,1,0,0,-5135,-3739,311.317,0.08,600,20,0,2,0,1,0,0,0), +(@CGUID+1615,32820,0,1,1,0,0,1776.54,1422.64,94.6241,1.23212,600,20,0,2,0,1,0,0,0), +(@CGUID+1616,32820,0,1,1,0,0,-5085,-3052,323.62,6.109,600,20,0,2,0,1,0,0,0), +(@CGUID+1617,32820,0,1,1,0,0,-5076,-2855,323.234,5.708,600,20,0,2,0,1,0,0,0), +(@CGUID+1618,32820,0,1,1,0,0,-5059,-3717,313.61,0.869,600,20,0,2,0,1,0,0,0), +(@CGUID+1619,32820,0,1,1,0,0,-5049,-2745,336.041,2.09,600,20,0,2,0,1,0,0,0), +(@CGUID+1620,32820,0,1,1,0,0,-4991,-2879,338.593,4.392,600,20,0,2,0,1,0,0,0), +(@CGUID+1621,32820,0,1,1,0,0,-4977,-3080,317.529,3.301,600,20,0,2,0,1,0,0,0), +(@CGUID+1622,32820,0,1,1,0,0,-4940,-2970,321.597,2.764,600,20,0,2,0,1,0,0,0), +(@CGUID+1623,32820,0,1,1,0,0,-4905,-2783,329.388,3.044,600,20,0,2,0,1,0,0,0), +(@CGUID+1624,32820,0,1,1,0,0,-4895,-2662,331.436,2.669,600,20,0,2,0,1,0,0,0), +(@CGUID+1625,32820,0,1,1,0,0,-4816,-2960,321.874,0.081,600,20,0,2,0,1,0,0,0), +(@CGUID+1626,32820,0,1,1,0,0,-4805,-2784,325.017,1.212,600,20,0,2,0,1,0,0,0), +(@CGUID+1627,32820,0,1,1,0,0,-4782,-2972,322.237,1.247,600,20,0,2,0,1,0,0,0), +(@CGUID+1628,32820,0,1,1,0,0,-4745,-2866,328.156,0.666,600,20,0,2,0,1,0,0,0), +(@CGUID+1629,32820,0,1,1,0,0,-4720,-2753,325.374,0.837,600,20,0,2,0,1,0,0,0), +(@CGUID+1630,32820,0,1,1,0,0,-4700,-2790,328.179,0.831,600,20,0,2,0,1,0,0,0), +(@CGUID+1631,32820,0,1,1,0,0,1707.5,1481.87,146.438,5.03859,600,20,0,2,0,1,0,0,0), +(@CGUID+1632,32820,0,1,1,0,0,-3645,-720,9.968,4.426,600,20,0,2,0,1,0,0,0), +(@CGUID+1633,32820,0,1,1,0,0,-3639,-715,9.945,4.335,600,20,0,2,0,1,0,0,0), +(@CGUID+1634,32820,0,1,1,0,0,-3636,-716,9.897,4.164,600,20,0,2,0,1,0,0,0), +(@CGUID+1635,32820,0,1,1,0,0,-3633,-718,9.898,4.041,600,20,0,2,0,1,0,0,0), +(@CGUID+1636,32820,0,1,1,0,0,-3355,-845,1.063,1.734,600,20,0,2,0,1,0,0,0), +(@CGUID+1637,32820,0,1,1,0,0,-3299,-2430,18.597,5.693,600,20,0,2,0,1,0,0,0), +(@CGUID+1638,32820,0,1,1,0,0,-8836.48,-240.295,82.7459,5.43024,600,20,0,2,0,1,0,0,0), +(@CGUID+1639,32820,0,1,1,0,0,-8962.26,-174.974,79.7247,2.9633,600,20,0,2,0,1,0,0,0), +(@CGUID+1640,32820,0,1,1,0,0,-1468,-2625,48.363,4.617,600,20,0,2,0,1,0,0,0), +(@CGUID+1641,32820,0,1,1,0,0,1897.38,1491.79,93.9505,3.99949,600,20,0,2,0,1,0,0,0), +(@CGUID+1642,32820,0,1,1,0,0,1903.73,1497,89.1851,0.677535,600,20,0,2,0,1,0,0,0), +(@CGUID+1643,32820,0,1,1,0,0,-1322.33,-3190.17,37.5942,0.173087,600,20,0,2,0,1,0,0,0), +(@CGUID+1644,32820,0,1,1,0,0,-806,-638,12.021,5.902,600,20,0,2,0,1,0,0,0), +(@CGUID+1645,32820,0,1,1,0,0,-789,1241.1,77.095,3.885,600,20,0,2,0,1,0,0,0), +(@CGUID+1646,32820,0,1,1,0,0,-786,-607,15.235,1.414,600,20,0,2,0,1,0,0,0), +(@CGUID+1647,32820,0,1,1,0,0,-782,-612,15.235,1.892,600,20,0,2,0,1,0,0,0), +(@CGUID+1648,32820,0,1,1,0,0,-779,-631,14.728,1.099,600,20,0,2,0,1,0,0,0), +(@CGUID+1649,32820,0,1,1,0,0,-779,-610,15.235,2.179,600,20,0,2,0,1,0,0,0), +(@CGUID+1650,32820,0,1,1,0,0,-779,-601,15.235,3.222,600,20,0,2,0,1,0,0,0), +(@CGUID+1651,32820,0,1,1,0,0,-777,-608,15.235,2.453,600,20,0,2,0,1,0,0,0), +(@CGUID+1652,32820,0,1,1,0,0,-775,-606,15.235,2.706,600,20,0,2,0,1,0,0,0), +(@CGUID+1653,32820,0,1,1,0,0,-750,-455,25.201,6.185,600,20,0,2,0,1,0,0,0), +(@CGUID+1654,32820,0,1,1,0,0,-721,-592,25.011,3.121,600,20,0,2,0,1,0,0,0), +(@CGUID+1655,32820,0,1,1,0,0,2051.43,1574.93,74.2552,2.10952,600,20,0,2,0,1,0,0,0), +(@CGUID+1656,32820,0,1,1,0,0,-569,-112,47.513,1.302,600,20,0,2,0,1,0,0,0), +(@CGUID+1657,32820,0,1,1,0,0,-566,-132,51.169,3.078,600,20,0,2,0,1,0,0,0), +(@CGUID+1658,32820,0,1,1,0,0,-482,917.984,91.386,5.378,600,20,0,2,0,1,0,0,0), +(@CGUID+1659,32820,0,1,1,0,0,-456,-111,54.729,1.605,600,20,0,2,0,1,0,0,0), +(@CGUID+1660,32820,0,1,1,0,0,-408,-53,54.454,4.922,600,20,0,2,0,1,0,0,0), +(@CGUID+1661,32820,0,1,1,0,0,-322,-3297,131.5,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1662,32820,0,1,1,0,0,-314,1135.16,72.124,5.49,600,20,0,2,0,1,0,0,0), +(@CGUID+1663,32820,0,1,1,0,0,-313,1340.57,34.934,4.864,600,20,0,2,0,1,0,0,0), +(@CGUID+1664,32820,0,1,1,0,0,-287,-3255,125.125,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1665,32820,0,1,1,0,0,-285,-4388,108.627,2.007,600,20,0,2,0,1,0,0,0), +(@CGUID+1666,32820,0,1,1,0,0,-258,-3199,121.5,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1667,32820,0,1,1,0,0,-243,1359.05,37.73,2.687,600,20,0,2,0,1,0,0,0), +(@CGUID+1668,32820,0,1,1,0,0,-221,1384.99,33.943,4.851,600,20,0,2,0,1,0,0,0), +(@CGUID+1669,32820,0,1,1,0,0,-210,1297.49,40.747,1.959,600,20,0,2,0,1,0,0,0), +(@CGUID+1670,32820,0,1,1,0,0,-204,1427.15,31.121,0.767,600,20,0,2,0,1,0,0,0), +(@CGUID+1671,32820,0,1,1,0,0,-168.824,-3033.28,120.93,0.713902,600,20,0,2,0,1,0,0,0), +(@CGUID+1672,32820,0,1,1,0,0,-164.849,-3120.23,119.516,1.97133,600,20,0,2,0,1,0,0,0), +(@CGUID+1673,32820,0,1,1,0,0,-141,-2899,124,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1674,32820,0,1,1,0,0,-95,1120.03,64.676,2.09,600,20,0,2,0,1,0,0,0), +(@CGUID+1675,32820,0,1,1,0,0,-93,1136.79,64.397,0.217,600,20,0,2,0,1,0,0,0), +(@CGUID+1676,32820,0,1,1,0,0,1751.11,1422.08,113.726,0.503288,600,20,0,2,0,1,0,0,0), +(@CGUID+1677,32820,0,1,1,0,0,-72,-3364,123.75,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1678,32820,0,1,1,0,0,-55,1256.13,60.262,5.175,600,20,0,2,0,1,0,0,0), +(@CGUID+1679,32820,0,1,1,0,0,-52,-4357,137,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1680,32820,0,1,1,0,0,-20,-996,55.837,1.499,600,20,0,2,0,1,0,0,0), +(@CGUID+1681,32820,0,1,1,0,0,-8.41412,-3427.04,118.346,2.41664,600,20,0,2,0,1,0,0,0), +(@CGUID+1682,32820,0,1,1,0,0,8.155,1241.76,62.017,0.162,600,20,0,2,0,1,0,0,0), +(@CGUID+1683,32820,0,1,1,0,0,45.579,1312.13,63.793,2.42,600,20,0,2,0,1,0,0,0), +(@CGUID+1684,32820,0,1,1,0,0,58,-4295,123,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1685,32820,0,1,1,0,0,71.864,690.764,63.165,4.919,600,20,0,2,0,1,0,0,0), +(@CGUID+1686,32820,0,1,1,0,0,79.621,1189.98,63.799,6.213,600,20,0,2,0,1,0,0,0), +(@CGUID+1687,32820,0,1,1,0,0,84.175,1333.08,67.441,6.08,600,20,0,2,0,1,0,0,0), +(@CGUID+1688,32820,0,1,1,0,0,92.791,1120.78,68.67,5.628,600,20,0,2,0,1,0,0,0), +(@CGUID+1689,32820,0,1,1,0,0,110.456,1269.12,67.596,2.889,600,20,0,2,0,1,0,0,0), +(@CGUID+1690,32820,0,1,1,0,0,119.804,1150.93,70.085,4.101,600,20,0,2,0,1,0,0,0), +(@CGUID+1691,32820,0,1,1,0,0,148.276,681.614,52.887,5.253,600,20,0,2,0,1,0,0,0), +(@CGUID+1692,32820,0,1,1,0,0,164.149,1489.78,114.394,4.949,600,20,0,2,0,1,0,0,0), +(@CGUID+1693,32820,0,1,1,0,0,176.92,1211.73,68.081,5.471,600,20,0,2,0,1,0,0,0), +(@CGUID+1694,32820,0,1,1,0,0,197,-4201,122.125,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1695,32820,0,1,1,0,0,198.296,1373.02,98.163,1.522,600,20,0,2,0,1,0,0,0), +(@CGUID+1696,32820,0,1,1,0,0,216,-2991,117.25,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1697,32820,0,1,1,0,0,219.332,1128.08,70.276,5.282,600,20,0,2,0,1,0,0,0), +(@CGUID+1698,32820,0,1,1,0,0,279.445,1516.3,139.208,0.012,600,20,0,2,0,1,0,0,0), +(@CGUID+1699,32820,0,1,1,0,0,282.42,-4022.96,119.372,4.14295,600,20,0,2,0,1,0,0,0), +(@CGUID+1700,32820,0,1,1,0,0,294.869,691.752,42.9,0.711,600,20,0,2,0,1,0,0,0), +(@CGUID+1701,32820,0,1,1,0,0,304.059,-3981.02,124.132,4.53172,600,20,0,2,0,1,0,0,0), +(@CGUID+1702,32820,0,1,1,0,0,306,-4176,123.125,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1703,32820,0,1,1,0,0,313.482,-1524,58.629,5.506,600,20,0,2,0,1,0,0,0), +(@CGUID+1704,32820,0,1,1,0,0,314.622,-1487,43.999,2.356,600,20,0,2,0,1,0,0,0), +(@CGUID+1705,32820,0,1,1,0,0,324.261,-2227,137.775,3.107,600,20,0,2,0,1,0,0,0), +(@CGUID+1706,32820,0,1,1,0,0,328.469,1291.78,77.505,2.143,600,20,0,2,0,1,0,0,0), +(@CGUID+1707,32820,0,1,1,0,0,336.852,1435.4,125.617,0.703,600,20,0,2,0,1,0,0,0), +(@CGUID+1708,32820,0,1,1,0,0,336.92,1276.86,78.202,4.34,600,20,0,2,0,1,0,0,0), +(@CGUID+1709,32820,0,1,1,0,0,340.961,1179.32,81.573,0.755,600,20,0,2,0,1,0,0,0), +(@CGUID+1710,32820,0,1,1,0,0,341.178,1449.96,126.285,5.911,600,20,0,2,0,1,0,0,0), +(@CGUID+1711,32820,0,1,1,0,0,350.82,1602.25,128.812,5.964,600,20,0,2,0,1,0,0,0), +(@CGUID+1712,32820,0,1,1,0,0,354.014,1600.3,128.227,1.082,600,20,0,2,0,1,0,0,0), +(@CGUID+1713,32820,0,1,1,0,0,367.389,1587.62,128.909,6.258,600,20,0,2,0,1,0,0,0), +(@CGUID+1714,32820,0,1,1,0,0,372,-4205,118.375,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1715,32820,0,1,1,0,0,381,-3528,122,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+1716,32820,0,1,1,0,0,397.303,-865,124.349,4.744,600,20,0,2,0,1,0,0,0), +(@CGUID+1717,32820,0,1,1,0,0,399.17,-845,126.687,0.343,600,20,0,2,0,1,0,0,0), +(@CGUID+1718,32820,0,1,1,0,0,428.552,1181.1,87.954,4.704,600,20,0,2,0,1,0,0,0), +(@CGUID+1719,32820,0,1,1,0,0,428.681,1196.46,84.859,0.324,600,20,0,2,0,1,0,0,0), +(@CGUID+1720,32820,0,1,1,0,0,458.206,1315.96,81.804,4.773,600,20,0,2,0,1,0,0,0), +(@CGUID+1721,32820,0,1,1,0,0,476.229,1595.9,126.662,5.942,600,20,0,2,0,1,0,0,0), +(@CGUID+1722,32820,0,1,1,0,0,479.811,1267.26,82.98,5.984,600,20,0,2,0,1,0,0,0), +(@CGUID+1723,32820,0,1,1,0,0,492.422,-772,147.39,0.249,600,20,0,2,0,1,0,0,0), +(@CGUID+1724,32820,0,1,1,0,0,493.482,-1455,48.912,1.236,600,20,0,2,0,1,0,0,0), +(@CGUID+1725,32820,0,1,1,0,0,508.227,1326.29,85.711,1.012,600,20,0,2,0,1,0,0,0), +(@CGUID+1726,32820,0,1,1,0,0,516.715,1410.04,99.79,3.753,600,20,0,2,0,1,0,0,0), +(@CGUID+1727,32820,0,1,1,0,0,521.218,-1447,50.313,0.002,600,20,0,2,0,1,0,0,0), +(@CGUID+1728,32820,0,1,1,0,0,522.159,-764,157.889,0.261,600,20,0,2,0,1,0,0,0), +(@CGUID+1729,32820,0,1,1,0,0,529.541,1160.25,93.347,6.039,600,20,0,2,0,1,0,0,0), +(@CGUID+1730,32820,0,1,1,0,0,542.417,-1074,143.417,4.494,600,20,0,2,0,1,0,0,0), +(@CGUID+1731,32820,0,1,1,0,0,547.18,1194.25,86.435,1.542,600,20,0,2,0,1,0,0,0), +(@CGUID+1732,32820,0,1,1,0,0,635.297,-1337,102.984,1.89,600,20,0,2,0,1,0,0,0), +(@CGUID+1733,32820,0,1,1,0,0,651.539,1308.37,84.0927,4.64149,600,20,0,2,0,1,0,0,0), +(@CGUID+1734,32820,0,1,1,0,0,660.913,1367.78,79.66,1.29,600,20,0,2,0,1,0,0,0), +(@CGUID+1735,32820,0,1,1,0,0,674.073,-1453,81.108,1.849,600,20,0,2,0,1,0,0,0), +(@CGUID+1736,32820,0,1,1,0,0,691.448,1073.78,50.784,3.328,600,20,0,2,0,1,0,0,0), +(@CGUID+1737,32820,0,1,1,0,0,698.865,1238.2,67.384,5.412,600,20,0,2,0,1,0,0,0), +(@CGUID+1738,32820,0,1,1,0,0,702.753,1365.46,73.569,3.576,600,20,0,2,0,1,0,0,0), +(@CGUID+1739,32820,0,1,1,0,0,715.927,1462.33,61.307,1.025,600,20,0,2,0,1,0,0,0), +(@CGUID+1740,32820,0,1,1,0,0,718.784,527.067,36.267,3.006,600,20,0,2,0,1,0,0,0), +(@CGUID+1741,32820,0,1,1,0,0,749.011,1645.38,38.022,0.664,600,20,0,2,0,1,0,0,0), +(@CGUID+1742,32820,0,1,1,0,0,767.278,-1467,77.457,0.903,600,20,0,2,0,1,0,0,0), +(@CGUID+1743,32820,0,1,1,0,0,783.957,1403.71,59.312,2.411,600,20,0,2,0,1,0,0,0), +(@CGUID+1744,32820,0,1,1,0,0,790.984,-1462,75.27,5.116,600,20,0,2,0,1,0,0,0), +(@CGUID+1745,32820,0,1,1,0,0,803.386,1224.31,54.166,5.726,600,20,0,2,0,1,0,0,0), +(@CGUID+1746,32820,0,1,1,0,0,834.511,1501.72,42.526,2.397,600,20,0,2,0,1,0,0,0), +(@CGUID+1747,32820,0,1,1,0,0,837.677,1657.8,24.021,4.907,600,20,0,2,0,1,0,0,0), +(@CGUID+1748,32820,0,1,1,0,0,842.183,1713.32,18.871,1.618,600,20,0,2,0,1,0,0,0), +(@CGUID+1749,32820,0,1,1,0,0,872.046,-1497,64.076,5.529,600,20,0,2,0,1,0,0,0), +(@CGUID+1750,32820,0,1,1,0,0,879.713,1560.15,28.648,4.103,600,20,0,2,0,1,0,0,0), +(@CGUID+1751,32820,0,1,1,0,0,902.236,-1517,55.037,4.744,600,20,0,2,0,1,0,0,0), +(@CGUID+1752,32820,0,1,1,0,0,902.684,1150.51,49.979,4.75,600,20,0,2,0,1,0,0,0), +(@CGUID+1753,32820,0,1,1,0,0,921.494,-1460,64.486,4.481,600,20,0,2,0,1,0,0,0), +(@CGUID+1754,32820,0,1,1,0,0,932.54,1367.52,39.984,3.724,600,20,0,2,0,1,0,0,0), +(@CGUID+1755,32820,0,1,1,0,0,934.564,1298.45,41.96,4.17,600,20,0,2,0,1,0,0,0), +(@CGUID+1756,32820,0,1,1,0,0,939.838,-1489,64.446,1.179,600,20,0,2,0,1,0,0,0), +(@CGUID+1757,32820,0,1,1,0,0,940.014,1370.98,40.845,2.561,600,20,0,2,0,1,0,0,0), +(@CGUID+1758,32820,0,1,1,0,0,940.727,-1420,66.623,4.131,600,20,0,2,0,1,0,0,0), +(@CGUID+1759,32820,0,1,1,0,0,941.62,1527.42,37.729,4.598,600,20,0,2,0,1,0,0,0), +(@CGUID+1760,32820,0,1,1,0,0,961.048,1490.55,39.627,1.623,600,20,0,2,0,1,0,0,0), +(@CGUID+1761,32820,0,1,1,0,0,961.14,1588.06,31.173,5.24,600,20,0,2,0,1,0,0,0), +(@CGUID+1762,32820,0,1,1,0,0,961.831,1125.4,46.842,4.461,600,20,0,2,0,1,0,0,0), +(@CGUID+1763,32820,0,1,1,0,0,964.77,-1479,62.365,2.321,600,20,0,2,0,1,0,0,0), +(@CGUID+1764,32820,0,1,1,0,0,971.502,-1428,65.169,3.7,600,20,0,2,0,1,0,0,0), +(@CGUID+1765,32820,0,1,1,0,0,972.236,1711.85,14.58,0.027,600,20,0,2,0,1,0,0,0), +(@CGUID+1766,32820,0,1,1,0,0,975.02,1706.71,15.328,2.404,600,20,0,2,0,1,0,0,0), +(@CGUID+1767,32820,0,1,1,0,0,976.797,-1484,65.31,4.421,600,20,0,2,0,1,0,0,0), +(@CGUID+1768,32820,0,1,1,0,0,982.935,-1445,64.272,5.572,600,20,0,2,0,1,0,0,0), +(@CGUID+1769,32820,0,1,1,0,0,989.992,1135.55,47.204,0.83,600,20,0,2,0,1,0,0,0), +(@CGUID+1770,32820,0,1,1,0,0,992.585,-1428,66.198,5.702,600,20,0,2,0,1,0,0,0), +(@CGUID+1771,32820,0,1,1,0,0,999.113,-1217,63.045,5.742,600,20,0,2,0,1,0,0,0), +(@CGUID+1772,32820,0,1,1,0,0,1011.79,1898.79,6.703,2.323,600,20,0,2,0,1,0,0,0), +(@CGUID+1773,32820,0,1,1,0,0,1014.25,1690.75,19.267,5.831,600,20,0,2,0,1,0,0,0), +(@CGUID+1774,32820,0,1,1,0,0,1024.46,1607.47,23.935,1.58,600,20,0,2,0,1,0,0,0), +(@CGUID+1775,32820,0,1,1,0,0,1026.51,1408.18,41.933,6.077,600,20,0,2,0,1,0,0,0), +(@CGUID+1776,32820,0,1,1,0,0,1027.28,-1380,70.556,1.592,600,20,0,2,0,1,0,0,0), +(@CGUID+1777,32820,0,1,1,0,0,1028.52,-1308,66.208,5.691,600,20,0,2,0,1,0,0,0), +(@CGUID+1778,32820,0,1,1,0,0,1032.82,-1473,63.758,2.425,600,20,0,2,0,1,0,0,0), +(@CGUID+1779,32820,0,1,1,0,0,1036.64,-1410,67.689,3.6,600,20,0,2,0,1,0,0,0), +(@CGUID+1780,32820,0,1,1,0,0,1044.71,1442.55,45.77,0.773,600,20,0,2,0,1,0,0,0), +(@CGUID+1781,32820,0,1,1,0,0,1047.85,1457,43.695,4.987,600,20,0,2,0,1,0,0,0), +(@CGUID+1782,32820,0,1,1,0,0,1057.5,1450.18,44.245,3.554,600,20,0,2,0,1,0,0,0), +(@CGUID+1783,32820,0,1,1,0,0,1065.34,1115.21,40.001,5.21,600,20,0,2,0,1,0,0,0), +(@CGUID+1784,32820,0,1,1,0,0,1072.76,1186.9,45.242,3.648,600,20,0,2,0,1,0,0,0), +(@CGUID+1785,32820,0,1,1,0,0,1085.11,1831.97,17,0.039,600,20,0,2,0,1,0,0,0), +(@CGUID+1786,32820,0,1,1,0,0,1096.79,1316.54,38.34,0.349,600,20,0,2,0,1,0,0,0), +(@CGUID+1787,32820,0,1,1,0,0,1097.12,-1344,66.021,4.819,600,20,0,2,0,1,0,0,0), +(@CGUID+1788,32820,0,1,1,0,0,1105.8,1352.05,38.387,0.359,600,20,0,2,0,1,0,0,0), +(@CGUID+1789,32820,0,1,1,0,0,1110.63,1650.16,31.133,6.068,600,20,0,2,0,1,0,0,0), +(@CGUID+1790,32820,0,1,1,0,0,1111.45,1274.43,40.292,4.603,600,20,0,2,0,1,0,0,0), +(@CGUID+1791,32820,0,1,1,0,0,1117.94,1703.66,28.618,0.473,600,20,0,2,0,1,0,0,0), +(@CGUID+1792,32820,0,1,1,0,0,1124.87,1935.88,10.525,3.143,600,20,0,2,0,1,0,0,0), +(@CGUID+1793,32820,0,1,1,0,0,1139.53,1429.37,36.176,4.869,600,20,0,2,0,1,0,0,0), +(@CGUID+1794,32820,0,1,1,0,0,1155.84,1635.29,26.623,5.293,600,20,0,2,0,1,0,0,0), +(@CGUID+1795,32820,0,1,1,0,0,1165.2,1251.65,48.534,1.301,600,20,0,2,0,1,0,0,0), +(@CGUID+1796,32820,0,1,1,0,0,1177.1,1398.64,35.231,3.281,600,20,0,2,0,1,0,0,0), +(@CGUID+1797,32820,0,1,1,0,0,1200.58,1017.83,36.449,2.116,600,20,0,2,0,1,0,0,0), +(@CGUID+1798,32820,0,1,1,0,0,1207,1087.9,38.04,3.912,600,20,0,2,0,1,0,0,0), +(@CGUID+1799,32820,0,1,1,0,0,1210.67,902.129,33.872,4.266,600,20,0,2,0,1,0,0,0), +(@CGUID+1800,32820,0,1,1,0,0,1220.44,1100.96,42.555,0.811,600,20,0,2,0,1,0,0,0), +(@CGUID+1801,32820,0,1,1,0,0,1226.66,1831.86,10.109,4.419,600,20,0,2,0,1,0,0,0), +(@CGUID+1802,32820,0,1,1,0,0,1227.34,1350.73,37.992,1.734,600,20,0,2,0,1,0,0,0), +(@CGUID+1803,32820,0,1,1,0,0,1238.37,-2414,60.739,2.359,600,20,0,2,0,1,0,0,0), +(@CGUID+1804,32820,0,1,1,0,0,1243.33,1218.2,52.665,3.723,600,20,0,2,0,1,0,0,0), +(@CGUID+1805,32820,0,1,1,0,0,1244.41,1916.89,12.889,5.072,600,20,0,2,0,1,0,0,0), +(@CGUID+1806,32820,0,1,1,0,0,1253.23,1889.74,13.083,6.259,600,20,0,2,0,1,0,0,0), +(@CGUID+1807,32820,0,1,1,0,0,1260.69,1030.85,43.393,3.04,600,20,0,2,0,1,0,0,0), +(@CGUID+1808,32820,0,1,1,0,0,1270.04,982.334,44.642,4.756,600,20,0,2,0,1,0,0,0), +(@CGUID+1809,32820,0,1,1,0,0,1274.15,1028.39,44.708,4.273,600,20,0,2,0,1,0,0,0), +(@CGUID+1810,32820,0,1,1,0,0,1284.15,1123.82,49.611,2.928,600,20,0,2,0,1,0,0,0), +(@CGUID+1811,32820,0,1,1,0,0,1313.34,834.769,34.935,4.443,600,20,0,2,0,1,0,0,0), +(@CGUID+1812,32820,0,1,1,0,0,1321.23,884.217,46.26,1.124,600,20,0,2,0,1,0,0,0), +(@CGUID+1813,32820,0,1,1,0,0,1365.56,805.331,49.44,0.836,600,20,0,2,0,1,0,0,0), +(@CGUID+1814,32820,0,1,1,0,0,1374.01,735.929,46.282,3.878,600,20,0,2,0,1,0,0,0), +(@CGUID+1815,32820,0,1,1,0,0,1380.44,-3701,77.017,6.271,600,20,0,2,0,1,0,0,0), +(@CGUID+1816,32820,0,1,1,0,0,1396.86,989.125,52.179,2.145,600,20,0,2,0,1,0,0,0), +(@CGUID+1817,32820,0,1,1,0,0,1402.22,1034.58,52.993,2.04,600,20,0,2,0,1,0,0,0), +(@CGUID+1818,32820,0,1,1,0,0,1406.98,821.089,47.211,2.337,600,20,0,2,0,1,0,0,0), +(@CGUID+1819,32820,0,1,1,0,0,1412.15,655.785,48.723,5.612,600,20,0,2,0,1,0,0,0), +(@CGUID+1820,32820,0,1,1,0,0,1887.06,1454.94,78.2062,1.73572,600,20,0,2,0,1,0,0,0), +(@CGUID+1821,32820,0,1,1,0,0,1429.86,679.498,48.31,6.226,600,20,0,2,0,1,0,0,0), +(@CGUID+1822,32820,0,1,1,0,0,1438.34,612.295,46.114,3.06,600,20,0,2,0,1,0,0,0), +(@CGUID+1823,32820,0,1,1,0,0,1442.72,569.365,48.616,2.83,600,20,0,2,0,1,0,0,0), +(@CGUID+1824,32820,0,1,1,0,0,1448.06,724.958,44.822,0.521,600,20,0,2,0,1,0,0,0), +(@CGUID+1825,32820,0,1,1,0,0,1448.35,551.224,51.476,5.49,600,20,0,2,0,1,0,0,0), +(@CGUID+1826,32820,0,1,1,0,0,1450.61,1113.83,60.735,1.44,600,20,0,2,0,1,0,0,0), +(@CGUID+1827,32820,0,1,1,0,0,1453.31,917.864,57.259,3.217,600,20,0,2,0,1,0,0,0), +(@CGUID+1828,32820,0,1,1,0,0,1461.07,768.615,50.337,0.188,600,20,0,2,0,1,0,0,0), +(@CGUID+1829,32820,0,1,1,0,0,1464.24,728.697,45.235,0.544,600,20,0,2,0,1,0,0,0), +(@CGUID+1830,32820,0,1,1,0,0,1464.99,789.986,54.668,5.75,600,20,0,2,0,1,0,0,0), +(@CGUID+1831,32820,0,1,1,0,0,1465.57,567.219,53.163,5.131,600,20,0,2,0,1,0,0,0), +(@CGUID+1832,32820,0,1,1,0,0,1471.52,859.503,72.349,6.161,600,20,0,2,0,1,0,0,0), +(@CGUID+1833,32820,0,1,1,0,0,1474.97,499.644,39.622,3.757,600,20,0,2,0,1,0,0,0), +(@CGUID+1834,32820,0,1,1,0,0,1475.14,576.905,53.428,1.352,600,20,0,2,0,1,0,0,0), +(@CGUID+1835,32820,0,1,1,0,0,1491.46,661.033,44.706,6.228,600,20,0,2,0,1,0,0,0), +(@CGUID+1836,32820,0,1,1,0,0,1512.77,659.536,43.255,0.676,600,20,0,2,0,1,0,0,0), +(@CGUID+1837,32820,0,1,1,0,0,1513.26,720.752,50.903,4.559,600,20,0,2,0,1,0,0,0), +(@CGUID+1838,32820,0,1,1,0,0,1519.5,644.208,43.157,3.962,600,20,0,2,0,1,0,0,0), +(@CGUID+1839,32820,0,1,1,0,0,1520.7,586.997,47.605,0.88,600,20,0,2,0,1,0,0,0), +(@CGUID+1840,32820,0,1,1,0,0,1528.25,548.5,52.608,4.647,600,20,0,2,0,1,0,0,0), +(@CGUID+1841,32820,0,1,1,0,0,1541.52,603.2,45.237,0.105,600,20,0,2,0,1,0,0,0), +(@CGUID+1842,32820,0,1,1,0,0,1543.7,505.559,45.386,3.142,600,20,0,2,0,1,0,0,0), +(@CGUID+1843,32820,0,1,1,0,0,1579.24,508.478,43.526,5.306,600,20,0,2,0,1,0,0,0), +(@CGUID+1844,32820,0,1,1,0,0,1583.18,612.709,51.515,0.361,600,20,0,2,0,1,0,0,0), +(@CGUID+1845,32820,0,1,1,0,0,1599.26,631.194,65.446,3.249,600,20,0,2,0,1,0,0,0), +(@CGUID+1846,32820,0,1,1,0,0,1602.33,665.019,84.633,0.198,600,20,0,2,0,1,0,0,0), +(@CGUID+1847,32820,0,1,1,0,0,1602.58,535.46,38.724,4.262,600,20,0,2,0,1,0,0,0), +(@CGUID+1848,32820,0,1,1,0,0,1603.01,586.253,37.579,4.245,600,20,0,2,0,1,0,0,0), +(@CGUID+1849,32820,0,1,1,0,0,1611.48,600.123,44.223,1.541,600,20,0,2,0,1,0,0,0), +(@CGUID+1850,32820,0,1,1,0,0,1615.33,517.125,39.614,2.911,600,20,0,2,0,1,0,0,0), +(@CGUID+1851,32820,0,1,1,0,0,1625.79,535.696,35.541,4.307,600,20,0,2,0,1,0,0,0), +(@CGUID+1852,32820,0,1,1,0,0,1633.98,510.343,41.396,0.054,600,20,0,2,0,1,0,0,0), +(@CGUID+1853,32820,0,1,1,0,0,1638.49,-373,45.013,0.679,600,20,0,2,0,1,0,0,0), +(@CGUID+1854,32820,0,1,1,0,0,1638.76,-463,45.635,1.425,600,20,0,2,0,1,0,0,0), +(@CGUID+1855,32820,0,1,1,0,0,1640.62,-588,44.993,1.372,600,20,0,2,0,1,0,0,0), +(@CGUID+1856,32820,0,1,1,0,0,1651.88,684.505,77.946,1.918,600,20,0,2,0,1,0,0,0), +(@CGUID+1857,32820,0,1,1,0,0,1651.93,-611,47.782,1.726,600,20,0,2,0,1,0,0,0), +(@CGUID+1858,32820,0,1,1,0,0,1652.61,-478,45.697,3.065,600,20,0,2,0,1,0,0,0), +(@CGUID+1859,32820,0,1,1,0,0,1655.15,-354,44.998,1.006,600,20,0,2,0,1,0,0,0), +(@CGUID+1860,32820,0,1,1,0,0,1655.88,-728,58.925,1.355,600,20,0,2,0,1,0,0,0), +(@CGUID+1861,32820,0,1,1,0,0,1660.99,623.452,51.54,5.326,600,20,0,2,0,1,0,0,0), +(@CGUID+1862,32820,0,1,1,0,0,1669.65,-719,58.302,0.806,600,20,0,2,0,1,0,0,0), +(@CGUID+1863,32820,0,1,1,0,0,2113.83,1512.22,68.1744,3.83896,600,20,0,2,0,1,0,0,0), +(@CGUID+1864,32820,0,1,1,0,0,1673.15,-733,59.067,1.191,600,20,0,2,0,1,0,0,0), +(@CGUID+1865,32820,0,1,1,0,0,-8869.22,-163.237,80.9719,0.959931,600,20,0,2,0,1,0,0,0), +(@CGUID+1866,32820,0,1,1,0,0,1676.1,583.93,35.881,5.875,600,20,0,2,0,1,0,0,0), +(@CGUID+1867,32820,0,1,1,0,0,1676.29,-514,44.081,0.221,600,20,0,2,0,1,0,0,0), +(@CGUID+1868,32820,0,1,1,0,0,1684.25,-722,57.97,0.646,600,20,0,2,0,1,0,0,0), +(@CGUID+1869,32820,0,1,1,0,0,1684.41,-479,43.864,1.012,600,20,0,2,0,1,0,0,0), +(@CGUID+1870,32820,0,1,1,0,0,1678.99,1667.86,135.855,3.76991,600,20,0,2,0,1,0,0,0), +(@CGUID+1871,32820,0,1,1,0,0,1685.87,746.877,46.417,0.75,600,20,0,2,0,1,0,0,0), +(@CGUID+1872,32820,0,1,1,0,0,1691.92,-274,45.27,2.423,600,20,0,2,0,1,0,0,0), +(@CGUID+1873,32820,0,1,1,0,0,1695.67,520.835,36.226,4.154,600,20,0,2,0,1,0,0,0), +(@CGUID+1874,32820,0,1,1,0,0,1696.57,1555.23,123.589,1.832,600,20,0,2,0,1,0,0,0), +(@CGUID+1875,32820,0,1,1,0,0,1698.1,-451,42.402,4.957,600,20,0,2,0,1,0,0,0), +(@CGUID+1876,32820,0,1,1,0,0,2124.29,1441.22,65.7511,3.60963,600,20,0,2,0,1,0,0,0), +(@CGUID+1877,32820,0,1,1,0,0,1701.33,1360.07,118.736,5.297,600,20,0,2,0,1,0,0,0), +(@CGUID+1878,32820,0,1,1,0,0,1708.89,660.346,46.65,1.728,600,20,0,2,0,1,0,0,0), +(@CGUID+1879,32820,0,1,1,0,0,1712.34,-799,57.709,5.224,600,20,0,2,0,1,0,0,0), +(@CGUID+1880,32820,0,1,1,0,0,1875,1295.83,94.1748,3.14138,600,20,0,2,0,1,0,0,0), +(@CGUID+1881,32820,0,1,1,0,0,2087.13,1555.71,73.1964,2.58382,600,20,0,2,0,1,0,0,0), +(@CGUID+1882,32820,0,1,1,0,0,1715.04,-744,55.649,4.142,600,20,0,2,0,1,0,0,0), +(@CGUID+1883,32820,0,1,1,0,0,1715.86,-503,37.7,5.188,600,20,0,2,0,1,0,0,0), +(@CGUID+1884,32820,0,1,1,0,0,1716.27,895.978,59.525,1.7,600,20,0,2,0,1,0,0,0), +(@CGUID+1885,32820,0,1,1,0,0,1722.14,720.163,48.042,4.625,600,20,0,2,0,1,0,0,0), +(@CGUID+1886,32820,0,1,1,0,0,1722.58,-411,38.156,2.721,600,20,0,2,0,1,0,0,0), +(@CGUID+1887,32820,0,1,1,0,0,1725.59,-797,57.811,4.292,600,20,0,2,0,1,0,0,0), +(@CGUID+1888,32820,0,1,1,0,0,1727.82,-431,33.846,0.401,600,20,0,2,0,1,0,0,0), +(@CGUID+1889,32820,0,1,1,0,0,1843.58,1289.87,102.559,2.53327,600,20,0,2,0,1,0,0,0), +(@CGUID+1890,32820,0,1,1,0,0,2117.84,1501.78,70.6263,3.58777,600,20,0,2,0,1,0,0,0), +(@CGUID+1891,32820,0,1,1,0,0,1860.73,1327,76.9402,0.14983,600,20,0,2,0,1,0,0,0), +(@CGUID+1892,32820,0,1,1,0,0,2043.76,1481.58,68.4653,1.36325,600,20,0,2,0,1,0,0,0), +(@CGUID+1893,32820,0,1,1,0,0,1735.87,507.163,41.611,4.232,600,20,0,2,0,1,0,0,0), +(@CGUID+1894,32820,0,1,1,0,0,1736.9,-743,59.443,2.177,600,20,0,2,0,1,0,0,0), +(@CGUID+1895,32820,0,1,1,0,0,1739.56,-672,45.062,6.275,600,20,0,2,0,1,0,0,0), +(@CGUID+1896,32820,0,1,1,0,0,1740.46,-726,59.947,2.055,600,20,0,2,0,1,0,0,0), +(@CGUID+1897,32820,0,1,1,0,0,1740.5,718.644,48.531,4.257,600,20,0,2,0,1,0,0,0), +(@CGUID+1898,32820,0,1,1,0,0,1875.24,1284.18,98.7998,3.50248,600,20,0,2,0,1,0,0,0), +(@CGUID+1899,32820,0,1,1,0,0,2113.07,1459.33,64.3409,5.2157,600,20,0,2,0,1,0,0,0), +(@CGUID+1900,32820,0,1,1,0,0,1747.26,996.788,51.869,5.302,600,20,0,2,0,1,0,0,0), +(@CGUID+1901,32820,0,1,1,0,0,1747.84,-334,33.709,6.276,600,20,0,2,0,1,0,0,0), +(@CGUID+1902,32820,0,1,1,0,0,1748.48,723.007,47.149,2.937,600,20,0,2,0,1,0,0,0), +(@CGUID+1903,32820,0,1,1,0,0,1859.39,1358.49,71.724,3.31082,600,20,0,2,0,1,0,0,0), +(@CGUID+1904,32820,0,1,1,0,0,1749.61,1143.83,65.782,4.822,600,20,0,2,0,1,0,0,0), +(@CGUID+1905,32820,0,1,1,0,0,1749.83,-489,41.373,2.124,600,20,0,2,0,1,0,0,0), +(@CGUID+1906,32820,0,1,1,0,0,1750.92,575.75,34.078,1.936,600,20,0,2,0,1,0,0,0), +(@CGUID+1907,32820,0,1,1,0,0,2079.73,1495.97,65.6415,4.19379,600,20,0,2,0,1,0,0,0), +(@CGUID+1908,32820,0,1,1,0,0,1752.85,805.094,55.123,2.523,600,20,0,2,0,1,0,0,0), +(@CGUID+1909,32820,0,1,1,0,0,1962.59,1426.8,65.9927,1.73293,600,20,0,2,0,1,0,0,0), +(@CGUID+1910,32820,0,1,1,0,0,1755.4,583.822,34.658,3.593,600,20,0,2,0,1,0,0,0), +(@CGUID+1911,32820,0,1,1,0,0,1756.59,647.783,40.193,3.165,600,20,0,2,0,1,0,0,0), +(@CGUID+1912,32820,0,1,1,0,0,1756.84,725.38,46.759,6.033,600,20,0,2,0,1,0,0,0), +(@CGUID+1913,32820,0,1,1,0,0,1758.66,-723,60.08,1.556,600,20,0,2,0,1,0,0,0), +(@CGUID+1914,32820,0,1,1,0,0,1760.69,510.543,35.915,6.259,600,20,0,2,0,1,0,0,0), +(@CGUID+1915,32820,0,1,1,0,0,1764.56,-343,34.68,5.949,600,20,0,2,0,1,0,0,0), +(@CGUID+1916,32820,0,1,1,0,0,1765.15,1382.99,92.056,5.248,600,20,0,2,0,1,0,0,0), +(@CGUID+1917,32820,0,1,1,0,0,1766.44,1324.48,93.714,4.221,600,20,0,2,0,1,0,0,0), +(@CGUID+1918,32820,0,1,1,0,0,1767.02,-725,59.559,1.387,600,20,0,2,0,1,0,0,0), +(@CGUID+1919,32820,0,1,1,0,0,1769.21,1080.19,50.29,0.406,600,20,0,2,0,1,0,0,0), +(@CGUID+1920,32820,0,1,1,0,0,1769.49,1406.18,95.175,3.895,600,20,0,2,0,1,0,0,0), +(@CGUID+1921,32820,0,1,1,0,0,1771.38,675.97,44.102,6.258,600,20,0,2,0,1,0,0,0), +(@CGUID+1922,32820,0,1,1,0,0,1829.34,1327.7,86.4345,3.61845,600,20,0,2,0,1,0,0,0), +(@CGUID+1923,32820,0,1,1,0,0,1774.55,941.946,51.615,1.466,600,20,0,2,0,1,0,0,0), +(@CGUID+1924,32820,0,1,1,0,0,1776.04,-726,59.321,1.587,600,20,0,2,0,1,0,0,0), +(@CGUID+1925,32820,0,1,1,0,0,1776.3,-558,41.212,1.554,600,20,0,2,0,1,0,0,0), +(@CGUID+1926,32820,0,1,1,0,0,1776.79,809.271,45.337,2.398,600,20,0,2,0,1,0,0,0), +(@CGUID+1927,32820,0,1,1,0,0,1777.3,1381.93,90.909,2.169,600,20,0,2,0,1,0,0,0), +(@CGUID+1928,32820,0,1,1,0,0,1778.47,618.782,41.311,2.436,600,20,0,2,0,1,0,0,0), +(@CGUID+1929,32820,0,1,1,0,0,1779.04,-713,58.765,1.819,600,20,0,2,0,1,0,0,0), +(@CGUID+1930,32820,0,1,1,0,0,1779.22,1015.1,45.195,3.458,600,20,0,2,0,1,0,0,0), +(@CGUID+1931,32820,0,1,1,0,0,1782.03,-588,39.544,1.547,600,20,0,2,0,1,0,0,0), +(@CGUID+1932,32820,0,1,1,0,0,2096.18,1458.27,62.7233,1.46592,600,20,0,2,0,1,0,0,0), +(@CGUID+1933,32820,0,1,1,0,0,1783.4,-726,59.358,2.098,600,20,0,2,0,1,0,0,0), +(@CGUID+1934,32820,0,1,1,0,0,1785.68,1126.35,51.003,2.578,600,20,0,2,0,1,0,0,0), +(@CGUID+1935,32820,0,1,1,0,0,1786.31,948.231,45.374,0.271,600,20,0,2,0,1,0,0,0), +(@CGUID+1936,32820,0,1,1,0,0,1787.57,1342.62,89.397,5.581,600,20,0,2,0,1,0,0,0), +(@CGUID+1937,32820,0,1,1,0,0,1789.58,1335.53,89.614,1.3,600,20,0,2,0,1,0,0,0), +(@CGUID+1938,32820,0,1,1,0,0,1789.88,-729,59.365,2.22,600,20,0,2,0,1,0,0,0), +(@CGUID+1939,32820,0,1,1,0,0,1790.21,746.825,49.162,1.082,600,20,0,2,0,1,0,0,0), +(@CGUID+1940,32820,0,1,1,0,0,1793.44,-585,39.674,6.122,600,20,0,2,0,1,0,0,0), +(@CGUID+1941,32820,0,1,1,0,0,1793.69,1092.51,45.104,4.596,600,20,0,2,0,1,0,0,0), +(@CGUID+1942,32820,0,1,1,0,0,1794.38,1420.41,87.027,3.22,600,20,0,2,0,1,0,0,0), +(@CGUID+1943,32820,0,1,1,0,0,1795.21,653.885,40.579,0.341,600,20,0,2,0,1,0,0,0), +(@CGUID+1944,32820,0,1,1,0,0,1795.23,611.12,39.596,6.249,600,20,0,2,0,1,0,0,0), +(@CGUID+1945,32820,0,1,1,0,0,1796.6,744.136,48.883,3.167,600,20,0,2,0,1,0,0,0), +(@CGUID+1946,32820,0,1,1,0,0,1798.77,722.748,48.9869,4.68094,600,20,0,2,0,1,0,0,0), +(@CGUID+1947,32820,0,1,1,0,0,1796.91,700.662,47.661,1.148,600,20,0,2,0,1,0,0,0), +(@CGUID+1948,32820,0,1,1,0,0,1799.02,587.317,45.299,3.106,600,20,0,2,0,1,0,0,0), +(@CGUID+1949,32820,0,1,1,0,0,1804.06,945.904,41.354,0.456,600,20,0,2,0,1,0,0,0), +(@CGUID+1950,32820,0,1,1,0,0,2130.92,1470.55,67.8589,5.86654,600,20,0,2,0,1,0,0,0), +(@CGUID+1951,32820,0,1,1,0,0,1808.03,550.08,34.296,2.999,600,20,0,2,0,1,0,0,0), +(@CGUID+1952,32820,0,1,1,0,0,1809.63,764.674,43.892,4.413,600,20,0,2,0,1,0,0,0), +(@CGUID+1953,32820,0,1,1,0,0,1810.09,1388.97,78.849,4.225,600,20,0,2,0,1,0,0,0), +(@CGUID+1954,32820,0,1,1,0,0,2094.89,1590.31,75.1982,2.80818,600,20,0,2,0,1,0,0,0), +(@CGUID+1955,32820,0,1,1,0,0,1811.25,958.817,37.394,3.106,600,20,0,2,0,1,0,0,0), +(@CGUID+1956,32820,0,1,1,0,0,1812.66,1328.37,88.503,5.502,600,20,0,2,0,1,0,0,0), +(@CGUID+1957,32820,0,1,1,0,0,1813.97,1086.19,40.126,2.411,600,20,0,2,0,1,0,0,0), +(@CGUID+1958,32820,0,1,1,0,0,1814.69,646.793,38.318,3.872,600,20,0,2,0,1,0,0,0), +(@CGUID+1959,32820,0,1,1,0,0,2046.56,1454.31,66.9644,5.65726,600,20,0,2,0,1,0,0,0), +(@CGUID+1960,32820,0,1,1,0,0,1816.61,-412,34.494,3.269,600,20,0,2,0,1,0,0,0), +(@CGUID+1961,32820,0,1,1,0,0,1816.62,1171.46,52.676,2.391,600,20,0,2,0,1,0,0,0), +(@CGUID+1962,32820,0,1,1,0,0,1813.74,1285.59,97.9754,2.39028,600,20,0,2,0,1,0,0,0), +(@CGUID+1963,32820,0,1,1,0,0,1836.88,1362.87,74.5884,5.03491,600,20,0,2,0,1,0,0,0), +(@CGUID+1964,32820,0,1,1,0,0,1819.85,1372.79,77.398,1.299,600,20,0,2,0,1,0,0,0), +(@CGUID+1965,32820,0,1,1,0,0,2147.9,1561.27,79.8816,5.77033,600,20,0,2,0,1,0,0,0), +(@CGUID+1966,32820,0,1,1,0,0,1822.34,1039.74,36.694,1.658,600,20,0,2,0,1,0,0,0), +(@CGUID+1967,32820,0,1,1,0,0,1822.95,1581.81,95.519,1.553,600,20,1,2,0,1,0,0,0), +(@CGUID+1968,32820,0,1,1,0,0,1997.29,1530.76,77.0698,0.676724,600,20,0,2,0,1,0,0,0), +(@CGUID+1969,32820,0,1,1,0,0,1824.26,1637.18,95.64,4.757,600,20,1,2,0,1,0,0,0), +(@CGUID+1970,32820,0,1,1,0,0,1824.89,-26,40.307,0.136,600,20,0,2,0,1,0,0,0), +(@CGUID+1971,32820,0,1,1,0,0,1825.6,-457,34.707,5.735,600,20,0,2,0,1,0,0,0), +(@CGUID+1972,32820,0,1,1,0,0,1826.04,825.973,26.091,1.117,600,20,0,2,0,1,0,0,0), +(@CGUID+1973,32820,0,1,1,0,0,2141.36,1604.68,78.3542,5.06096,600,20,0,2,0,1,0,0,0), +(@CGUID+1974,32820,0,1,1,0,0,1681.86,1582.67,127.197,5.19291,600,20,0,2,0,1,0,0,0), +(@CGUID+1975,32820,0,1,1,0,0,1830.23,1089.14,36.664,1.256,600,20,0,2,0,1,0,0,0), +(@CGUID+1976,32820,0,1,1,0,0,1831.57,1581.19,95.196,1.688,600,20,0,2,0,1,0,0,0), +(@CGUID+1977,32820,0,1,1,0,0,1834.6,855.579,25.122,3.712,600,20,0,2,0,1,0,0,0), +(@CGUID+1978,32820,0,1,1,0,0,1835.48,1567.26,96.581,1.149,600,20,0,2,0,1,0,0,0), +(@CGUID+1979,32820,0,1,1,0,0,1836.2,1641.24,97.628,5.411,600,20,0,2,0,1,0,0,0), +(@CGUID+1980,32820,0,1,1,0,0,1912.12,1645.39,88.5127,1.663,600,20,0,2,0,1,0,0,0), +(@CGUID+1981,32820,0,1,1,0,0,1835.42,1340.63,81.0884,2.26482,600,20,0,2,0,1,0,0,0), +(@CGUID+1982,32820,0,1,1,0,0,1837.5,604.166,45.402,1.575,600,20,0,2,0,1,0,0,0), +(@CGUID+1983,32820,0,1,1,0,0,1837.51,1630.92,96.933,5.732,600,20,0,2,0,1,0,0,0), +(@CGUID+1984,32820,0,1,1,0,0,1837.56,-151,42.103,3.172,600,20,0,2,0,1,0,0,0), +(@CGUID+1985,32820,0,1,1,0,0,1657.81,1712.5,147.393,6.28308,600,20,0,2,0,1,0,0,0), +(@CGUID+1986,32820,0,1,1,0,0,1838.74,1636.12,96.933,5.478,600,20,0,2,0,1,0,0,0), +(@CGUID+1987,32820,0,1,1,0,0,1840.57,1567.1,96.579,1.738,600,20,0,2,0,1,0,0,0), +(@CGUID+1988,32820,0,1,1,0,0,1840.67,828.307,25.675,5.783,600,20,0,2,0,1,0,0,0), +(@CGUID+1989,32820,0,1,1,0,0,1842.69,857.234,25.365,0.148,600,20,0,2,0,1,0,0,0), +(@CGUID+1990,32820,0,1,1,0,0,1843.18,965.094,32.259,0.896,600,20,0,2,0,1,0,0,0), +(@CGUID+1991,32820,0,1,1,0,0,1843.24,1640.52,97.628,4.659,600,20,0,2,0,1,0,0,0), +(@CGUID+1992,32820,0,1,1,0,0,2009.14,1567.49,79.1212,5.19624,600,20,0,2,0,1,0,0,0), +(@CGUID+1993,32820,0,1,1,0,0,1845.17,983.134,30.429,2.39,600,20,0,2,0,1,0,0,0), +(@CGUID+1994,32820,0,1,1,0,0,1846.35,607.813,47.902,4.712,600,20,0,2,0,1,0,0,0), +(@CGUID+1995,32820,0,1,1,0,0,1846.81,1580.69,94.733,1.544,600,20,0,2,0,1,0,0,0), +(@CGUID+1996,32820,0,1,1,0,0,1847.24,1635.95,96.933,3.801,600,20,0,2,0,1,0,0,0), +(@CGUID+1997,32820,0,1,1,0,0,1847.38,-479,37.062,0.526,600,20,0,2,0,1,0,0,0), +(@CGUID+1998,32820,0,1,1,0,0,1848.14,1638.79,96.933,4.269,600,20,0,2,0,1,0,0,0), +(@CGUID+1999,32820,0,1,1,0,0,1848.14,-280,39.265,1.006,600,20,0,2,0,1,0,0,0), +(@CGUID+2000,32820,0,1,1,0,0,1849.35,1625.72,96.933,2.619,600,20,0,2,0,1,0,0,0), +(@CGUID+2001,32820,0,1,1,0,0,1850.01,801.833,25.284,1.716,600,20,0,2,0,1,0,0,0), +(@CGUID+2002,32820,0,1,1,0,0,1850.51,-355,38.283,3.005,600,20,0,2,0,1,0,0,0), +(@CGUID+2003,32820,0,1,1,0,0,1860.96,1378.44,75.3596,2.25591,600,20,0,2,0,1,0,0,0), +(@CGUID+2004,32820,0,1,1,0,0,2127,1488.45,69.0985,2.74564,600,20,0,2,0,1,0,0,0), +(@CGUID+2005,32820,0,1,1,0,0,1854.36,592.129,46.343,1.284,600,20,0,2,0,1,0,0,0), +(@CGUID+2006,32820,0,1,1,0,0,1854.56,729.64,35.772,1.513,600,20,0,2,0,1,0,0,0), +(@CGUID+2007,32820,0,1,1,0,0,2044.37,1593.64,70.4317,5.45417,600,20,0,2,0,1,0,0,0), +(@CGUID+2008,32820,0,1,1,0,0,1922.86,1625.93,83.5842,5.30097,600,20,0,2,0,1,0,0,0), +(@CGUID+2009,32820,0,1,1,0,0,1856.9,-731,63.023,5.278,600,20,0,2,0,1,0,0,0), +(@CGUID+2010,32820,0,1,1,0,0,2072.53,1612.54,70.259,5.6282,600,20,0,2,0,1,0,0,0), +(@CGUID+2011,32820,0,1,1,0,0,1859.98,-506,42.399,5.783,600,20,0,2,0,1,0,0,0), +(@CGUID+2012,32820,0,1,1,0,0,1797.46,1301.62,102.951,1.10146,600,20,0,2,0,1,0,0,0), +(@CGUID+2013,32820,0,1,1,0,0,1860.1,1568.58,94.312,1.348,600,20,0,2,0,1,0,0,0), +(@CGUID+2014,32820,0,1,1,0,0,1860.12,1563.55,94.307,6.092,600,20,0,2,0,1,0,0,0), +(@CGUID+2015,32820,0,1,1,0,0,1860.66,879.395,25.829,5.836,600,20,0,2,0,1,0,0,0), +(@CGUID+2016,32820,0,1,1,0,0,1861.01,1586.07,92.45,1.604,600,20,1,2,0,1,0,0,0), +(@CGUID+2017,32820,0,1,1,0,0,1862.08,982.911,30.425,0.568,600,20,0,2,0,1,0,0,0), +(@CGUID+2018,32820,0,1,1,0,0,1782.46,1719.94,118.715,3.53443,600,20,0,2,0,1,0,0,0), +(@CGUID+2019,32820,0,1,1,0,0,1862.71,515.728,36.189,4.633,600,20,0,2,0,1,0,0,0), +(@CGUID+2020,32820,0,1,1,0,0,1862.88,1556.41,94.783,2.292,600,20,0,2,0,1,0,0,0), +(@CGUID+2021,32820,0,1,1,0,0,1864.19,-652,45.329,1.955,600,20,0,2,0,1,0,0,0), +(@CGUID+2022,32820,0,1,1,0,0,1865.48,1574.8,94.313,3.388,600,20,0,2,0,1,0,0,0), +(@CGUID+2023,32820,0,1,1,0,0,1872.23,-242,35.433,0.293,600,20,0,2,0,1,0,0,0), +(@CGUID+2024,32820,0,1,1,0,0,1936.33,1635.19,80.3736,5.76424,600,20,0,2,0,1,0,0,0), +(@CGUID+2025,32820,0,1,1,0,0,1965.95,1639.71,77.8335,1.1349,600,20,0,2,0,1,0,0,0), +(@CGUID+2026,32820,0,1,1,0,0,1804.12,1333.83,88.1972,4.64479,600,20,0,2,0,1,0,0,0), +(@CGUID+2027,32820,0,1,1,0,0,1876.44,871.104,28.305,3.552,600,20,0,2,0,1,0,0,0), +(@CGUID+2028,32820,0,1,1,0,0,1876.45,555.231,40.008,5.09,600,20,0,2,0,1,0,0,0), +(@CGUID+2029,32820,0,1,1,0,0,1877.21,1596.18,91.709,4.337,600,20,0,2,0,1,0,0,0), +(@CGUID+2030,32820,0,1,1,0,0,1978.28,1483.97,84.012,1.10496,600,20,0,2,0,1,0,0,0), +(@CGUID+2031,32820,0,1,1,0,0,1878.76,1082.84,25.703,1.67,600,20,0,2,0,1,0,0,0), +(@CGUID+2032,32820,0,1,1,0,0,1878.78,1166.95,48.971,2.537,600,20,0,2,0,1,0,0,0), +(@CGUID+2033,32820,0,1,1,0,0,1880.06,-625,45.501,0.117,600,20,0,2,0,1,0,0,0), +(@CGUID+2034,32820,0,1,1,0,0,1881.26,1018.92,28.588,5.649,600,20,0,2,0,1,0,0,0), +(@CGUID+2035,32820,0,1,1,0,0,1881.53,-453,39.486,2.446,600,20,0,2,0,1,0,0,0), +(@CGUID+2036,32820,0,1,1,0,0,1882.3,1641.52,93.646,4.491,600,20,0,2,0,1,0,0,0), +(@CGUID+2037,32820,0,1,1,0,0,2023.47,1543.74,79.1664,5.45035,600,20,0,2,0,1,0,0,0), +(@CGUID+2038,32820,0,1,1,0,0,1886.01,-437,38.723,1.311,600,20,0,2,0,1,0,0,0), +(@CGUID+2039,32820,0,1,1,0,0,1886.1,484.668,36.103,1.891,600,20,0,2,0,1,0,0,0), +(@CGUID+2040,32820,0,1,1,0,0,1886.81,949.465,26.261,1.724,600,20,0,2,0,1,0,0,0), +(@CGUID+2041,32820,0,1,1,0,0,2080.8,1426.5,61.9559,2.22875,600,20,0,2,0,1,0,0,0), +(@CGUID+2042,32820,0,1,1,0,0,1886.94,1610.79,92.62,4.476,600,20,0,2,0,1,0,0,0), +(@CGUID+2043,32820,0,1,1,0,0,1887.42,-92,32.805,1.572,600,20,0,2,0,1,0,0,0), +(@CGUID+2044,32820,0,1,1,0,0,1985.82,1637.55,77.274,4.34587,600,20,0,2,0,1,0,0,0), +(@CGUID+2045,32820,0,1,1,0,0,2004.96,1536.57,76.9095,5.17953,600,20,0,2,0,1,0,0,0), +(@CGUID+2046,32820,0,1,1,0,0,1890.28,1054.18,32.508,3.098,600,20,0,2,0,1,0,0,0), +(@CGUID+2047,32820,0,1,1,0,0,1891.12,542.912,40.554,3.497,600,20,0,2,0,1,0,0,0), +(@CGUID+2048,32820,0,1,1,0,0,2012.47,1580.58,77.6077,4.3923,600,20,0,2,0,1,0,0,0), +(@CGUID+2049,32820,0,1,1,0,0,1893.65,-537,41.372,3.531,600,20,0,2,0,1,0,0,0), +(@CGUID+2050,32820,0,1,1,0,0,1893.68,-169,35.857,5.472,600,20,0,2,0,1,0,0,0), +(@CGUID+2051,32820,0,1,1,0,0,1653.06,1609.58,149.414,4.17314,600,20,0,2,0,1,0,0,0), +(@CGUID+2052,32820,0,1,1,0,0,1894.75,-205,37.689,1.1,600,20,0,2,0,1,0,0,0), +(@CGUID+2053,32820,0,1,1,0,0,1895.31,1581.26,88.185,0.67,600,20,0,2,0,1,0,0,0), +(@CGUID+2054,32820,0,1,1,0,0,1895.89,-105,33.024,0.914,600,20,0,2,0,1,0,0,0), +(@CGUID+2055,32820,0,1,1,0,0,1898.83,531.013,39.578,4.999,600,20,0,2,0,1,0,0,0), +(@CGUID+2056,32820,0,1,1,0,0,1899,-683,53.638,2.476,600,20,0,2,0,1,0,0,0), +(@CGUID+2057,32820,0,1,1,0,0,1899.19,476.333,37.781,3.259,600,20,0,2,0,1,0,0,0), +(@CGUID+2058,32820,0,1,1,0,0,1899.36,688.674,36.042,2.18,600,20,0,2,0,1,0,0,0), +(@CGUID+2059,32820,0,1,1,0,0,2020.63,1526.77,78.8895,4.93289,600,20,0,2,0,1,0,0,0), +(@CGUID+2060,32820,0,1,1,0,0,1976.96,1515.52,86.8198,2.82125,600,20,0,2,0,1,0,0,0), +(@CGUID+2061,32820,0,1,1,0,0,1975.9,1641.65,75.8876,1.81514,600,20,0,2,0,1,0,0,0), +(@CGUID+2062,32820,0,1,1,0,0,1903.02,330.524,41.208,3.816,600,20,0,2,0,1,0,0,0), +(@CGUID+2063,32820,0,1,1,0,0,1903.3,-550,45.428,4.392,600,20,0,2,0,1,0,0,0), +(@CGUID+2064,32820,0,1,1,0,0,1888.39,1537.52,88.2019,3.65945,600,20,0,2,0,1,0,0,0), +(@CGUID+2065,32820,0,1,1,0,0,1904.02,609.035,50.982,3.845,600,20,0,2,0,1,0,0,0), +(@CGUID+2066,32820,0,1,1,0,0,1905.15,322.905,40.198,4.985,600,20,0,2,0,1,0,0,0), +(@CGUID+2067,32820,0,1,1,0,0,2073.59,1476.34,66.1495,0.756588,600,20,0,2,0,1,0,0,0), +(@CGUID+2068,32820,0,1,1,0,0,1905.31,-513,39.205,3.276,600,20,0,2,0,1,0,0,0), +(@CGUID+2069,32820,0,1,1,0,0,1905.98,1054.98,34.74,1.406,600,20,0,2,0,1,0,0,0), +(@CGUID+2070,32820,0,1,1,0,0,2087.25,1392.01,61.4079,6.27286,600,20,0,2,0,1,0,0,0), +(@CGUID+2071,32820,0,1,1,0,0,1907.51,1151.35,39.611,5.437,600,20,0,2,0,1,0,0,0), +(@CGUID+2072,32820,0,1,1,0,0,1908.24,792.84,37.379,4.588,600,20,0,2,0,1,0,0,0), +(@CGUID+2073,32820,0,1,1,0,0,1970.62,1470.79,79.7657,5.48111,600,20,0,2,0,1,0,0,0), +(@CGUID+2074,32820,0,1,1,0,0,1909.56,634.198,45.749,5.973,600,20,0,2,0,1,0,0,0), +(@CGUID+2075,32820,0,1,1,0,0,1911.94,-117,36.172,0.283,600,20,0,2,0,1,0,0,0), +(@CGUID+2076,32820,0,1,1,0,0,1913.53,-804,64.965,4.987,600,20,0,2,0,1,0,0,0), +(@CGUID+2077,32820,0,1,1,0,0,1899.79,1553.29,88.9766,0.758083,600,20,0,2,0,1,0,0,0), +(@CGUID+2078,32820,0,1,1,0,0,1913.97,832.742,41.563,1.4,600,20,0,2,0,1,0,0,0), +(@CGUID+2079,32820,0,1,1,0,0,2103.97,1420.71,60.5048,2.73086,600,20,0,2,0,1,0,0,0), +(@CGUID+2080,32820,0,1,1,0,0,1914.55,826.282,41.174,5.214,600,20,0,2,0,1,0,0,0), +(@CGUID+2081,32820,0,1,1,0,0,1914.66,959.827,31.803,1.865,600,20,0,2,0,1,0,0,0), +(@CGUID+2082,32820,0,1,1,0,0,1915.67,-352,37.103,3.7,600,20,0,2,0,1,0,0,0), +(@CGUID+2083,32820,0,1,1,0,0,1912.84,1604.96,84.7089,4.03322,600,20,0,2,0,1,0,0,0), +(@CGUID+2084,32820,0,1,1,0,0,1917.24,-189,36.152,4.236,600,20,0,2,0,1,0,0,0), +(@CGUID+2085,32820,0,1,1,0,0,1920.11,-561,49.963,2.026,600,20,0,2,0,1,0,0,0), +(@CGUID+2086,32820,0,1,1,0,0,1920.96,182.272,10.43,1.058,600,20,0,2,0,1,0,0,0), +(@CGUID+2087,32820,0,1,1,0,0,1976.86,1596.07,82.3567,5.34529,600,20,0,2,0,1,0,0,0), +(@CGUID+2088,32820,0,1,1,0,0,1892.15,1516.01,88.1731,4.6511,600,20,0,2,0,1,0,0,0), +(@CGUID+2089,32820,0,1,1,0,0,1923.08,784.038,41.753,3.343,600,20,0,2,0,1,0,0,0), +(@CGUID+2090,32820,0,1,1,0,0,1922.86,1660.1,80.2627,1.04457,600,20,0,2,0,1,0,0,0), +(@CGUID+2091,32820,0,1,1,0,0,1924.15,-262,34.052,1.142,600,20,0,2,0,1,0,0,0), +(@CGUID+2092,32820,0,1,1,0,0,1811.3,1698.05,105.944,2.54522,600,20,0,2,0,1,0,0,0), +(@CGUID+2093,32820,0,1,1,0,0,1930.87,-132,39.476,6.129,600,20,0,2,0,1,0,0,0), +(@CGUID+2094,32820,0,1,1,0,0,1931.21,1.265,11.003,0.835,600,20,0,2,0,1,0,0,0), +(@CGUID+2095,32820,0,1,1,0,0,1933.14,681.603,41.725,5.773,600,20,0,2,0,1,0,0,0), +(@CGUID+2096,32820,0,1,1,0,0,1934.58,639.221,51.061,2.058,600,20,0,2,0,1,0,0,0), +(@CGUID+2097,32820,0,1,1,0,0,1934.71,610.212,54.488,0.334,600,20,0,2,0,1,0,0,0), +(@CGUID+2098,32820,0,1,1,0,0,1856.51,1528.37,88.5612,2.93345,600,20,0,2,0,1,0,0,0), +(@CGUID+2099,32820,0,1,1,0,0,1938.13,1015.19,32.456,1.546,600,20,0,2,0,1,0,0,0), +(@CGUID+2100,32820,0,1,1,0,0,1851.69,1505.98,89.3269,2.95227,600,20,0,2,0,1,0,0,0), +(@CGUID+2101,32820,0,1,1,0,0,1940.49,574.039,50.971,2.927,600,20,0,2,0,1,0,0,0), +(@CGUID+2102,32820,0,1,1,0,0,1940.51,426.475,37.108,1.603,600,20,0,2,0,1,0,0,0), +(@CGUID+2103,32820,0,1,1,0,0,1940.71,-34,14.904,1.806,600,20,0,2,0,1,0,0,0), +(@CGUID+2104,32820,0,1,1,0,0,1922.01,1575.06,84.9355,0.885617,600,20,0,2,0,1,0,0,0), +(@CGUID+2105,32820,0,1,1,0,0,1918.92,1537.7,86.9618,0.138741,600,20,0,2,0,1,0,0,0), +(@CGUID+2106,32820,0,1,1,0,0,1857.73,1705.33,94.4552,2.90437,600,20,0,2,0,1,0,0,0), +(@CGUID+2107,32820,0,1,1,0,0,1943.15,111.969,9.73,2.298,600,20,0,2,0,1,0,0,0), +(@CGUID+2108,32820,0,1,1,0,0,1943.39,-56,29.26,0.768,600,20,0,2,0,1,0,0,0), +(@CGUID+2109,32820,0,1,1,0,0,1944.55,296.285,38.875,4.456,600,20,0,2,0,1,0,0,0), +(@CGUID+2110,32820,0,1,1,0,0,1948.13,-592,54.881,5.435,600,20,0,2,0,1,0,0,0), +(@CGUID+2111,32820,0,1,1,0,0,1948.55,792.451,37.931,5.945,600,20,0,2,0,1,0,0,0), +(@CGUID+2112,32820,0,1,1,0,0,1891.52,1725.97,93.6389,4.01667,600,20,0,2,0,1,0,0,0), +(@CGUID+2113,32820,0,1,1,0,0,1950.03,547.195,51.345,3.805,600,20,0,2,0,1,0,0,0), +(@CGUID+2114,32820,0,1,1,0,0,1950.08,470.193,37.169,4.111,600,20,0,2,0,1,0,0,0), +(@CGUID+2115,32820,0,1,1,0,0,1952.4,540.482,49.681,4.556,600,20,0,2,0,1,0,0,0), +(@CGUID+2116,32820,0,1,1,0,0,1952.86,1169.39,40.689,3.675,600,20,0,2,0,1,0,0,0), +(@CGUID+2117,32820,0,1,1,0,0,1952.9,-252,36.315,0.569,600,20,0,2,0,1,0,0,0), +(@CGUID+2118,32820,0,1,1,0,0,1953.24,966.066,33.746,2.491,600,20,0,2,0,1,0,0,0), +(@CGUID+2119,32820,0,1,1,0,0,1953.59,1095.42,33.556,1.442,600,20,0,2,0,1,0,0,0), +(@CGUID+2120,32820,0,1,1,0,0,1953.89,-315,35.385,6.102,600,20,0,2,0,1,0,0,0), +(@CGUID+2121,32820,0,1,1,0,0,1954.09,-602,56.585,0.377,600,20,0,2,0,1,0,0,0), +(@CGUID+2122,32820,0,1,1,0,0,1954.25,1111.91,33.531,1.752,600,20,0,2,0,1,0,0,0), +(@CGUID+2123,32820,0,1,1,0,0,1954.77,413.706,37.504,5.148,600,20,0,2,0,1,0,0,0), +(@CGUID+2124,32820,0,1,1,0,0,1955.2,-232,33.633,1.746,600,20,0,2,0,1,0,0,0), +(@CGUID+2125,32820,0,1,1,0,0,1955.75,39.908,18.991,5.913,600,20,0,2,0,1,0,0,0), +(@CGUID+2126,32820,0,1,1,0,0,1955.84,719.583,36.919,1.406,600,20,0,2,0,1,0,0,0), +(@CGUID+2127,32820,0,1,1,0,0,1955.92,886.075,34.76,2.482,600,20,0,2,0,1,0,0,0), +(@CGUID+2128,32820,0,1,1,0,0,1955.99,-301,34.315,2.913,600,20,0,2,0,1,0,0,0), +(@CGUID+2129,32820,0,1,1,0,0,1957.26,-431,35.451,3.13,600,20,0,2,0,1,0,0,0), +(@CGUID+2130,32820,0,1,1,0,0,1957.68,-579,53.973,1.195,600,20,0,2,0,1,0,0,0), +(@CGUID+2131,32820,0,1,1,0,0,1958.6,912.246,34.687,3.052,600,20,0,2,0,1,0,0,0), +(@CGUID+2132,32820,0,1,1,0,0,1959.16,-414,35.702,5.209,600,20,0,2,0,1,0,0,0), +(@CGUID+2133,32820,0,1,1,0,0,1862.97,1529.46,88.5361,0.636311,600,20,0,2,0,1,0,0,0), +(@CGUID+2134,32820,0,1,1,0,0,1959.88,104.673,18.088,5.631,600,20,0,2,0,1,0,0,0), +(@CGUID+2135,32820,0,1,1,0,0,1961.28,494.136,37.534,0.004,600,20,0,2,0,1,0,0,0), +(@CGUID+2136,32820,0,1,1,0,0,1940.53,1664.75,79.007,0.17767,600,20,0,2,0,1,0,0,0), +(@CGUID+2137,32820,0,1,1,0,0,1963.1,1170.4,41.227,3.751,600,20,0,2,0,1,0,0,0), +(@CGUID+2138,32820,0,1,1,0,0,1963.52,-397,35.452,3.36,600,20,0,2,0,1,0,0,0), +(@CGUID+2139,32820,0,1,1,0,0,1946.97,1590.39,82.2999,5.39887,600,20,0,2,0,1,0,0,0), +(@CGUID+2140,32820,0,1,1,0,0,1904.25,1524.12,87.3555,1.85287,600,20,0,2,0,1,0,0,0), +(@CGUID+2141,32820,0,1,1,0,0,1965.91,1378.91,64.162,6.1,600,20,0,2,0,1,0,0,0), +(@CGUID+2142,32820,0,1,1,0,0,1966.15,821.354,39.084,2.69,600,20,0,2,0,1,0,0,0), +(@CGUID+2143,32820,0,1,1,0,0,1968.89,355.661,39.631,0.293,600,20,0,2,0,1,0,0,0), +(@CGUID+2144,32820,0,1,1,0,0,1971.24,1012.8,36.202,5.523,600,20,0,2,0,1,0,0,0), +(@CGUID+2145,32820,0,1,1,0,0,1972.52,324.816,39.891,2.445,600,20,0,2,0,1,0,0,0), +(@CGUID+2146,32820,0,1,1,0,0,1972.77,329.349,39.975,4.28319,600,20,0,2,0,1,0,0,0), +(@CGUID+2147,32820,0,1,1,0,0,1974.31,141.348,15.627,3.536,600,20,0,2,0,1,0,0,0), +(@CGUID+2148,32820,0,1,1,0,0,1974.32,-211,33.944,4.797,600,20,0,2,0,1,0,0,0), +(@CGUID+2149,32820,0,1,1,0,0,1976.2,-320,36.589,6.212,600,20,0,2,0,1,0,0,0), +(@CGUID+2150,32820,0,1,1,0,0,1976.48,724.143,35.804,4.097,600,20,0,2,0,1,0,0,0), +(@CGUID+2151,32820,0,1,1,0,0,1976.74,956.769,37.919,1.483,600,20,0,2,0,1,0,0,0), +(@CGUID+2152,32820,0,1,1,0,0,1976.91,1372.13,63.869,0.662,600,20,0,2,0,1,0,0,0), +(@CGUID+2153,32820,0,1,1,0,0,1977,1381.61,63.031,6.075,600,20,0,2,0,1,0,0,0), +(@CGUID+2154,32820,0,1,1,0,0,1977.12,-380,35.702,3.502,600,20,0,2,0,1,0,0,0), +(@CGUID+2155,32820,0,1,1,0,0,1978.05,592.804,50.152,0.347,600,20,0,2,0,1,0,0,0), +(@CGUID+2156,32820,0,1,1,0,0,2028.75,1695,78.2094,4.26584,600,20,0,2,0,1,0,0,0), +(@CGUID+2157,32820,0,1,1,0,0,1978.75,897.572,34.957,0.503,600,20,0,2,0,1,0,0,0), +(@CGUID+2158,32820,0,1,1,0,0,1979.7,988.74,33.193,0.35,600,20,0,2,0,1,0,0,0), +(@CGUID+2159,32820,0,1,1,0,0,1918.99,1587.29,84.0605,3.8303,600,20,0,2,0,1,0,0,0), +(@CGUID+2160,32820,0,1,1,0,0,1719.25,1686.25,132.317,2.03842,600,20,0,2,0,1,0,0,0), +(@CGUID+2161,32820,0,1,1,0,0,2136.24,1379.74,69.1082,1.09842,600,20,0,2,0,1,0,0,0), +(@CGUID+2162,32820,0,1,1,0,0,1981.74,-545,50.134,1.324,600,20,0,2,0,1,0,0,0), +(@CGUID+2163,32820,0,1,1,0,0,1981.8,-211,34.36,3.751,600,20,0,2,0,1,0,0,0), +(@CGUID+2164,32820,0,1,1,0,0,1983.04,1104.12,34.043,4.807,600,20,0,2,0,1,0,0,0), +(@CGUID+2165,32820,0,1,1,0,0,2086.6,1328.16,61.8731,5.722,600,20,0,2,0,1,0,0,0), +(@CGUID+2166,32820,0,1,1,0,0,1985,694.409,43.827,4.429,600,20,0,2,0,1,0,0,0), +(@CGUID+2167,32820,0,1,1,0,0,1985.3,17.109,30.404,2.234,600,20,0,2,0,1,0,0,0), +(@CGUID+2168,32820,0,1,1,0,0,1985.88,1376.55,62.691,0.77,600,20,0,2,0,1,0,0,0), +(@CGUID+2169,32820,0,1,1,0,0,1987.16,-482,35.043,3.723,600,20,0,2,0,1,0,0,0), +(@CGUID+2170,32820,0,1,1,0,0,1987.47,649.66,42.471,6.087,600,20,0,2,0,1,0,0,0), +(@CGUID+2171,32820,0,1,1,0,0,1987.93,734.326,37.279,5.771,600,20,0,2,0,1,0,0,0), +(@CGUID+2172,32820,0,1,1,0,0,1989.89,-453,34.525,1.198,600,20,0,2,0,1,0,0,0), +(@CGUID+2173,32820,0,1,1,0,0,2143.56,1409.93,69.885,2.07938,600,20,0,2,0,1,0,0,0), +(@CGUID+2174,32820,0,1,1,0,0,1992.91,429.715,35.739,1.723,600,20,0,2,0,1,0,0,0), +(@CGUID+2175,32820,0,1,1,0,0,1993.71,280.852,47.869,3.271,600,20,0,2,0,1,0,0,0), +(@CGUID+2176,32820,0,1,1,0,0,1994.38,-156,34.638,2.529,600,20,0,2,0,1,0,0,0), +(@CGUID+2177,32820,0,1,1,0,0,1994.78,601.365,46.923,3.542,600,20,0,2,0,1,0,0,0), +(@CGUID+2178,32820,0,1,1,0,0,1994.82,-153,34.467,1.022,600,20,0,2,0,1,0,0,0), +(@CGUID+2179,32820,0,1,1,0,0,1745.02,1711.84,130.134,3.19535,600,20,0,2,0,1,0,0,0), +(@CGUID+2180,32820,0,1,1,0,0,1995.44,966.284,36.649,2.418,600,20,0,2,0,1,0,0,0), +(@CGUID+2181,32820,0,1,1,0,0,1901.4,1572.05,89.2571,0,600,20,0,2,0,1,0,0,0), +(@CGUID+2182,32820,0,1,1,0,0,2013.52,1505.72,74.5312,0.065802,600,20,0,2,0,1,0,0,0), +(@CGUID+2183,32820,0,1,1,0,0,2022.5,1582.05,74.9962,3.91096,600,20,0,2,0,1,0,0,0), +(@CGUID+2184,32820,0,1,1,0,0,1999.06,-369,35.702,2.865,600,20,0,2,0,1,0,0,0), +(@CGUID+2185,32820,0,1,1,0,0,1999.12,876.686,33.847,0.581,600,20,0,2,0,1,0,0,0), +(@CGUID+2186,32820,0,1,1,0,0,2002.6,280.089,47.823,3.28319,600,20,0,2,0,1,0,0,0), +(@CGUID+2187,32820,0,1,1,0,0,1967.6,1641.89,77.3097,0,600,20,0,2,0,1,0,0,0), +(@CGUID+2188,32820,0,1,1,0,0,2004.93,1071.75,35.777,0.534,600,20,0,2,0,1,0,0,0), +(@CGUID+2189,32820,0,1,1,0,0,2005.88,444.298,37.364,5.514,600,20,0,2,0,1,0,0,0), +(@CGUID+2190,32820,0,1,1,0,0,2006.19,99.895,34.778,4.494,600,20,0,2,0,1,0,0,0), +(@CGUID+2191,32820,0,1,1,0,0,2006.23,365.215,42.958,0.61,600,20,0,2,0,1,0,0,0), +(@CGUID+2192,32820,0,1,1,0,0,2060.22,1775.06,88.9039,-1.53637,600,20,0,2,0,1,0,0,0), +(@CGUID+2193,32820,0,1,1,0,0,2008.58,1006.15,32.019,4.622,600,20,0,2,0,1,0,0,0), +(@CGUID+2194,32820,0,1,1,0,0,2009.37,223.66,35.843,5.281,600,20,0,2,0,1,0,0,0), +(@CGUID+2195,32820,0,1,1,0,0,1749.95,1645.55,118.51,5.68655,600,20,0,2,0,1,0,0,0), +(@CGUID+2196,32820,0,1,1,0,0,2011.53,-403,35.452,4.994,600,20,0,2,0,1,0,0,0), +(@CGUID+2197,32820,0,1,1,0,0,2012.68,353.627,41.517,3.932,600,20,0,2,0,1,0,0,0), +(@CGUID+2198,32820,0,1,1,0,0,2012.9,229.321,38.256,4.04,600,20,0,2,0,1,0,0,0), +(@CGUID+2199,32820,0,1,1,0,0,2014.47,1024.09,29.558,4.305,600,20,0,2,0,1,0,0,0), +(@CGUID+2200,32820,0,1,1,0,0,1913.93,1588.19,84.9734,2.88904,600,20,0,2,0,1,0,0,0), +(@CGUID+2201,32820,0,1,1,0,0,2015.8,-344,35.702,0.018,600,20,0,2,0,1,0,0,0), +(@CGUID+2202,32820,0,1,1,0,0,2016.65,36.857,35.85,3.609,600,20,0,2,0,1,0,0,0), +(@CGUID+2203,32820,0,1,1,0,0,2017.34,-514,41.614,6.053,600,20,0,2,0,1,0,0,0), +(@CGUID+2204,32820,0,1,1,0,0,2017.49,-417,35.452,0.018,600,20,0,2,0,1,0,0,0), +(@CGUID+2205,32820,0,1,1,0,0,2017.73,79.376,36.834,0.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2206,32820,0,1,1,0,0,2019.74,-364,35.452,4.031,600,20,0,2,0,1,0,0,0), +(@CGUID+2207,32820,0,1,1,0,0,2046.36,1822.14,107.323,-1.30963,600,20,0,2,0,1,0,0,0), +(@CGUID+2208,32820,0,1,1,0,0,2042.42,1851.53,103.969,-1.74312,600,20,0,2,0,1,0,0,0), +(@CGUID+2209,32820,0,1,1,0,0,2021.72,1201.21,50.152,5.867,600,20,0,2,0,1,0,0,0), +(@CGUID+2210,32820,0,1,1,0,0,2022.21,883.465,34.844,6.222,600,20,0,2,0,1,0,0,0), +(@CGUID+2211,32820,0,1,1,0,0,2022.4,85.277,36.178,0.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2212,32820,0,1,1,0,0,1797.22,1718.62,112.576,0.078981,600,20,0,2,0,1,0,0,0), +(@CGUID+2213,32820,0,1,1,0,0,2023.04,73.922,36.302,0.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2214,32820,0,1,1,0,0,2051.46,1328.73,69.1295,2.2204,600,20,0,2,0,1,0,0,0), +(@CGUID+2215,32820,0,1,1,0,0,2024.87,615.426,37.312,3.499,600,20,0,2,0,1,0,0,0), +(@CGUID+2216,32820,0,1,1,0,0,2026.9,391.331,42.343,3.322,600,20,0,2,0,1,0,0,0), +(@CGUID+2217,32820,0,1,1,0,0,2026.91,1074.94,34.519,1.16,600,20,0,2,0,1,0,0,0), +(@CGUID+2218,32820,0,1,1,0,0,2027.05,226.902,38.685,4.85,600,20,0,2,0,1,0,0,0), +(@CGUID+2219,32820,0,1,1,0,0,2027.55,-122,34.171,3.21,600,20,0,2,0,1,0,0,0), +(@CGUID+2220,32820,0,1,1,0,0,1755.43,1745.95,139.746,0.129933,600,20,0,2,0,1,0,0,0), +(@CGUID+2221,32820,0,1,1,0,0,2028.31,45.886,34.271,0.033,600,20,0,2,0,1,0,0,0), +(@CGUID+2222,32820,0,1,1,0,0,2029.08,1119.06,35.292,5.612,600,20,0,2,0,1,0,0,0), +(@CGUID+2223,32820,0,1,1,0,0,2004.61,1644.08,73.5819,2.64459,600,20,0,2,0,1,0,0,0), +(@CGUID+2224,32820,0,1,1,0,0,1808.03,1542.79,97.2619,2.91201,600,20,0,2,0,1,0,0,0), +(@CGUID+2225,32820,0,1,1,0,0,2029.87,201.484,37.672,1.759,600,20,0,2,0,1,0,0,0), +(@CGUID+2226,32820,0,1,1,0,0,2117.51,1370.31,62.8016,1.43566,600,20,0,2,0,1,0,0,0), +(@CGUID+2227,32820,0,1,1,0,0,2042.87,1858.22,102.938,-1.70908,600,20,0,2,0,1,0,0,0), +(@CGUID+2228,32820,0,1,1,0,0,2030.61,808.408,34.358,4.642,600,20,0,2,0,1,0,0,0), +(@CGUID+2229,32820,0,1,1,0,0,2031.74,-551,54.019,5.226,600,20,0,2,0,1,0,0,0), +(@CGUID+2230,32820,0,1,1,0,0,2034.18,1350.95,64.3509,4.01332,600,20,0,2,0,1,0,0,0), +(@CGUID+2231,32820,0,1,1,0,0,2039.39,1849.1,103.807,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+2232,32820,0,1,1,0,0,2035.67,823.547,35.171,3.481,600,20,0,2,0,1,0,0,0), +(@CGUID+2233,32820,0,1,1,0,0,2035.76,-82,34.226,5.239,600,20,0,2,0,1,0,0,0), +(@CGUID+2234,32820,0,1,1,0,0,2015.52,1771.9,105.903,4.55457,600,20,0,2,0,1,0,0,0), +(@CGUID+2235,32820,0,1,1,0,0,2036.43,-502,40.14,0.839,600,20,0,2,0,1,0,0,0), +(@CGUID+2236,32820,0,1,1,0,0,2037.54,-141,36.938,1.933,600,20,0,2,0,1,0,0,0), +(@CGUID+2237,32820,0,1,1,0,0,2038.44,-336,35.452,6.103,600,20,0,2,0,1,0,0,0), +(@CGUID+2238,32820,0,1,1,0,0,1897.8,1504.98,93.9504,2.18601,600,20,0,2,0,1,0,0,0), +(@CGUID+2239,32820,0,1,1,0,0,2040.2,-31,37.94,0.267,600,20,0,2,0,1,0,0,0), +(@CGUID+2240,32820,0,1,1,0,0,2040.4,-332,35.68,3.45,600,20,0,2,0,1,0,0,0), +(@CGUID+2241,32820,0,1,1,0,0,2021.58,1849.13,102.658,4.56117,600,20,0,2,0,1,0,0,0), +(@CGUID+2242,32820,0,1,1,0,0,2040.84,58.942,33.868,4.036,600,20,0,2,0,1,0,0,0), +(@CGUID+2243,32820,0,1,1,0,0,2041.02,726.205,38.435,1.326,600,20,0,2,0,1,0,0,0), +(@CGUID+2244,32820,0,1,1,0,0,1762.79,1518,113.58,2.96888,600,20,0,2,0,1,0,0,0), +(@CGUID+2245,32820,0,1,1,0,0,2043.66,-225,36.929,3.266,600,20,0,2,0,1,0,0,0), +(@CGUID+2246,32820,0,1,1,0,0,2017.02,1853.65,102.919,2.19558,600,20,0,2,0,1,0,0,0), +(@CGUID+2247,32820,0,1,1,0,0,2044.93,-24,39.357,2.159,600,20,0,2,0,1,0,0,0), +(@CGUID+2248,32820,0,1,1,0,0,2046.22,971.689,33.381,0.407,600,20,0,2,0,1,0,0,0), +(@CGUID+2249,32820,0,1,1,0,0,2046.36,734.951,38.477,1.144,600,20,0,2,0,1,0,0,0), +(@CGUID+2250,32820,0,1,1,0,0,2031.61,1760.52,104.635,2.65555,600,20,0,2,0,1,0,0,0), +(@CGUID+2251,32820,0,1,1,0,0,2046.61,-413,35.467,3.689,600,20,0,2,0,1,0,0,0), +(@CGUID+2252,32820,0,1,1,0,0,1971.72,1332.93,77.2402,1.3484,600,20,0,2,0,1,0,0,0), +(@CGUID+2253,32820,0,1,1,0,0,2042.69,1875.06,102.249,-0.92142,600,20,0,2,0,1,0,0,0), +(@CGUID+2254,32820,0,1,1,0,0,2047.1,1015.39,31.633,0.017,600,20,0,2,0,1,0,0,0), +(@CGUID+2255,32820,0,1,1,0,0,2047.41,1162.26,37.78,3.208,600,20,0,2,0,1,0,0,0), +(@CGUID+2256,32820,0,1,1,0,0,2047.49,645.674,36.773,1.013,600,20,0,2,0,1,0,0,0), +(@CGUID+2257,32820,0,1,1,0,0,2048.14,550.227,45.484,2.278,600,20,0,2,0,1,0,0,0), +(@CGUID+2258,32820,0,1,1,0,0,1842.82,1678.65,97.1791,5.06255,600,20,0,2,0,1,0,0,0), +(@CGUID+2259,32820,0,1,1,0,0,1907.3,1665.82,83.5905,0,600,20,0,2,0,1,0,0,0), +(@CGUID+2260,32820,0,1,1,0,0,2044.95,1708.38,76.6127,5.74122,600,20,0,2,0,1,0,0,0), +(@CGUID+2261,32820,0,1,1,0,0,2050.19,-487,40.927,4.162,600,20,0,2,0,1,0,0,0), +(@CGUID+2262,32820,0,1,1,0,0,2050.19,835.752,37.088,2.984,600,20,0,2,0,1,0,0,0), +(@CGUID+2263,32820,0,1,1,0,0,2046.7,1420.23,64.6285,3.4127,600,20,0,2,0,1,0,0,0), +(@CGUID+2264,32820,0,1,1,0,0,2051.93,-507,43.35,6.162,600,20,0,2,0,1,0,0,0), +(@CGUID+2265,32820,0,1,1,0,0,2052.7,459.638,49.471,1.834,600,20,0,2,0,1,0,0,0), +(@CGUID+2266,32820,0,1,1,0,0,2052.71,885.654,34.156,1.804,600,20,0,2,0,1,0,0,0), +(@CGUID+2267,32820,0,1,1,0,0,2039.24,1927.41,106.997,5.2572,600,20,0,2,0,1,0,0,0), +(@CGUID+2268,32820,0,1,1,0,0,2053.8,948.836,37.278,1.334,600,20,0,2,0,1,0,0,0), +(@CGUID+2269,32820,0,1,1,0,0,2053.91,239.607,99.769,0.538,600,20,0,2,0,1,0,0,0), +(@CGUID+2270,32820,0,1,1,0,0,2162.31,1631.2,85.9035,1.46979,600,20,0,2,0,1,0,0,0), +(@CGUID+2271,32820,0,1,1,0,0,2055.44,692.034,40.564,4.801,600,20,0,2,0,1,0,0,0), +(@CGUID+2272,32820,0,1,1,0,0,2060.85,1778.14,88.95,-1.80664,600,20,0,2,0,1,0,0,0), +(@CGUID+2273,32820,0,1,1,0,0,2057.16,-23,40.07,3.832,600,20,0,2,0,1,0,0,0), +(@CGUID+2274,32820,0,1,1,0,0,2057.21,913.271,33.526,3.793,600,20,0,2,0,1,0,0,0), +(@CGUID+2275,32820,0,1,1,0,0,2057.51,279.706,59.643,3.013,600,20,0,2,0,1,0,0,0), +(@CGUID+2276,32820,0,1,1,0,0,2058.29,806.14,36.001,1.968,600,20,0,2,0,1,0,0,0), +(@CGUID+2277,32820,0,1,1,0,0,2056.97,1776.17,90.0997,-0.482707,600,20,0,2,0,1,0,0,0), +(@CGUID+2278,32820,0,1,1,0,0,2058.78,285.885,59.647,2.986,600,20,0,2,0,1,0,0,0), +(@CGUID+2279,32820,0,1,1,0,0,2023.58,1706.39,79.4175,5.01283,600,20,0,2,0,1,0,0,0), +(@CGUID+2280,32820,0,1,1,0,0,2059.86,482.621,48.592,0.632,600,20,0,2,0,1,0,0,0), +(@CGUID+2281,32820,0,1,1,0,0,2028.19,1922.43,107.104,1.76648,600,20,0,2,0,1,0,0,0), +(@CGUID+2282,32820,0,1,1,0,0,2062.18,338.783,55.208,5.476,600,20,0,2,0,1,0,0,0), +(@CGUID+2283,32820,0,1,1,0,0,2063.56,290.546,97.031,5.066,600,20,0,2,0,1,0,0,0), +(@CGUID+2284,32820,0,1,1,0,0,2064.44,756.674,39.752,5.325,600,20,0,2,0,1,0,0,0), +(@CGUID+2285,32820,0,1,1,0,0,2064.98,70.83,39.206,6.049,600,20,0,2,0,1,0,0,0), +(@CGUID+2286,32820,0,1,1,0,0,2065.42,-370,35.665,5.481,600,20,0,2,0,1,0,0,0), +(@CGUID+2287,32820,0,1,1,0,0,2066.76,-82,36.672,3.541,600,20,0,2,0,1,0,0,0), +(@CGUID+2288,32820,0,1,1,0,0,2067.05,-550,55.844,5.643,600,20,0,2,0,1,0,0,0), +(@CGUID+2289,32820,0,1,1,0,0,2067.3,-197,38.593,5.404,600,20,0,2,0,1,0,0,0), +(@CGUID+2290,32820,0,1,1,0,0,2067.57,369.811,40.361,0.171,600,20,0,2,0,1,0,0,0), +(@CGUID+2291,32820,0,1,1,0,0,2067.97,-101,38.276,1.817,600,20,0,2,0,1,0,0,0), +(@CGUID+2292,32820,0,1,1,0,0,2068.44,-118,37.03,0.131,600,20,0,2,0,1,0,0,0), +(@CGUID+2293,32820,0,1,1,0,0,2138.94,1335.12,54.5369,2.61531,600,20,0,2,0,1,0,0,0), +(@CGUID+2294,32820,0,1,1,0,0,2070.34,878.129,35.484,1.15,600,20,0,2,0,1,0,0,0), +(@CGUID+2295,32820,0,1,1,0,0,2060.03,1778.16,89.545,-1.58239,600,20,0,2,0,1,0,0,0), +(@CGUID+2296,32820,0,1,1,0,0,2070.94,-287,42.476,1.066,600,20,0,2,0,1,0,0,0), +(@CGUID+2297,32820,0,1,1,0,0,2066.83,1349.86,61.2389,5.49917,600,20,0,2,0,1,0,0,0), +(@CGUID+2298,32820,0,1,1,0,0,2072.44,276.922,59.6398,6.27228,600,20,0,2,0,1,0,0,0), +(@CGUID+2299,32820,0,1,1,0,0,2004.17,1654.17,75.4569,1.8434,600,20,0,2,0,1,0,0,0), +(@CGUID+2300,32820,0,1,1,0,0,2073.38,-419,39.952,4.991,600,20,0,2,0,1,0,0,0), +(@CGUID+2301,32820,0,1,1,0,0,2073.47,282.781,59.645,6.124,600,20,0,2,0,1,0,0,0), +(@CGUID+2302,32820,0,1,1,0,0,2073.73,1132.56,35.526,3.825,600,20,0,2,0,1,0,0,0), +(@CGUID+2303,32820,0,1,1,0,0,2074.66,1034.66,34.803,0.718,600,20,0,2,0,1,0,0,0), +(@CGUID+2304,32820,0,1,1,0,0,2074.73,-519,55.793,2.566,600,20,0,2,0,1,0,0,0), +(@CGUID+2305,32820,0,1,1,0,0,2075.72,1202.52,45.322,2.771,600,20,0,2,0,1,0,0,0), +(@CGUID+2306,32820,0,1,1,0,0,2021.02,1911.75,105.644,3.21279,600,20,0,2,0,1,0,0,0), +(@CGUID+2307,32820,0,1,1,0,0,2076.91,-185,43.133,4.205,600,20,0,2,0,1,0,0,0), +(@CGUID+2308,32820,0,1,1,0,0,2049.65,1732.27,80.4877,3.31944,600,20,0,2,0,1,0,0,0), +(@CGUID+2309,32820,0,1,1,0,0,1971.43,1354.39,68.887,4.29635,600,20,0,2,0,1,0,0,0), +(@CGUID+2310,32820,0,1,1,0,0,2077.52,693.921,37.999,5.065,600,20,0,2,0,1,0,0,0), +(@CGUID+2311,32820,0,1,1,0,0,2078.41,-251,40.586,0.182,600,20,0,2,0,1,0,0,0), +(@CGUID+2312,32820,0,1,1,0,0,2078.57,4.905,42.068,1.306,600,20,0,2,0,1,0,0,0), +(@CGUID+2313,32820,0,1,1,0,0,2078.67,629.378,34.795,2.592,600,20,0,2,0,1,0,0,0), +(@CGUID+2314,32820,0,1,1,0,0,2078.89,1140.56,35.846,4.338,600,20,0,2,0,1,0,0,0), +(@CGUID+2315,32820,0,1,1,0,0,2078.96,91.511,36.836,2.531,600,20,0,2,0,1,0,0,0), +(@CGUID+2316,32820,0,1,1,0,0,2019.53,1898.06,103.851,2.14568,600,20,0,2,0,1,0,0,0), +(@CGUID+2317,32820,0,1,1,0,0,2006.41,1378.54,61.7167,1.51118,600,20,0,2,0,1,0,0,0), +(@CGUID+2318,32820,0,1,1,0,0,2083.03,1201.24,44.457,6.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2319,32820,0,1,1,0,0,2083.07,684.921,38.775,0.814,600,20,0,2,0,1,0,0,0), +(@CGUID+2320,32820,0,1,1,0,0,1896.38,1364.77,69.7813,5.23592,600,20,0,2,0,1,0,0,0), +(@CGUID+2321,32820,0,1,1,0,0,2083.9,1947.31,98.64,2.035,600,20,0,2,0,1,0,0,0), +(@CGUID+2322,32820,0,1,1,0,0,2084.73,452.826,53.378,5.251,600,20,0,2,0,1,0,0,0), +(@CGUID+2323,32820,0,1,1,0,0,1827.52,1715.56,102.475,4.52974,600,20,0,2,0,1,0,0,0), +(@CGUID+2324,32820,0,1,1,0,0,2085.16,345.001,52.812,1.366,600,20,0,2,0,1,0,0,0), +(@CGUID+2325,32820,0,1,1,0,0,2085.53,-123,39.026,5.75,600,20,0,2,0,1,0,0,0), +(@CGUID+2326,32820,0,1,1,0,0,1808.53,1774.53,132.221,4.17193,600,20,0,2,0,1,0,0,0), +(@CGUID+2327,32820,0,1,1,0,0,2087.39,608.782,34.674,0.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2328,32820,0,1,1,0,0,1869.89,1671.97,92.0772,0.063407,600,20,0,2,0,1,0,0,0), +(@CGUID+2329,32820,0,1,1,0,0,1815.67,1447.38,85.6652,4.00511,600,20,0,2,0,1,0,0,0), +(@CGUID+2330,32820,0,1,1,0,0,2090.29,917.421,36.175,4.487,600,20,0,2,0,1,0,0,0), +(@CGUID+2331,32820,0,1,1,0,0,2091.17,206.584,55.045,3.016,600,20,0,2,0,1,0,0,0), +(@CGUID+2332,32820,0,1,1,0,0,2092.74,1062.42,32.512,5.418,600,20,0,2,0,1,0,0,0), +(@CGUID+2333,32820,0,1,1,0,0,1840.7,1441.26,80.3841,4.92828,600,20,0,2,0,1,0,0,0), +(@CGUID+2334,32820,0,1,1,0,0,2092.98,-455,44.693,3.958,600,20,0,2,0,1,0,0,0), +(@CGUID+2335,32820,0,1,1,0,0,2093.42,1084.22,37.3,1.54,600,20,0,2,0,1,0,0,0), +(@CGUID+2336,32820,0,1,1,0,0,2093.44,-43,39.19,0.084,600,20,0,2,0,1,0,0,0), +(@CGUID+2337,32820,0,1,1,0,0,2095.32,1126.56,34.958,2.117,600,20,0,2,0,1,0,0,0), +(@CGUID+2338,32820,0,1,1,0,0,2096.49,-589,61.891,0.042,600,20,0,2,0,1,0,0,0), +(@CGUID+2339,32820,0,1,1,0,0,2097.09,1022.21,33.55,4.858,600,20,0,2,0,1,0,0,0), +(@CGUID+2340,32820,0,1,1,0,0,2097.09,190.874,56.708,4.383,600,20,0,2,0,1,0,0,0), +(@CGUID+2341,32820,0,1,1,0,0,2097.55,945.28,36.636,3.586,600,20,0,2,0,1,0,0,0), +(@CGUID+2342,32820,0,1,1,0,0,2097.96,367.464,44.919,4.056,600,20,0,2,0,1,0,0,0), +(@CGUID+2343,32820,0,1,1,0,0,2098.45,24.948,35.683,0.745,600,20,0,2,0,1,0,0,0), +(@CGUID+2344,32820,0,1,1,0,0,2011.17,1337.33,72.2587,4.60995,600,20,0,2,0,1,0,0,0), +(@CGUID+2345,32820,0,1,1,0,0,2100.96,105.429,32.285,2.34,600,20,0,2,0,1,0,0,0), +(@CGUID+2346,32820,0,1,1,0,0,1881.74,1440.92,74.5331,3.04863,600,20,0,2,0,1,0,0,0), +(@CGUID+2347,32820,0,1,1,0,0,2088.35,1713.08,67.0698,5.9835,600,20,0,2,0,1,0,0,0), +(@CGUID+2348,32820,0,1,1,0,0,2102.76,233.472,61.795,6.015,600,20,0,2,0,1,0,0,0), +(@CGUID+2349,32820,0,1,1,0,0,2104.04,986.665,36.72,4.612,600,20,0,2,0,1,0,0,0), +(@CGUID+2350,32820,0,1,1,0,0,2077.3,1688.81,70.235,5.82023,600,20,0,2,0,1,0,0,0), +(@CGUID+2351,32820,0,1,1,0,0,1861.56,1489.31,89.5527,4.47295,600,20,0,2,0,1,0,0,0), +(@CGUID+2352,32820,0,1,1,0,0,1943.11,1434.81,67.6766,0.955429,600,20,0,2,0,1,0,0,0), +(@CGUID+2353,32820,0,1,1,0,0,2107.05,660.18,35.125,4.362,600,20,0,2,0,1,0,0,0), +(@CGUID+2354,32820,0,1,1,0,0,2108.62,-894,108.976,3.612,600,20,0,2,0,1,0,0,0), +(@CGUID+2355,32820,0,1,1,0,0,2108.83,478.31,62.263,6.225,600,20,0,2,0,1,0,0,0), +(@CGUID+2356,32820,0,1,1,0,0,2110.95,1003.16,34.44,0.332,600,20,0,2,0,1,0,0,0), +(@CGUID+2357,32820,0,1,1,0,0,2111.17,693.495,36.539,6.102,600,20,0,2,0,1,0,0,0), +(@CGUID+2358,32820,0,1,1,0,0,2112.4,821.576,33.143,1.608,600,20,0,2,0,1,0,0,0), +(@CGUID+2359,32820,0,1,1,0,0,2112.78,-625,93.599,0.281,600,20,0,2,0,1,0,0,0), +(@CGUID+2360,32820,0,1,1,0,0,2114.84,-38,42.798,0.651,600,20,0,2,0,1,0,0,0), +(@CGUID+2361,32820,0,1,1,0,0,2115.19,43.542,38.107,4.966,600,20,0,2,0,1,0,0,0), +(@CGUID+2362,32820,0,1,1,0,0,1976.24,1495.05,85.6114,4.69927,600,20,0,2,0,1,0,0,0), +(@CGUID+2363,32820,0,1,1,0,0,2115.64,-5299,82.163,1.075,600,20,0,2,0,1,0,0,0), +(@CGUID+2364,32820,0,1,1,0,0,2115.65,549.438,40.849,0.092,600,20,0,2,0,1,0,0,0), +(@CGUID+2365,32820,0,1,1,0,0,2117.29,516.623,53.938,5.176,600,20,0,2,0,1,0,0,0), +(@CGUID+2366,32820,0,1,1,0,0,2118.06,-258,50.686,0.066,600,20,0,2,0,1,0,0,0), +(@CGUID+2367,32820,0,1,1,0,0,2118.31,-61,41.311,6.279,600,20,0,2,0,1,0,0,0), +(@CGUID+2368,32820,0,1,1,0,0,2119.43,-191,41.035,2.649,600,20,0,2,0,1,0,0,0), +(@CGUID+2369,32820,0,1,1,0,0,1881.93,1774.41,118.192,4.4506,600,20,0,2,0,1,0,0,0), +(@CGUID+2370,32820,0,1,1,0,0,2119.86,825.431,32.753,5.361,600,20,0,2,0,1,0,0,0), +(@CGUID+2371,32820,0,1,1,0,0,2059.25,1744.25,81.5146,3.61765,600,20,0,2,0,1,0,0,0), +(@CGUID+2372,32820,0,1,1,0,0,2120.54,1012.54,33.564,4.349,600,20,0,2,0,1,0,0,0), +(@CGUID+2373,32820,0,1,1,0,0,2121.89,622.939,34.849,5.541,600,20,0,2,0,1,0,0,0), +(@CGUID+2374,32820,0,1,1,0,0,2122.32,-83,41.185,0.064,600,20,0,2,0,1,0,0,0), +(@CGUID+2375,32820,0,1,1,0,0,2122.4,386.537,49.507,2.28,600,20,0,2,0,1,0,0,0), +(@CGUID+2376,32820,0,1,1,0,0,2123.31,54.756,37.694,2.942,600,20,0,2,0,1,0,0,0), +(@CGUID+2377,32820,0,1,1,0,0,1919.79,1780.21,118.376,1.84019,600,20,0,2,0,1,0,0,0), +(@CGUID+2378,32820,0,1,1,0,0,2078.28,1604.84,71.8452,5.88908,600,20,0,2,0,1,0,0,0), +(@CGUID+2379,32820,0,1,1,0,0,1931.08,1322.22,80.217,5.90955,600,20,0,2,0,1,0,0,0), +(@CGUID+2380,32820,0,1,1,0,0,2128.11,1140.33,33.863,5.55,600,20,0,2,0,1,0,0,0), +(@CGUID+2381,32820,0,1,1,0,0,2042.77,1895,101.84,3.27782,600,20,0,2,0,1,0,0,0), +(@CGUID+2382,32820,0,1,1,0,0,2128.86,676.09,35.774,3.255,600,20,0,2,0,1,0,0,0), +(@CGUID+2383,32820,0,1,1,0,0,1930.97,1361.04,68.2014,5.75946,600,20,0,2,0,1,0,0,0), +(@CGUID+2384,32820,0,1,1,0,0,1917.79,1752.5,95.0883,3.73869,600,20,0,2,0,1,0,0,0), +(@CGUID+2385,32820,0,1,1,0,0,2129.72,1302.56,53.803,0.914,600,20,0,2,0,1,0,0,0), +(@CGUID+2386,32820,0,1,1,0,0,2129.84,845.292,32.861,1.673,600,20,0,2,0,1,0,0,0), +(@CGUID+2387,32820,0,1,1,0,0,2130.11,1195.2,43.28,3.537,600,20,0,2,0,1,0,0,0), +(@CGUID+2388,32820,0,1,1,0,0,2078.82,1746.4,76.4259,4.10132,600,20,0,2,0,1,0,0,0), +(@CGUID+2389,32820,0,1,1,0,0,2130.51,-229,50.741,4.335,600,20,0,2,0,1,0,0,0), +(@CGUID+2390,32820,0,1,1,0,0,2130.54,836.084,33.936,5.46,600,20,0,2,0,1,0,0,0), +(@CGUID+2391,32820,0,1,1,0,0,2130.57,277.66,56.109,0.016,600,20,0,2,0,1,0,0,0), +(@CGUID+2392,32820,0,1,1,0,0,2131.32,1081.94,32.295,1.587,600,20,0,2,0,1,0,0,0), +(@CGUID+2393,32820,0,1,1,0,0,2131.94,78.192,32.567,4.208,600,20,0,2,0,1,0,0,0), +(@CGUID+2394,32820,0,1,1,0,0,2132.06,1172.27,41.235,5.514,600,20,0,2,0,1,0,0,0), +(@CGUID+2395,32820,0,1,1,0,0,2132.21,-292,53.727,6.193,600,20,0,2,0,1,0,0,0), +(@CGUID+2396,32820,0,1,1,0,0,2134.68,766.579,33.696,1.245,600,20,0,2,0,1,0,0,0), +(@CGUID+2397,32820,0,1,1,0,0,2134.81,24.776,40.508,1.191,600,20,0,2,0,1,0,0,0), +(@CGUID+2398,32820,0,1,1,0,0,2045.77,1592.61,70.3002,1.46481,600,20,0,2,0,1,0,0,0), +(@CGUID+2399,32820,0,1,1,0,0,2136.56,-55,42.489,2.449,600,20,0,2,0,1,0,0,0), +(@CGUID+2400,32820,0,1,1,0,0,1809.05,1487.63,92.2249,2.22045,600,20,0,2,0,1,0,0,0), +(@CGUID+2401,32820,0,1,1,0,0,2137.51,447.275,67.546,4.482,600,20,0,2,0,1,0,0,0), +(@CGUID+2402,32820,0,1,1,0,0,2138.22,932.278,32.517,2.298,600,20,0,2,0,1,0,0,0), +(@CGUID+2403,32820,0,1,1,0,0,2139.55,-629,89.778,5.681,600,20,0,2,0,1,0,0,0), +(@CGUID+2404,32820,0,1,1,0,0,2139.64,-70,43.366,6.014,600,20,0,2,0,1,0,0,0), +(@CGUID+2405,32820,0,1,1,0,0,2140.19,-143,41.601,2.055,600,20,0,2,0,1,0,0,0), +(@CGUID+2406,32820,0,1,1,0,0,2140.74,333.625,47.038,5.583,600,20,0,2,0,1,0,0,0), +(@CGUID+2407,32820,0,1,1,0,0,2142.25,-574,79.316,1.743,600,20,0,2,0,1,0,0,0), +(@CGUID+2408,32820,0,1,1,0,0,2143.7,617.114,34.785,6.194,600,20,0,2,0,1,0,0,0), +(@CGUID+2409,32820,0,1,1,0,0,2143.81,905.505,33.556,5.041,600,20,0,2,0,1,0,0,0), +(@CGUID+2410,32820,0,1,1,0,0,2143.92,-261,54.597,4.158,600,20,0,2,0,1,0,0,0), +(@CGUID+2411,32820,0,1,1,0,0,2144.01,295.302,49.235,4.696,600,20,0,2,0,1,0,0,0), +(@CGUID+2412,32820,0,1,1,0,0,2144.69,845.938,36.816,6.026,600,20,0,2,0,1,0,0,0), +(@CGUID+2413,32820,0,1,1,0,0,2167.13,1289.97,53.8044,2.92954,600,20,0,2,0,1,0,0,0), +(@CGUID+2414,32820,0,1,1,0,0,2146.51,1087.12,33.038,2.173,600,20,0,2,0,1,0,0,0), +(@CGUID+2415,32820,0,1,1,0,0,2147.98,-162,42.288,1.28,600,20,0,2,0,1,0,0,0), +(@CGUID+2416,32820,0,1,1,0,0,2148.51,-548,81.304,4.714,600,20,0,2,0,1,0,0,0), +(@CGUID+2417,32820,0,1,1,0,0,2148.96,1173.49,41.564,1.967,600,20,0,2,0,1,0,0,0), +(@CGUID+2418,32820,0,1,1,0,0,2149.56,923.256,33.366,2.19,600,20,0,2,0,1,0,0,0), +(@CGUID+2419,32820,0,1,1,0,0,2149.72,784.085,35.757,4.067,600,20,0,2,0,1,0,0,0), +(@CGUID+2420,32820,0,1,1,0,0,1912.29,1756.79,96.8451,0.664982,600,20,0,2,0,1,0,0,0), +(@CGUID+2421,32820,0,1,1,0,0,2150.27,581.356,38.759,5.833,600,20,0,2,0,1,0,0,0), +(@CGUID+2422,32820,0,1,1,0,0,2151.13,-532,81.656,4.728,600,20,0,2,0,1,0,0,0), +(@CGUID+2423,32820,0,1,1,0,0,2151.28,781.396,35.387,1.441,600,20,0,2,0,1,0,0,0), +(@CGUID+2424,32820,0,1,1,0,0,1913.28,1698.36,84.2699,1.17009,600,20,0,2,0,1,0,0,0), +(@CGUID+2425,32820,0,1,1,0,0,2152.85,-376,77.095,2.125,600,20,0,2,0,1,0,0,0), +(@CGUID+2426,32820,0,1,1,0,0,2153.82,264.085,43.75,6.073,600,20,0,2,0,1,0,0,0), +(@CGUID+2427,32820,0,1,1,0,0,2154.14,-549,81.38,4.69,600,20,0,2,0,1,0,0,0), +(@CGUID+2428,32820,0,1,1,0,0,2154.25,1273.87,52.923,5.091,600,20,0,2,0,1,0,0,0), +(@CGUID+2429,32820,0,1,1,0,0,2154.3,613.135,35.59,4.875,600,20,0,2,0,1,0,0,0), +(@CGUID+2430,32820,0,1,1,0,0,2154.42,-509,81.625,6.261,600,20,0,2,0,1,0,0,0), +(@CGUID+2431,32820,0,1,1,0,0,2156.87,76.336,30.127,1.953,600,20,0,2,0,1,0,0,0), +(@CGUID+2432,32820,0,1,1,0,0,2157.17,1314.07,53.888,4.172,600,20,0,2,0,1,0,0,0), +(@CGUID+2433,32820,0,1,1,0,0,2157.89,657.364,34.545,1.219,600,20,0,2,0,1,0,0,0), +(@CGUID+2434,32820,0,1,1,0,0,2158.68,1178.75,40.923,2.14,600,20,0,2,0,1,0,0,0), +(@CGUID+2435,32820,0,1,1,0,0,2103.8,1670.5,71.61,4.75789,600,20,0,2,0,1,0,0,0), +(@CGUID+2436,32820,0,1,1,0,0,2102.83,1710.7,67.3188,5.1591,600,20,0,2,0,1,0,0,0), +(@CGUID+2437,32820,0,1,1,0,0,2161.29,-135,40.317,5.06,600,20,0,2,0,1,0,0,0), +(@CGUID+2438,32820,0,1,1,0,0,2161.74,1309.66,54.058,3.609,600,20,0,2,0,1,0,0,0), +(@CGUID+2439,32820,0,1,1,0,0,2161.79,1078.17,32.831,2.191,600,20,0,2,0,1,0,0,0), +(@CGUID+2440,32820,0,1,1,0,0,2161.84,810.492,40.524,3.461,600,20,0,2,0,1,0,0,0), +(@CGUID+2441,32820,0,1,1,0,0,2162.56,1053.67,34.093,3.124,600,20,0,2,0,1,0,0,0), +(@CGUID+2442,32820,0,1,1,0,0,2163.73,657.343,34.545,2.354,600,20,0,2,0,1,0,0,0), +(@CGUID+2443,32820,0,1,1,0,0,2164.72,179.13,42.693,1.357,600,20,0,2,0,1,0,0,0), +(@CGUID+2444,32820,0,1,1,0,0,1950.14,1751.67,112.956,5.89412,600,20,0,2,0,1,0,0,0), +(@CGUID+2445,32820,0,1,1,0,0,1905.91,1666.46,84.3586,4.94577,600,20,0,2,0,1,0,0,0), +(@CGUID+2446,32820,0,1,1,0,0,2167.67,480.995,66.483,1.386,600,20,0,2,0,1,0,0,0), +(@CGUID+2447,32820,0,1,1,0,0,2167.71,-606,80.193,5.898,600,20,0,2,0,1,0,0,0), +(@CGUID+2448,32820,0,1,1,0,0,2167.89,1275.51,53.207,4.893,600,20,0,2,0,1,0,0,0), +(@CGUID+2449,32820,0,1,1,0,0,2169.13,1063.9,33.426,5.259,600,20,0,2,0,1,0,0,0), +(@CGUID+2450,32820,0,1,1,0,0,2170.73,-739,72.017,2.104,600,20,0,2,0,1,0,0,0), +(@CGUID+2451,32820,0,1,1,0,0,2171.07,11.519,41.672,3.089,600,20,0,2,0,1,0,0,0), +(@CGUID+2452,32820,0,1,1,0,0,2173.42,959.488,34.521,4.991,600,20,0,2,0,1,0,0,0), +(@CGUID+2453,32820,0,1,1,0,0,2175.75,-579,79.655,6.141,600,20,0,2,0,1,0,0,0), +(@CGUID+2454,32820,0,1,1,0,0,2176.37,-415,71.493,3.83,600,20,0,2,0,1,0,0,0), +(@CGUID+2455,32820,0,1,1,0,0,2176.81,-494,77.326,1.678,600,20,0,2,0,1,0,0,0), +(@CGUID+2456,32820,0,1,1,0,0,2177.08,-448,75,2.048,600,20,0,2,0,1,0,0,0), +(@CGUID+2457,32820,0,1,1,0,0,2177.16,-56,39.25,3.999,600,20,0,2,0,1,0,0,0), +(@CGUID+2458,32820,0,1,1,0,0,2178.04,-707,68.489,4.028,600,20,0,2,0,1,0,0,0), +(@CGUID+2459,32820,0,1,1,0,0,2179.45,265.599,41.922,2.515,600,20,0,2,0,1,0,0,0), +(@CGUID+2460,32820,0,1,1,0,0,2182.14,-21,37.709,3.873,600,20,0,2,0,1,0,0,0), +(@CGUID+2461,32820,0,1,1,0,0,2183.91,334.654,37.535,5.015,600,20,0,2,0,1,0,0,0), +(@CGUID+2462,32820,0,1,1,0,0,2184.19,-451,75.493,2.496,600,20,0,2,0,1,0,0,0), +(@CGUID+2463,32820,0,1,1,0,0,2184.33,156.662,54.539,3.572,600,20,0,2,0,1,0,0,0), +(@CGUID+2464,32820,0,1,1,0,0,2185.43,905.478,44.982,4.872,600,20,0,2,0,1,0,0,0), +(@CGUID+2465,32820,0,1,1,0,0,2185.44,-953,86.888,5.122,600,20,0,2,0,1,0,0,0), +(@CGUID+2466,32820,0,1,1,0,0,2186.22,985.717,34.936,3.18,600,20,0,2,0,1,0,0,0), +(@CGUID+2467,32820,0,1,1,0,0,2187.24,-124,33.846,3.261,600,20,0,2,0,1,0,0,0), +(@CGUID+2468,32820,0,1,1,0,0,2188.02,867.697,47.564,1.242,600,20,0,2,0,1,0,0,0), +(@CGUID+2469,32820,0,1,1,0,0,1963.34,1693.95,79.0409,5.03445,600,20,0,2,0,1,0,0,0), +(@CGUID+2470,32820,0,1,1,0,0,2189.44,244.623,35.495,5.568,600,20,0,2,0,1,0,0,0), +(@CGUID+2471,32820,0,1,1,0,0,2190.93,-350,76.38,0.323,600,20,0,2,0,1,0,0,0), +(@CGUID+2472,32820,0,1,1,0,0,2192.44,-803,78.426,4.797,600,20,0,2,0,1,0,0,0), +(@CGUID+2473,32820,0,1,1,0,0,2195.31,73.998,27.678,3.055,600,20,0,2,0,1,0,0,0), +(@CGUID+2474,32820,0,1,1,0,0,2198.03,-628,79.928,5.654,600,20,0,2,0,1,0,0,0), +(@CGUID+2475,32820,0,1,1,0,0,2199.94,-916,82.351,3.032,600,20,0,2,0,1,0,0,0), +(@CGUID+2476,32820,0,1,1,0,0,2200.89,-834,81.376,3.29,600,20,0,2,0,1,0,0,0), +(@CGUID+2477,32820,0,1,1,0,0,2201.67,569.413,28.92,1.475,600,20,0,2,0,1,0,0,0), +(@CGUID+2478,32820,0,1,1,0,0,2201.7,1008.8,37.503,3.11,600,20,0,2,0,1,0,0,0), +(@CGUID+2479,32820,0,1,1,0,0,2202.54,-790,77.934,5.658,600,20,0,2,0,1,0,0,0), +(@CGUID+2480,32820,0,1,1,0,0,2202.84,1184.23,31.857,2.052,600,20,0,2,0,1,0,0,0), +(@CGUID+2481,32820,0,1,1,0,0,2203.5,99.245,37.464,0.982,600,20,0,2,0,1,0,0,0), +(@CGUID+2482,32820,0,1,1,0,0,2206.58,-291,60.776,1.558,600,20,0,2,0,1,0,0,0), +(@CGUID+2483,32820,0,1,1,0,0,2207.06,625.442,24.75,5.076,600,20,0,2,0,1,0,0,0), +(@CGUID+2484,32820,0,1,1,0,0,2207.85,-83,28.178,2.542,600,20,0,2,0,1,0,0,0), +(@CGUID+2485,32820,0,1,1,0,0,2208.23,-46,29.994,3.938,600,20,0,2,0,1,0,0,0), +(@CGUID+2486,32820,0,1,1,0,0,2208.29,1108.22,35.033,5.086,600,20,0,2,0,1,0,0,0), +(@CGUID+2487,32820,0,1,1,0,0,2210.07,-884,79.818,3.91,600,20,0,2,0,1,0,0,0), +(@CGUID+2488,32820,0,1,1,0,0,2210.19,690.232,34.949,1.716,600,20,0,2,0,1,0,0,0), +(@CGUID+2489,32820,0,1,1,0,0,2210.48,613.118,25.056,1.509,600,20,0,2,0,1,0,0,0), +(@CGUID+2490,32820,0,1,1,0,0,2210.61,-343,76.102,6.024,600,20,0,2,0,1,0,0,0), +(@CGUID+2491,32820,0,1,1,0,0,2213.12,974.64,34.851,5.039,600,20,0,2,0,1,0,0,0), +(@CGUID+2492,32820,0,1,1,0,0,2213.42,1151.44,36.331,1.773,600,20,0,2,0,1,0,0,0), +(@CGUID+2493,32820,0,1,1,0,0,2213.96,1014.27,37.358,1.463,600,20,0,2,0,1,0,0,0), +(@CGUID+2494,32820,0,1,1,0,0,2214.63,-142,29.372,6.129,600,20,0,2,0,1,0,0,0), +(@CGUID+2495,32820,0,1,1,0,0,2214.8,830.625,42.754,3.829,600,20,0,2,0,1,0,0,0), +(@CGUID+2496,32820,0,1,1,0,0,2215.25,89.87,33.792,2.13,600,20,0,2,0,1,0,0,0), +(@CGUID+2497,32820,0,1,1,0,0,2215.64,810.335,36.014,4.717,600,20,0,2,0,1,0,0,0), +(@CGUID+2498,32820,0,1,1,0,0,2215.74,744.866,37.825,4.187,600,20,0,2,0,1,0,0,0), +(@CGUID+2499,32820,0,1,1,0,0,2215.75,187.039,46.615,0.698,600,20,0,2,0,1,0,0,0), +(@CGUID+2500,32820,0,1,1,0,0,2216.58,716.134,37.089,4.992,600,20,0,2,0,1,0,0,0), +(@CGUID+2501,32820,0,1,1,0,0,2217.6,688.029,35.747,6.015,600,20,0,2,0,1,0,0,0), +(@CGUID+2502,32820,0,1,1,0,0,2217.66,781.878,33.909,0.436,600,20,0,2,0,1,0,0,0), +(@CGUID+2503,32820,0,1,1,0,0,2218.03,780.519,33.878,4.977,600,20,0,2,0,1,0,0,0), +(@CGUID+2504,32820,0,1,1,0,0,2218.38,853.719,47.378,0.906,600,20,0,2,0,1,0,0,0), +(@CGUID+2505,32820,0,1,1,0,0,2218.94,-181,24.371,2.104,600,20,0,2,0,1,0,0,0), +(@CGUID+2506,32820,0,1,1,0,0,2219.32,-688,66.713,5.733,600,20,0,2,0,1,0,0,0), +(@CGUID+2507,32820,0,1,1,0,0,2219.82,449.194,53.727,1.446,600,20,0,2,0,1,0,0,0), +(@CGUID+2508,32820,0,1,1,0,0,2220.45,58.252,34.739,2.252,600,20,0,2,0,1,0,0,0), +(@CGUID+2509,32820,0,1,1,0,0,2222.72,847.681,46.425,6.038,600,20,0,2,0,1,0,0,0), +(@CGUID+2510,32820,0,1,1,0,0,2223.43,712.979,36.523,0.662,600,20,0,2,0,1,0,0,0), +(@CGUID+2511,32820,0,1,1,0,0,2223.5,399.235,45.126,0.504,600,20,0,2,0,1,0,0,0), +(@CGUID+2512,32820,0,1,1,0,0,2225.04,382.953,39.736,5.981,600,20,0,2,0,1,0,0,0), +(@CGUID+2513,32820,0,1,1,0,0,2226.55,517.816,40.286,3.045,600,20,0,2,0,1,0,0,0), +(@CGUID+2514,32820,0,1,1,0,0,2227.02,-750,71.357,0.732,600,20,0,2,0,1,0,0,0), +(@CGUID+2515,32820,0,1,1,0,0,2227.53,317.641,36.719,5.185,600,20,0,2,0,1,0,0,0), +(@CGUID+2516,32820,0,1,1,0,0,2229.11,636.011,24.968,4.452,600,20,0,2,0,1,0,0,0), +(@CGUID+2517,32820,0,1,1,0,0,2229.59,-206,40.297,1.597,600,20,0,2,0,1,0,0,0), +(@CGUID+2518,32820,0,1,1,0,0,2230.34,-29,25.738,4.09,600,20,0,2,0,1,0,0,0), +(@CGUID+2519,32820,0,1,1,0,0,2230.35,541.228,40.439,1.739,600,20,0,2,0,1,0,0,0), +(@CGUID+2520,32820,0,1,1,0,0,2230.55,975.858,37.83,5.8,600,20,0,2,0,1,0,0,0), +(@CGUID+2521,32820,0,1,1,0,0,2231.01,-239,52.908,0.153,600,20,0,2,0,1,0,0,0), +(@CGUID+2522,32820,0,1,1,0,0,2231.63,560.475,34.627,5.567,600,20,0,2,0,1,0,0,0), +(@CGUID+2523,32820,0,1,1,0,0,2231.82,755.998,34.81,4.626,600,20,0,2,0,1,0,0,0), +(@CGUID+2524,32820,0,1,1,0,0,2233.58,-1007,80.965,2.657,600,20,0,2,0,1,0,0,0), +(@CGUID+2525,32820,0,1,1,0,0,2235.19,447.66,46.216,2.968,600,20,0,2,0,1,0,0,0), +(@CGUID+2526,32820,0,1,1,0,0,2236.58,312.188,36.721,3.412,600,20,0,2,0,1,0,0,0), +(@CGUID+2527,32820,0,1,1,0,0,2236.77,-680,66.274,0.418,600,20,0,2,0,1,0,0,0), +(@CGUID+2528,32820,0,1,1,0,0,2238.35,918.627,45.64,4.4,600,20,0,2,0,1,0,0,0), +(@CGUID+2529,32820,0,1,1,0,0,2238.9,-915,75.816,4.474,600,20,0,2,0,1,0,0,0), +(@CGUID+2530,32820,0,1,1,0,0,2240.14,609.873,33.625,3.535,600,20,0,2,0,1,0,0,0), +(@CGUID+2531,32820,0,1,1,0,0,2241.17,133.656,48.826,4.33,600,20,0,2,0,1,0,0,0), +(@CGUID+2532,32820,0,1,1,0,0,2241.75,458.269,39.242,0.722,600,20,0,2,0,1,0,0,0), +(@CGUID+2533,32820,0,1,1,0,0,2242.3,707.793,35.301,6.015,600,20,0,2,0,1,0,0,0), +(@CGUID+2534,32820,0,1,1,0,0,2244.3,-799,73.969,4.518,600,20,0,2,0,1,0,0,0), +(@CGUID+2535,32820,0,1,1,0,0,2245.02,326.546,35.272,5.609,600,20,0,2,0,1,0,0,0), +(@CGUID+2536,32820,0,1,1,0,0,2246.19,239.989,34.26,1.255,600,20,0,2,0,1,0,0,0), +(@CGUID+2537,32820,0,1,1,0,0,2246.33,308.24,35.272,5.104,600,20,0,2,0,1,0,0,0), +(@CGUID+2538,32820,0,1,1,0,0,2242.45,599.449,33.3335,2.52821,600,20,0,2,0,1,0,0,0), +(@CGUID+2539,32820,0,1,1,0,0,2248.2,641.756,25,3.243,600,20,0,2,0,1,0,0,0), +(@CGUID+2540,32820,0,1,1,0,0,2248.69,331.302,35.189,5.554,600,20,0,2,0,1,0,0,0), +(@CGUID+2541,32820,0,1,1,0,0,2249.07,237.011,41.115,6.115,600,20,0,2,0,1,0,0,0), +(@CGUID+2542,32820,0,1,1,0,0,2249.76,267.438,34.274,3.569,600,20,0,2,0,1,0,0,0), +(@CGUID+2543,32820,0,1,1,0,0,2249.8,416.225,40.756,3.341,600,20,0,2,0,1,0,0,0), +(@CGUID+2544,32820,0,1,1,0,0,2250.01,960.429,42.133,1.314,600,20,0,2,0,1,0,0,0), +(@CGUID+2545,32820,0,1,1,0,0,2250.26,322.025,35.272,5.612,600,20,0,2,0,1,0,0,0), +(@CGUID+2546,32820,0,1,1,0,0,2250.35,249.125,41.115,6.097,600,20,0,2,0,1,0,0,0), +(@CGUID+2547,32820,0,1,1,0,0,2250.97,327.095,35.189,5.591,600,20,0,2,0,1,0,0,0), +(@CGUID+2548,32820,0,1,1,0,0,2251.46,-182,27.26,1.651,600,20,0,2,0,1,0,0,0), +(@CGUID+2549,32820,0,1,1,0,0,2251.83,641.975,24.75,0.245,600,20,0,2,0,1,0,0,0), +(@CGUID+2550,32820,0,1,1,0,0,2251.91,-307,65.069,1.42,600,20,0,2,0,1,0,0,0), +(@CGUID+2551,32820,0,1,1,0,0,2252.4,-17,26.358,0.748,600,20,0,2,0,1,0,0,0), +(@CGUID+2552,32820,0,1,1,0,0,2252.48,247.986,34.259,4.599,600,20,1,2,0,1,0,0,0), +(@CGUID+2553,32820,0,1,1,0,0,2252.73,250.472,34.259,6.011,600,20,0,2,0,1,0,0,0), +(@CGUID+2554,32820,0,1,1,0,0,2253.01,251.748,41.115,5.255,600,20,0,2,0,1,0,0,0), +(@CGUID+2555,32820,0,1,1,0,0,2253.27,-336,76.373,2.778,600,20,0,2,0,1,0,0,0), +(@CGUID+2556,32820,0,1,1,0,0,2254.41,297.984,34.612,5.776,600,20,0,2,0,1,0,0,0), +(@CGUID+2557,32820,0,1,1,0,0,2254.87,238.435,33.634,0.859,600,20,0,2,0,1,0,0,0), +(@CGUID+2558,32820,0,1,1,0,0,2254.88,-229,51.733,1.118,600,20,0,2,0,1,0,0,0), +(@CGUID+2559,32820,0,1,1,0,0,2255.34,317.76,35.165,6.128,600,20,0,2,0,1,0,0,0), +(@CGUID+2560,32820,0,1,1,0,0,2256.2,329.762,35.189,5.605,600,20,0,2,0,1,0,0,0), +(@CGUID+2561,32820,0,1,1,0,0,2256.83,233.273,41.115,1.251,600,20,0,2,0,1,0,0,0), +(@CGUID+2562,32820,0,1,1,0,0,2257.28,1101.54,33.523,0.983,600,20,0,2,0,1,0,0,0), +(@CGUID+2563,32820,0,1,1,0,0,2258,1230.01,34.533,0.171,600,20,0,2,0,1,0,0,0), +(@CGUID+2564,32820,0,1,1,0,0,2258.75,-362,78.608,2.684,600,20,0,2,0,1,0,0,0), +(@CGUID+2565,32820,0,1,1,0,0,2258.9,249.927,41.115,3.529,600,20,0,2,0,1,0,0,0), +(@CGUID+2566,32820,0,1,1,0,0,2259.14,312.748,34.701,0.742,600,20,0,2,0,1,0,0,0), +(@CGUID+2567,32820,0,1,1,0,0,2259.14,346.602,36.018,6.056,600,20,0,2,0,1,0,0,0), +(@CGUID+2568,32820,0,1,1,0,0,2260.35,325.859,35.16,5.591,600,20,0,2,0,1,0,0,0), +(@CGUID+2569,32820,0,1,1,0,0,2261,1015.88,39.699,2.774,600,20,0,2,0,1,0,0,0), +(@CGUID+2570,32820,0,1,1,0,0,2262.08,-721,67.26,1.205,600,20,0,2,0,1,0,0,0), +(@CGUID+2571,32820,0,1,1,0,0,2262.09,244.27,33.634,3.586,600,20,0,2,0,1,0,0,0), +(@CGUID+2572,32820,0,1,1,0,0,2262.99,1488.16,33.519,3.996,600,20,0,2,0,1,0,0,0), +(@CGUID+2573,32820,0,1,1,0,0,2264.45,251.177,41.115,4.974,600,20,0,2,0,1,0,0,0), +(@CGUID+2574,32820,0,1,1,0,0,2264.8,146.817,42.451,2.634,600,20,0,2,0,1,0,0,0), +(@CGUID+2575,32820,0,1,1,0,0,2265.31,238.893,34.257,2.61,600,20,0,2,0,1,0,0,0), +(@CGUID+2576,32820,0,1,1,0,0,2265.82,333.306,35.183,5.779,600,20,0,2,0,1,0,0,0), +(@CGUID+2577,32820,0,1,1,0,0,2266.43,320.628,34.316,5.505,600,20,0,2,0,1,0,0,0), +(@CGUID+2578,32820,0,1,1,0,0,2266.47,345.762,36.019,4.754,600,20,0,2,0,1,0,0,0), +(@CGUID+2579,32820,0,1,1,0,0,2266.67,1174.01,34.004,4.712,600,20,0,2,0,1,0,0,0), +(@CGUID+2580,32820,0,1,1,0,0,2268.22,897.28,46.609,1.807,600,20,0,2,0,1,0,0,0), +(@CGUID+2581,32820,0,1,1,0,0,2268.35,-404,77.129,3.161,600,20,0,2,0,1,0,0,0), +(@CGUID+2582,32820,0,1,1,0,0,2269.4,245.072,34.256,3.934,600,20,0,2,0,1,0,0,0), +(@CGUID+2583,32820,0,1,1,0,0,2269.52,280.954,35.135,2.893,600,20,0,2,0,1,0,0,0), +(@CGUID+2584,32820,0,1,1,0,0,2271.04,242.997,41.198,1.917,600,20,0,2,0,1,0,0,0), +(@CGUID+2585,32820,0,1,1,0,0,2271.33,1392.69,33.332,0.283,600,20,0,2,0,1,0,0,0), +(@CGUID+2586,32820,0,1,1,0,0,2271.47,0,24.333,3.697,600,20,0,2,0,1,0,0,0), +(@CGUID+2587,32820,0,1,1,0,0,2271.86,667.944,32.413,0.073,600,20,0,2,0,1,0,0,0), +(@CGUID+2588,32820,0,1,1,0,0,2271.97,289.642,35.06,2.905,600,20,0,2,0,1,0,0,0), +(@CGUID+2589,32820,0,1,1,0,0,2273.61,964.523,45.992,0.127,600,20,0,2,0,1,0,0,0), +(@CGUID+2590,32820,0,1,1,0,0,2275.09,-196,36.918,5.87,600,20,0,2,0,1,0,0,0), +(@CGUID+2591,32820,0,1,1,0,0,2277.59,-946,77.799,2.024,600,20,0,2,0,1,0,0,0), +(@CGUID+2592,32820,0,1,1,0,0,2280.33,1473.05,33.332,2.445,600,20,0,2,0,1,0,0,0), +(@CGUID+2593,32820,0,1,1,0,0,2280.49,1429.07,33.332,3.626,600,20,0,2,0,1,0,0,0), +(@CGUID+2594,32820,0,1,1,0,0,2281.22,-877,74.515,5.913,600,20,0,2,0,1,0,0,0), +(@CGUID+2595,32820,0,1,1,0,0,2281.5,1419.94,33.333,3.333,600,20,0,2,0,1,0,0,0), +(@CGUID+2596,32820,0,1,1,0,0,2283.77,1192.16,36.171,0.37,600,20,0,2,0,1,0,0,0), +(@CGUID+2597,32820,0,1,1,0,0,2283.95,242.051,41.114,2.494,600,20,0,2,0,1,0,0,0), +(@CGUID+2598,32820,0,1,1,0,0,2284.06,1386.85,33.583,5.228,600,20,0,2,0,1,0,0,0), +(@CGUID+2599,32820,0,1,1,0,0,2284.94,56.744,31.758,3.478,600,20,0,2,0,1,0,0,0), +(@CGUID+2600,32820,0,1,1,0,0,2284.98,560.028,35.597,1.235,600,20,0,2,0,1,0,0,0), +(@CGUID+2601,32820,0,1,1,0,0,2285.66,-222,43.143,0.708,600,20,0,2,0,1,0,0,0), +(@CGUID+2602,32820,0,1,1,0,0,2285.93,597.451,30.5,2.537,600,20,0,2,0,1,0,0,0), +(@CGUID+2603,32820,0,1,1,0,0,2286.23,337.584,34.228,3.604,600,20,1,2,0,1,0,0,0), +(@CGUID+2604,32820,0,1,1,0,0,2286.48,-781,68.963,0.839,600,20,0,2,0,1,0,0,0), +(@CGUID+2605,32820,0,1,1,0,0,2287.02,1314.32,31.399,5.33,600,20,0,2,0,1,0,0,0), +(@CGUID+2606,32820,0,1,1,0,0,2287.27,302.189,35.189,2.968,600,20,0,2,0,1,0,0,0), +(@CGUID+2607,32820,0,1,1,0,0,2287.94,855.278,39.751,1.603,600,20,0,2,0,1,0,0,0), +(@CGUID+2608,32820,0,1,1,0,0,2288.69,717.236,35.489,1.637,600,20,0,2,0,1,0,0,0), +(@CGUID+2609,32820,0,1,1,0,0,2288.87,243.432,27.172,5.223,600,20,0,2,0,1,0,0,0), +(@CGUID+2610,32820,0,1,1,0,0,2288.99,706.963,35.832,6.265,600,20,0,2,0,1,0,0,0), +(@CGUID+2611,32820,0,1,1,0,0,2289.03,235.309,27.088,1.301,600,20,0,2,0,1,0,0,0), +(@CGUID+2612,32820,0,1,1,0,0,2289.26,391.07,34.114,3.156,600,20,0,2,0,1,0,0,0), +(@CGUID+2613,32820,0,1,1,0,0,2289.37,401.44,33.95,3.308,600,20,0,2,0,1,0,0,0), +(@CGUID+2614,32820,0,1,1,0,0,2291.09,-1019,76.653,5.459,600,20,0,2,0,1,0,0,0), +(@CGUID+2615,32820,0,1,1,0,0,2292.45,233.122,27.273,1.71,600,20,0,2,0,1,0,0,0), +(@CGUID+2616,32820,0,1,1,0,0,2293.34,423.774,34.761,5.638,600,20,0,2,0,1,0,0,0), +(@CGUID+2617,32820,0,1,1,0,0,2294.07,722.974,35.609,5.35,600,20,0,2,0,1,0,0,0), +(@CGUID+2618,32820,0,1,1,0,0,2295.49,850.026,40.156,3.269,600,20,0,2,0,1,0,0,0), +(@CGUID+2619,32820,0,1,1,0,0,2295.53,178.992,35.525,6.01,600,20,0,2,0,1,0,0,0), +(@CGUID+2620,32820,0,1,1,0,0,2295.68,246.425,27.541,3.589,600,20,0,2,0,1,0,0,0), +(@CGUID+2621,32820,0,1,1,0,0,2296.19,-10,21.036,5.255,600,20,0,2,0,1,0,0,0), +(@CGUID+2622,32820,0,1,1,0,0,2297.44,1463.4,33.333,1.799,600,20,0,2,0,1,0,0,0), +(@CGUID+2623,32820,0,1,1,0,0,2298.11,1330.05,32.604,4.76,600,20,0,2,0,1,0,0,0), +(@CGUID+2624,32820,0,1,1,0,0,2299.6,983.578,49.516,3.326,600,20,0,2,0,1,0,0,0), +(@CGUID+2625,32820,0,1,1,0,0,2300.05,555.742,34.818,3.778,600,20,0,2,0,1,0,0,0), +(@CGUID+2626,32820,0,1,1,0,0,2301.89,949.822,56.805,0.538,600,20,0,2,0,1,0,0,0), +(@CGUID+2627,32820,0,1,1,0,0,2303.09,1125.23,34.745,0.168,600,20,0,2,0,1,0,0,0), +(@CGUID+2628,32820,0,1,1,0,0,2305.5,715.549,37.693,3.289,600,20,0,2,0,1,0,0,0), +(@CGUID+2629,32820,0,1,1,0,0,2305.77,1477.72,33.574,2.863,600,20,0,2,0,1,0,0,0), +(@CGUID+2630,32820,0,1,1,0,0,2307.53,264.358,38.67,1.313,600,20,0,2,0,1,0,0,0), +(@CGUID+2631,32820,0,1,1,0,0,2308.34,103.228,38.21,3.994,600,20,0,2,0,1,0,0,0), +(@CGUID+2632,32820,0,1,1,0,0,2310.55,648.208,31.984,2.79,600,20,0,2,0,1,0,0,0), +(@CGUID+2633,32820,0,1,1,0,0,2311.93,1037.26,43.999,5.483,600,20,0,2,0,1,0,0,0), +(@CGUID+2634,32820,0,1,1,0,0,2311.94,-351,72.51,3.097,600,20,0,2,0,1,0,0,0), +(@CGUID+2635,32820,0,1,1,0,0,2313.01,174.293,35.217,0.415,600,20,0,2,0,1,0,0,0), +(@CGUID+2636,32820,0,1,1,0,0,2314.93,288.278,37.311,2.876,600,20,0,2,0,1,0,0,0), +(@CGUID+2637,32820,0,1,1,0,0,2316.19,1537.13,34.128,4.887,600,20,0,2,0,1,0,0,0), +(@CGUID+2638,32820,0,1,1,0,0,2316.75,1549.7,33.736,3.995,600,20,0,2,0,1,0,0,0), +(@CGUID+2639,32820,0,1,1,0,0,2317.02,1314.35,32.847,4.488,600,20,0,2,0,1,0,0,0), +(@CGUID+2640,32820,0,1,1,0,0,2317.38,-194,36.857,5.514,600,20,0,2,0,1,0,0,0), +(@CGUID+2641,32820,0,1,1,0,0,2317.61,563.985,26.07,3.317,600,20,0,2,0,1,0,0,0), +(@CGUID+2642,32820,0,1,1,0,0,2318.22,-176,32.414,0.941,600,20,0,2,0,1,0,0,0), +(@CGUID+2643,32820,0,1,1,0,0,2319.53,1098.57,37.407,1.036,600,20,0,2,0,1,0,0,0), +(@CGUID+2644,32820,0,1,1,0,0,2320.4,-255,47.498,3.949,600,20,0,2,0,1,0,0,0), +(@CGUID+2645,32820,0,1,1,0,0,2320.82,653.608,31.56,5.556,600,20,0,2,0,1,0,0,0), +(@CGUID+2646,32820,0,1,1,0,0,2322.08,-378,71.204,2.335,600,20,0,2,0,1,0,0,0), +(@CGUID+2647,32820,0,1,1,0,0,2322.2,332.751,36.502,4.385,600,20,0,2,0,1,0,0,0), +(@CGUID+2648,32820,0,1,1,0,0,2323.16,1482.42,33.574,1.884,600,20,0,2,0,1,0,0,0), +(@CGUID+2649,32820,0,1,1,0,0,2323.53,1004.91,51.782,2.099,600,20,0,2,0,1,0,0,0), +(@CGUID+2650,32820,0,1,1,0,0,2324.44,622.718,33.868,3.246,600,20,0,2,0,1,0,0,0), +(@CGUID+2651,32820,0,1,1,0,0,2325.31,-667,69.304,0.387,600,20,0,2,0,1,0,0,0), +(@CGUID+2652,32820,0,1,1,0,0,2327.63,114.74,36.88,3.775,600,20,0,2,0,1,0,0,0), +(@CGUID+2653,32820,0,1,1,0,0,2327.67,-206,38.609,6.026,600,20,0,2,0,1,0,0,0), +(@CGUID+2654,32820,0,1,1,0,0,2327.82,693.471,39.356,1.926,600,20,0,2,0,1,0,0,0), +(@CGUID+2655,32820,0,1,1,0,0,2328.58,774.542,33.337,5.827,600,20,0,2,0,1,0,0,0), +(@CGUID+2656,32820,0,1,1,0,0,2330.09,243.529,28.61,5.202,600,20,0,2,0,1,0,0,0), +(@CGUID+2657,32820,0,1,1,0,0,2331.17,1391.91,33.333,3.749,600,20,0,2,0,1,0,0,0), +(@CGUID+2658,32820,0,1,1,0,0,2331.26,1693.33,46.975,2.969,600,20,0,2,0,1,0,0,0), +(@CGUID+2659,32820,0,1,1,0,0,2332.93,933.291,61.245,0.091,600,20,0,2,0,1,0,0,0), +(@CGUID+2660,32820,0,1,1,0,0,2334.68,115.599,36.568,5.198,600,20,0,2,0,1,0,0,0), +(@CGUID+2661,32820,0,1,1,0,0,2340.05,1015.01,51.349,1.017,600,20,0,2,0,1,0,0,0), +(@CGUID+2662,32820,0,1,1,0,0,2340.52,763.396,34.971,4.497,600,20,0,2,0,1,0,0,0), +(@CGUID+2663,32820,0,1,1,0,0,2340.65,732.441,36.408,2.016,600,20,0,2,0,1,0,0,0), +(@CGUID+2664,32820,0,1,1,0,0,2341.36,178.039,38.336,6.054,600,20,0,2,0,1,0,0,0), +(@CGUID+2665,32820,0,1,1,0,0,2341.99,-226,41.779,3.074,600,20,0,2,0,1,0,0,0), +(@CGUID+2666,32820,0,1,1,0,0,2342.92,1314.31,34.119,3.194,600,20,0,2,0,1,0,0,0), +(@CGUID+2667,32820,0,1,1,0,0,2343.9,595.659,34.857,0.712,600,20,0,2,0,1,0,0,0), +(@CGUID+2668,32820,0,1,1,0,0,2344.03,265.531,34.206,0.211,600,20,0,2,0,1,0,0,0), +(@CGUID+2669,32820,0,1,1,0,0,2344.56,894.859,57.8,5.072,600,20,0,2,0,1,0,0,0), +(@CGUID+2670,32820,0,1,1,0,0,2345.99,1129.3,41.876,1.589,600,20,0,2,0,1,0,0,0), +(@CGUID+2671,32820,0,1,1,0,0,2346.36,50.501,27.321,5.781,600,20,0,2,0,1,0,0,0), +(@CGUID+2672,32820,0,1,1,0,0,2348.1,1384.92,33.528,0.728,600,20,0,2,0,1,0,0,0), +(@CGUID+2673,32820,0,1,1,0,0,2348.53,176.39,37.435,2.873,600,20,0,2,0,1,0,0,0), +(@CGUID+2674,32820,0,1,1,0,0,2348.58,492.862,33.358,4.879,600,20,0,2,0,1,0,0,0), +(@CGUID+2675,32820,0,1,1,0,0,2349.34,-910,71.468,1.993,600,20,0,2,0,1,0,0,0), +(@CGUID+2676,32820,0,1,1,0,0,2349.95,1291.15,33.534,1.661,600,20,0,2,0,1,0,0,0), +(@CGUID+2677,32820,0,1,1,0,0,2350.06,679.128,35.492,2.183,600,20,0,2,0,1,0,0,0), +(@CGUID+2678,32820,0,1,1,0,0,2350.12,609.547,35.335,1.012,600,20,0,2,0,1,0,0,0), +(@CGUID+2679,32820,0,1,1,0,0,2350.54,1469.74,33.332,3.855,600,20,0,2,0,1,0,0,0), +(@CGUID+2680,32820,0,1,1,0,0,2350.96,-256,42.913,5.774,600,20,0,2,0,1,0,0,0), +(@CGUID+2681,32820,0,1,1,0,0,2351.02,-1050,83.63,5.796,600,20,0,2,0,1,0,0,0), +(@CGUID+2682,32820,0,1,1,0,0,2351.05,649.239,33.729,5.742,600,20,0,2,0,1,0,0,0), +(@CGUID+2683,32820,0,1,1,0,0,2351.5,81.281,28.505,1.363,600,20,0,2,0,1,0,0,0), +(@CGUID+2684,32820,0,1,1,0,0,2352.98,-160,28.558,2.635,600,20,0,2,0,1,0,0,0), +(@CGUID+2685,32820,0,1,1,0,0,2354.14,1367.2,33.332,5.345,600,20,0,2,0,1,0,0,0), +(@CGUID+2686,32820,0,1,1,0,0,2354.38,329.058,37.779,4.064,600,20,0,2,0,1,0,0,0), +(@CGUID+2687,32820,0,1,1,0,0,2354.99,866.681,54.057,1.686,600,20,0,2,0,1,0,0,0), +(@CGUID+2688,32820,0,1,1,0,0,2355.48,251.407,28.57,4.943,600,20,0,2,0,1,0,0,0), +(@CGUID+2689,32820,0,1,1,0,0,2356.2,1173.56,37.18,0.307,600,20,0,2,0,1,0,0,0), +(@CGUID+2690,32820,0,1,1,0,0,2356.43,672.208,34.242,0.826,600,20,0,2,0,1,0,0,0), +(@CGUID+2691,32820,0,1,1,0,0,2356.71,1288.87,32.962,5.288,600,20,0,2,0,1,0,0,0), +(@CGUID+2692,32820,0,1,1,0,0,2360.86,877.532,57.312,6.185,600,20,0,2,0,1,0,0,0), +(@CGUID+2693,32820,0,1,1,0,0,2361.41,425.175,33.552,1.843,600,20,0,2,0,1,0,0,0), +(@CGUID+2694,32820,0,1,1,0,0,2361.42,1313.94,33.537,6.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2695,32820,0,1,1,0,0,2363.14,1650.9,33.881,0.542,600,20,0,2,0,1,0,0,0), +(@CGUID+2696,32820,0,1,1,0,0,2363.58,1215.44,34.043,1.34,600,20,0,2,0,1,0,0,0), +(@CGUID+2697,32820,0,1,1,0,0,2364.95,294.312,34.916,0.113,600,20,0,2,0,1,0,0,0), +(@CGUID+2698,32820,0,1,1,0,0,2365.96,-581,75.685,0.85,600,20,0,2,0,1,0,0,0), +(@CGUID+2699,32820,0,1,1,0,0,2370.9,-442,76.593,6.172,600,20,0,2,0,1,0,0,0), +(@CGUID+2700,32820,0,1,1,0,0,2371.08,204.149,35.612,1.807,600,20,0,2,0,1,0,0,0), +(@CGUID+2701,32820,0,1,1,0,0,2372.24,-834,71.854,5.471,600,20,0,2,0,1,0,0,0), +(@CGUID+2702,32820,0,1,1,0,0,2372.64,334.076,38.745,0.673,600,20,1,2,0,1,0,0,0), +(@CGUID+2703,32820,0,1,1,0,0,2373.57,1543.44,34.328,0.443,600,20,0,2,0,1,0,0,0), +(@CGUID+2704,32820,0,1,1,0,0,2374.06,1284.32,31.413,4.418,600,20,0,2,0,1,0,0,0), +(@CGUID+2705,32820,0,1,1,0,0,2374.97,580.367,33.505,4.767,600,20,0,2,0,1,0,0,0), +(@CGUID+2706,32820,0,1,1,0,0,2375.43,1098.79,43.639,5.316,600,20,0,2,0,1,0,0,0), +(@CGUID+2707,32820,0,1,1,0,0,2376.34,1493.49,34.884,5.341,600,20,0,2,0,1,0,0,0), +(@CGUID+2708,32820,0,1,1,0,0,2377,1017.97,54.718,3.905,600,20,0,2,0,1,0,0,0), +(@CGUID+2709,32820,0,1,1,0,0,2377.16,111.89,27.662,4.962,600,20,0,2,0,1,0,0,0), +(@CGUID+2710,32820,0,1,1,0,0,2377.67,-594,72.983,1.424,600,20,0,2,0,1,0,0,0), +(@CGUID+2711,32820,0,1,1,0,0,2377.8,747.063,34.106,4.872,600,20,0,2,0,1,0,0,0), +(@CGUID+2712,32820,0,1,1,0,0,2377.98,137.006,31.717,3.492,600,20,0,2,0,1,0,0,0), +(@CGUID+2713,32820,0,1,1,0,0,2378.88,-572,74.79,2.643,600,20,0,2,0,1,0,0,0), +(@CGUID+2714,32820,0,1,1,0,0,2379.37,1877.52,0.848,4.616,600,20,0,2,0,1,0,0,0), +(@CGUID+2715,32820,0,1,1,0,0,2379.44,1017.43,55.545,0.852,600,20,0,2,0,1,0,0,0), +(@CGUID+2716,32820,0,1,1,0,0,2382.23,636.662,30.31,0.463,600,20,0,2,0,1,0,0,0), +(@CGUID+2717,32820,0,1,1,0,0,2382.42,-935,67.969,2.253,600,20,0,2,0,1,0,0,0), +(@CGUID+2718,32820,0,1,1,0,0,2383.29,1106.76,46.027,6.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2719,32820,0,1,1,0,0,2384.88,1051.42,56.973,4.909,600,20,0,2,0,1,0,0,0), +(@CGUID+2720,32820,0,1,1,0,0,2386.36,-1050,85.605,3.171,600,20,0,2,0,1,0,0,0), +(@CGUID+2721,32820,0,1,1,0,0,2387.03,204.682,35.487,5.981,600,20,0,2,0,1,0,0,0), +(@CGUID+2722,32820,0,1,1,0,0,2387.31,-627,70.923,4.593,600,20,0,2,0,1,0,0,0), +(@CGUID+2723,32820,0,1,1,0,0,2387.66,-447,74.785,4.973,600,20,0,2,0,1,0,0,0), +(@CGUID+2724,32820,0,1,1,0,0,2388.53,-448,75.259,3.57,600,20,0,2,0,1,0,0,0), +(@CGUID+2725,32820,0,1,1,0,0,2388.84,-373,68.993,3.957,600,20,0,2,0,1,0,0,0), +(@CGUID+2726,32820,0,1,1,0,0,2389.22,-932,68.069,1.36,600,20,0,2,0,1,0,0,0), +(@CGUID+2727,32820,0,1,1,0,0,2389.34,1440.19,34.403,2.12,600,20,0,2,0,1,0,0,0), +(@CGUID+2728,32820,0,1,1,0,0,2390.27,336.502,40.016,2.271,600,20,0,2,0,1,0,0,0), +(@CGUID+2729,32820,0,1,1,0,0,2394.46,-291,55.946,0.978,600,20,0,2,0,1,0,0,0), +(@CGUID+2730,32820,0,1,1,0,0,2395.9,-592,71.83,0.24,600,20,0,2,0,1,0,0,0), +(@CGUID+2731,32820,0,1,1,0,0,2396.11,1262.56,36.633,5.658,600,20,0,2,0,1,0,0,0), +(@CGUID+2732,32820,0,1,1,0,0,2396.53,870.308,64.018,0.119,600,20,0,2,0,1,0,0,0), +(@CGUID+2733,32820,0,1,1,0,0,2398.11,1026.08,61.023,3.502,600,20,0,2,0,1,0,0,0), +(@CGUID+2734,32820,0,1,1,0,0,2398.29,1596.08,33.56,4.911,600,20,0,2,0,1,0,0,0), +(@CGUID+2735,32820,0,1,1,0,0,2401.57,1406.94,32.985,2.087,600,20,0,2,0,1,0,0,0), +(@CGUID+2736,32820,0,1,1,0,0,2402.73,1124.35,50.437,3.04,600,20,0,2,0,1,0,0,0), +(@CGUID+2737,32820,0,1,1,0,0,2403.28,227.164,34.464,1.926,600,20,0,2,0,1,0,0,0), +(@CGUID+2738,32820,0,1,1,0,0,2403.65,1105.96,52.947,6.067,600,20,0,2,0,1,0,0,0), +(@CGUID+2739,32820,0,1,1,0,0,2403.79,675.319,34.263,2.516,600,20,0,2,0,1,0,0,0), +(@CGUID+2740,32820,0,1,1,0,0,2405.23,1285.12,31.2,4.19,600,20,0,2,0,1,0,0,0), +(@CGUID+2741,32820,0,1,1,0,0,2405.36,-734,73.272,2.557,600,20,0,2,0,1,0,0,0), +(@CGUID+2742,32820,0,1,1,0,0,2406.45,-1035,85.414,0.457,600,20,0,2,0,1,0,0,0), +(@CGUID+2743,32820,0,1,1,0,0,2406.7,795.103,41.574,4.812,600,20,0,2,0,1,0,0,0), +(@CGUID+2744,32820,0,1,1,0,0,2408.2,687.692,33.231,2.845,600,20,0,2,0,1,0,0,0), +(@CGUID+2745,32820,0,1,1,0,0,2409.2,1381.42,36.009,6.158,600,20,0,2,0,1,0,0,0), +(@CGUID+2746,32820,0,1,1,0,0,2409.28,1889.54,11.37,5.307,600,20,0,2,0,1,0,0,0), +(@CGUID+2747,32820,0,1,1,0,0,2410.23,-241,45.519,1.328,600,20,0,2,0,1,0,0,0), +(@CGUID+2748,32820,0,1,1,0,0,2410.56,1583.85,32.966,3.664,600,20,0,2,0,1,0,0,0), +(@CGUID+2749,32820,0,1,1,0,0,2410.67,612.571,30.944,3.927,600,20,0,2,0,1,0,0,0), +(@CGUID+2750,32820,0,1,1,0,0,2411.49,653.125,31.986,2.168,600,20,0,2,0,1,0,0,0), +(@CGUID+2751,32820,0,1,1,0,0,2411.89,1399.55,33.384,0.56,600,20,0,2,0,1,0,0,0), +(@CGUID+2752,32820,0,1,1,0,0,2412.98,745.356,41.134,0.099,600,20,0,2,0,1,0,0,0), +(@CGUID+2753,32820,0,1,1,0,0,2413.26,-277,59.124,5.309,600,20,0,2,0,1,0,0,0), +(@CGUID+2754,32820,0,1,1,0,0,2413.61,1520.4,34.687,2.74,600,20,0,2,0,1,0,0,0), +(@CGUID+2755,32820,0,1,1,0,0,2414.1,1303.18,30.4,1.796,600,20,0,2,0,1,0,0,0), +(@CGUID+2756,32820,0,1,1,0,0,2416.16,1335.9,33.074,3.269,600,20,0,2,0,1,0,0,0), +(@CGUID+2757,32820,0,1,1,0,0,2416.42,195.813,31.897,4.942,600,20,0,2,0,1,0,0,0), +(@CGUID+2758,32820,0,1,1,0,0,2417.2,-275,59.469,2.832,600,20,0,2,0,1,0,0,0), +(@CGUID+2759,32820,0,1,1,0,0,2417.36,1214.98,43.743,3.638,600,20,0,2,0,1,0,0,0), +(@CGUID+2760,32820,0,1,1,0,0,2417.91,-742,70.812,0.802,600,20,0,2,0,1,0,0,0), +(@CGUID+2761,32820,0,1,1,0,0,2418,-479,74.076,4.456,600,20,0,2,0,1,0,0,0), +(@CGUID+2762,32820,0,1,1,0,0,2419.78,1567.44,32.97,3.735,600,20,0,2,0,1,0,0,0), +(@CGUID+2763,32820,0,1,1,0,0,2421.85,190.064,32.594,3.308,600,20,0,2,0,1,0,0,0), +(@CGUID+2764,32820,0,1,1,0,0,2422.22,297.866,35.91,3.53,600,20,0,2,0,1,0,0,0), +(@CGUID+2765,32820,0,1,1,0,0,2424.05,148.275,31.336,2.675,600,20,0,2,0,1,0,0,0), +(@CGUID+2766,32820,0,1,1,0,0,2425.21,-651,72.322,4.155,600,20,0,2,0,1,0,0,0), +(@CGUID+2767,32820,0,1,1,0,0,2425.83,218.091,36.324,2.626,600,20,0,2,0,1,0,0,0), +(@CGUID+2768,32820,0,1,1,0,0,2429.17,1531.98,35.504,2.935,600,20,0,2,0,1,0,0,0), +(@CGUID+2769,32820,0,1,1,0,0,2429.26,889.561,72.831,4.188,600,20,0,2,0,1,0,0,0), +(@CGUID+2770,32820,0,1,1,0,0,2432.26,738.563,40.884,5.255,600,20,0,2,0,1,0,0,0), +(@CGUID+2771,32820,0,1,1,0,0,2432.8,772.851,43.749,0.52,600,20,0,2,0,1,0,0,0), +(@CGUID+2772,32820,0,1,1,0,0,2433.11,978.304,68.19,1.34,600,20,0,2,0,1,0,0,0), +(@CGUID+2773,32820,0,1,1,0,0,2434.17,608.949,31.609,3.929,600,20,0,2,0,1,0,0,0), +(@CGUID+2774,32820,0,1,1,0,0,2434.33,-404,68.323,1.155,600,20,0,2,0,1,0,0,0), +(@CGUID+2775,32820,0,1,1,0,0,2435.63,1777.61,29.416,4.681,600,20,0,2,0,1,0,0,0), +(@CGUID+2776,32820,0,1,1,0,0,2436.55,-192,33.496,0.211,600,20,0,2,0,1,0,0,0), +(@CGUID+2777,32820,0,1,1,0,0,2438.41,1599.72,50.777,5.947,600,20,0,2,0,1,0,0,0), +(@CGUID+2778,32820,0,1,1,0,0,2438.83,875.833,74.285,3.298,600,20,0,2,0,1,0,0,0), +(@CGUID+2779,32820,0,1,1,0,0,2439.32,-400,68.798,2.566,600,20,0,2,0,1,0,0,0), +(@CGUID+2780,32820,0,1,1,0,0,2439.4,-684,72.739,3.02,600,20,0,2,0,1,0,0,0), +(@CGUID+2781,32820,0,1,1,0,0,2440.72,486.974,44.588,4.485,600,20,0,2,0,1,0,0,0), +(@CGUID+2782,32820,0,1,1,0,0,2441.02,1589.64,72.156,4.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2783,32820,0,1,1,0,0,2441.18,360.312,32.705,5.067,600,20,0,2,0,1,0,0,0), +(@CGUID+2784,32820,0,1,1,0,0,2441.91,763.84,46.683,5.054,600,20,0,2,0,1,0,0,0), +(@CGUID+2785,32820,0,1,1,0,0,2441.93,1472.27,32.176,4.253,600,20,0,2,0,1,0,0,0), +(@CGUID+2786,32820,0,1,1,0,0,2442.47,1333.02,27.135,2.692,600,20,0,2,0,1,0,0,0), +(@CGUID+2787,32820,0,1,1,0,0,2442.5,226.8,41.196,0.172,600,20,0,2,0,1,0,0,0), +(@CGUID+2788,32820,0,1,1,0,0,2442.64,-543,71.297,3.584,600,20,0,2,0,1,0,0,0), +(@CGUID+2789,32820,0,1,1,0,0,2442.75,-656,71.741,2.654,600,20,0,2,0,1,0,0,0), +(@CGUID+2790,32820,0,1,1,0,0,2442.84,-611,70.441,3.285,600,20,0,2,0,1,0,0,0), +(@CGUID+2791,32820,0,1,1,0,0,2444.13,1599.84,66.573,3.921,600,20,0,2,0,1,0,0,0), +(@CGUID+2792,32820,0,1,1,0,0,2447.07,797.919,48.376,5.855,600,20,0,2,0,1,0,0,0), +(@CGUID+2793,32820,0,1,1,0,0,2447.11,1584.32,44.952,1.498,600,20,0,2,0,1,0,0,0), +(@CGUID+2794,32820,0,1,1,0,0,2447.51,-326,68.49,0.001,600,20,0,2,0,1,0,0,0), +(@CGUID+2795,32820,0,1,1,0,0,2448.66,473.064,44.351,4.494,600,20,0,2,0,1,0,0,0), +(@CGUID+2796,32820,0,1,1,0,0,2448.74,438.474,37.248,0.923,600,20,0,2,0,1,0,0,0), +(@CGUID+2797,32820,0,1,1,0,0,2448.81,-473,76.137,4.731,600,20,0,2,0,1,0,0,0), +(@CGUID+2798,32820,0,1,1,0,0,2449.55,1586.94,61.069,1.798,600,20,0,2,0,1,0,0,0), +(@CGUID+2799,32820,0,1,1,0,0,2450.12,468.537,43.871,2.586,600,20,0,2,0,1,0,0,0), +(@CGUID+2800,32820,0,1,1,0,0,2450.14,1596.42,37.069,3.452,600,20,0,2,0,1,0,0,0), +(@CGUID+2801,32820,0,1,1,0,0,2451.87,939.724,75.693,4.989,600,20,0,2,0,1,0,0,0), +(@CGUID+2802,32820,0,1,1,0,0,2452.02,400.364,35.155,1.552,600,20,0,2,0,1,0,0,0), +(@CGUID+2803,32820,0,1,1,0,0,2453.19,1600.67,72.156,0.612,600,20,0,2,0,1,0,0,0), +(@CGUID+2804,32820,0,1,1,0,0,2453.67,1085.37,61.041,0.916,600,20,0,2,0,1,0,0,0), +(@CGUID+2805,32820,0,1,1,0,0,2456.21,1600.09,56.384,3.744,600,20,0,2,0,1,0,0,0), +(@CGUID+2806,32820,0,1,1,0,0,2457.74,-961,73.592,4.799,600,20,0,2,0,1,0,0,0), +(@CGUID+2807,32820,0,1,1,0,0,2460.72,-843,59.263,3.194,600,20,0,2,0,1,0,0,0), +(@CGUID+2808,32820,0,1,1,0,0,2460.77,1715.16,24.784,0.707,600,20,0,2,0,1,0,0,0), +(@CGUID+2809,32820,0,1,1,0,0,2461.74,1389.54,24.402,5.66,600,20,0,2,0,1,0,0,0), +(@CGUID+2810,32820,0,1,1,0,0,2463.91,-832,61.865,2.465,600,20,0,2,0,1,0,0,0), +(@CGUID+2811,32820,0,1,1,0,0,2464.89,240.908,44.565,2.955,600,20,0,2,0,1,0,0,0), +(@CGUID+2812,32820,0,1,1,0,0,2468.9,-534,73.361,0.95,600,20,0,2,0,1,0,0,0), +(@CGUID+2813,32820,0,1,1,0,0,2468.97,694.866,45.229,1.525,600,20,0,2,0,1,0,0,0), +(@CGUID+2814,32820,0,1,1,0,0,2469.59,678.841,41.703,4.656,600,20,0,2,0,1,0,0,0), +(@CGUID+2815,32820,0,1,1,0,0,2469.93,-414,76.909,4.781,600,20,0,2,0,1,0,0,0), +(@CGUID+2816,32820,0,1,1,0,0,2470.08,-764,66.258,5.086,600,20,0,2,0,1,0,0,0), +(@CGUID+2817,32820,0,1,1,0,0,2470.76,1133.18,62.891,4.785,600,20,0,2,0,1,0,0,0), +(@CGUID+2818,32820,0,1,1,0,0,2472.49,-660,71.856,2.738,600,20,0,2,0,1,0,0,0), +(@CGUID+2819,32820,0,1,1,0,0,2474.11,136.395,30.48,2.844,600,20,0,2,0,1,0,0,0), +(@CGUID+2820,32820,0,1,1,0,0,2474.74,17.994,24.719,3.621,600,20,0,2,0,1,0,0,0), +(@CGUID+2821,32820,0,1,1,0,0,2478.08,670.223,43.878,4.858,600,20,0,2,0,1,0,0,0), +(@CGUID+2822,32820,0,1,1,0,0,2478.1,988.421,70.941,2.216,600,20,0,2,0,1,0,0,0), +(@CGUID+2823,32820,0,1,1,0,0,2478.76,-586,72.697,3.975,600,20,0,2,0,1,0,0,0), +(@CGUID+2824,32820,0,1,1,0,0,2481.06,-279,49.659,2.055,600,20,0,2,0,1,0,0,0), +(@CGUID+2825,32820,0,1,1,0,0,2481.38,1649.24,15.072,3.164,600,20,0,2,0,1,0,0,0), +(@CGUID+2826,32820,0,1,1,0,0,2481.47,-221,31.593,2.759,600,20,0,2,0,1,0,0,0), +(@CGUID+2827,32820,0,1,1,0,0,2481.59,1653.69,14.068,3.26,600,20,0,2,0,1,0,0,0), +(@CGUID+2828,32820,0,1,1,0,0,2482.21,1328.45,25.967,3.804,600,20,0,2,0,1,0,0,0), +(@CGUID+2829,32820,0,1,1,0,0,2483.31,1008,71.644,3.179,600,20,0,2,0,1,0,0,0), +(@CGUID+2830,32820,0,1,1,0,0,2483.98,-342,73.162,0.109,600,20,0,2,0,1,0,0,0), +(@CGUID+2831,32820,0,1,1,0,0,2484.06,27.081,25.565,1.039,600,20,0,2,0,1,0,0,0), +(@CGUID+2832,32820,0,1,1,0,0,2485.9,150.755,29.072,2.887,600,20,0,2,0,1,0,0,0), +(@CGUID+2833,32820,0,1,1,0,0,2487.11,1442.07,8.595,4.038,600,20,0,2,0,1,0,0,0), +(@CGUID+2834,32820,0,1,1,0,0,2487.39,1243.5,46.953,2.747,600,20,0,2,0,1,0,0,0), +(@CGUID+2835,32820,0,1,1,0,0,2487.97,1419.32,7.593,4.576,600,20,0,2,0,1,0,0,0), +(@CGUID+2836,32820,0,1,1,0,0,2490.63,1072.42,73.45,3.498,600,20,0,2,0,1,0,0,0), +(@CGUID+2837,32820,0,1,1,0,0,2492.37,127.447,29.059,3.712,600,20,0,2,0,1,0,0,0), +(@CGUID+2838,32820,0,1,1,0,0,2492.59,1112.71,69.615,3.005,600,20,0,2,0,1,0,0,0), +(@CGUID+2839,32820,0,1,1,0,0,2492.84,646.658,32.245,2.232,600,20,0,2,0,1,0,0,0), +(@CGUID+2840,32820,0,1,1,0,0,2493.48,785.188,120.149,1.976,600,20,0,2,0,1,0,0,0), +(@CGUID+2841,32820,0,1,1,0,0,2493.81,1394.65,6.509,2.05,600,20,0,2,0,1,0,0,0), +(@CGUID+2842,32820,0,1,1,0,0,2494.57,1673.4,10.128,2.164,600,20,0,2,0,1,0,0,0), +(@CGUID+2843,32820,0,1,1,0,0,2494.93,1669.37,8.719,5.881,600,20,0,2,0,1,0,0,0), +(@CGUID+2844,32820,0,1,1,0,0,2497.9,364.587,35.105,0.979,600,20,0,2,0,1,0,0,0), +(@CGUID+2845,32820,0,1,1,0,0,2499.18,348.946,34.077,1.87,600,20,0,2,0,1,0,0,0), +(@CGUID+2846,32820,0,1,1,0,0,2500.01,1137.44,67.536,3.6,600,20,0,2,0,1,0,0,0), +(@CGUID+2847,32820,0,1,1,0,0,2503.03,868.549,85.899,1.18,600,20,0,2,0,1,0,0,0), +(@CGUID+2848,32820,0,1,1,0,0,2503.29,978.85,80.657,4.556,600,20,0,2,0,1,0,0,0), +(@CGUID+2849,32820,0,1,1,0,0,2505.76,458.109,36.993,0.063,600,20,0,2,0,1,0,0,0), +(@CGUID+2850,32820,0,1,1,0,0,2507.29,388.541,34.313,3.383,600,20,0,2,0,1,0,0,0), +(@CGUID+2851,32820,0,1,1,0,0,2511.19,-536,87.971,0.224,600,20,0,2,0,1,0,0,0), +(@CGUID+2852,32820,0,1,1,0,0,2512.91,-37,26.205,1.418,600,20,0,2,0,1,0,0,0), +(@CGUID+2853,32820,0,1,1,0,0,2513.44,289.726,44.531,0.773,600,20,0,2,0,1,0,0,0), +(@CGUID+2854,32820,0,1,1,0,0,2513.47,243.981,48.784,2.36,600,20,0,2,0,1,0,0,0), +(@CGUID+2855,32820,0,1,1,0,0,2514.11,-675,71.4,0.648,600,20,0,2,0,1,0,0,0), +(@CGUID+2856,32820,0,1,1,0,0,2514.84,1344.22,21.131,3.802,600,20,0,2,0,1,0,0,0), +(@CGUID+2857,32820,0,1,1,0,0,2517.36,789.009,110.905,4.528,600,20,0,2,0,1,0,0,0), +(@CGUID+2858,32820,0,1,1,0,0,2517.52,226.214,44.075,5.972,600,20,0,2,0,1,0,0,0), +(@CGUID+2859,32820,0,1,1,0,0,2518.14,-245,34.107,2.611,600,20,0,2,0,1,0,0,0), +(@CGUID+2860,32820,0,1,1,0,0,2518.76,1609.94,-3,4.409,600,20,0,2,0,1,0,0,0), +(@CGUID+2861,32820,0,1,1,0,0,2520.1,1497.1,0.191,1.595,600,20,0,2,0,1,0,0,0), +(@CGUID+2862,32820,0,1,1,0,0,2521.87,-850,58.087,5.361,600,20,0,2,0,1,0,0,0), +(@CGUID+2863,32820,0,1,1,0,0,2523.5,945.028,90.841,3.182,600,20,0,2,0,1,0,0,0), +(@CGUID+2864,32820,0,1,1,0,0,2523.72,1421.92,1.661,2.047,600,20,0,2,0,1,0,0,0), +(@CGUID+2865,32820,0,1,1,0,0,2523.8,1047.83,81.655,3.009,600,20,0,2,0,1,0,0,0), +(@CGUID+2866,32820,0,1,1,0,0,2524.32,1174.54,69.023,6.092,600,20,0,2,0,1,0,0,0), +(@CGUID+2867,32820,0,1,1,0,0,2524.39,1290.53,40.599,2.301,600,20,0,2,0,1,0,0,0), +(@CGUID+2868,32820,0,1,1,0,0,2524.56,385.299,34.712,3.378,600,20,0,2,0,1,0,0,0), +(@CGUID+2869,32820,0,1,1,0,0,2528.36,-905,57.091,1.203,600,20,0,2,0,1,0,0,0), +(@CGUID+2870,32820,0,1,1,0,0,2528.93,293.153,42.922,3.196,600,20,0,2,0,1,0,0,0), +(@CGUID+2871,32820,0,1,1,0,0,2531.76,-899,56.364,1.546,600,20,0,2,0,1,0,0,0), +(@CGUID+2872,32820,0,1,1,0,0,2532.49,-892,55.919,4.546,600,20,0,2,0,1,0,0,0), +(@CGUID+2873,32820,0,1,1,0,0,2532.96,-726,62.975,6.229,600,20,0,2,0,1,0,0,0), +(@CGUID+2874,32820,0,1,1,0,0,2533.1,1390.19,4.32,4.062,600,20,0,2,0,1,0,0,0), +(@CGUID+2875,32820,0,1,1,0,0,2533.89,543.76,15.734,0.35,600,20,0,2,0,1,0,0,0), +(@CGUID+2876,32820,0,1,1,0,0,2533.9,956.824,92.354,2.725,600,20,0,2,0,1,0,0,0), +(@CGUID+2877,32820,0,1,1,0,0,2536.84,1284.58,44.213,4.287,600,20,0,2,0,1,0,0,0), +(@CGUID+2878,32820,0,1,1,0,0,2536.85,-61,29.111,5.919,600,20,0,2,0,1,0,0,0), +(@CGUID+2879,32820,0,1,1,0,0,2536.85,769.594,110.986,5.986,600,20,0,2,0,1,0,0,0), +(@CGUID+2880,32820,0,1,1,0,0,2538.43,279.164,47.359,4.017,600,20,0,2,0,1,0,0,0), +(@CGUID+2881,32820,0,1,1,0,0,2538.94,547.931,15.817,3.534,600,20,0,2,0,1,0,0,0), +(@CGUID+2882,32820,0,1,1,0,0,-9327.6,178.975,61.6973,4.10484,600,20,0,2,0,1,0,0,0), +(@CGUID+2883,32820,0,1,1,0,0,2540.4,-1041,98.397,4.767,600,20,0,2,0,1,0,0,0), +(@CGUID+2884,32820,0,1,1,0,0,2541.16,763.772,110.81,0.006,600,20,0,2,0,1,0,0,0), +(@CGUID+2885,32820,0,1,1,0,0,2543.3,979.199,89.469,3.708,600,20,0,2,0,1,0,0,0), +(@CGUID+2886,32820,0,1,1,0,0,2543.48,-22,28.248,5.313,600,20,0,2,0,1,0,0,0), +(@CGUID+2887,32820,0,1,1,0,0,2544.24,173.075,35.024,5.433,600,20,0,2,0,1,0,0,0), +(@CGUID+2888,32820,0,1,1,0,0,2544.83,1050.89,85.722,0.247,600,20,0,2,0,1,0,0,0), +(@CGUID+2889,32820,0,1,1,0,0,2545.18,1462.11,-5,0.007,600,20,0,2,0,1,0,0,0), +(@CGUID+2890,32820,0,1,1,0,0,2545.58,293.867,42.537,1.439,600,20,0,2,0,1,0,0,0), +(@CGUID+2891,32820,0,1,1,0,0,2545.93,1166.3,73.116,2.195,600,20,0,2,0,1,0,0,0), +(@CGUID+2892,32820,0,1,1,0,0,2546.21,947.298,93.246,4.243,600,20,0,2,0,1,0,0,0), +(@CGUID+2893,32820,0,1,1,0,0,2547.36,-626,81.138,3.999,600,20,0,2,0,1,0,0,0), +(@CGUID+2894,32820,0,1,1,0,0,2547.51,-269,46.196,4.004,600,20,0,2,0,1,0,0,0), +(@CGUID+2895,32820,0,1,1,0,0,2548.62,-899,56.71,2.666,600,20,0,2,0,1,0,0,0), +(@CGUID+2896,32820,0,1,1,0,0,2549,-104,24.141,3.394,600,20,0,2,0,1,0,0,0), +(@CGUID+2897,32820,0,1,1,0,0,2549.66,816.335,109.295,5.37,600,20,0,2,0,1,0,0,0), +(@CGUID+2898,32820,0,1,1,0,0,2549.94,404.449,31.932,3.233,600,20,0,2,0,1,0,0,0), +(@CGUID+2899,32820,0,1,1,0,0,2550.7,386.404,33.878,6.21,600,20,0,2,0,1,0,0,0), +(@CGUID+2900,32820,0,1,1,0,0,2551.59,878.635,91.77,5.735,600,20,0,2,0,1,0,0,0), +(@CGUID+2901,32820,0,1,1,0,0,2552.27,1122.7,82.146,1.677,600,20,0,2,0,1,0,0,0), +(@CGUID+2902,32820,0,1,1,0,0,2552.46,-275,48.48,0.503,600,20,0,2,0,1,0,0,0), +(@CGUID+2903,32820,0,1,1,0,0,2552.9,121.243,29.951,5.989,600,20,0,2,0,1,0,0,0), +(@CGUID+2904,32820,0,1,1,0,0,2552.97,236.42,47.253,4.223,600,20,0,2,0,1,0,0,0), +(@CGUID+2905,32820,0,1,1,0,0,2556.54,1066.15,85.343,3.776,600,20,0,2,0,1,0,0,0), +(@CGUID+2906,32820,0,1,1,0,0,2557.17,-892,56.093,3.269,600,20,0,2,0,1,0,0,0), +(@CGUID+2907,32820,0,1,1,0,0,2557.55,-690,67.732,3.509,600,20,0,2,0,1,0,0,0), +(@CGUID+2908,32820,0,1,1,0,0,2558.34,188.341,35.937,4.756,600,20,0,2,0,1,0,0,0), +(@CGUID+2909,32820,0,1,1,0,0,2558.63,919.597,95.841,5.446,600,20,0,2,0,1,0,0,0), +(@CGUID+2910,32820,0,1,1,0,0,2558.88,1393.52,3.939,3.53,600,20,0,2,0,1,0,0,0), +(@CGUID+2911,32820,0,1,1,0,0,2559.27,1388.1,4.529,3.079,600,20,0,2,0,1,0,0,0), +(@CGUID+2912,32820,0,1,1,0,0,2560.17,165.253,32.245,6.157,600,20,0,2,0,1,0,0,0), +(@CGUID+2913,32820,0,1,1,0,0,2561.77,391.63,32.895,2.354,600,20,0,2,0,1,0,0,0), +(@CGUID+2914,32820,0,1,1,0,0,2562.53,414.495,28.078,4.206,600,20,0,2,0,1,0,0,0), +(@CGUID+2915,32820,0,1,1,0,0,2563.32,-13,27.873,5.002,600,20,0,2,0,1,0,0,0), +(@CGUID+2916,32820,0,1,1,0,0,2563.46,807.718,108.717,0.277,600,20,0,2,0,1,0,0,0), +(@CGUID+2917,32820,0,1,1,0,0,2563.7,1204.8,67.354,3.764,600,20,0,2,0,1,0,0,0), +(@CGUID+2918,32820,0,1,1,0,0,2564.08,1108.73,85.43,5.738,600,20,0,2,0,1,0,0,0), +(@CGUID+2919,32820,0,1,1,0,0,2566.08,-748,65.709,4.607,600,20,0,2,0,1,0,0,0), +(@CGUID+2920,32820,0,1,1,0,0,2566.2,-770,65.17,1.883,600,20,0,2,0,1,0,0,0), +(@CGUID+2921,32820,0,1,1,0,0,2566.91,1238.9,63.893,5.629,600,20,0,2,0,1,0,0,0), +(@CGUID+2922,32820,0,1,1,0,0,2567.96,-298,62.694,1.472,600,20,0,2,0,1,0,0,0), +(@CGUID+2923,32820,0,1,1,0,0,2569.49,-26,30.197,0.603,600,20,0,2,0,1,0,0,0), +(@CGUID+2924,32820,0,1,1,0,0,2571.24,538.871,15.381,5.34,600,20,0,2,0,1,0,0,0), +(@CGUID+2925,32820,0,1,1,0,0,2571.73,1374.47,10.336,2.341,600,20,0,2,0,1,0,0,0), +(@CGUID+2926,32820,0,1,1,0,0,2572.32,-50,33.493,3.851,600,20,0,2,0,1,0,0,0), +(@CGUID+2927,32820,0,1,1,0,0,2573.81,-977,78.49,5.886,600,20,0,2,0,1,0,0,0), +(@CGUID+2928,32820,0,1,1,0,0,2574.67,840.848,100.144,3.899,600,20,0,2,0,1,0,0,0), +(@CGUID+2929,32820,0,1,1,0,0,2576.12,885.095,100.947,2.425,600,20,0,2,0,1,0,0,0), +(@CGUID+2930,32820,0,1,1,0,0,2576.19,1004.2,94.243,4.529,600,20,0,2,0,1,0,0,0), +(@CGUID+2931,32820,0,1,1,0,0,2576.21,290.176,47.016,2.896,600,20,0,2,0,1,0,0,0), +(@CGUID+2932,32820,0,1,1,0,0,2576.22,-976,78.337,5.819,600,20,0,2,0,1,0,0,0), +(@CGUID+2933,32820,0,1,1,0,0,2577.17,981.727,98.292,0.805,600,20,0,2,0,1,0,0,0), +(@CGUID+2934,32820,0,1,1,0,0,2578.07,-1024,94.786,3.179,600,20,0,2,0,1,0,0,0), +(@CGUID+2935,32820,0,1,1,0,0,2578.28,572.019,14.308,0.791,600,20,0,2,0,1,0,0,0), +(@CGUID+2936,32820,0,1,1,0,0,2578.41,918.022,104.599,3.372,600,20,0,2,0,1,0,0,0), +(@CGUID+2937,32820,0,1,1,0,0,2580.07,-107,30.212,1.34,600,20,0,2,0,1,0,0,0), +(@CGUID+2938,32820,0,1,1,0,0,2580.33,154.82,33.075,4.111,600,20,0,2,0,1,0,0,0), +(@CGUID+2939,32820,0,1,1,0,0,2582.18,-723,69.794,3.713,600,20,0,2,0,1,0,0,0), +(@CGUID+2940,32820,0,1,1,0,0,2583.98,-54,31.023,1.123,600,20,0,2,0,1,0,0,0), +(@CGUID+2941,32820,0,1,1,0,0,2585.77,854.39,99.341,1.582,600,20,0,2,0,1,0,0,0), +(@CGUID+2942,32820,0,1,1,0,0,2588.44,-956,76.685,5.424,600,20,0,2,0,1,0,0,0), +(@CGUID+2943,32820,0,1,1,0,0,2589.61,-118,31.162,5.597,600,20,0,2,0,1,0,0,0), +(@CGUID+2944,32820,0,1,1,0,0,2591.06,1019.88,99.046,0.34,600,20,0,2,0,1,0,0,0), +(@CGUID+2945,32820,0,1,1,0,0,2593.26,136.157,30.133,4.803,600,20,0,2,0,1,0,0,0), +(@CGUID+2946,32820,0,1,1,0,0,2594.13,1687.93,-1,3.606,600,20,0,2,0,1,0,0,0), +(@CGUID+2947,32820,0,1,1,0,0,2594.44,246.63,41.364,5.094,600,20,0,2,0,1,0,0,0), +(@CGUID+2948,32820,0,1,1,0,0,2597.33,1385.28,1.157,5.836,600,20,0,2,0,1,0,0,0), +(@CGUID+2949,32820,0,1,1,0,0,2599.74,1284.34,51.977,6.234,600,20,0,2,0,1,0,0,0), +(@CGUID+2950,32820,0,1,1,0,0,2600.66,-690,78.686,6.225,600,20,0,2,0,1,0,0,0), +(@CGUID+2951,32820,0,1,1,0,0,2601.85,520.278,17.73,3.256,600,20,0,2,0,1,0,0,0), +(@CGUID+2952,32820,0,1,1,0,0,2603.09,-535,89,5.596,600,20,0,2,0,1,0,0,0), +(@CGUID+2953,32820,0,1,1,0,0,2606.83,235.35,37.201,0.492,600,20,0,2,0,1,0,0,0), +(@CGUID+2954,32820,0,1,1,0,0,2606.87,-781,74.363,3.376,600,20,0,2,0,1,0,0,0), +(@CGUID+2955,32820,0,1,1,0,0,2611.07,-913,60.155,0.057,600,20,0,2,0,1,0,0,0), +(@CGUID+2956,32820,0,1,1,0,0,2611.5,463.978,22.947,2.03,600,20,0,2,0,1,0,0,0), +(@CGUID+2957,32820,0,1,1,0,0,2613.55,133.443,30.158,2.098,600,20,0,2,0,1,0,0,0), +(@CGUID+2958,32820,0,1,1,0,0,2613.68,1098.27,93.415,4.322,600,20,0,2,0,1,0,0,0), +(@CGUID+2959,32820,0,1,1,0,0,2613.99,1124.28,90.504,0.247,600,20,0,2,0,1,0,0,0), +(@CGUID+2960,32820,0,1,1,0,0,2617.13,313.391,37.435,5.833,600,20,0,2,0,1,0,0,0), +(@CGUID+2961,32820,0,1,1,0,0,2620.38,883.914,111.555,0.524,600,20,0,2,0,1,0,0,0), +(@CGUID+2962,32820,0,1,1,0,0,2623.53,1040.28,99.36,6.136,600,20,0,2,0,1,0,0,0), +(@CGUID+2963,32820,0,1,1,0,0,2624.08,239.211,34.552,3.577,600,20,0,2,0,1,0,0,0), +(@CGUID+2964,32820,0,1,1,0,0,2624.32,406.3,36.144,0.357,600,20,0,2,0,1,0,0,0), +(@CGUID+2965,32820,0,1,1,0,0,2624.68,-824,71.093,1.271,600,20,0,2,0,1,0,0,0), +(@CGUID+2966,32820,0,1,1,0,0,2625.31,462.516,21.719,3.28319,600,20,0,2,0,1,0,0,0), +(@CGUID+2967,32820,0,1,1,0,0,2625.58,1291.88,47.811,5.974,600,20,0,2,0,1,0,0,0), +(@CGUID+2968,32820,0,1,1,0,0,2626.29,-823,70.467,5.276,600,20,0,2,0,1,0,0,0), +(@CGUID+2969,32820,0,1,1,0,0,2627.41,-323,86.15,3.227,600,20,0,2,0,1,0,0,0), +(@CGUID+2970,32820,0,1,1,0,0,2630.11,980.202,109.971,2.083,600,20,0,2,0,1,0,0,0), +(@CGUID+2971,32820,0,1,1,0,0,2631,60.832,28.403,0.685,600,20,0,2,0,1,0,0,0), +(@CGUID+2972,32820,0,1,1,0,0,2632.86,388.887,35.111,2.082,600,20,0,2,0,1,0,0,0), +(@CGUID+2973,32820,0,1,1,0,0,2634.35,-1071,108.356,4.795,600,20,0,2,0,1,0,0,0), +(@CGUID+2974,32820,0,1,1,0,0,2635.33,51.674,28.114,5.333,600,20,0,2,0,1,0,0,0), +(@CGUID+2975,32820,0,1,1,0,0,2636.46,144.211,32.506,0.82,600,20,0,2,0,1,0,0,0), +(@CGUID+2976,32820,0,1,1,0,0,2636.98,1049.48,103.165,3.109,600,20,0,2,0,1,0,0,0), +(@CGUID+2977,32820,0,1,1,0,0,2637.98,1191.98,79.642,3.719,600,20,0,2,0,1,0,0,0), +(@CGUID+2978,32820,0,1,1,0,0,2638.66,892.341,112.888,0.664,600,20,0,2,0,1,0,0,0), +(@CGUID+2979,32820,0,1,1,0,0,2639.2,254.461,34.408,1.233,600,20,0,2,0,1,0,0,0), +(@CGUID+2980,32820,0,1,1,0,0,2640.71,1210.13,70.931,1.67,600,20,0,2,0,1,0,0,0), +(@CGUID+2981,32820,0,1,1,0,0,2641.28,-4015,106.292,6.239,600,20,0,2,0,1,0,0,0), +(@CGUID+2982,32820,0,1,1,0,0,2641.52,1067.63,102.771,2.691,600,20,0,2,0,1,0,0,0), +(@CGUID+2983,32820,0,1,1,0,0,2641.83,1368.93,2.269,5.923,600,20,0,2,0,1,0,0,0), +(@CGUID+2984,32820,0,1,1,0,0,2643.22,337.924,28.726,3.94,600,20,0,2,0,1,0,0,0), +(@CGUID+2985,32820,0,1,1,0,0,2644.96,180.961,29.834,2.608,600,20,0,2,0,1,0,0,0), +(@CGUID+2986,32820,0,1,1,0,0,2645.24,1061.54,104.29,1.755,600,20,0,2,0,1,0,0,0), +(@CGUID+2987,32820,0,1,1,0,0,2646.01,404.876,31.007,5.402,600,20,0,2,0,1,0,0,0), +(@CGUID+2988,32820,0,1,1,0,0,2646.92,-626,106.988,5.102,600,20,0,2,0,1,0,0,0), +(@CGUID+2989,32820,0,1,1,0,0,2647.27,1153.66,85.855,5.867,600,20,0,2,0,1,0,0,0), +(@CGUID+2990,32820,0,1,1,0,0,2648.11,-892,65.367,3.03,600,20,0,2,0,1,0,0,0), +(@CGUID+2991,32820,0,1,1,0,0,2649.44,218.311,32.536,1.33,600,20,0,2,0,1,0,0,0), +(@CGUID+2992,32820,0,1,1,0,0,2650.44,351.058,28.934,0.89,600,20,0,2,0,1,0,0,0), +(@CGUID+2993,32820,0,1,1,0,0,2655.85,1314.34,41.119,5.317,600,20,0,2,0,1,0,0,0), +(@CGUID+2994,32820,0,1,1,0,0,2656.03,950.07,113.864,0.646,600,20,0,2,0,1,0,0,0), +(@CGUID+2995,32820,0,1,1,0,0,2656.3,533.697,15.485,1.331,600,20,0,2,0,1,0,0,0), +(@CGUID+2996,32820,0,1,1,0,0,2657.29,-885,68.351,2.818,600,20,0,2,0,1,0,0,0), +(@CGUID+2997,32820,0,1,1,0,0,2659.79,362.477,28.379,1,600,20,0,2,0,1,0,0,0), +(@CGUID+2998,32820,0,1,1,0,0,2660.56,847.725,109.709,5.826,600,20,0,2,0,1,0,0,0), +(@CGUID+2999,32820,0,1,1,0,0,2667.88,127.652,32.426,3.257,600,20,0,2,0,1,0,0,0), +(@CGUID+3000,32820,0,1,1,0,0,2672.69,-887,71.183,2.83,600,20,0,2,0,1,0,0,0), +(@CGUID+3001,32820,0,1,1,0,0,2673.69,256.889,31.865,3.889,600,20,0,2,0,1,0,0,0), +(@CGUID+3002,32820,0,1,1,0,0,2678.87,311.54,31.12,4.258,600,20,0,2,0,1,0,0,0), +(@CGUID+3003,32820,0,1,1,0,0,2679.21,1013.13,108.381,4.384,600,20,0,2,0,1,0,0,0), +(@CGUID+3004,32820,0,1,1,0,0,2679.77,1032.67,108.821,5.304,600,20,0,2,0,1,0,0,0), +(@CGUID+3005,32820,0,1,1,0,0,2680.93,812.035,109.282,3.861,600,20,0,2,0,1,0,0,0), +(@CGUID+3006,32820,0,1,1,0,0,2681.23,861.878,108.754,5.771,600,20,0,2,0,1,0,0,0), +(@CGUID+3007,32820,0,1,1,0,0,2684.66,443.218,18.817,2.514,600,20,0,2,0,1,0,0,0), +(@CGUID+3008,32820,0,1,1,0,0,2685.8,8.171,29.688,2.305,600,20,0,2,0,1,0,0,0), +(@CGUID+3009,32820,0,1,1,0,0,2686.46,221.022,31.364,0.673,600,20,0,2,0,1,0,0,0), +(@CGUID+3010,32820,0,1,1,0,0,2689.81,7.583,30.024,5.376,600,20,0,2,0,1,0,0,0), +(@CGUID+3011,32820,0,1,1,0,0,2691.65,944.4,110.92,2.273,600,20,0,2,0,1,0,0,0), +(@CGUID+3012,32820,0,1,1,0,0,2692.62,884.526,110.192,5.771,600,20,0,2,0,1,0,0,0), +(@CGUID+3013,32820,0,1,1,0,0,2693.22,97.336,35.577,4.421,600,20,0,2,0,1,0,0,0), +(@CGUID+3014,32820,0,1,1,0,0,2693.45,492.476,17.507,3.089,600,20,0,2,0,1,0,0,0), +(@CGUID+3015,32820,0,1,1,0,0,2701.31,-487,107.766,1.322,600,20,0,2,0,1,0,0,0), +(@CGUID+3016,32820,0,1,1,0,0,2702.78,-269,62.324,0.484,600,20,0,2,0,1,0,0,0), +(@CGUID+3017,32820,0,1,1,0,0,2705.41,379.311,26.93,1.551,600,20,0,2,0,1,0,0,0), +(@CGUID+3018,32820,0,1,1,0,0,2706.57,407.431,23.754,1.209,600,20,0,2,0,1,0,0,0), +(@CGUID+3019,32820,0,1,1,0,0,2707.92,-41,28.567,2.55,600,20,0,2,0,1,0,0,0), +(@CGUID+3020,32820,0,1,1,0,0,2708.15,342.402,29.246,3.835,600,20,0,2,0,1,0,0,0), +(@CGUID+3021,32820,0,1,1,0,0,2710.12,923.481,112.48,2.31,600,20,0,2,0,1,0,0,0), +(@CGUID+3022,32820,0,1,1,0,0,2712.58,295.287,31.149,1.383,600,20,0,2,0,1,0,0,0), +(@CGUID+3023,32820,0,1,1,0,0,2712.75,223.41,33.219,6.015,600,20,0,2,0,1,0,0,0), +(@CGUID+3024,32820,0,1,1,0,0,2715.01,-343,92.65,1.784,600,20,0,2,0,1,0,0,0), +(@CGUID+3025,32820,0,1,1,0,0,2716.14,-745,135.23,2.544,600,20,0,2,0,1,0,0,0), +(@CGUID+3026,32820,0,1,1,0,0,2716.88,-688,119.268,4.116,600,20,0,2,0,1,0,0,0), +(@CGUID+3027,32820,0,1,1,0,0,2717.71,780.438,111.583,5.339,600,20,0,2,0,1,0,0,0), +(@CGUID+3028,32820,0,1,1,0,0,2723.15,842.9,114.437,3.655,600,20,0,2,0,1,0,0,0), +(@CGUID+3029,32820,0,1,1,0,0,2723.92,-265,60.197,2.092,600,20,0,2,0,1,0,0,0), +(@CGUID+3030,32820,0,1,1,0,0,2727.35,360.837,27.167,5.2,600,20,0,2,0,1,0,0,0), +(@CGUID+3031,32820,0,1,1,0,0,2728.22,-47,29.317,6.112,600,20,0,2,0,1,0,0,0), +(@CGUID+3032,32820,0,1,1,0,0,2730.6,122.119,34.944,3.636,600,20,0,2,0,1,0,0,0), +(@CGUID+3033,32820,0,1,1,0,0,2731.25,140.329,30.919,3.191,600,20,0,2,0,1,0,0,0), +(@CGUID+3034,32820,0,1,1,0,0,2732.84,-505,103.028,3.26,600,20,0,2,0,1,0,0,0), +(@CGUID+3035,32820,0,1,1,0,0,2733.1,221.369,34.842,0.67,600,20,0,2,0,1,0,0,0), +(@CGUID+3036,32820,0,1,1,0,0,2737.26,861.033,115.463,1.443,600,20,0,2,0,1,0,0,0), +(@CGUID+3037,32820,0,1,1,0,0,2738.61,953.638,109.836,2.632,600,20,0,2,0,1,0,0,0), +(@CGUID+3038,32820,0,1,1,0,0,2739.95,90.715,34.121,1.554,600,20,0,2,0,1,0,0,0), +(@CGUID+3039,32820,0,1,1,0,0,2741.66,-229,50.351,0.806,600,20,0,2,0,1,0,0,0), +(@CGUID+3040,32820,0,1,1,0,0,2741.69,-76,31.535,5.148,600,20,0,2,0,1,0,0,0), +(@CGUID+3041,32820,0,1,1,0,0,2744.38,-790,147.906,2.75,600,20,0,2,0,1,0,0,0), +(@CGUID+3042,32820,0,1,1,0,0,2745.03,238.559,34.676,3.898,600,20,0,2,0,1,0,0,0), +(@CGUID+3043,32820,0,1,1,0,0,2745.98,782.205,114.843,1.214,600,20,0,2,0,1,0,0,0), +(@CGUID+3044,32820,0,1,1,0,0,2746.17,313.784,30.283,5.061,600,20,0,2,0,1,0,0,0), +(@CGUID+3045,32820,0,1,1,0,0,2747.19,-279,64.486,5.793,600,20,0,2,0,1,0,0,0), +(@CGUID+3046,32820,0,1,1,0,0,2748.59,881.264,114.505,0.087,600,20,0,2,0,1,0,0,0), +(@CGUID+3047,32820,0,1,1,0,0,2749.44,786.891,114.357,1.408,600,20,0,2,0,1,0,0,0), +(@CGUID+3048,32820,0,1,1,0,0,2750.02,-531,104.626,2.793,600,20,0,2,0,1,0,0,0), +(@CGUID+3049,32820,0,1,1,0,0,2751.57,-531,104.416,4.951,600,20,0,2,0,1,0,0,0), +(@CGUID+3050,32820,0,1,1,0,0,2753.36,122.284,29.101,5.357,600,20,0,2,0,1,0,0,0), +(@CGUID+3051,32820,0,1,1,0,0,2754.19,272.893,28.355,6.13,600,20,0,2,0,1,0,0,0), +(@CGUID+3052,32820,0,1,1,0,0,2754.9,807.562,113.174,1.676,600,20,0,2,0,1,0,0,0), +(@CGUID+3053,32820,0,1,1,0,0,2756.84,-691,126.144,5.155,600,20,0,2,0,1,0,0,0), +(@CGUID+3054,32820,0,1,1,0,0,2757.54,-347,78.813,3.879,600,20,0,2,0,1,0,0,0), +(@CGUID+3055,32820,0,1,1,0,0,2758.23,-162,34.031,5.088,600,20,0,2,0,1,0,0,0), +(@CGUID+3056,32820,0,1,1,0,0,2758.75,79.879,31.355,0.578,600,20,0,2,0,1,0,0,0), +(@CGUID+3057,32820,0,1,1,0,0,2761.43,-751,135.385,0.335,600,20,0,2,0,1,0,0,0), +(@CGUID+3058,32820,0,1,1,0,0,2763.1,445.459,20.5,0.648,600,20,0,2,0,1,0,0,0), +(@CGUID+3059,32820,0,1,1,0,0,2763.11,-334,77.089,4.666,600,20,0,2,0,1,0,0,0), +(@CGUID+3060,32820,0,1,1,0,0,2768.53,-171,36.586,1.213,600,20,0,2,0,1,0,0,0), +(@CGUID+3061,32820,0,1,1,0,0,2769.63,-337,75.881,5.695,600,20,0,2,0,1,0,0,0), +(@CGUID+3062,32820,0,1,1,0,0,2769.83,869.461,112.399,5.785,600,20,0,2,0,1,0,0,0), +(@CGUID+3063,32820,0,1,1,0,0,2770.84,-13,34.186,1.078,600,20,0,2,0,1,0,0,0), +(@CGUID+3064,32820,0,1,1,0,0,2771.16,153.872,30.78,1.108,600,20,0,2,0,1,0,0,0), +(@CGUID+3065,32820,0,1,1,0,0,2771.49,187.297,31.745,4.168,600,20,0,2,0,1,0,0,0), +(@CGUID+3066,32820,0,1,1,0,0,2775.09,-749,135.039,2.595,600,20,0,2,0,1,0,0,0), +(@CGUID+3067,32820,0,1,1,0,0,2775.25,-406,82.028,5.275,600,20,0,2,0,1,0,0,0), +(@CGUID+3068,32820,0,1,1,0,0,3027.02,671.836,90.4184,3.14605,600,20,0,2,0,1,0,0,0), +(@CGUID+3069,32820,0,1,1,0,0,2777.98,285.861,31.831,2.783,600,20,0,2,0,1,0,0,0), +(@CGUID+3070,32820,0,1,1,0,0,2778.1,1026.33,108.903,4.347,600,20,0,2,0,1,0,0,0), +(@CGUID+3071,32820,0,1,1,0,0,2778.38,-66,34.106,4.347,600,20,0,2,0,1,0,0,0), +(@CGUID+3072,32820,0,1,1,0,0,2779.73,344.693,26.697,1.297,600,20,0,2,0,1,0,0,0), +(@CGUID+3073,32820,0,1,1,0,0,2780.26,-419,81.504,3.05,600,20,0,2,0,1,0,0,0), +(@CGUID+3074,32820,0,1,1,0,0,2781.3,348.492,26.39,3.792,600,20,0,2,0,1,0,0,0), +(@CGUID+3075,32820,0,1,1,0,0,2781.32,78.466,28.691,4.853,600,20,0,2,0,1,0,0,0), +(@CGUID+3076,32820,0,1,1,0,0,2782.21,1060.45,110.458,4.223,600,20,0,2,0,1,0,0,0), +(@CGUID+3077,32820,0,1,1,0,0,2782.22,-748,134.874,4.873,600,20,0,2,0,1,0,0,0), +(@CGUID+3078,32820,0,1,1,0,0,2782.46,975.446,112.993,3.098,600,20,0,2,0,1,0,0,0), +(@CGUID+3079,32820,0,1,1,0,0,2783.65,1057.34,110.378,4.234,600,20,0,2,0,1,0,0,0), +(@CGUID+3080,32820,0,1,1,0,0,2783.88,-770,139.92,6.148,600,20,0,2,0,1,0,0,0), +(@CGUID+3081,32820,0,1,1,0,0,2784.07,416.318,19.71,1.466,600,20,0,2,0,1,0,0,0), +(@CGUID+3082,32820,0,1,1,0,0,2784.3,42.982,29.613,0.994,600,20,0,2,0,1,0,0,0), +(@CGUID+3083,32820,0,1,1,0,0,2785.3,20.632,31.625,1.381,600,20,0,2,0,1,0,0,0), +(@CGUID+3084,32820,0,1,1,0,0,2786.16,800.124,113.599,5.463,600,20,0,2,0,1,0,0,0), +(@CGUID+3085,32820,0,1,1,0,0,2786.49,996.78,111.898,5.657,600,20,0,2,0,1,0,0,0), +(@CGUID+3086,32820,0,1,1,0,0,2786.53,237.086,33.154,0.563,600,20,0,2,0,1,0,0,0), +(@CGUID+3087,32820,0,1,1,0,0,2786.78,1058.27,110.623,4.197,600,20,0,2,0,1,0,0,0), +(@CGUID+3088,32820,0,1,1,0,0,2787.2,308.044,30.555,5.596,600,20,0,2,0,1,0,0,0), +(@CGUID+3089,32820,0,1,1,0,0,2788.7,792.128,115.004,5.513,600,20,0,2,0,1,0,0,0), +(@CGUID+3090,32820,0,1,1,0,0,2789.81,-31,33.866,3.21,600,20,0,2,0,1,0,0,0), +(@CGUID+3091,32820,0,1,1,0,0,2791.81,-474,101.641,1.257,600,20,0,2,0,1,0,0,0), +(@CGUID+3092,32820,0,1,1,0,0,2938.94,601.286,91.7991,0.439689,600,20,0,2,0,1,0,0,0), +(@CGUID+3093,32820,0,1,1,0,0,2799.56,144.821,21.517,4.682,600,20,0,2,0,1,0,0,0), +(@CGUID+3094,32820,0,1,1,0,0,2801.71,317.016,27.388,3.812,600,20,0,2,0,1,0,0,0), +(@CGUID+3095,32820,0,1,1,0,0,2802.34,-106,33.645,2.441,600,20,0,2,0,1,0,0,0), +(@CGUID+3096,32820,0,1,1,0,0,2805.02,314.912,27.249,0.702,600,20,0,2,0,1,0,0,0), +(@CGUID+3097,32820,0,1,1,0,0,2805.06,1100.72,86.029,5.157,600,20,0,2,0,1,0,0,0), +(@CGUID+3098,32820,0,1,1,0,0,2805.34,-679,137.438,3.973,600,20,0,2,0,1,0,0,0), +(@CGUID+3099,32820,0,1,1,0,0,2806.21,745.621,139.187,1.847,600,20,0,2,0,1,0,0,0), +(@CGUID+3100,32820,0,1,1,0,0,3059.38,655.884,75.3527,3.07709,600,20,0,2,0,1,0,0,0), +(@CGUID+3101,32820,0,1,1,0,0,2807.62,49.259,27.098,6.24,600,20,0,2,0,1,0,0,0), +(@CGUID+3102,32820,0,1,1,0,0,2807.95,-426,80.45,0.191,600,20,0,2,0,1,0,0,0), +(@CGUID+3103,32820,0,1,1,0,0,2809.32,818.412,112.829,1.798,600,20,0,2,0,1,0,0,0), +(@CGUID+3104,32820,0,1,1,0,0,2809.33,185.504,29.006,4.035,600,20,0,2,0,1,0,0,0), +(@CGUID+3105,32820,0,1,1,0,0,2810.2,948.442,118.026,3.299,600,20,0,2,0,1,0,0,0), +(@CGUID+3106,32820,0,1,1,0,0,2810.22,-311,67.937,2.459,600,20,0,2,0,1,0,0,0), +(@CGUID+3107,32820,0,1,1,0,0,2810.6,142.153,21.616,1.07,600,20,0,2,0,1,0,0,0), +(@CGUID+3108,32820,0,1,1,0,0,2811.14,-789,144.879,4.823,600,20,0,2,0,1,0,0,0), +(@CGUID+3109,32820,0,1,1,0,0,2811.39,-790,145.105,2.535,600,20,0,2,0,1,0,0,0), +(@CGUID+3110,32820,0,1,1,0,0,2813.94,831.372,112.091,6.105,600,20,0,2,0,1,0,0,0), +(@CGUID+3111,32820,0,1,1,0,0,2814.09,1010.74,115.849,3.777,600,20,0,2,0,1,0,0,0), +(@CGUID+3112,32820,0,1,1,0,0,2814.33,91.472,25.442,6.23,600,20,0,2,0,1,0,0,0), +(@CGUID+3113,32820,0,1,1,0,0,2814.48,728.167,139.574,6.22,600,20,0,2,0,1,0,0,0), +(@CGUID+3114,32820,0,1,1,0,0,2814.63,228.967,30.876,0.505,600,20,0,2,0,1,0,0,0), +(@CGUID+3115,32820,0,1,1,0,0,2815.55,-19,32.59,0.677,600,20,0,2,0,1,0,0,0), +(@CGUID+3116,32820,0,1,1,0,0,2815.74,182.766,27.329,3.478,600,20,0,2,0,1,0,0,0), +(@CGUID+3117,32820,0,1,1,0,0,2815.95,-683,137.601,3.595,600,20,0,2,0,1,0,0,0), +(@CGUID+3118,32820,0,1,1,0,0,2817.45,-381,77.81,0.86,600,20,0,2,0,1,0,0,0), +(@CGUID+3119,32820,0,1,1,0,0,2820.31,-344,75.417,1.808,600,20,0,2,0,1,0,0,0), +(@CGUID+3120,32820,0,1,1,0,0,2821.16,-649,140.416,1.739,600,20,0,2,0,1,0,0,0), +(@CGUID+3121,32820,0,1,1,0,0,2821.66,-755,146.603,4.311,600,20,0,2,0,1,0,0,0), +(@CGUID+3122,32820,0,1,1,0,0,2821.88,-87,32.634,4.857,600,20,0,2,0,1,0,0,0), +(@CGUID+3123,32820,0,1,1,0,0,2822.21,487.184,31.126,3.7,600,20,0,2,0,1,0,0,0), +(@CGUID+3124,32820,0,1,1,0,0,2822.22,948.464,120.006,0.066,600,20,0,2,0,1,0,0,0), +(@CGUID+3125,32820,0,1,1,0,0,2822.63,-220,47.639,4.51,600,20,0,2,0,1,0,0,0), +(@CGUID+3126,32820,0,1,1,0,0,2822.8,-646,141.084,0.832,600,20,0,2,0,1,0,0,0), +(@CGUID+3127,32820,0,1,1,0,0,2823.48,701.019,144.699,3.563,600,20,0,2,0,1,0,0,0), +(@CGUID+3128,32820,0,1,1,0,0,2824.21,286.932,28.296,0.217,600,20,0,2,0,1,0,0,0), +(@CGUID+3129,32820,0,1,1,0,0,2828.15,-484,99.097,6.164,600,20,0,2,0,1,0,0,0), +(@CGUID+3130,32820,0,1,1,0,0,2828.31,-713,138.438,3.054,600,20,0,2,0,1,0,0,0), +(@CGUID+3131,32820,0,1,1,0,0,2828.31,-713,138.668,3.054,600,20,0,2,0,1,0,0,0), +(@CGUID+3132,32820,0,1,1,0,0,2833.22,1020.89,116.123,5.984,600,20,0,2,0,1,0,0,0), +(@CGUID+3133,32820,0,1,1,0,0,2835.46,-379,77.259,4.455,600,20,0,2,0,1,0,0,0), +(@CGUID+3134,32820,0,1,1,0,0,2839.44,-226,48.06,5.984,600,20,0,2,0,1,0,0,0), +(@CGUID+3135,32820,0,1,1,0,0,3043.64,684.044,66.735,4.72956,600,20,0,2,0,1,0,0,0), +(@CGUID+3136,32820,0,1,1,0,0,2844.7,850.579,112.802,0.553,600,20,0,2,0,1,0,0,0), +(@CGUID+3137,32820,0,1,1,0,0,2846.05,-505,107.585,1.65,600,20,0,2,0,1,0,0,0), +(@CGUID+3138,32820,0,1,1,0,0,2847.02,-14,24.719,2.777,600,20,0,2,0,1,0,0,0), +(@CGUID+3139,32820,0,1,1,0,0,2847.58,238.872,29.028,2.167,600,20,0,2,0,1,0,0,0), +(@CGUID+3140,32820,0,1,1,0,0,2848.24,-451,77.662,6.055,600,20,0,2,0,1,0,0,0), +(@CGUID+3141,32820,0,1,1,0,0,2848.26,-653,138.698,3.634,600,20,0,2,0,1,0,0,0), +(@CGUID+3142,32820,0,1,1,0,0,2848.69,346.604,24.445,0.524,600,20,0,2,0,1,0,0,0), +(@CGUID+3143,32820,0,1,1,0,0,2849.62,205.19,30.838,4.131,600,20,0,2,0,1,0,0,0), +(@CGUID+3144,32820,0,1,1,0,0,2851.43,-19,23.539,2.208,600,20,0,2,0,1,0,0,0), +(@CGUID+3145,32820,0,1,1,0,0,2852.84,-649,139.024,2.443,600,20,0,2,0,1,0,0,0), +(@CGUID+3146,32820,0,1,1,0,0,2852.87,1046.5,114.813,5.593,600,20,0,2,0,1,0,0,0), +(@CGUID+3147,32820,0,1,1,0,0,2853.96,-182,43.164,5.031,600,20,0,2,0,1,0,0,0), +(@CGUID+3148,32820,0,1,1,0,0,2854.2,-776,160.333,0.377,600,20,0,2,0,1,0,0,0), +(@CGUID+3149,32820,0,1,1,0,0,2855.61,427.809,20.219,1.466,600,20,0,2,0,1,0,0,0), +(@CGUID+3150,32820,0,1,1,0,0,2856.63,948.791,121.861,6.166,600,20,0,2,0,1,0,0,0), +(@CGUID+3151,32820,0,1,1,0,0,2858.62,-219,50.504,3.283,600,20,0,2,0,1,0,0,0), +(@CGUID+3152,32820,0,1,1,0,0,2858.66,276,29.324,4.692,600,20,0,2,0,1,0,0,0), +(@CGUID+3153,32820,0,1,1,0,0,2858.72,-512,107.163,3.526,600,20,0,2,0,1,0,0,0), +(@CGUID+3154,32820,0,1,1,0,0,3044.81,671.019,81.0471,4.74525,600,20,0,2,0,1,0,0,0), +(@CGUID+3155,32820,0,1,1,0,0,2860.16,-291,56.522,1.288,600,20,0,2,0,1,0,0,0), +(@CGUID+3156,32820,0,1,1,0,0,2860.19,-490,100.104,0.334,600,20,0,2,0,1,0,0,0), +(@CGUID+3157,32820,0,1,1,0,0,2861.32,288.391,28.172,6.224,600,20,0,2,0,1,0,0,0), +(@CGUID+3158,32820,0,1,1,0,0,2862.91,-798,160.333,0.405,600,20,0,2,0,1,0,0,0), +(@CGUID+3159,32820,0,1,1,0,0,2863.2,1102.02,116.52,2.028,600,20,0,2,0,1,0,0,0), +(@CGUID+3160,32820,0,1,1,0,0,2863.74,-742,160.332,1.931,600,20,0,2,0,1,0,0,0), +(@CGUID+3161,32820,0,1,1,0,0,2864.16,-82,34.52,1.696,600,20,0,2,0,1,0,0,0), +(@CGUID+3162,32820,0,1,1,0,0,2867.45,-444,76.938,6.279,600,20,0,2,0,1,0,0,0), +(@CGUID+3163,32820,0,1,1,0,0,2868.94,-314,61.622,5.248,600,20,0,2,0,1,0,0,0), +(@CGUID+3164,32820,0,1,1,0,0,2869.83,351.009,25.677,2.216,600,20,0,2,0,1,0,0,0), +(@CGUID+3165,32820,0,1,1,0,0,2871.16,-653,137.776,5.027,600,20,0,2,0,1,0,0,0), +(@CGUID+3166,32820,0,1,1,0,0,2872.27,68.096,7.318,0.468,600,20,0,2,0,1,0,0,0), +(@CGUID+3167,32820,0,1,1,0,0,2873.01,931.492,120.33,1.98,600,20,0,2,0,1,0,0,0), +(@CGUID+3168,32820,0,1,1,0,0,2873.29,-643,137.839,4.579,600,20,0,2,0,1,0,0,0), +(@CGUID+3169,32820,0,1,1,0,0,2873.88,385.114,23.78,2.826,600,20,0,2,0,1,0,0,0), +(@CGUID+3170,32820,0,1,1,0,0,2873.99,-766,160.333,2.103,600,20,0,2,0,1,0,0,0), +(@CGUID+3171,32820,0,1,1,0,0,2878.97,755.981,121.907,1.751,600,20,0,2,0,1,0,0,0), +(@CGUID+3172,32820,0,1,1,0,0,2879,-4,19.086,5.243,600,20,0,2,0,1,0,0,0), +(@CGUID+3173,32820,0,1,1,0,0,2879.51,-744,160.416,5.197,600,20,0,2,0,1,0,0,0), +(@CGUID+3174,32820,0,1,1,0,0,2880.28,845.764,112.495,2.855,600,20,0,2,0,1,0,0,0), +(@CGUID+3175,32820,0,1,1,0,0,2883.51,-789,160.333,3.574,600,20,0,2,0,1,0,0,0), +(@CGUID+3176,32820,0,1,1,0,0,2883.86,261.845,24.999,4.842,600,20,0,2,0,1,0,0,0), +(@CGUID+3177,32820,0,1,1,0,0,2885.88,-253,48.962,1.164,600,20,0,2,0,1,0,0,0), +(@CGUID+3178,32820,0,1,1,0,0,2889.46,-448,80.326,0.968,600,20,0,2,0,1,0,0,0), +(@CGUID+3179,32820,0,1,1,0,0,2889.54,182.161,7.886,1.546,600,20,0,2,0,1,0,0,0), +(@CGUID+3180,32820,0,1,1,0,0,2891.65,-809,160.333,5.178,600,20,0,2,0,1,0,0,0), +(@CGUID+3181,32820,0,1,1,0,0,2892.33,-533,106.285,3.91,600,20,0,2,0,1,0,0,0), +(@CGUID+3182,32820,0,1,1,0,0,2893.6,53.019,8.434,4.642,600,20,0,2,0,1,0,0,0), +(@CGUID+3183,32820,0,1,1,0,0,3020.6,705.731,99.9982,3.81062,600,20,0,2,0,1,0,0,0), +(@CGUID+3184,32820,0,1,1,0,0,2894.91,-659,138.365,6.066,600,20,0,2,0,1,0,0,0), +(@CGUID+3185,32820,0,1,1,0,0,2896.52,406.991,25.118,0.604,600,20,0,2,0,1,0,0,0), +(@CGUID+3186,32820,0,1,1,0,0,2896.56,-538,106.566,3.246,600,20,0,2,0,1,0,0,0), +(@CGUID+3187,32820,0,1,1,0,0,2899.94,388.981,29.211,3.126,600,20,0,2,0,1,0,0,0), +(@CGUID+3188,32820,0,1,1,0,0,2901.96,102.868,6.763,1.788,600,20,0,2,0,1,0,0,0), +(@CGUID+3189,32820,0,1,1,0,0,2902.53,-781,160.333,3.483,600,20,0,2,0,1,0,0,0), +(@CGUID+3190,32820,0,1,1,0,0,2902.63,385.339,30.095,3.078,600,20,0,2,0,1,0,0,0), +(@CGUID+3191,32820,0,1,1,0,0,2902.79,379.436,30.328,2.988,600,20,0,2,0,1,0,0,0), +(@CGUID+3192,32820,0,1,1,0,0,2903.55,-707,154.518,2.736,600,20,0,2,0,1,0,0,0), +(@CGUID+3193,32820,0,1,1,0,0,2904.61,-626,149.925,2.946,600,20,0,2,0,1,0,0,0), +(@CGUID+3194,32820,0,1,1,0,0,2905.63,851.381,112.685,6.2,600,20,0,2,0,1,0,0,0), +(@CGUID+3195,32820,0,1,1,0,0,2906.4,-79,23.843,1.339,600,20,0,2,0,1,0,0,0), +(@CGUID+3196,32820,0,1,1,0,0,2907.77,-710,154.768,3.285,600,20,0,2,0,1,0,0,0), +(@CGUID+3197,32820,0,1,1,0,0,2911.67,-162,33.899,2.483,600,20,0,2,0,1,0,0,0), +(@CGUID+3198,32820,0,1,1,0,0,2912.35,-760,154.067,1.065,600,20,0,2,0,1,0,0,0), +(@CGUID+3199,32820,0,1,1,0,0,2913.44,-754,153.983,2.855,600,20,0,2,0,1,0,0,0), +(@CGUID+3200,32820,0,1,1,0,0,2916.26,-83,26.383,4.804,600,20,0,2,0,1,0,0,0), +(@CGUID+3201,32820,0,1,1,0,0,2916.44,149.209,6.926,3.96,600,20,0,2,0,1,0,0,0), +(@CGUID+3202,32820,0,1,1,0,0,2916.55,1061.98,100.848,6.182,600,20,0,2,0,1,0,0,0), +(@CGUID+3203,32820,0,1,1,0,0,2917.87,918.233,115.606,0.977,600,20,0,2,0,1,0,0,0), +(@CGUID+3204,32820,0,1,1,0,0,2918.58,-440,85.155,4.499,600,20,0,2,0,1,0,0,0), +(@CGUID+3205,32820,0,1,1,0,0,2918.6,1048.91,100.867,1.956,600,20,0,2,0,1,0,0,0), +(@CGUID+3206,32820,0,1,1,0,0,2919.32,673.126,110.042,3.384,600,20,0,2,0,1,0,0,0), +(@CGUID+3207,32820,0,1,1,0,0,2920.15,169.812,5.183,4.343,600,20,0,2,0,1,0,0,0), +(@CGUID+3208,32820,0,1,1,0,0,2921.05,797.461,116.681,4.988,600,20,0,2,0,1,0,0,0), +(@CGUID+3209,32820,0,1,1,0,0,2923.18,751.02,107.677,4.449,600,20,0,2,0,1,0,0,0), +(@CGUID+3210,32820,0,1,1,0,0,2924.28,-415,80.677,3.127,600,20,0,2,0,1,0,0,0), +(@CGUID+3211,32820,0,1,1,0,0,2925.68,953.221,121.743,4.328,600,20,0,2,0,1,0,0,0), +(@CGUID+3212,32820,0,1,1,0,0,2926.76,658.565,107.85,1.553,600,20,0,2,0,1,0,0,0), +(@CGUID+3213,32820,0,1,1,0,0,2927.31,319.104,20.54,0.619,600,20,0,2,0,1,0,0,0), +(@CGUID+3214,32820,0,1,1,0,0,2929.2,89.24,4.717,5.706,600,20,0,2,0,1,0,0,0), +(@CGUID+3215,32820,0,1,1,0,0,2929.25,666.884,108.087,1.678,600,20,0,2,0,1,0,0,0), +(@CGUID+3216,32820,0,1,1,0,0,2929.88,788.119,109.945,0.705,600,20,0,2,0,1,0,0,0), +(@CGUID+3217,32820,0,1,1,0,0,2929.93,-241,35.956,1.894,600,20,0,2,0,1,0,0,0), +(@CGUID+3218,32820,0,1,1,0,0,2931.4,-730,153.635,4.361,600,20,0,2,0,1,0,0,0), +(@CGUID+3219,32820,0,1,1,0,0,2934.09,263.472,8.085,6.266,600,20,0,2,0,1,0,0,0), +(@CGUID+3220,32820,0,1,1,0,0,2936.11,-656,148.523,0.068,600,20,0,2,0,1,0,0,0), +(@CGUID+3221,32820,0,1,1,0,0,2936.93,-237,34.005,0.051,600,20,0,2,0,1,0,0,0), +(@CGUID+3222,32820,0,1,1,0,0,2941.69,102.462,6.311,6.056,600,20,0,2,0,1,0,0,0), +(@CGUID+3223,32820,0,1,1,0,0,2942.63,-151,26.086,2.002,600,20,0,2,0,1,0,0,0), +(@CGUID+3224,32820,0,1,1,0,0,2943.65,63.731,6.236,3.308,600,20,0,2,0,1,0,0,0), +(@CGUID+3225,32820,0,1,1,0,0,2944.22,-625,154.703,2.807,600,20,0,2,0,1,0,0,0), +(@CGUID+3226,32820,0,1,1,0,0,2944.88,562.758,91.401,2.818,600,20,0,2,0,1,0,0,0), +(@CGUID+3227,32820,0,1,1,0,0,2945.26,971.593,121.785,1.886,600,20,0,2,0,1,0,0,0), +(@CGUID+3228,32820,0,1,1,0,0,2946.59,181.706,3.237,3.686,600,20,0,2,0,1,0,0,0), +(@CGUID+3229,32820,0,1,1,0,0,2947.27,-769,154.118,0.31,600,20,0,2,0,1,0,0,0), +(@CGUID+3230,32820,0,1,1,0,0,2947.86,161.726,4.916,1.018,600,20,0,2,0,1,0,0,0), +(@CGUID+3231,32820,0,1,1,0,0,2947.92,-652,154.773,5.658,600,20,0,2,0,1,0,0,0), +(@CGUID+3232,32820,0,1,1,0,0,2948.83,-273,27.43,2.897,600,20,0,2,0,1,0,0,0), +(@CGUID+3233,32820,0,1,1,0,0,2953.51,-717,154.858,2.905,600,20,0,2,0,1,0,0,0), +(@CGUID+3234,32820,0,1,1,0,0,2954.64,315.11,7.777,1.495,600,20,0,2,0,1,0,0,0), +(@CGUID+3235,32820,0,1,1,0,0,2954.81,1018.79,103.163,3.807,600,20,0,2,0,1,0,0,0), +(@CGUID+3236,32820,0,1,1,0,0,2956.01,709.12,105.911,0.855,600,20,0,2,0,1,0,0,0), +(@CGUID+3237,32820,0,1,1,0,0,2956.12,819.863,101.797,2.267,600,20,0,2,0,1,0,0,0), +(@CGUID+3238,32820,0,1,1,0,0,2967.57,333.307,8.102,5.69,600,20,0,2,0,1,0,0,0), +(@CGUID+3239,32820,0,1,1,0,0,2968.38,335.047,8.085,0.401,600,20,0,2,0,1,0,0,0), +(@CGUID+3240,32820,0,1,1,0,0,2969.37,-292,21.871,4.815,600,20,0,2,0,1,0,0,0), +(@CGUID+3241,32820,0,1,1,0,0,2970.81,274.396,5.439,4.338,600,20,0,2,0,1,0,0,0), +(@CGUID+3242,32820,0,1,1,0,0,2972.62,-558,111.918,3.277,600,20,0,2,0,1,0,0,0), +(@CGUID+3243,32820,0,1,1,0,0,2974.08,571.61,94.697,2.646,600,20,0,2,0,1,0,0,0), +(@CGUID+3244,32820,0,1,1,0,0,2974.75,287.31,4.246,0.001,600,20,0,2,0,1,0,0,0), +(@CGUID+3245,32820,0,1,1,0,0,2978.02,-540,112.539,3.735,600,20,0,2,0,1,0,0,0), +(@CGUID+3246,32820,0,1,1,0,0,2979.02,1073.34,85.655,5.99,600,20,0,2,0,1,0,0,0), +(@CGUID+3247,32820,0,1,1,0,0,2979.26,-17,6.461,2.412,600,20,0,2,0,1,0,0,0), +(@CGUID+3248,32820,0,1,1,0,0,2980.37,-179,18.694,0.84,600,20,0,2,0,1,0,0,0), +(@CGUID+3249,32820,0,1,1,0,0,2981.09,-307,18.762,0.878,600,20,0,2,0,1,0,0,0), +(@CGUID+3250,32820,0,1,1,0,0,2984.23,918.186,110.832,5.333,600,20,0,2,0,1,0,0,0), +(@CGUID+3251,32820,0,1,1,0,0,2985.34,978.439,114.323,6.253,600,20,0,2,0,1,0,0,0), +(@CGUID+3252,32820,0,1,1,0,0,2985.35,-748,157.915,6.231,600,20,0,2,0,1,0,0,0), +(@CGUID+3253,32820,0,1,1,0,0,2986.52,422.934,19.479,5.042,600,20,0,2,0,1,0,0,0), +(@CGUID+3254,32820,0,1,1,0,0,2990.13,-66,16.091,4.713,600,20,0,2,0,1,0,0,0), +(@CGUID+3255,32820,0,1,1,0,0,2992.05,698.937,93.051,5.166,600,20,0,2,0,1,0,0,0), +(@CGUID+3256,32820,0,1,1,0,0,2994.95,383.693,7.901,5.36,600,20,0,2,0,1,0,0,0), +(@CGUID+3257,32820,0,1,1,0,0,3003.91,-540,115.815,3.553,600,20,0,2,0,1,0,0,0), +(@CGUID+3258,32820,0,1,1,0,0,3004.72,-494,96.224,1.054,600,20,0,2,0,1,0,0,0), +(@CGUID+3259,32820,0,1,1,0,0,3005.26,804.189,86.07,3.823,600,20,0,2,0,1,0,0,0), +(@CGUID+3260,32820,0,1,1,0,0,3013.12,367.309,2.625,3.236,600,20,0,2,0,1,0,0,0), +(@CGUID+3261,32820,0,1,1,0,0,3017.92,-559,118.956,2.777,600,20,0,2,0,1,0,0,0), +(@CGUID+3262,32820,0,1,1,0,0,3019.24,-345,7.387,2.226,600,20,0,2,0,1,0,0,0), +(@CGUID+3263,32820,0,1,1,0,0,3021.42,-542,119.423,2.598,600,20,0,2,0,1,0,0,0), +(@CGUID+3264,32820,0,1,1,0,0,3022.31,-143,5.012,2.794,600,20,0,2,0,1,0,0,0), +(@CGUID+3265,32820,0,1,1,0,0,3024.11,652.807,90.253,5.443,600,20,0,2,0,1,0,0,0), +(@CGUID+3266,32820,0,1,1,0,0,3024.93,-233,7.387,1.6,600,20,0,2,0,1,0,0,0), +(@CGUID+3267,32820,0,1,1,0,0,3026.09,-249,7.387,4.482,600,20,0,2,0,1,0,0,0), +(@CGUID+3268,32820,0,1,1,0,0,3026.25,-362,4.429,5.986,600,20,0,2,0,1,0,0,0), +(@CGUID+3269,32820,0,1,1,0,0,3027.17,689.5,65.964,2.264,600,20,0,2,0,1,0,0,0), +(@CGUID+3270,32820,0,1,1,0,0,3028.97,-179,7.284,4.565,600,20,0,2,0,1,0,0,0), +(@CGUID+3271,32820,0,1,1,0,0,3030.19,-366,2.743,4.049,600,20,0,2,0,1,0,0,0), +(@CGUID+3272,32820,0,1,1,0,0,3032.96,655.387,75.35,0.114,600,20,0,2,0,1,0,0,0), +(@CGUID+3273,32820,0,1,1,0,0,3033.13,398.802,0.929,2.906,600,20,0,2,0,1,0,0,0), +(@CGUID+3274,32820,0,1,1,0,0,3038.01,656.1,75.35,6.275,600,20,0,2,0,1,0,0,0), +(@CGUID+3275,32820,0,1,1,0,0,3040.67,-31,5.143,5.691,600,20,0,2,0,1,0,0,0), +(@CGUID+3276,32820,0,1,1,0,0,3041.3,660.506,57.506,2.147,600,20,0,2,0,1,0,0,0), +(@CGUID+3277,32820,0,1,1,0,0,3043.79,657.255,57.423,1.618,600,20,0,2,0,1,0,0,0), +(@CGUID+3278,32820,0,1,1,0,0,2982.18,601.382,98.2531,2.72127,600,20,0,2,0,1,0,0,0), +(@CGUID+3279,32820,0,1,1,0,0,3045.31,417.43,0.567,5.655,600,20,0,2,0,1,0,0,0), +(@CGUID+3280,32820,0,1,1,0,0,3046.45,11.109,0.234,4.485,600,20,0,2,0,1,0,0,0), +(@CGUID+3281,32820,0,1,1,0,0,3049.32,661.191,57.423,1.826,600,20,0,2,0,1,0,0,0), +(@CGUID+3282,32820,0,1,1,0,0,3051.71,-551,126.513,3.651,600,20,0,2,0,1,0,0,0), +(@CGUID+3283,32820,0,1,1,0,0,3052.12,-566,126.397,2.459,600,20,0,2,0,1,0,0,0), +(@CGUID+3284,32820,0,1,1,0,0,3052.36,426.242,7.103,4.067,600,20,0,2,0,1,0,0,0), +(@CGUID+3285,32820,0,1,1,0,0,3054.02,-183,1.923,0.202,600,20,0,2,0,1,0,0,0), +(@CGUID+3286,32820,0,1,1,0,0,3056.72,-559,125.842,2.512,600,20,0,2,0,1,0,0,0), +(@CGUID+3287,32820,0,1,1,0,0,3059.86,691.63,65.964,1.097,600,20,0,2,0,1,0,0,0), +(@CGUID+3288,32820,0,1,1,0,0,3061.28,-147,-2,2.921,600,20,0,2,0,1,0,0,0), +(@CGUID+3289,32820,0,1,1,0,0,3069,-80,0.579,4.59,600,20,0,2,0,1,0,0,0), +(@CGUID+3290,32820,0,1,1,0,0,3076.78,-562,126.721,2.868,600,20,0,2,0,1,0,0,0), +(@CGUID+3291,32820,0,1,1,0,0,2928.53,696.453,108.188,1.70351,600,20,0,2,0,1,0,0,0), +(@CGUID+3292,32820,0,1,1,0,0,3078.75,-560,126.722,3.165,600,20,0,2,0,1,0,0,0), +(@CGUID+3293,32820,0,1,1,0,0,3088.75,-10,0.235,2.426,600,20,0,2,0,1,0,0,0), +(@CGUID+3294,32820,0,1,1,0,0,3096.26,-566,126.807,1.006,600,20,0,2,0,1,0,0,0), +(@CGUID+3295,32820,0,1,1,0,0,3102.06,-553,126.627,0.175,600,20,0,2,0,1,0,0,0), +(@CGUID+3296,32820,0,1,1,0,0,3119.52,-574,128.942,0.681,600,20,0,2,0,1,0,0,0), +(@CGUID+3297,32820,0,1,1,0,0,1964.31,1554.16,85.7158,1.30119,600,20,0,2,0,1,0,0,0), +(@CGUID+3298,32820,0,1,1,0,0,-9744,558.748,35.745,6.004,600,20,0,2,0,1,0,0,0), +(@CGUID+3299,32820,0,1,1,0,0,-9793,-306,46.5,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+3300,32820,0,1,1,0,0,-9860,-221,36.19,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+3301,32820,0,1,1,0,0,-9898,-277,33.4,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+3302,32820,0,1,1,0,0,-9495.05,395.521,51.949,1.53097,600,20,0,2,0,1,0,0,0), +(@CGUID+3303,32820,0,1,1,0,0,-9270,653.4,134.5,0.4,600,20,0,2,0,1,0,0,0), +(@CGUID+3304,32820,0,1,1,0,0,1786.59,1490.76,104.011,0.357352,600,20,0,2,0,1,0,0,0), +(@CGUID+3305,32820,0,1,1,0,0,2010.64,1633.8,71.8949,3.6393,600,20,0,2,0,1,0,0,0), +(@CGUID+3306,32820,0,1,1,0,0,1825.83,1520.08,90.2908,4.37744,600,20,0,2,0,1,0,0,0), +(@CGUID+3307,32820,0,1,1,0,0,2042.86,1895.12,102.009,4.20624,600,20,0,2,0,1,0,0,0), +(@CGUID+3308,32820,0,1,1,0,0,2947.37,537.734,95.8111,1.59355,600,20,0,2,0,1,0,0,0), +(@CGUID+3309,32820,0,1,1,0,0,2817.39,698.619,145.777,0.297644,600,20,0,2,0,1,0,0,0), +(@CGUID+3310,32820,0,1,1,0,0,2910.61,801.003,118.231,2.66562,600,20,0,2,0,1,0,0,0), +(@CGUID+3311,32820,0,1,1,0,0,-385.302,1110.64,85.3631,1.345,600,20,0,2,0,1,0,0,0), +(@CGUID+3312,32820,0,1,1,0,0,-8933.42,-236.962,79.4718,3.6465,600,20,0,2,0,1,0,0,0), +(@CGUID+3313,32820,0,1,1,0,0,1775.35,768.2,55.1358,3.94759,600,20,0,2,0,1,0,0,0), +(@CGUID+3314,32820,0,1,1,0,0,2142.51,1818.9,112.467,0.113485,600,20,0,2,0,1,0,0,0), +(@CGUID+3315,32820,0,1,1,0,0,2030.92,1759.4,105.187,3.13952,600,20,0,2,0,1,0,0,0), +(@CGUID+3316,32820,0,1,1,0,0,2053.61,1904.96,101.297,2.74847,600,20,0,2,0,1,0,0,0), +(@CGUID+3317,32820,0,1,1,0,0,2048.1,1913.08,102.643,3.59252,600,20,0,2,0,1,0,0,0), +(@CGUID+3318,32820,0,1,1,0,0,2037.69,1915.95,102.442,2.21748,600,20,0,2,0,1,0,0,0), +(@CGUID+3319,32820,0,1,1,0,0,2009.23,1927.88,105.324,0.789907,600,20,0,2,0,1,0,0,0), +(@CGUID+3320,32820,0,1,1,0,0,2004.1,1943.92,103.936,2.06274,600,20,0,2,0,1,0,0,0), +(@CGUID+3321,32820,0,1,1,0,0,2067.3,1974.92,100.632,0.468552,600,20,0,2,0,1,0,0,0), +(@CGUID+3322,32820,0,1,1,0,0,2056.7,1973.26,100.731,5.72906,600,20,0,2,0,1,0,0,0), +(@CGUID+3323,32820,0,1,1,0,0,2078.01,1960.71,96.9135,5.26414,600,20,0,2,0,1,0,0,0), +(@CGUID+3324,32820,0,1,1,0,0,2077.98,1951.27,97.9999,3.21011,600,20,0,2,0,1,0,0,0), +(@CGUID+3325,32820,0,1,1,0,0,2041.57,1990.01,100.102,1.21743,600,20,0,2,0,1,0,0,0), +(@CGUID+3326,32820,0,1,1,0,0,2009.06,1952.52,102.697,2.3456,600,20,0,2,0,1,0,0,0), +(@CGUID+3327,32820,0,1,1,0,0,2021.89,1970.46,100.136,4.28176,600,20,0,2,0,1,0,0,0), +(@CGUID+3328,32820,0,1,1,0,0,2031.09,1981.2,99.4831,5.68204,600,20,0,2,0,1,0,0,0), +(@CGUID+3329,32820,0,1,1,0,0,2081.52,1969.65,101.161,3.06268,600,20,0,2,0,1,0,0,0), +(@CGUID+3330,32820,0,1,1,0,0,2068.09,1970.57,99.694,5.04511,600,20,0,2,0,1,0,0,0), +(@CGUID+3331,32820,0,1,1,0,0,2044.35,1863.3,102.94,2.87979,600,20,0,2,0,1,0,0,0), +(@CGUID+3332,32820,0,1,1,0,0,2045.76,1876.12,101.938,0.09333,600,20,0,2,0,1,0,0,0), +(@CGUID+3333,32820,0,1,1,0,0,2035.48,1884.91,103.122,0.21166,600,20,0,2,0,1,0,0,0), +(@CGUID+3334,32820,0,1,1,0,0,2045.61,1832.43,107.74,0.226662,600,20,0,2,0,1,0,0,0), +(@CGUID+3335,32820,0,1,1,0,0,2290.18,396.015,34.0273,6.22659,600,20,1,2,0,1,0,0,0), +(@CGUID+3336,32820,0,1,1,0,0,2235.23,248.3,33.3851,3.24248,600,20,1,2,0,1,0,0,0), +(@CGUID+3337,32820,0,1,1,0,0,2165.83,1763.53,98.8838,0.006357,600,20,0,2,0,1,0,0,0), +(@CGUID+3338,32820,0,1,1,0,0,2135.63,1749.76,85.8838,0.947992,600,20,0,2,0,1,0,0,0), +(@CGUID+3339,32820,0,1,1,0,0,2114.67,1785.05,91.621,3.36632,600,20,0,2,0,1,0,0,0), +(@CGUID+3340,32820,0,1,1,0,0,2061.67,1790.69,92.8739,2.77722,600,20,0,2,0,1,0,0,0), +(@CGUID+3341,32820,0,1,1,0,0,2042.98,1780.07,96.8739,5.71924,600,20,0,2,0,1,0,0,0), +(@CGUID+3342,32820,0,1,1,0,0,2090.34,1794.37,104.809,1.85416,600,20,0,2,0,1,0,0,0), +(@CGUID+3343,32820,0,1,1,0,0,2267.57,1148.76,33.1175,0.06058,600,20,0,2,0,1,0,0,0), +(@CGUID+3344,32820,0,1,1,0,0,1952.85,674.922,46.8509,1.98156,600,20,0,2,0,1,0,0,0), +(@CGUID+3345,32820,0,1,1,0,0,2149.02,-707.278,66.9912,5.39988,600,20,0,2,0,1,0,0,0), +(@CGUID+3346,32820,0,1,1,0,0,2246.61,329.109,35.1891,5.54353,600,20,0,2,0,1,0,0,0), +(@CGUID+3347,32820,0,1,1,0,0,-9585.09,22.4941,60.2258,3.83489,600,20,0,2,0,1,0,0,0), +(@CGUID+3348,32820,0,1,1,0,0,1767.39,1401.59,95.4556,0.907202,600,20,0,2,0,1,0,0,0), +(@CGUID+3349,32820,0,1,1,0,0,2133,1812.78,107.113,0.076802,600,20,0,2,0,1,0,0,0), +(@CGUID+3350,32820,0,1,1,0,0,2055.19,1802.37,99.9483,5.11756,600,20,0,2,0,1,0,0,0), +(@CGUID+3351,32820,0,1,1,0,0,1785.62,1413.87,89.7434,5.52893,600,20,0,2,0,1,0,0,0), +(@CGUID+3352,32820,0,1,1,0,0,2150.35,1796.23,111.591,3.85096,600,20,0,2,0,1,0,0,0), +(@CGUID+3353,32820,0,1,1,0,0,2176.15,1773.74,106.631,4.70236,600,20,0,2,0,1,0,0,0), +(@CGUID+3354,32820,0,1,1,0,0,1745.32,1456.14,127.703,0.931008,600,20,0,2,0,1,0,0,0), +(@CGUID+3355,32820,0,1,1,0,0,1745.24,1384.37,99.1645,3.97365,600,20,0,2,0,1,0,0,0), +(@CGUID+3356,32820,0,1,1,0,0,1682.29,1331.34,129.135,5.97211,600,20,0,2,0,1,0,0,0), +(@CGUID+3357,32820,0,1,1,0,0,1842.72,1326.38,82.5225,3.55238,600,20,0,2,0,1,0,0,0), +(@CGUID+3358,32820,0,1,1,0,0,2042.62,1535.94,77.489,0.78331,600,20,0,2,0,1,0,0,0), +(@CGUID+3359,32820,0,1,1,0,0,1680.36,1459.78,131.926,5.12536,600,20,0,2,0,1,0,0,0), +(@CGUID+3360,32820,0,1,1,0,0,1743.9,1484.4,131.095,1.93249,600,20,0,2,0,1,0,0,0), +(@CGUID+3361,32820,0,1,1,0,0,1843.25,1411.66,81.1712,3.52332,600,20,0,2,0,1,0,0,0), +(@CGUID+3362,32820,0,1,1,0,0,1856.99,1486.92,90.4841,6.24703,600,20,0,2,0,1,0,0,0), +(@CGUID+3363,32820,0,1,1,0,0,1875.6,1475.32,84.1047,1.0482,600,20,0,2,0,1,0,0,0), +(@CGUID+3364,32820,0,1,1,0,0,1876.33,1286.86,97.0498,2.29111,600,20,0,2,0,1,0,0,0), +(@CGUID+3365,32820,0,1,1,0,0,1904.95,1459.38,81.8932,1.99645,600,20,0,2,0,1,0,0,0), +(@CGUID+3366,32820,0,1,1,0,0,1897.44,1470.9,84.7727,1.74171,600,20,0,2,0,1,0,0,0), +(@CGUID+3367,32820,0,1,1,0,0,1814.22,1281.65,98.8504,4.30128,600,20,0,2,0,1,0,0,0), +(@CGUID+3368,32820,0,1,1,0,0,-9314.44,534.504,75.7665,5.50474,600,20,0,2,0,1,0,0,0), +(@CGUID+3369,32820,0,1,1,0,0,2164.71,1707.36,94.5088,5.24337,600,20,0,2,0,1,0,0,0), +(@CGUID+3370,32820,0,1,1,0,0,1700.66,1412.59,128.992,3.27602,600,20,0,2,0,1,0,0,0), +(@CGUID+3371,32820,0,1,1,0,0,1904.61,1490.4,93.9505,1.04444,600,20,0,2,0,1,0,0,0), +(@CGUID+3372,32820,0,1,1,0,0,1911.6,1499.34,89.1851,4.08433,600,20,0,2,0,1,0,0,0), +(@CGUID+3373,32820,0,1,1,0,0,-9511.31,-1285.64,44.1448,3.93122,600,20,0,2,0,1,0,0,0), +(@CGUID+3374,32820,0,1,1,0,0,-9071.98,445.326,93.2958,5.4317,600,20,1,2,0,1,0,0,0), +(@CGUID+3375,32820,0,1,1,0,0,-9055.89,424.686,93.2957,2.28775,600,20,1,2,0,1,0,0,0), +(@CGUID+3376,32820,0,1,1,0,0,-10561.6,-1320.52,47.1949,2.26275,600,20,0,2,0,1,0,0,0), +(@CGUID+3377,32820,0,1,1,0,0,-10683.7,-1233.15,28.7227,5.27282,600,20,0,2,0,1,0,0,0), +(@CGUID+3378,32820,0,1,1,0,0,-10672.2,-1153.13,25.833,1.41593,600,20,0,2,0,1,0,0,0), +(@CGUID+3379,32820,0,1,1,0,0,-9427.15,129.176,59.4742,2.84226,600,20,0,2,0,1,0,0,0), +(@CGUID+3380,32820,0,1,1,0,0,-9332.22,272.505,68.1097,1.01197,600,20,0,2,0,1,0,0,0), +(@CGUID+3381,32820,0,1,1,0,0,-9325.21,269.797,67.8272,5.27587,600,20,0,2,0,1,0,0,0), +(@CGUID+3382,32820,0,1,1,0,0,-790.13,-605.027,22.1652,4.44376,600,20,0,2,0,1,0,0,0), +(@CGUID+3383,32820,0,1,1,0,0,-753.823,-573.231,19.5524,1.55322,600,20,0,2,0,1,0,0,0), +(@CGUID+3384,32820,0,1,1,0,0,-816.533,-537.25,15.3231,2.77414,600,20,0,2,0,1,0,0,0), +(@CGUID+3385,32820,0,1,1,0,0,-814.948,-616.612,13.8203,1.96799,600,20,0,2,0,1,0,0,0), +(@CGUID+3386,32820,0,1,1,0,0,-908.8,-959.17,30.4945,0.763091,600,20,0,2,0,1,0,0,0), +(@CGUID+3387,32820,0,1,1,0,0,-10694.7,-1130.38,25.5715,3.55496,600,20,0,2,0,1,0,0,0), +(@CGUID+3388,32820,0,1,1,0,0,-526.007,18.1682,49.3176,3.12987,600,20,0,2,0,1,0,0,0), +(@CGUID+3389,32820,0,1,1,0,0,-479.589,4.75845,55.4283,4.72252,600,20,0,2,0,1,0,0,0), +(@CGUID+3390,32820,0,1,1,0,0,-9944.64,-150.41,25.0081,1.68865,600,20,0,2,0,1,0,0,0), +(@CGUID+3391,32820,0,1,1,0,0,-9472.62,47.3926,56.7775,5.34535,600,20,0,2,0,1,0,0,0), +(@CGUID+3392,32820,0,1,1,0,0,-9507.4,-1209.39,47.8715,3.73257,600,20,0,2,0,1,0,0,0), +(@CGUID+3393,32820,0,1,1,0,0,-9475.52,-1161.98,50.9518,4.90971,600,20,0,2,0,1,0,0,0), +(@CGUID+3394,32820,0,1,1,0,0,-9478.55,-1166.22,50.4518,4.10283,600,20,0,2,0,1,0,0,0), +(@CGUID+3395,32820,0,1,1,0,0,1977.02,1522.91,87.5698,4.72587,600,20,0,2,0,1,0,0,0), +(@CGUID+3396,32820,0,1,1,0,0,1975.66,1546.43,87.2305,1.15654,600,20,0,2,0,1,0,0,0), +(@CGUID+3397,32820,0,1,1,0,0,1976.01,1501.05,86.214,0.928894,600,20,0,2,0,1,0,0,0), +(@CGUID+3398,32820,0,1,1,0,0,1994.22,1586.34,81.2317,2.31178,600,20,0,2,0,1,0,0,0), +(@CGUID+3399,32820,0,1,1,0,0,1987.36,1591.49,82.5041,5.49851,600,20,0,2,0,1,0,0,0), +(@CGUID+3400,32820,0,1,1,0,0,1971.58,1570.47,79.1067,4.18616,600,20,0,2,0,1,0,0,0), +(@CGUID+3401,32820,0,1,1,0,0,2021.87,1612.39,71.5787,3.98252,600,20,0,2,0,1,0,0,0), +(@CGUID+3402,32820,0,1,1,0,0,2993.51,640.431,95.6329,3.82409,600,20,0,2,0,1,0,0,0), +(@CGUID+3403,32820,0,1,1,0,0,2908.8,916.291,115.437,1.75454,600,20,0,2,0,1,0,0,0), +(@CGUID+3404,32820,0,1,1,0,0,3076.84,-557,126.803,3.108,600,20,0,2,0,1,0,0,0), +(@CGUID+3405,32820,0,1,1,0,0,3076.96,-562.549,126.721,3.01007,600,20,0,2,0,1,0,0,0), +(@CGUID+3406,32820,0,1,1,0,0,-9791.47,720.201,68.2069,0.529751,600,20,0,2,0,1,0,0,0), +(@CGUID+3407,32820,0,1,1,0,0,-9616.04,642.939,62.6796,5.88775,600,20,0,2,0,1,0,0,0), +(@CGUID+3408,32820,0,1,1,0,0,-9625.31,695.083,62.7331,2.7061,600,20,0,2,0,1,0,0,0), +(@CGUID+3409,32820,0,1,1,0,0,1688.74,-726.084,58.1182,1.29598,600,20,0,2,0,1,0,0,0), +(@CGUID+3410,32820,0,1,1,0,0,-9041.9,434.215,93.296,2.11911,600,20,0,2,0,1,0,0,0), +(@CGUID+3411,32820,0,1,1,0,0,1909.56,1307.61,90.0274,5.69666,600,20,0,2,0,1,0,0,0), +(@CGUID+3412,32820,0,1,1,0,0,1916.15,1382.17,69.2014,4.87436,600,20,0,2,0,1,0,0,0), +(@CGUID+3413,32820,0,1,1,0,0,1806.7,1357.22,85.9472,2.21564,600,20,0,2,0,1,0,0,0), +(@CGUID+3414,32820,0,1,1,0,0,1770.66,1357.48,89.9835,0.627305,600,20,0,2,0,1,0,0,0), +(@CGUID+3415,32820,0,1,1,0,0,1780.09,1306.45,102.451,0.492249,600,20,0,2,0,1,0,0,0), +(@CGUID+3416,32820,0,1,1,0,0,1789.5,1376.98,86.1594,0.482362,600,20,0,2,0,1,0,0,0), +(@CGUID+3417,32820,0,1,1,0,0,1751.2,1321.49,101.106,4.24247,600,20,0,2,0,1,0,0,0), +(@CGUID+3418,32820,0,1,1,0,0,1757.26,1370.34,92.2895,3.84071,600,20,0,2,0,1,0,0,0), +(@CGUID+3419,32820,0,1,1,0,0,1731.53,1369.26,103.698,3.65316,600,20,0,2,0,1,0,0,0), +(@CGUID+3420,32820,0,1,1,0,0,1812.44,1387.72,78.1535,4.82501,600,20,0,2,0,1,0,0,0), +(@CGUID+3421,32820,0,1,1,0,0,1767.78,1335.96,90.7335,3.74657,600,20,0,2,0,1,0,0,0), +(@CGUID+3422,32820,0,1,1,0,0,1729.5,1318.17,111.616,5.02367,600,20,0,2,0,1,0,0,0), +(@CGUID+3423,32820,0,1,1,0,0,1779.57,1381.83,90.4094,2.32509,600,20,0,2,0,1,0,0,0), +(@CGUID+3424,32820,0,1,1,0,0,1789.48,1335.2,89.7295,1.36136,600,20,0,2,0,1,0,0,0), +(@CGUID+3425,32820,0,1,1,0,0,1795.91,1342.81,89.0869,3.64774,600,20,0,2,0,1,0,0,0), +(@CGUID+3426,32820,0,1,1,0,0,-11098.5,-1830.69,71.8642,3.63551,600,20,0,2,0,1,0,0,0), +(@CGUID+3427,32820,0,1,1,0,0,2692.43,530.939,22.942,2.97468,600,20,0,2,0,1,0,0,0), +(@CGUID+3428,32820,0,1,1,0,0,2598.77,480.74,24.1265,2.61145,600,20,0,2,0,1,0,0,0), +(@CGUID+3429,32820,0,1,1,0,0,2487.49,455.609,39.5088,0.0451597,600,20,0,2,0,1,0,0,0), +(@CGUID+3430,32820,0,1,1,0,0,-5429.74,-524.295,397.028,1.47952,600,20,0,2,0,1,0,0,0), +(@CGUID+3431,32820,0,1,1,0,0,-9393.06,-12.708,61.7282,0.609785,600,20,0,2,0,1,0,0,0), +(@CGUID+3432,32820,0,1,1,0,0,-5251.04,-2890.35,339.293,0.932313,600,20,0,2,0,1,0,0,0), +(@CGUID+3433,32820,0,1,1,0,0,2553.22,507.565,18.0189,4.67312,600,20,0,2,0,1,0,0,0), +(@CGUID+3434,32820,0,1,1,0,0,2522.67,506.184,38.5263,0.121734,600,20,0,2,0,1,0,0,0), +(@CGUID+3435,32820,0,1,1,0,0,2607.11,642.275,28.6185,4.66722,600,20,0,2,0,1,0,0,0), +(@CGUID+3436,32820,0,1,1,0,0,-10722.2,1669.9,44.0413,1.1882,600,20,0,2,0,1,0,0,0), +(@CGUID+3437,32820,0,1,1,0,0,-9842.73,1269.92,41.3237,0.834495,600,20,0,2,0,1,0,0,0), +(@CGUID+3438,32820,0,1,1,0,0,-10324,1419.24,39.9909,1.01209,600,20,0,2,0,1,0,0,0), +(@CGUID+3439,32820,0,1,1,0,0,-10142.5,1048.42,36.8772,2.92152,600,20,0,2,0,1,0,0,0), +(@CGUID+3440,32820,0,1,1,0,0,-10093.3,1053.26,37.1329,5.03173,600,20,0,2,0,1,0,0,0), +(@CGUID+3441,32820,0,1,1,0,0,-10101.1,1053.31,36.5544,1.38766,600,20,0,2,0,1,0,0,0), +(@CGUID+3442,32820,0,1,1,0,0,2364.21,1314.57,33.4123,1.35871,600,20,0,2,0,1,0,0,0), +(@CGUID+3443,32820,0,1,1,0,0,2141.23,640.716,34.2212,5.15441,600,20,0,2,0,1,0,0,0), +(@CGUID+3444,32820,0,1,1,0,0,2293.08,310.279,35.611,3.29253,600,20,0,2,0,1,0,0,0), +(@CGUID+3445,32820,0,1,1,0,0,2326.63,1351.72,33.4583,5.00745,600,20,0,2,0,1,0,0,0), +(@CGUID+3446,32820,0,1,1,0,0,2053.13,1905.26,101.451,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3447,32820,0,1,1,0,0,2047.8,1912.96,102.799,5.39307,600,20,0,2,0,1,0,0,0), +(@CGUID+3448,32820,0,1,1,0,0,2059.84,1747.6,82.0121,5.46288,600,20,0,2,0,1,0,0,0), +(@CGUID+3449,32820,0,1,1,0,0,2048.31,1729.92,80.3154,1.5708,600,20,0,2,0,1,0,0,0), +(@CGUID+3450,32820,0,1,1,0,0,1996.41,1699.24,79.0733,4.19742,600,20,0,2,0,1,0,0,0), +(@CGUID+3451,32820,0,1,1,0,0,2039.44,1637.45,70.7334,3.08192,600,20,0,2,0,1,0,0,0), +(@CGUID+3452,32820,0,1,1,0,0,-9346.44,171.041,61.5582,2.74061,600,20,0,2,0,1,0,0,0), +(@CGUID+3453,32820,0,1,1,0,0,-9340.16,183.339,61.5512,0.349854,600,20,0,2,0,1,0,0,0), +(@CGUID+3454,32820,0,1,1,0,0,-9958.02,-155.297,22.3585,5.67327,600,20,0,2,0,1,0,0,0), +(@CGUID+3455,32820,0,1,1,0,0,-9960.07,-154.13,21.9752,5.60729,600,20,0,2,0,1,0,0,0), +(@CGUID+3456,32820,0,1,1,0,0,2023.33,1615.64,71.4021,2.48225,600,20,0,2,0,1,0,0,0), +(@CGUID+3457,32820,0,1,1,0,0,2018.5,1613.13,71.539,5.58342,600,20,0,2,0,1,0,0,0), +(@CGUID+3458,32820,0,1,1,0,0,2007.43,1635.3,72.8902,1.47816,600,20,0,2,0,1,0,0,0), +(@CGUID+3459,32820,0,1,1,0,0,2143.41,1713.96,88.0088,4.44622,600,20,0,2,0,1,0,0,0), +(@CGUID+3460,32820,0,1,1,0,0,2121.93,1762.63,89.4838,0.686555,600,20,0,2,0,1,0,0,0), +(@CGUID+3461,32820,0,1,1,0,0,2113.85,1753.13,81.2572,6.05912,600,20,0,2,0,1,0,0,0), +(@CGUID+3462,32820,0,1,1,0,0,797.762,-426.993,135.484,2.26174,600,20,0,2,0,1,0,0,0), +(@CGUID+3463,32820,0,1,1,0,0,-7106.25,-3488.66,242.38,0.0916974,600,20,0,2,0,1,0,0,0), +(@CGUID+3464,32820,0,1,1,0,0,-6863.72,-1537.16,241.747,3.64169,600,20,0,2,0,1,0,0,0), +(@CGUID+3465,32820,0,1,1,0,0,1849.51,-2142.72,68.1751,3.99197,600,20,0,2,0,1,0,0,0), +(@CGUID+3466,32820,0,1,1,0,0,2123.26,1723.26,75.4448,0.848595,600,20,0,2,0,1,0,0,0), +(@CGUID+3467,32820,0,1,1,0,0,-9861.98,-223.795,36.1011,0.612494,600,20,0,2,0,1,0,0,0), +(@CGUID+3468,32820,0,1,1,0,0,-9778.55,-1564.57,41.988,1.68063,600,20,0,2,0,1,0,0,0), +(@CGUID+3469,32820,0,1,1,0,0,2051.51,1574.01,74.622,1.76244,600,20,0,2,0,1,0,0,0), +(@CGUID+3470,32820,0,1,1,0,0,2020.66,1586.14,74.7462,2.30483,600,20,0,2,0,1,0,0,0), +(@CGUID+3471,32820,0,1,1,0,0,-9897.53,1311.06,42.2721,2.52486,600,20,0,2,0,1,0,0,0), +(@CGUID+3472,32820,0,1,1,0,0,2239.51,282.798,35.1478,5.28835,600,20,0,2,0,1,0,0,0), +(@CGUID+3473,32820,0,1,1,0,0,1877.29,1485.36,86.1047,1.54772,600,20,0,2,0,1,0,0,0), +(@CGUID+3474,32820,0,1,1,0,0,-5621.95,-472.837,397.14,5.67232,600,20,0,2,0,1,0,0,0), +(@CGUID+3475,32820,0,1,1,0,0,1819.41,219.233,60.0732,0.337883,600,20,0,2,0,1,0,0,0), +(@CGUID+3476,32820,0,1,1,0,0,603.436,1338.35,88.5123,5.87362,600,20,0,2,0,1,0,0,0), +(@CGUID+3477,32820,0,1,1,0,0,-156.058,-872.543,57.013,2.16546,600,20,0,2,0,1,0,0,0), +(@CGUID+3478,32820,0,1,1,0,0,2286.63,403.383,33.9185,5.40354,600,20,0,2,0,1,0,0,0), +(@CGUID+3479,32820,0,1,1,0,0,2055.57,246.986,99.7687,5.24251,600,20,0,2,0,1,0,0,0), +(@CGUID+3480,32820,0,1,1,0,0,2061.88,245.766,99.7687,3.6992,600,20,0,2,0,1,0,0,0), +(@CGUID+3481,32820,0,1,1,0,0,2069.68,281.58,97.0315,1.49224,600,20,0,2,0,1,0,0,0), +(@CGUID+3482,32820,0,1,1,0,0,2062.2,282.961,97.0315,1.13488,600,20,0,2,0,1,0,0,0), +(@CGUID+3483,32820,0,1,1,0,0,1922.26,1487.58,87.5093,4.91906,600,20,0,2,0,1,0,0,0), +(@CGUID+3484,32820,0,1,1,0,0,1925.79,1505.03,87.8891,2.73881,600,20,0,2,0,1,0,0,0), +(@CGUID+3485,32820,0,1,1,0,0,1879.95,1531.01,88.1731,1.93335,600,20,0,2,0,1,0,0,0), +(@CGUID+3486,32820,0,1,1,0,0,1941.18,1482.73,80.68,3.9118,600,20,0,2,0,1,0,0,0), +(@CGUID+3487,32820,0,1,1,0,0,1936.46,1470.72,76.8807,3.05083,600,20,0,2,0,1,0,0,0), +(@CGUID+3488,32820,0,1,1,0,0,1942.84,1504.06,86.6385,1.42973,600,20,0,2,0,1,0,0,0), +(@CGUID+3489,32820,0,1,1,0,0,1938.6,1520.76,88.0872,1.41664,600,20,0,2,0,1,0,0,0), +(@CGUID+3490,32820,0,1,1,0,0,1900.82,1551.82,88.9754,5.83433,600,20,0,2,0,1,0,0,0), +(@CGUID+3491,32820,0,1,1,0,0,1903.38,1571.51,89.0855,6.14036,600,20,0,2,0,1,0,0,0), +(@CGUID+3492,32820,0,1,1,0,0,1939.42,1543.6,90.165,1.29469,600,20,0,2,0,1,0,0,0), +(@CGUID+3493,32820,0,1,1,0,0,1916.89,1579.84,85.3748,5.26223,600,20,0,2,0,1,0,0,0), +(@CGUID+3494,32820,0,1,1,0,0,1941.21,1459.58,73.8011,3.80354,600,20,0,2,0,1,0,0,0), +(@CGUID+3495,32820,0,1,1,0,0,1953.75,1514.37,88.0872,5.63848,600,20,0,2,0,1,0,0,0), +(@CGUID+3496,32820,0,1,1,0,0,1952.23,1474.47,79.4592,3.58341,600,20,0,2,0,1,0,0,0), +(@CGUID+3497,32820,0,1,1,0,0,1926.11,1583.07,83.2642,2.48772,600,20,0,2,0,1,0,0,0), +(@CGUID+3498,32820,0,1,1,0,0,1975.21,1496.68,85.9142,3.69236,600,20,0,2,0,1,0,0,0), +(@CGUID+3499,32820,0,1,1,0,0,1908.9,1605.24,85.7089,1.83176,600,20,0,2,0,1,0,0,0), +(@CGUID+3500,32820,0,1,1,0,0,1945.63,1589.38,82.286,3.08945,600,20,0,2,0,1,0,0,0), +(@CGUID+3501,32820,0,1,1,0,0,1976.71,1547.91,87.0632,2.66361,600,20,0,2,0,1,0,0,0), +(@CGUID+3502,32820,0,1,1,0,0,1978.92,1574.15,79.2329,5.05864,600,20,0,2,0,1,0,0,0), +(@CGUID+3503,32820,0,1,1,0,0,1980.2,1591.12,82.4889,3.00435,600,20,0,2,0,1,0,0,0), +(@CGUID+3504,32820,0,1,1,0,0,1910.31,1641.54,89.5206,3.50196,600,20,0,2,0,1,0,0,0), +(@CGUID+3505,32820,0,1,1,0,0,1865.18,1669.82,93.3175,2.92431,600,20,0,2,0,1,0,0,0), +(@CGUID+3506,32820,0,1,1,0,0,1926.77,1661.55,79.5127,0.077276,600,20,0,2,0,1,0,0,0), +(@CGUID+3507,32820,0,1,1,0,0,1981.57,1528.8,86.8198,3.16503,600,20,0,2,0,1,0,0,0), +(@CGUID+3508,32820,0,1,1,0,0,1991.34,1528.17,80.8495,4.96921,600,20,0,2,0,1,0,0,0), +(@CGUID+3509,32820,0,1,1,0,0,2015.67,1553.31,79.1846,0.825705,600,20,0,2,0,1,0,0,0), +(@CGUID+3510,32820,0,1,1,0,0,2000.95,1587.97,78.9962,0.191096,600,20,0,2,0,1,0,0,0), +(@CGUID+3511,32820,0,1,1,0,0,1962.43,1638.69,78.8776,3.91656,600,20,0,2,0,1,0,0,0), +(@CGUID+3512,32820,0,1,1,0,0,1944.29,1667.7,78.3294,5.0045,600,20,0,2,0,1,0,0,0), +(@CGUID+3513,32820,0,1,1,0,0,2004.91,1641.77,73.3319,3.15426,600,20,0,2,0,1,0,0,0), +(@CGUID+3514,32820,0,1,1,0,0,1931.45,1688.03,79.5437,6.06427,600,20,0,2,0,1,0,0,0), +(@CGUID+3515,32820,0,1,1,0,0,1964.51,1690.35,78.3776,1.10587,600,20,0,2,0,1,0,0,0), +(@CGUID+3516,32820,0,1,1,0,0,1905.2,1690.69,86.5372,4.7797,600,20,0,2,0,1,0,0,0), +(@CGUID+3517,32820,0,1,1,0,0,1980.72,1677.9,78.1821,0.840403,600,20,0,2,0,1,0,0,0), +(@CGUID+3518,32820,0,1,1,0,0,1969.44,1592.83,82.4083,5.2709,600,20,0,2,0,1,0,0,0), +(@CGUID+3519,32820,0,1,1,0,0,2018.37,1524,78.2645,3.27533,600,20,0,2,0,1,0,0,0), +(@CGUID+3520,32820,0,1,1,0,0,2009.44,1505.26,73.9583,0.280782,600,20,0,2,0,1,0,0,0), +(@CGUID+3521,32820,0,1,1,0,0,1930.14,1606.7,83.0828,4.03171,600,20,0,2,0,1,0,0,0), +(@CGUID+3522,32820,0,1,1,0,0,1986.28,1453.64,72.3036,3.93793,600,20,0,2,0,1,0,0,0), +(@CGUID+3523,32820,0,1,1,0,0,2075.97,1690.9,70.36,1.95063,600,20,0,2,0,1,0,0,0), +(@CGUID+3524,32820,0,1,1,0,0,1940.68,1629.14,80.2658,0,600,20,0,2,0,1,0,0,0), +(@CGUID+3525,32820,0,1,1,0,0,1922.12,1585.29,83.6855,4.3673,600,20,0,2,0,1,0,0,0), +(@CGUID+3526,32820,0,1,1,0,0,1912.03,1588.68,85.3317,2.88977,600,20,0,2,0,1,0,0,0), +(@CGUID+3527,32820,0,1,1,0,0,1938.94,1571.99,82.8736,2.15963,600,20,0,2,0,1,0,0,0), +(@CGUID+3528,32820,0,1,1,0,0,1839.13,1676.02,97.8696,2.48715,600,20,0,2,0,1,0,0,0), +(@CGUID+3529,32820,0,1,1,0,0,-8440.71,332.994,122.579,2.25725,600,20,0,2,0,1,0,0,0), +(@CGUID+3530,32820,0,1,1,0,0,1986.74,-3652.08,120.22,3.70105,600,20,0,2,0,1,0,0,0), +(@CGUID+3531,32820,0,1,1,0,0,1785.33,255.107,59.4587,5.99957,600,20,0,2,0,1,0,0,0), +(@CGUID+3532,32820,0,1,1,0,0,1780.83,222.77,59.5924,6.05062,600,20,0,2,0,1,0,0,0), +(@CGUID+3533,32820,0,1,1,0,0,1782.32,220.804,59.682,2.22355,600,20,0,2,0,1,0,0,0), +(@CGUID+3534,32820,0,1,1,0,0,1821.38,222.513,60.1257,1.27628,600,20,0,2,0,1,0,0,0), +(@CGUID+3535,32820,0,1,1,0,0,1824.52,227.309,60.1057,4.05004,600,20,0,2,0,1,0,0,0), +(@CGUID+3536,32820,0,1,1,0,0,1825.34,223.486,60.3934,2.58265,600,20,0,2,0,1,0,0,0), +(@CGUID+3537,32820,0,1,1,0,0,1835.32,263.231,59.9427,5.64963,600,20,0,2,0,1,0,0,0), +(@CGUID+3538,32820,0,1,1,0,0,1827.62,265.956,59.9849,5.97439,600,20,0,2,0,1,0,0,0), +(@CGUID+3539,32820,0,1,1,0,0,1829.44,268.891,59.9694,5.55464,600,20,0,2,0,1,0,0,0), +(@CGUID+3540,32820,0,1,1,0,0,1831.32,263.327,59.7531,0.343526,600,20,0,2,0,1,0,0,0), +(@CGUID+3541,32820,0,1,1,0,0,1832.91,267.348,59.9059,5.20296,600,20,0,2,0,1,0,0,0), +(@CGUID+3542,32820,0,1,1,0,0,-9553.82,-1369.03,51.2913,4.73714,600,20,0,2,0,1,0,0,0), +(@CGUID+3543,32820,0,1,1,0,0,-10569.2,270.718,30.3921,2.22656,600,20,0,2,0,1,0,0,0), +(@CGUID+3544,32820,0,1,1,0,0,-6300.15,-3497.22,249.889,0.483008,600,20,0,2,0,1,0,0,0), +(@CGUID+3545,32820,0,1,1,0,0,992.215,-1450.24,61.5221,2.99252,600,20,0,2,0,1,0,0,0), +(@CGUID+3546,32820,0,1,1,0,0,-1208.24,-2664.68,45.3872,5.93412,600,20,0,2,0,1,0,0,0), +(@CGUID+3547,32820,0,1,1,0,0,-14298.2,55.3486,1.47578,2.54818,600,20,0,2,0,1,0,0,0), +(@CGUID+3548,32820,0,1,1,0,0,-612.235,-547.718,36.5576,4.5204,600,20,0,2,0,1,0,0,0), +(@CGUID+3549,32820,0,1,1,0,0,-3442.66,-947.768,9.99993,4.10152,600,20,0,2,0,1,0,0,0), +(@CGUID+3550,32820,0,1,1,0,0,-14298.2,55.3486,1.47578,2.54818,600,20,0,2,0,1,0,0,0), +(@CGUID+3551,32820,0,1,1,0,0,-9386.23,26.1518,60.6273,4.5204,600,20,0,2,0,1,0,0,0), +(@CGUID+3552,32820,0,1,1,0,0,-9432.88,-2136.9,66.4413,4.17939,600,20,0,2,0,1,0,0,0), +(@CGUID+3553,32820,0,1,1,0,0,183.036,-2129.67,103.204,3.66519,600,20,0,2,0,1,0,0,0), +(@CGUID+3554,32820,0,1,1,0,0,-10645.8,1061.62,33.1256,5.49779,600,20,0,2,0,1,0,0,0), +(@CGUID+3555,32820,0,1,1,0,0,-5415.36,-497.514,396.772,4.76475,600,20,0,2,0,1,0,0,0), +(@CGUID+3556,32820,0,1,1,0,0,-5243.61,-2892.8,338.307,1.93731,600,20,0,2,0,1,0,0,0), +(@CGUID+3557,32820,0,1,1,0,0,-10697.6,-1158.41,25.0413,3.90954,600,20,0,2,0,1,0,0,0), +(@CGUID+3558,32820,0,1,1,0,0,-1208.24,-2664.68,45.3872,5.93412,600,20,0,2,0,1,0,0,0), +(@CGUID+3559,32820,0,1,1,0,0,-10943.7,-3228.1,41.5281,4.5204,600,20,0,2,0,1,0,0,0), +(@CGUID+3560,32820,0,1,1,0,0,-9389.17,26.7242,60.1325,4.5204,600,20,0,2,0,1,0,0,0), +(@CGUID+3561,32820,0,1,1,0,0,1005.67,-1467.89,61.4503,3.50539,600,20,0,2,0,1,0,0,0), +(@CGUID+3562,32820,0,1,1,0,0,991.474,-1439.02,64.4612,4.86805,600,20,0,2,0,1,0,0,0), +(@CGUID+3563,32820,0,1,1,0,0,1002.38,-1469.14,62.0178,0.285257,600,20,0,2,0,1,0,0,0), +(@CGUID+3564,32820,0,1,1,0,0,991.534,-1441.7,63.8837,1.57881,600,20,0,2,0,1,0,0,0), +(@CGUID+3565,32820,0,1,1,0,0,-9547.6,83.9896,59.5094,5.09636,600,20,0,2,0,1,0,0,0), +(@CGUID+3566,32820,0,1,1,0,0,-9554.76,82.208,59.0394,1.38046,600,20,0,2,0,1,0,0,0), +(@CGUID+3567,32820,0,1,1,0,0,-9548.47,115.032,59.1045,3.35103,600,20,0,2,0,1,0,0,0), +(@CGUID+3568,32820,0,1,1,0,0,-5038.69,-793.428,495.214,2.36238,600,20,0,2,0,1,0,0,0), +(@CGUID+3569,32820,0,1,1,0,0,-9145.26,339.64,90.6757,0.052739,600,20,0,2,0,1,0,0,0), +(@CGUID+3570,32820,0,1,1,0,0,-5041.32,-790.831,495.211,0.350973,600,20,0,2,0,1,0,0,0), +(@CGUID+3571,32820,0,1,1,0,0,-9129.28,362.629,92.3738,4.11774,600,20,0,2,0,1,0,0,0), +(@CGUID+3572,32820,0,1,1,0,0,-5037.43,-789.404,495.213,3.49257,600,20,0,2,0,1,0,0,0), +(@CGUID+3573,32820,0,1,1,0,0,-9114.79,338.765,93.6277,2.9147,600,20,0,2,0,1,0,0,0), +(@CGUID+3574,32820,0,1,1,0,0,-9118.65,325.3,93.3136,1.91986,600,20,0,2,0,1,0,0,0), +(@CGUID+3575,32820,0,1,1,0,0,-9128.35,345.368,94.0594,2.68781,600,20,0,2,0,1,0,0,0), +(@CGUID+3576,32820,0,1,1,0,0,-9130.68,347.471,93.6376,5.67232,600,20,0,2,0,1,0,0,0), +(@CGUID+3577,32820,0,1,1,0,0,-9131.85,358.836,92.3964,0.976147,600,20,0,2,0,1,0,0,0), +(@CGUID+3578,32820,0,1,1,0,0,-9142.22,339.801,91.3411,3.19433,600,20,0,2,0,1,0,0,0), +(@CGUID+3579,32820,0,1,1,0,0,-9118.48,348.456,93.9492,3.78736,600,20,0,2,0,1,0,0,0), +(@CGUID+3580,32820,0,1,1,0,0,-9130.91,344.503,93.7304,0.942478,600,20,0,2,0,1,0,0,0), +(@CGUID+3581,32820,0,1,1,0,0,-9130.69,333.939,93.3105,0.837273,600,20,0,2,0,1,0,0,0), +(@CGUID+3582,32820,0,1,1,0,0,-9126.82,338.231,93.9283,3.97886,600,20,0,2,0,1,0,0,0), +(@CGUID+3583,32820,0,1,1,0,0,-9127.97,347.931,93.9306,3.87463,600,20,0,2,0,1,0,0,0), +(@CGUID+3584,32820,0,1,1,0,0,-5210.18,-512.958,389.592,0.808568,600,20,0,2,0,1,0,0,0), +(@CGUID+3585,32820,0,1,1,0,0,-5195.69,-515.611,389.714,5.10018,600,20,0,2,0,1,0,0,0), +(@CGUID+3586,32820,0,1,1,0,0,-5139.07,-579.316,397.26,4.03171,600,20,0,2,0,1,0,0,0), +(@CGUID+3587,32820,0,1,1,0,0,-5185.08,-608.256,397.26,0.506145,600,20,0,2,0,1,0,0,0), +(@CGUID+3588,32820,0,1,1,0,0,-5149.61,-634.204,397.265,1.72788,600,20,0,2,0,1,0,0,0), +(@CGUID+3589,32820,0,1,1,0,0,-5210.78,-506.068,388.505,5.52483,600,20,0,2,0,1,0,0,0), +(@CGUID+3590,32820,0,1,1,0,0,-5194.19,-519.275,390.262,1.95859,600,20,0,2,0,1,0,0,0), +(@CGUID+3591,32820,0,1,1,0,0,-5207.01,-509.638,388.825,3.95016,600,20,0,2,0,1,0,0,0), +(@CGUID+3592,32820,0,1,1,0,0,-5172.55,-586.553,397.906,0.046851,600,20,0,2,0,1,0,0,0), +(@CGUID+3593,32820,0,1,1,0,0,-5166.66,-586.277,397.821,3.18844,600,20,0,2,0,1,0,0,0), +(@CGUID+3594,32820,0,1,1,0,0,-5179.54,-596.714,397.412,4.97636,600,20,0,2,0,1,0,0,0), +(@CGUID+3595,32820,0,1,1,0,0,-5178.24,-601.539,397.367,5.77101,600,20,0,2,0,1,0,0,0), +(@CGUID+3596,32820,0,1,1,0,0,-5170.15,-578.862,397.368,4.41018,600,20,0,2,0,1,0,0,0), +(@CGUID+3597,32820,0,1,1,0,0,-5165.99,-608.422,397.667,1.14204,600,20,0,2,0,1,0,0,0), +(@CGUID+3598,32820,0,1,1,0,0,-5154.86,-585.464,397.293,6.03208,600,20,0,2,0,1,0,0,0), +(@CGUID+3599,32820,0,1,1,0,0,-5141.22,-594.877,397.547,4.15292,600,20,0,2,0,1,0,0,0), +(@CGUID+3600,32820,0,1,1,0,0,-5162.54,-600.876,398.227,4.91465,600,20,0,2,0,1,0,0,0), +(@CGUID+3601,32820,0,1,1,0,0,-5149.82,-605.071,398.556,0.7283,600,20,0,2,0,1,0,0,0), +(@CGUID+3602,32820,0,1,1,0,0,-5144.81,-600.602,398.184,3.86989,600,20,0,2,0,1,0,0,0), +(@CGUID+3603,32820,0,1,1,0,0,-5142.32,-609.345,398.355,4.1853,600,20,0,2,0,1,0,0,0), +(@CGUID+3604,32820,0,1,1,0,0,-5161.28,-607.041,398.095,3.42675,600,20,0,2,0,1,0,0,0), +(@CGUID+3605,32820,0,1,1,0,0,-5159.97,-627.401,397.341,0.481445,600,20,0,2,0,1,0,0,0), +(@CGUID+3606,32820,0,1,1,0,0,-5150.19,-581.106,397.262,4.93512,600,20,0,2,0,1,0,0,0), +(@CGUID+3607,32820,0,1,1,0,0,-5148.86,-587.004,397.285,1.79353,600,20,0,2,0,1,0,0,0), +(@CGUID+3608,32820,0,1,1,0,0,-5155.71,-625.177,397.533,3.62304,600,20,0,2,0,1,0,0,0), +(@CGUID+3609,32820,0,1,1,0,0,-5160.29,-623.134,397.509,4.788,600,20,0,2,0,1,0,0,0), +(@CGUID+3610,32820,0,1,1,0,0,-5145.6,-614.992,398.375,3.93084,600,20,0,2,0,1,0,0,0), +(@CGUID+3611,32820,0,1,1,0,0,1826.47,231.201,60.3244,1.71042,600,20,0,2,0,1,0,0,0), +(@CGUID+3612,32820,0,1,1,0,0,1834.12,242.622,59.9811,2.70282,600,20,0,2,0,1,0,0,0), +(@CGUID+3613,32820,0,1,1,0,0,1829.69,244.7,60.1498,4.44542,600,20,0,2,0,1,0,0,0), +(@CGUID+3614,32820,0,1,1,0,0,1826.81,257.185,59.8664,4.06662,600,20,0,2,0,1,0,0,0), +(@CGUID+3615,32820,0,1,1,0,0,1815.06,236.906,60.5297,0.263669,600,20,0,2,0,1,0,0,0), +(@CGUID+3616,32820,0,1,1,0,0,1824.81,233.503,60.3995,0.366519,600,20,0,2,0,1,0,0,0), +(@CGUID+3617,32820,0,1,1,0,0,1828.39,233.235,60.4152,2.80998,600,20,0,2,0,1,0,0,0), +(@CGUID+3618,32820,0,1,1,0,0,1813.03,233.163,60.6701,0.206939,600,20,0,2,0,1,0,0,0), +(@CGUID+3619,32820,0,1,1,0,0,1828.56,240.548,60.8235,1.30383,600,20,0,2,0,1,0,0,0), +(@CGUID+3620,32820,0,1,1,0,0,1816.68,233.928,60.6217,2.06775,600,20,0,2,0,1,0,0,0), +(@CGUID+3621,32820,0,1,1,0,0,1826.44,235.119,60.824,4.43314,600,20,0,2,0,1,0,0,0), +(@CGUID+3622,32820,0,1,1,0,0,-9480.22,-1159.73,50.8268,0.586483,600,20,0,2,0,1,0,0,0), +(@CGUID+3623,32820,0,1,1,0,0,-9871.14,237.252,19.4741,4.31734,600,20,0,2,0,1,0,0,0), +(@CGUID+3624,32820,0,1,1,0,0,-9879.33,217.356,14.1337,5.82548,600,20,0,2,0,1,0,0,0), +(@CGUID+3625,32820,0,1,1,0,0,-9879.43,190.812,16.6024,1.79753,600,20,0,2,0,1,0,0,0), +(@CGUID+3626,32820,0,1,1,0,0,-9884.25,260.653,34.8986,2.57944,600,20,0,2,0,1,0,0,0), +(@CGUID+3627,32820,0,1,1,0,0,-9885.02,196.351,15.2175,2.27603,600,20,0,2,0,1,0,0,0), +(@CGUID+3628,32820,0,1,1,0,0,-9852.19,179.62,20.9187,3.22526,600,20,0,2,0,1,0,0,0), +(@CGUID+3629,32820,0,1,1,0,0,-9822.68,180.421,22.9706,3.13012,600,20,0,2,0,1,0,0,0), +(@CGUID+3630,32820,0,1,1,0,0,-9865.25,170.29,19.6687,5.36632,600,20,0,2,0,1,0,0,0), +(@CGUID+3631,32820,0,1,1,0,0,-9816.59,120.354,45.9586,3.66559,600,20,0,2,0,1,0,0,0), +(@CGUID+3632,32820,0,1,1,0,0,-9819.45,129.544,4.7231,5.83605,600,20,0,2,0,1,0,0,0), +(@CGUID+3633,32820,0,1,1,0,0,-9827.35,124.626,4.25697,6.19969,600,20,0,2,0,1,0,0,0), +(@CGUID+3634,32820,0,1,1,0,0,-9907.61,178.849,31.9818,5.60655,600,20,0,2,0,1,0,0,0), +(@CGUID+3635,32820,0,1,1,0,0,-9888.21,153.554,32.0522,5.88405,600,20,0,2,0,1,0,0,0), +(@CGUID+3636,32820,0,1,1,0,0,-9799.58,167.104,24.0743,2.08218,600,20,0,2,0,1,0,0,0), +(@CGUID+3637,32820,0,1,1,0,0,-9840.62,161.11,4.89257,0.281934,600,20,0,2,0,1,0,0,0), +(@CGUID+3638,32820,0,1,1,0,0,-9849.7,135.178,6.03231,6.08721,600,20,0,2,0,1,0,0,0), +(@CGUID+3639,32820,0,1,1,0,0,-9857.44,157.624,6.20103,0.988133,600,20,0,2,0,1,0,0,0), +(@CGUID+3640,32820,0,1,1,0,0,-9751.76,122.076,16.1832,6.27415,600,20,0,2,0,1,0,0,0), +(@CGUID+3641,32820,0,1,1,0,0,-9750.53,109.906,25.705,3.41538,600,20,0,2,0,1,0,0,0), +(@CGUID+3642,32820,0,1,1,0,0,-9800.68,103.668,24.789,5.76924,600,20,0,2,0,1,0,0,0), +(@CGUID+3643,32820,0,1,1,0,0,-9797.96,109.575,24.4197,3.88405,600,20,0,2,0,1,0,0,0), +(@CGUID+3644,32820,0,1,1,0,0,-9783.55,84.901,42.6198,3.27819,600,20,0,2,0,1,0,0,0), +(@CGUID+3645,32820,0,1,1,0,0,-9752.98,120.348,15.9225,1.30766,600,20,0,2,0,1,0,0,0), +(@CGUID+3646,32820,0,1,1,0,0,-9734.4,138.944,49.0226,0.433051,600,20,0,2,0,1,0,0,0), +(@CGUID+3647,32820,0,1,1,0,0,-9954.52,222.797,26.328,4.94774,600,20,0,2,0,1,0,0,0), +(@CGUID+3648,32820,0,1,1,0,0,-9354.72,167.942,61.665,0.27367,600,20,0,2,0,1,0,0,0), +(@CGUID+3649,32820,0,1,1,0,0,1773.81,769.425,55.5537,3.61274,600,20,0,2,0,1,0,0,0), +(@CGUID+3650,32820,0,1,1,0,0,1719.01,1446.6,124.313,2.87145,600,20,0,2,0,1,0,0,0), +(@CGUID+3651,32820,0,1,1,0,0,-11023.7,1429.76,43.6226,3.60857,600,20,0,2,0,1,0,0,0), +(@CGUID+3652,32820,0,1,1,0,0,-10314.4,1417.72,40.3659,1.51624,600,20,0,2,0,1,0,0,0), +(@CGUID+3653,32820,0,1,1,0,0,-9854.85,1275.5,40.9487,3.8068,600,20,0,2,0,1,0,0,0), +(@CGUID+3654,32820,0,1,1,0,0,1887.28,1494.68,87.9338,4.62341,600,20,0,2,0,1,0,0,0), +(@CGUID+3655,32820,0,1,1,0,0,-9456.54,-1160.68,52.9803,4.11778,600,20,0,2,0,1,0,0,0), +(@CGUID+3656,32820,0,1,1,0,0,-9342.2,187.984,61.5586,5.25467,600,20,0,2,0,1,0,0,0), +(@CGUID+3657,32820,0,1,1,0,0,-10731.8,1678.61,45.4163,3.35598,600,20,0,2,0,1,0,0,0), +(@CGUID+3658,32820,0,1,1,0,0,-10145.4,1059.4,36.4085,3.94727,600,20,0,2,0,1,0,0,0), +(@CGUID+3659,32820,0,1,1,0,0,2027.17,187.734,35.9719,3.51091,600,20,0,2,0,1,0,0,0), +(@CGUID+3660,32820,0,1,1,0,0,-9321.16,270.756,68.0387,6.23488,600,20,0,2,0,1,0,0,0), +(@CGUID+3661,32820,0,1,1,0,0,-9877.59,1295.1,42.1903,3.43758,600,20,0,2,0,1,0,0,0), +(@CGUID+3662,32820,0,1,1,0,0,-9861.1,1290.83,41.8237,1.62479,600,20,0,2,0,1,0,0,0), +(@CGUID+3663,32820,0,1,1,0,0,-9164.88,-6.60355,79.3901,4.80705,600,20,0,2,0,1,0,0,0), +(@CGUID+3664,32820,0,1,1,0,0,-9162.92,-2.91795,79.6812,0.60909,600,20,0,2,0,1,0,0,0), +(@CGUID+3665,32820,0,1,1,0,0,-9167.2,19.38,78.803,1.52015,600,20,0,2,0,1,0,0,0), +(@CGUID+3666,32820,0,1,1,0,0,-9162.07,13.6444,78.6699,5.53354,600,20,0,2,0,1,0,0,0), +(@CGUID+3667,32820,0,1,1,0,0,-9180.29,-8.10362,78.8,3.87635,600,20,0,2,0,1,0,0,0), +(@CGUID+3668,32820,0,1,1,0,0,-9189.71,0.452663,77.6916,3.02419,600,20,0,2,0,1,0,0,0), +(@CGUID+3669,32820,0,1,1,0,0,-9344.05,175.877,61.5584,3.59669,600,20,0,2,0,1,0,0,0), +(@CGUID+3670,32820,0,1,1,0,0,-9318.67,173.348,61.613,2.83957,600,20,0,2,0,1,0,0,0), +(@CGUID+3671,32820,0,1,1,0,0,-9329.31,166.352,61.5815,1.76357,600,20,0,2,0,1,0,0,0), +(@CGUID+3672,32820,0,1,1,0,0,2310.73,296.853,37.3108,4.44553,600,20,0,2,0,1,0,0,0), +(@CGUID+3673,32820,0,1,1,0,0,-5607.53,-511.287,402.237,1.0253,600,20,0,2,0,1,0,0,0), +(@CGUID+3674,32820,0,1,1,0,0,-9474.49,87.242,56.7402,2.98374,600,20,0,2,0,1,0,0,0), +(@CGUID+3675,32820,0,1,1,0,0,-9322.06,168.47,61.6066,2.40367,600,20,0,2,0,1,0,0,0), +(@CGUID+3676,32820,0,1,1,0,0,-5604.8,-527.253,399.659,2.43902,600,20,0,2,0,1,0,0,0), +(@CGUID+3677,32820,0,1,1,0,0,-9460.17,26.0472,56.3399,5.44596,600,20,0,2,0,1,0,0,0), +(@CGUID+3678,32820,0,1,1,0,0,-9349.19,176.153,61.726,5.18634,600,20,0,2,0,1,0,0,0), +(@CGUID+3679,32820,0,1,1,0,0,-9350.81,171.018,61.7532,1.0198,600,20,0,2,0,1,0,0,0), +(@CGUID+3680,32820,0,1,1,0,0,-9337.56,188.283,61.5117,3.72314,600,20,0,2,0,1,0,0,0), +(@CGUID+3681,32820,0,1,1,0,0,2255.62,271.928,34.4734,2.52523,600,20,0,2,0,1,0,0,0), +(@CGUID+3682,32820,0,1,1,0,0,2261.95,280.004,34.6234,2.42705,600,20,0,2,0,1,0,0,0), +(@CGUID+3683,32820,0,1,1,0,0,2057.72,357.983,82.4699,5.64937,600,20,0,2,0,1,0,0,0), +(@CGUID+3684,32820,0,1,1,0,0,-7916.41,-1354.48,134.08,3.19768,600,20,0,2,0,1,0,0,0), +(@CGUID+3685,32820,0,1,1,0,0,-7986.89,-2355.5,124.949,4.57919,600,20,0,2,0,1,0,0,0), +(@CGUID+3686,32820,0,1,1,0,0,-9449.18,-2123.47,69.2066,6.03994,600,20,0,2,0,1,0,0,0), +(@CGUID+3687,32820,0,1,1,0,0,-3433.67,-959.299,9.56594,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3688,32820,0,1,1,0,0,-14277.8,54.594,0.903981,2.87979,600,20,0,2,0,1,0,0,0), +(@CGUID+3689,32820,0,1,1,0,0,-14289.6,46.9671,0.852089,6.02139,600,20,0,2,0,1,0,0,0), +(@CGUID+3690,32820,0,1,1,0,0,-14285.2,45.2736,0.5652,1.76951,600,20,0,2,0,1,0,0,0), +(@CGUID+3691,32820,0,1,1,0,0,-14282.4,55.3707,0.467201,6.21337,600,20,0,2,0,1,0,0,0), +(@CGUID+3692,32820,0,1,1,0,0,-1197.29,-2680.87,46.3772,6.12611,600,20,0,2,0,1,0,0,0), +(@CGUID+3693,32820,0,1,1,0,0,-1202.46,-2657.93,45.8036,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3694,32820,0,1,1,0,0,-10968,-3234.34,41.4491,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3695,32820,0,1,1,0,0,-9375.14,26.3486,61.714,4.83456,600,20,0,2,0,1,0,0,0), +(@CGUID+3696,32820,0,1,1,0,0,-9383.17,11.5458,61.1362,1.44862,600,20,0,2,0,1,0,0,0), +(@CGUID+3697,32820,0,1,1,0,0,-9373.36,22.8965,62.0908,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3698,32820,0,1,1,0,0,-5428.45,-486.615,396.646,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3699,32820,0,1,1,0,0,-5250.07,-2891.32,339.267,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3700,32820,0,1,1,0,0,-6686.65,-2194.68,248.353,0.145253,600,20,0,2,0,1,0,0,0), +(@CGUID+3701,32820,0,1,1,0,0,-6685.3,-2199.44,248.978,3.21141,600,20,0,2,0,1,0,0,0), +(@CGUID+3702,32820,0,1,1,0,0,-474.941,-4528.3,12.8381,4.66003,600,20,0,2,0,1,0,0,0), +(@CGUID+3703,32820,0,1,1,0,0,-463.082,-4537.73,9.4355,2.15069,600,20,0,2,0,1,0,0,0), +(@CGUID+3704,32820,0,1,1,0,0,-468.089,-4537.65,10.3289,1.34167,600,20,0,2,0,1,0,0,0), +(@CGUID+3705,32820,0,1,1,0,0,1792.44,219.541,60.0122,1.5708,600,20,0,2,0,1,0,0,0), +(@CGUID+3706,32820,0,1,1,0,0,1793.16,224.844,59.7142,4.46804,600,20,0,2,0,1,0,0,0), +(@CGUID+3707,32820,0,1,1,0,0,1816.48,217.623,59.9269,2.04204,600,20,0,2,0,1,0,0,0), +(@CGUID+3708,32820,0,1,1,0,0,-10351.3,-3292.1,23.2491,4.5204,600,20,0,2,0,1,0,0,0), +(@CGUID+3709,32820,0,1,1,0,0,-9437.42,-2137.57,66.7224,1.98536,600,20,0,2,0,1,0,0,0), +(@CGUID+3710,32820,0,1,1,0,0,-9434.02,-2135.57,66.2969,3.75246,600,20,0,2,0,1,0,0,0), +(@CGUID+3711,32820,0,1,1,0,0,178.85,-2118.32,104.996,0.85135,600,20,0,2,0,1,0,0,0), +(@CGUID+3712,32820,0,1,1,0,0,-3427.64,-949.945,9.66967,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3713,32820,0,1,1,0,0,-1201.28,-2660.02,45.4031,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3714,32820,0,1,1,0,0,-10936.2,-3219.52,41.4308,1.44862,600,20,0,2,0,1,0,0,0), +(@CGUID+3715,32820,0,1,1,0,0,-10968.9,-3230.71,41.5834,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3716,32820,0,1,1,0,0,-10935.7,-3215.98,41.4308,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3717,32820,0,1,1,0,0,-5430.02,-489.223,396.787,1.44862,600,20,0,2,0,1,0,0,0), +(@CGUID+3718,32820,0,1,1,0,0,-5243.4,-2868.25,336.974,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3719,32820,0,1,1,0,0,-6688.79,-2191.26,247.728,5.94547,600,20,0,2,0,1,0,0,0), +(@CGUID+3720,32820,0,1,1,0,0,-475.423,-4532.37,12.327,0.034308,600,20,0,2,0,1,0,0,0), +(@CGUID+3721,32820,0,1,1,0,0,1814.13,220.927,59.5969,5.21853,600,20,0,2,0,1,0,0,0), +(@CGUID+3722,32820,0,1,1,0,0,-9449.25,-2120.39,69.2066,4.57276,600,20,0,2,0,1,0,0,0), +(@CGUID+3723,32820,0,1,1,0,0,-9382.33,14.4817,61.6174,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3724,32820,0,1,1,0,0,-5431.74,-502.427,397.758,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3725,32820,0,1,1,0,0,-5433.93,-500.603,397.292,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3726,32820,0,1,1,0,0,-5242.92,-2871.7,338.068,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3727,32820,0,1,1,0,0,-5250.77,-2895.2,338.614,1.44862,600,20,0,2,0,1,0,0,0), +(@CGUID+3728,32820,0,1,1,0,0,-1195.37,-2682.08,47.0076,2.53073,600,20,0,2,0,1,0,0,0), +(@CGUID+3729,32820,0,1,1,0,0,186.365,-2115.52,105.464,3.12523,600,20,0,2,0,1,0,0,0), +(@CGUID+3730,32820,0,1,1,0,0,187.437,-2112.56,106.084,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3731,32820,0,1,1,0,0,177.178,-2115.24,105.307,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3732,32820,0,1,1,0,0,-1143.94,-3549.91,52.3624,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3733,32820,0,1,1,0,0,-1142.06,-3553.01,52.2374,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3734,32820,0,1,1,0,0,-1115.13,-3547.66,50.1345,2.53073,600,20,0,2,0,1,0,0,0), +(@CGUID+3735,32820,0,1,1,0,0,-1117.82,-3543.86,50.2867,5.34071,600,20,0,2,0,1,0,0,0), +(@CGUID+3736,32820,0,1,1,0,0,-10684.3,-1148.58,25.833,5.39903,600,20,0,2,0,1,0,0,0), +(@CGUID+3737,32820,0,1,1,0,0,-10682.6,-1168.07,24.7525,1.44862,600,20,0,2,0,1,0,0,0), +(@CGUID+3738,32820,0,1,1,0,0,-10681.5,-1164.25,25.208,1.03306,600,20,0,2,0,1,0,0,0), +(@CGUID+3739,32820,0,1,1,0,0,-10680.3,-1147.93,25.833,5.02826,600,20,0,2,0,1,0,0,0), +(@CGUID+3740,32820,0,1,1,0,0,-10352,-3296.74,23.6612,5.58471,600,20,0,2,0,1,0,0,0), +(@CGUID+3741,32820,0,1,1,0,0,-10350.1,-3307.59,23.2149,0.191986,600,20,0,2,0,1,0,0,0), +(@CGUID+3742,32820,0,1,1,0,0,-10344.4,-3306.41,23.1961,2.02267,600,20,0,2,0,1,0,0,0), +(@CGUID+3743,32820,0,1,1,0,0,-14371.5,132.86,1.04293,1.78024,600,20,0,2,0,1,0,0,0), +(@CGUID+3744,32820,0,1,1,0,0,-14388.8,125.666,1.1453,5.5676,600,20,0,2,0,1,0,0,0), +(@CGUID+3745,32820,0,1,1,0,0,-14385.1,122.559,1.3256,0.642415,600,20,0,2,0,1,0,0,0), +(@CGUID+3746,32820,0,1,1,0,0,-14374.6,137.59,0.44237,4.40481,600,20,0,2,0,1,0,0,0), +(@CGUID+3747,32820,0,1,1,0,0,-122.378,-813.281,55.6416,3.01942,600,20,0,2,0,1,0,0,0), +(@CGUID+3748,32820,0,1,1,0,0,-125.86,-811.308,55.3297,5.88176,600,20,0,2,0,1,0,0,0), +(@CGUID+3749,32820,0,1,1,0,0,-129.014,-823.608,55.2595,0.593412,600,20,0,2,0,1,0,0,0), +(@CGUID+3750,32820,0,1,1,0,0,-125.36,-821.476,55.4535,3.56047,600,20,0,2,0,1,0,0,0), +(@CGUID+3751,32820,0,1,1,0,0,-4708.43,-1236.96,501.743,1.11701,600,20,0,2,0,1,0,0,0), +(@CGUID+3752,32820,0,1,1,0,0,-4692.72,-1218.07,501.743,0.750492,600,20,0,2,0,1,0,0,0), +(@CGUID+3753,32820,0,1,1,0,0,-4706.34,-1233.23,501.743,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3754,32820,0,1,1,0,0,-4688.58,-1213.5,501.743,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3755,32820,0,1,1,0,0,-10647,1072.17,34.0896,1.51844,600,20,0,2,0,1,0,0,0), +(@CGUID+3756,32820,0,1,1,0,0,-10640.6,1080.97,34.8855,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3757,32820,0,1,1,0,0,-10646.3,1075.05,34.6687,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3758,32820,0,1,1,0,0,-10642.2,1083.53,35.0052,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3759,32820,0,1,1,0,0,-614.224,-535.796,36.2243,2.21657,600,20,0,2,0,1,0,0,0), +(@CGUID+3760,32820,0,1,1,0,0,-615.6,-532.523,35.7472,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3761,32820,0,1,1,0,0,-8840.87,851.164,98.8638,1.91986,600,20,0,2,0,1,0,0,0), +(@CGUID+3762,32820,0,1,1,0,0,-8842.71,856.191,98.5909,4.99164,600,20,0,2,0,1,0,0,0), +(@CGUID+3763,32820,0,1,1,0,0,593.821,1350.02,90.3997,0.490553,600,20,0,2,0,1,0,0,0), +(@CGUID+3764,32820,0,1,1,0,0,595.365,1345.8,90.1562,1.8675,600,20,0,2,0,1,0,0,0), +(@CGUID+3765,32820,0,1,1,0,0,602.084,1351.74,88.1745,3.05093,600,20,0,2,0,1,0,0,0), +(@CGUID+3766,32820,0,1,1,0,0,600.03,1355.18,88.8279,4.07527,600,20,0,2,0,1,0,0,0), +(@CGUID+3767,32820,0,1,1,0,0,-7603.89,-2066,129.675,6.24828,600,20,0,2,0,1,0,0,0), +(@CGUID+3768,32820,0,1,1,0,0,-7595.41,-2060.63,131.677,2.99611,600,20,0,2,0,1,0,0,0), +(@CGUID+3769,32820,0,1,1,0,0,-7592.49,-2065.33,131.078,2.35619,600,20,0,2,0,1,0,0,0), +(@CGUID+3770,32820,0,1,1,0,0,-7599.02,-2067,129.618,2.84489,600,20,0,2,0,1,0,0,0), +(@CGUID+3771,32820,0,1,1,0,0,-623.304,-530.146,34.2168,4.2586,600,20,0,2,0,1,0,0,0), +(@CGUID+3772,32820,0,1,1,0,0,-623.67,-533.012,34.4668,1.44862,600,20,0,2,0,1,0,0,0), +(@CGUID+3773,32820,0,1,1,0,0,-3434.67,-956.682,9.65595,5.23599,600,20,0,2,0,1,0,0,0), +(@CGUID+3774,32820,0,1,1,0,0,-3428.97,-953.84,10.2242,1.44862,600,20,0,2,0,1,0,0,0), +(@CGUID+3775,32820,0,1,1,0,0,-11252.4,1881.89,35.4734,3.69371,600,20,0,2,0,1,0,0,0), +(@CGUID+3776,32820,0,1,1,0,0,-8932.72,-163.066,80.9754,5.81801,600,20,0,2,0,1,0,0,0), +(@CGUID+3777,32820,0,1,1,0,0,-9238.75,-2055.19,77.099,4.86356,600,20,0,2,0,1,0,0,0), +(@CGUID+3778,32820,0,1,1,0,0,-9429.92,56.1355,56.7913,2.98451,600,20,0,2,0,1,0,0,0), +(@CGUID+3779,32820,0,1,1,0,0,-9431.01,58.3279,56.7729,5.48033,600,20,0,2,0,1,0,0,0), +(@CGUID+3780,32820,0,1,1,0,0,-9428.72,54.0571,56.819,1.91986,600,20,0,2,0,1,0,0,0), +(@CGUID+3781,32820,0,1,1,0,0,-9431.32,55.0524,56.6871,3.38594,600,20,0,2,0,1,0,0,0), +(@CGUID+3782,32820,0,1,1,0,0,-9431.98,56.7107,56.6996,6.16101,600,20,0,2,0,1,0,0,0), +(@CGUID+3783,32820,0,1,1,0,0,2052.22,294.354,56.9512,3.27529,600,20,0,2,0,1,0,0,0), +(@CGUID+3784,32820,0,1,1,0,0,1945.08,252.741,44.3246,3.58978,600,20,0,2,0,1,0,0,0), +(@CGUID+3785,32820,0,1,1,0,0,1832.47,210.797,60.312,2.04222,600,20,0,2,0,1,0,0,0), +(@CGUID+3786,32820,0,1,1,0,0,-5151.65,-852.495,508.667,4.58185,600,20,0,2,0,1,0,0,0), +(@CGUID+3787,32820,0,1,1,0,0,1828.96,210.695,60.2619,1.24504,600,20,0,2,0,1,0,0,0), +(@CGUID+3788,32820,0,1,1,0,0,-9400.13,111.152,60.0272,5.17295,600,20,0,2,0,1,0,0,0), +(@CGUID+3789,32820,0,1,1,0,0,-5155.07,-854.489,508.115,5.0845,600,20,0,2,0,1,0,0,0), +(@CGUID+3790,32820,0,1,1,0,0,-9143.81,412.898,93.7079,5.32893,600,20,0,2,0,1,0,0,0), +(@CGUID+3791,32820,0,1,1,0,0,-9109.08,365.884,93.9828,2.40332,600,20,0,2,0,1,0,0,0), +(@CGUID+3792,32820,0,1,1,0,0,-9116.37,334.754,93.3562,1.99884,600,20,0,2,0,1,0,0,0), +(@CGUID+3793,32820,0,1,1,0,0,-9177.49,414.626,90.1926,5.65879,600,20,0,2,0,1,0,0,0), +(@CGUID+3794,32820,0,1,1,0,0,-9170.68,377.801,88.388,5.18362,600,20,0,2,0,1,0,0,0), +(@CGUID+3795,32820,0,1,1,0,0,-9140.75,332.216,91.2239,2.34441,600,20,0,2,0,1,0,0,0), +(@CGUID+3796,32820,0,1,1,0,0,-9227.25,318.984,73.9797,5.50171,600,20,0,2,0,1,0,0,0), +(@CGUID+3797,32820,0,1,1,0,0,-9155.61,261.754,80.1009,2.98844,600,20,0,2,0,1,0,0,0), +(@CGUID+3798,32820,0,1,1,0,0,-9468.33,24.9295,56.5369,6.0912,600,20,0,2,0,1,0,0,0), +(@CGUID+3799,32820,0,1,1,0,0,-9465.93,24.9355,56.6126,3.12414,600,20,0,2,0,1,0,0,0), +(@CGUID+3800,32820,0,1,1,0,0,-8866.35,676.362,97.9864,0.034907,600,20,0,2,0,1,0,0,0), +(@CGUID+3801,32820,0,1,1,0,0,-8864.07,675.996,97.9864,2.87979,600,20,0,2,0,1,0,0,0), +(@CGUID+3802,32820,0,1,1,0,0,-10647.7,1174.96,34.4276,1.09956,600,20,0,2,0,1,0,0,0), +(@CGUID+3803,32820,0,1,1,0,0,-10645.7,1177.46,34.5556,4.13643,600,20,0,2,0,1,0,0,0), +(@CGUID+3804,32820,0,1,1,0,0,-10523.2,-1164.94,27.5597,1.5708,600,20,0,2,0,1,0,0,0), +(@CGUID+3805,32820,0,1,1,0,0,-10523.5,-1162.52,27.5597,4.66003,600,20,0,2,0,1,0,0,0), +(@CGUID+3806,32820,0,1,1,0,0,-9223.84,-2153.94,64.0168,3.01942,600,20,0,2,0,1,0,0,0), +(@CGUID+3807,32820,0,1,1,0,0,-9225.23,-2153.85,64.0168,6.23082,600,20,0,2,0,1,0,0,0), +(@CGUID+3808,32820,0,1,1,0,0,-5581.24,-525.341,400.846,1.51844,600,20,0,2,0,1,0,0,0), +(@CGUID+3809,32820,0,1,1,0,0,-5581.07,-523.102,400.846,4.62512,600,20,0,2,0,1,0,0,0), +(@CGUID+3810,32820,0,1,1,0,0,-4853.14,-870.297,501.997,4.81711,600,20,0,2,0,1,0,0,0), +(@CGUID+3811,32820,0,1,1,0,0,-4852.92,-872.19,501.997,1.69297,600,20,0,2,0,1,0,0,0), +(@CGUID+3812,32820,0,1,1,0,0,-14461.9,491.803,15.2063,0.837758,600,20,0,2,0,1,0,0,0), +(@CGUID+3813,32820,0,1,1,0,0,-14460.8,492.998,15.208,3.92699,600,20,0,2,0,1,0,0,0), +(@CGUID+3814,32820,0,1,1,0,0,1635.82,233.67,-43.0193,1.11701,600,20,0,2,0,1,0,0,0), +(@CGUID+3815,32820,0,1,1,0,0,1637.09,236.273,-43.0193,4.34587,600,20,0,2,0,1,0,0,0), +(@CGUID+3816,32820,0,1,1,0,0,-11.5524,-932.199,57.2556,5.84685,600,20,0,2,0,1,0,0,0), +(@CGUID+3817,32820,0,1,1,0,0,-9.5064,-933.083,57.2556,2.74017,600,20,0,2,0,1,0,0,0), +(@CGUID+3818,32820,0,1,1,0,0,2249.08,240.226,34.3437,6.14356,600,20,0,2,0,1,0,0,0), +(@CGUID+3819,32820,0,1,1,0,0,2251.53,240.007,34.3437,3.05433,600,20,0,2,0,1,0,0,0), +(@CGUID+3820,32820,0,1,1,0,0,-6665.69,-2167.53,245.456,5.67232,600,20,0,2,0,1,0,0,0), +(@CGUID+3821,32820,0,1,1,0,0,-6663,-2169.4,245.456,2.49582,600,20,0,2,0,1,0,0,0), +(@CGUID+3822,32820,0,1,1,0,0,-858.777,-558.361,11.7749,4.66003,600,20,0,2,0,1,0,0,0), +(@CGUID+3823,32820,0,1,1,0,0,-858.831,-559.944,11.7749,1.50098,600,20,0,2,0,1,0,0,0), +(@CGUID+3824,32820,0,1,1,0,0,-9566.38,31.1655,61.4444,1.58992,600,20,0,2,0,1,0,0,0), +(@CGUID+3825,32820,0,1,1,0,0,-9541.73,87.4378,59.3029,6.23082,600,20,0,2,0,1,0,0,0), +(@CGUID+3826,32820,0,1,1,0,0,-9540.56,115.219,59.1773,4.62012,600,20,0,2,0,1,0,0,0), +(@CGUID+3827,32820,0,1,1,0,0,-9525.15,89.6348,58.9238,4.11548,600,20,0,2,0,1,0,0,0), +(@CGUID+3828,32820,0,1,1,0,0,-11265.3,1875.47,36.7309,5.89441,600,20,0,2,0,1,0,0,0), +(@CGUID+3829,32820,0,1,1,0,0,-11259.8,1888.13,35.7742,4.43043,600,20,0,2,0,1,0,0,0), +(@CGUID+3830,32820,0,1,1,0,0,-11251.2,1870.46,35.5459,2.39153,600,20,0,2,0,1,0,0,0), +(@CGUID+3831,32820,0,1,1,0,0,-7442.29,-2257.15,347.476,5.51524,600,20,0,2,0,1,0,0,0), +(@CGUID+3832,32820,0,1,1,0,0,-9330.46,180.936,61.6792,4.1716,600,20,0,2,0,1,0,0,0), +(@CGUID+3833,32820,0,1,1,0,0,-9075.59,426.68,93.0562,3.78874,600,20,0,2,0,1,0,0,0), +(@CGUID+3834,32820,0,1,1,0,0,-9180.08,300.471,78.2777,1.48024,600,20,0,2,0,1,0,0,0), +(@CGUID+3835,32820,0,1,1,0,0,-9082.31,410.951,92.2809,3.21226,600,20,0,2,0,1,0,0,0), +(@CGUID+3836,32820,0,1,1,0,0,-9045.34,-46.7572,88.3206,4.60601,600,20,0,2,0,1,0,0,0), +(@CGUID+3837,32820,0,1,1,0,0,-9044.58,-43.6128,88.3693,1.24136,600,20,0,2,0,1,0,0,0), +(@CGUID+3838,32820,0,1,1,0,0,-9068.83,-382.097,73.4742,1.12514,600,20,0,2,0,1,0,0,0), +(@CGUID+3839,32820,0,1,1,0,0,-9067.18,-379.59,73.4847,4.20468,600,20,0,2,0,1,0,0,0), +(@CGUID+3840,32820,0,1,1,0,0,-9083.1,-370.122,73.4512,2.04719,600,20,0,2,0,1,0,0,0), +(@CGUID+3841,32820,0,1,1,0,0,-9093.95,-363.895,73.4845,1.58774,600,20,0,2,0,1,0,0,0), +(@CGUID+3842,32820,0,1,1,0,0,-9093.79,-350.975,73.4519,0.331884,600,20,0,2,0,1,0,0,0), +(@CGUID+3843,32820,0,1,1,0,0,-9114.81,-341.066,73.2501,1.02225,600,20,0,2,0,1,0,0,0), +(@CGUID+3844,32820,0,1,1,0,0,-9111.6,-339.933,73.3671,2.90956,600,20,0,2,0,1,0,0,0), +(@CGUID+3845,32820,0,1,1,0,0,-9085.03,-310.686,73.4186,1.76288,600,20,0,2,0,1,0,0,0), +(@CGUID+3846,32820,0,1,1,0,0,-9085.39,-308.122,73.3757,4.73482,600,20,0,2,0,1,0,0,0), +(@CGUID+3847,32820,0,1,1,0,0,-9067.4,-299.552,73.4566,5.35529,600,20,0,2,0,1,0,0,0), +(@CGUID+3848,32820,0,1,1,0,0,-9027.26,-326.174,73.7017,1.51626,600,20,0,2,0,1,0,0,0), +(@CGUID+3849,32820,0,1,1,0,0,-9031.94,-346.149,74.21,4.03346,600,20,0,2,0,1,0,0,0), +(@CGUID+3850,32820,0,1,1,0,0,-9033.21,-347.614,74.1532,0.925643,600,20,0,2,0,1,0,0,0), +(@CGUID+3851,32820,0,1,1,0,0,-9053.11,-362.477,73.5042,1.69219,600,20,0,2,0,1,0,0,0), +(@CGUID+3852,32820,0,1,1,0,0,-9056.23,-339.958,73.4526,1.3529,600,20,0,2,0,1,0,0,0), +(@CGUID+3853,32820,0,1,1,0,0,-8852.69,-373.834,70.594,2.33229,600,20,0,2,0,1,0,0,0), +(@CGUID+3854,32820,0,1,1,0,0,-9002.91,-297.798,71.1119,1.96551,600,20,0,2,0,1,0,0,0), +(@CGUID+3855,32820,0,1,1,0,0,-9099.05,-316.07,73.2522,4.72462,600,20,0,2,0,1,0,0,0), +(@CGUID+3856,32820,0,1,1,0,0,-9100.01,-318.048,73.2989,0.825899,600,20,0,2,0,1,0,0,0), +(@CGUID+3857,32820,0,1,1,0,0,-9098.24,-317.918,73.3343,2.3535,600,20,0,2,0,1,0,0,0), +(@CGUID+3858,32820,0,1,1,0,0,-8686.07,-108.569,89.1135,2.78625,600,20,0,2,0,1,0,0,0), +(@CGUID+3859,32820,0,1,1,0,0,-8666.96,-117.197,92.3837,3.99341,600,20,0,2,0,1,0,0,0), +(@CGUID+3860,32820,0,1,1,0,0,-8670.19,-121.659,92.0285,2.88129,600,20,0,2,0,1,0,0,0), +(@CGUID+3861,32820,0,1,1,0,0,-8669.95,-127.286,92.3917,2.34329,600,20,0,2,0,1,0,0,0), +(@CGUID+3862,32820,0,1,1,0,0,-9040.38,-303.146,74.3207,2.427,600,20,0,2,0,1,0,0,0), +(@CGUID+3863,32820,0,1,1,0,0,-9016.16,-310.595,73.9234,0.27187,600,20,0,2,0,1,0,0,0), +(@CGUID+3864,32820,0,1,1,0,0,-9064,-283.949,73.6745,3.43703,600,20,0,2,0,1,0,0,0), +(@CGUID+3865,32820,0,1,1,0,0,-9065.73,-284.406,73.7253,0.336275,600,20,0,2,0,1,0,0,0), +(@CGUID+3866,32820,0,1,1,0,0,-8950.56,-429.528,65.1177,2.42386,600,20,0,2,0,1,0,0,0), +(@CGUID+3867,32820,0,1,1,0,0,-8958.33,-432.896,64.651,1.27326,600,20,0,2,0,1,0,0,0), +(@CGUID+3868,32820,0,1,1,0,0,-9142.99,-340.123,72.6333,0.0818056,600,20,0,2,0,1,0,0,0), +(@CGUID+3869,32820,0,1,1,0,0,-9113.54,-339.171,73.3014,4.93007,600,20,0,2,0,1,0,0,0), +(@CGUID+3870,32820,0,1,1,0,0,-8768.27,-178.215,83.3675,2.51811,600,20,0,2,0,1,0,0,0), +(@CGUID+3871,32820,0,1,1,0,0,-8775.73,-181.91,82.5802,3.23282,600,20,0,2,0,1,0,0,0), +(@CGUID+3872,32820,0,1,1,0,0,-8770.16,-164.681,82.478,0.248304,600,20,0,2,0,1,0,0,0), +(@CGUID+3873,32820,0,1,1,0,0,-8756.49,-174.042,84.9656,3.31921,600,20,0,2,0,1,0,0,0), +(@CGUID+3874,32820,0,1,1,0,0,-8781.03,-131.108,82.3968,0.897357,600,20,0,2,0,1,0,0,0), +(@CGUID+3875,32820,0,1,1,0,0,-8785.22,-107.864,83.2028,0.123741,600,20,0,2,0,1,0,0,0), +(@CGUID+3876,32820,0,1,1,0,0,-8776.25,-110.324,83.546,3.32031,600,20,0,2,0,1,0,0,0), +(@CGUID+3877,32820,0,1,1,0,0,-8617.63,-139.172,87.0543,4.94263,600,20,0,2,0,1,0,0,0), +(@CGUID+3878,32820,0,1,1,0,0,-8597.56,-168.066,86.7534,3.37969,600,20,0,2,0,1,0,0,0), +(@CGUID+3879,32820,0,1,1,0,0,-8613.21,-165.797,85.7466,2.33118,600,20,0,2,0,1,0,0,0), +(@CGUID+3880,32820,0,1,1,0,0,-8633.86,-149.127,86.0851,2.02487,600,20,0,2,0,1,0,0,0), +(@CGUID+3881,32820,0,1,1,0,0,-8631.62,-143.587,86.3522,3.1205,600,20,0,2,0,1,0,0,0), +(@CGUID+3882,32820,0,1,1,0,0,-8647.69,-133.363,87.7432,2.11912,600,20,0,2,0,1,0,0,0), +(@CGUID+3883,32820,0,1,1,0,0,-8656.88,-124.537,90.8129,3.17155,600,20,0,2,0,1,0,0,0), +(@CGUID+3884,32820,0,1,1,0,0,-8557.35,-209.402,84.2385,3.1912,600,20,0,2,0,1,0,0,0), +(@CGUID+3885,32820,0,1,1,0,0,-5387.28,37.1367,395.534,6.2025,600,20,0,2,0,1,0,0,0), +(@CGUID+3886,32820,0,1,1,0,0,-2958.56,-1753.26,9.50943,5.57129,600,20,0,2,0,1,0,0,0), +(@CGUID+3887,32820,0,1,1,0,0,-9191.3,-2309.23,89.4674,4.11041,600,20,0,2,0,1,0,0,0), +(@CGUID+3888,32820,0,1,1,0,0,-9475.93,-3009.16,134.516,0.205501,600,20,0,2,0,1,0,0,0), +(@CGUID+3889,32820,0,1,1,0,0,2281.77,453.836,33.9988,4.05597,600,20,0,2,0,1,0,0,0), +(@CGUID+3890,32820,0,1,1,0,0,-8253.41,-2609.76,133.155,1.12654,600,20,0,2,0,1,0,0,0), +(@CGUID+3891,32820,0,1,1,0,0,-8246.66,-2607.97,133.155,5.62294,600,20,0,2,0,1,0,0,0), +(@CGUID+3892,32820,0,1,1,0,0,-8243.34,-2610.47,133.155,2.40595,600,20,0,2,0,1,0,0,0), +(@CGUID+3893,32820,0,1,1,0,0,-8260.93,-2615.06,133.292,5.39675,600,20,0,2,0,1,0,0,0), +(@CGUID+3894,32820,0,1,1,0,0,-8258.65,-2617.86,133.251,2.3871,600,20,0,2,0,1,0,0,0), +(@CGUID+3895,32820,0,1,1,0,0,-6689.68,-2200.1,248.974,0.0691265,600,20,0,2,0,1,0,0,0), +(@CGUID+3896,32820,0,1,1,0,0,2286.11,463.02,33.7305,3.4143,600,20,0,2,0,1,0,0,0), +(@CGUID+3897,32820,0,1,1,0,0,2283.48,462.282,33.7857,0.615141,600,20,0,2,0,1,0,0,0), +(@CGUID+3898,32820,0,1,1,0,0,2285.45,441.484,34.6447,6.04774,600,20,0,2,0,1,0,0,0), +(@CGUID+3899,32820,0,1,1,0,0,2287.89,440.899,35.0368,3.14177,600,20,0,2,0,1,0,0,0), +(@CGUID+3900,32820,0,1,1,0,0,-9327.92,185.507,62.7096,4.07265,600,20,0,2,0,1,0,0,0), +(@CGUID+3901,32820,0,1,1,0,0,2269.4,950.182,46.8056,1.88271,600,20,0,2,0,1,0,0,0), +(@CGUID+3902,32820,0,1,1,0,0,2291.65,732.825,33.7658,5.40522,600,20,0,2,0,1,0,0,0), +(@CGUID+3903,32820,0,1,1,0,0,2589.44,475.936,25.3739,3.21396,600,20,0,2,0,1,0,0,0), +(@CGUID+3904,32820,0,1,1,0,0,2560.58,1207.44,66.8358,3.85013,600,20,0,2,0,1,0,0,0), +(@CGUID+3905,32820,0,1,1,0,0,2047.95,292.193,56.5388,3.68053,600,20,0,2,0,1,0,0,0), +(@CGUID+3906,32820,0,1,1,0,0,-14293.8,517.256,8.95354,3.72474,600,20,0,2,0,1,0,0,0), +(@CGUID+3907,32820,0,1,1,0,0,-3756.55,-762.724,9.32934,2.4319,600,20,0,2,0,1,0,0,0), +(@CGUID+3908,32820,0,1,1,0,0,-5040.8,-803.692,495.129,2.81595,600,20,0,2,0,1,0,0,0), +(@CGUID+3909,32820,0,1,1,0,0,-5087.72,-803.254,495.127,3.21995,600,20,0,2,0,1,0,0,0), +(@CGUID+3910,32820,0,1,1,0,0,-5097.2,-797.589,495.127,0.435709,600,20,0,2,0,1,0,0,0), +(@CGUID+3911,32820,0,1,1,0,0,-5083.38,-787.805,495.911,4.78682,600,20,0,2,0,1,0,0,0), +(@CGUID+3912,32820,0,1,1,0,0,-5074.94,-799.68,495.127,3.3299,600,20,0,2,0,1,0,0,0), +(@CGUID+3913,32820,0,1,1,0,0,-5076.41,-803.853,495.127,2.04185,600,20,0,2,0,1,0,0,0), +(@CGUID+3914,32820,0,1,1,0,0,-5090.39,-807.055,495.08,2.00258,600,20,0,2,0,1,0,0,0), +(@CGUID+3915,32820,0,1,1,0,0,-5095.91,-792.882,495.157,5.22664,600,20,0,2,0,1,0,0,0), +(@CGUID+3916,32820,0,1,1,0,0,-5079.43,-789.073,495.722,3.73046,600,20,0,2,0,1,0,0,0), +(@CGUID+3917,32820,0,1,1,0,0,-5079.51,-793.698,495.44,2.5445,600,20,0,2,0,1,0,0,0), +(@CGUID+3918,32820,0,1,1,0,0,-5081.14,-803.525,495.128,0.848043,600,20,0,2,0,1,0,0,0), +(@CGUID+3919,32820,0,1,1,0,0,-5090.63,-807.07,495.078,1.75518,600,20,0,2,0,1,0,0,0), +(@CGUID+3920,32820,0,1,1,0,0,-5094.72,-806.292,495.161,0.745942,600,20,0,2,0,1,0,0,0), +(@CGUID+3921,32820,0,1,1,0,0,-5095.77,-802.078,495.132,5.84318,600,20,0,2,0,1,0,0,0), +(@CGUID+3922,32820,0,1,1,0,0,-5089.96,-796.654,495.151,2.80369,600,20,0,2,0,1,0,0,0), +(@CGUID+3923,32820,0,1,1,0,0,-5082.59,-795.26,495.322,1.50385,600,20,0,2,0,1,0,0,0), +(@CGUID+3924,32820,0,1,1,0,0,-5082.54,-798.894,495.137,5.86674,600,20,0,2,0,1,0,0,0), +(@CGUID+3925,32820,0,1,1,0,0,-5071.89,-801.345,495.128,0.094064,600,20,0,2,0,1,0,0,0), +(@CGUID+3926,32820,0,1,1,0,0,-9116.52,314.55,93.0822,4.65069,600,20,0,2,0,1,0,0,0), +(@CGUID+3927,32820,0,1,1,0,0,-9115.78,325.128,93.2047,4.70174,600,20,0,2,0,1,0,0,0), +(@CGUID+3928,32820,0,1,1,0,0,-9114.1,336.911,93.4026,4.61927,600,20,0,2,0,1,0,0,0), +(@CGUID+3929,32820,0,1,1,0,0,-9113.13,348.931,93.5571,4.53288,600,20,0,2,0,1,0,0,0), +(@CGUID+3930,32820,0,1,1,0,0,-9110.13,345.405,93.4552,3.04455,600,20,0,2,0,1,0,0,0), +(@CGUID+3931,32820,0,1,1,0,0,-9111.31,333.146,93.2693,3.15058,600,20,0,2,0,1,0,0,0), +(@CGUID+3932,32820,0,1,1,0,0,-9111.83,320.705,93.1879,2.86784,600,20,0,2,0,1,0,0,0), +(@CGUID+3933,32820,0,1,1,0,0,-9113.34,310.046,93.2807,2.96208,600,20,0,2,0,1,0,0,0), +(@CGUID+3934,32820,0,1,1,0,0,-9114.8,307.034,93.4531,2.28664,600,20,0,2,0,1,0,0,0), +(@CGUID+3935,32820,0,1,1,0,0,-9119.35,307.993,93.1764,0.637305,600,20,0,2,0,1,0,0,0), +(@CGUID+3936,32820,0,1,1,0,0,-9114.01,317.994,93.1465,2.10207,600,20,0,2,0,1,0,0,0), +(@CGUID+3937,32820,0,1,1,0,0,-9118.64,318.192,93.207,0.484153,600,20,0,2,0,1,0,0,0), +(@CGUID+3938,32820,0,1,1,0,0,-9112.75,329.259,93.1734,2.12564,600,20,0,2,0,1,0,0,0), +(@CGUID+3939,32820,0,1,1,0,0,-9116.74,329.417,93.1118,0.923976,600,20,0,2,0,1,0,0,0), +(@CGUID+3940,32820,0,1,1,0,0,-9112.46,341.845,93.5009,1.93714,600,20,0,2,0,1,0,0,0), +(@CGUID+3941,32820,0,1,1,0,0,-9116.35,342.758,93.8079,0.637305,600,20,0,2,0,1,0,0,0), +(@CGUID+3942,32820,0,1,1,0,0,-9118.91,350.746,93.735,2.14134,600,20,0,2,0,1,0,0,0), +(@CGUID+3943,32820,0,1,1,0,0,-9118.18,359.164,93.2702,1.90179,600,20,0,2,0,1,0,0,0), +(@CGUID+3944,32820,0,1,1,0,0,-9111.63,353.697,93.4015,2.40837,600,20,0,2,0,1,0,0,0), +(@CGUID+3945,32820,0,1,1,0,0,-9127.56,351.404,94.2329,2.13741,600,20,0,2,0,1,0,0,0), +(@CGUID+3946,32820,0,1,1,0,0,-9110.83,366.354,94.0632,2.67934,600,20,0,2,0,1,0,0,0), +(@CGUID+3947,32820,0,1,1,0,0,-9125.02,352.824,94.2342,2.1217,600,20,0,2,0,1,0,0,0), +(@CGUID+3948,32820,0,1,1,0,0,1819.47,256.351,60.0177,6.08671,600,20,0,2,0,1,0,0,0), +(@CGUID+3949,32820,0,1,1,0,0,1823.47,259.36,59.921,4.44916,600,20,0,2,0,1,0,0,0), +(@CGUID+3950,32820,0,1,1,0,0,1826.98,256.962,59.7774,3.40851,600,20,0,2,0,1,0,0,0), +(@CGUID+3951,32820,0,1,1,0,0,1825.59,252.345,59.9664,2.01836,600,20,0,2,0,1,0,0,0), +(@CGUID+3952,32820,0,1,1,0,0,1830.29,254.158,59.6774,6.02781,600,20,0,2,0,1,0,0,0), +(@CGUID+3953,32820,0,1,1,0,0,1833.77,256.523,59.7223,4.64552,600,20,0,2,0,1,0,0,0), +(@CGUID+3954,32820,0,1,1,0,0,1837.2,254.766,59.856,3.58916,600,20,0,2,0,1,0,0,0), +(@CGUID+3955,32820,0,1,1,0,0,1836.83,251.094,59.922,2.54065,600,20,0,2,0,1,0,0,0), +(@CGUID+3956,32820,0,1,1,0,0,1821.62,222.529,60.1521,6.01211,600,20,0,2,0,1,0,0,0), +(@CGUID+3957,32820,0,1,1,0,0,1825.06,224.891,60.2886,4.72799,600,20,0,2,0,1,0,0,0), +(@CGUID+3958,32820,0,1,1,0,0,1828.78,223.155,60.5687,3.59309,600,20,0,2,0,1,0,0,0), +(@CGUID+3959,32820,0,1,1,0,0,1828.2,219.471,60.6056,2.42991,600,20,0,2,0,1,0,0,0), +(@CGUID+3960,32820,0,1,1,0,0,1831.58,220.664,60.5304,6.01918,600,20,0,2,0,1,0,0,0), +(@CGUID+3961,32820,0,1,1,0,0,1834.82,223.437,60.2865,4.83323,600,20,0,2,0,1,0,0,0), +(@CGUID+3962,32820,0,1,1,0,0,1838.43,221.277,60.1987,3.55697,600,20,0,2,0,1,0,0,0), +(@CGUID+3963,32820,0,1,1,0,0,1837.5,217.672,60.1333,2.31996,600,20,0,2,0,1,0,0,0), +(@CGUID+3964,18927,0,1,1,0,0,-8854.78,649.83,96.7417,1.43117,300,0,0,42,0,0,0,0,0), +(@CGUID+3965,19148,0,1,1,0,0,-4915.33,-953.892,501.498,2.25016,300,0,0,42,0,0,0,0,0), +(@CGUID+3966,19171,530,1,1,0,0,-3909.22,-11614.8,-138.101,3.1765,300,0,0,42,0,0,0,0,0), +(@CGUID+3967,19172,0,1,1,0,0,-4829.02,-1174.75,502.193,0.724139,300,0,0,42,0,0,0,0,0), +(@CGUID+3968,19173,1,1,1,0,0,9921.56,2499.58,1317.77,5.61996,300,0,0,42,0,0,0,0,0), +(@CGUID+3969,19178,0,1,1,0,0,1626.7,222.7,-43.1027,1.01229,300,0,0,42,0,0,0,0,0), +(@CGUID+3970,19177,1,1,1,0,0,1688.01,-4350.19,61.2691,2.56413,300,0,0,42,0,0,0,0,0), +(@CGUID+3971,19176,1,1,1,0,0,-1241.98,81.7344,129.422,5.4992,300,0,0,42,0,0,0,0,0), +(@CGUID+3972,19175,1,1,1,0,0,1607.39,-4402.93,10.1664,3.11715,300,0,0,42,0,0,0,0,0), +(@CGUID+3973,19169,530,1,1,0,0,9659.86,-7115.63,14.3239,5.88552,300,0,0,42,0,0,0,0,0), +(@CGUID+3974,20102,1,1,1,0,0,6747.03,-4664.43,724.551,3.61009,300,0,0,42,0,0,0,0,0), +(@CGUID+3975,20102,1,1,1,0,0,-938.792,-3735.2,8.57162,3.66385,300,0,0,42,0,0,0,0,0), +(@CGUID+3976,20102,1,1,1,0,0,-7177.24,-3810.02,8.3753,0.711558,300,0,0,42,0,0,0,0,0), +(@CGUID+3977,20102,0,1,1,0,0,-14464.9,470.287,15.0369,5.96098,300,0,0,42,0,0,0,0,0), +(@CGUID+3978,20102,530,1,1,0,0,-1888.02,5400.44,-12.4278,5.97919,300,0,0,42,0,0,0,0,0), +(@CGUID+3979,20102,530,1,1,0,0,3035.51,3635.08,144.47,0.901821,300,0,0,42,0,0,0,0,0), +(@CGUID+3980,19169,571,1,1,0,0,5889.57,550.355,639.637,1.57167,300,0,0,42,0,0,0,0,0), +(@CGUID+3981,18927,571,1,1,0,0,5719.3,687.257,645.752,5.72721,300,0,0,42,0,0,0,0,0), +(@CGUID+3982,18927,0,1,1,0,0,-8855.97,652.546,96.2675,5.07716,300,0,0,42,0,0,0,0,0), +(@CGUID+3983,18927,571,1,1,0,0,5678.09,658.93,647.134,0.088838,300,0,0,42,0,0,0,0,0), +(@CGUID+3984,19148,0,1,1,0,0,-4914.82,-951.191,501.498,4.5773,300,0,0,42,0,0,0,0,0), +(@CGUID+3985,19171,530,1,1,0,0,-3910.91,-11612.4,-138.243,4.99941,300,0,0,42,0,0,0,0,0), +(@CGUID+3986,19172,0,1,1,0,0,-4826.78,-1175.89,502.193,2.45358,300,0,0,42,0,0,0,0,0), +(@CGUID+3987,19173,1,1,1,0,0,9923.44,2496.95,1317.49,2.28359,300,0,0,42,0,0,0,0,0), +(@CGUID+3988,19169,571,1,1,0,0,5928.98,639.593,645.557,3.01052,300,0,0,42,0,0,0,0,0), +(@CGUID+3989,19169,530,1,1,0,0,9664.38,-7117.91,14.324,2.63397,300,0,0,42,0,0,0,0,0), +(@CGUID+3990,19175,1,1,1,0,0,1603.36,-4404.49,9.30901,0.627438,300,0,0,42,0,0,0,0,0), +(@CGUID+3991,19176,1,1,1,0,0,-1242.68,76.7127,128.935,1.27376,300,0,0,42,0,0,0,0,0), +(@CGUID+3992,19177,1,1,1,0,0,1685.07,-4352.88,61.7253,1.79601,300,0,0,42,0,0,0,0,0), +(@CGUID+3993,19178,0,1,1,0,0,1629.95,219.238,-43.1027,1.91079,300,0,0,42,0,0,0,0,0), +(@CGUID+3994,20102,1,1,1,0,0,6745.48,-4667.44,723.103,1.03712,300,0,0,42,0,0,0,0,0), +(@CGUID+3995,20102,1,1,1,0,0,-936.306,-3738.3,8.96324,3.35283,300,0,0,42,0,0,0,0,0), +(@CGUID+3996,20102,1,1,1,0,0,-7173.14,-3808.58,8.37043,3.3285,300,0,0,42,0,0,0,0,0), +(@CGUID+3997,20102,0,1,1,0,0,-14461.4,468.507,15.1232,2.66545,300,0,0,42,0,0,0,0,0), +(@CGUID+3998,20102,530,1,1,0,0,-1884.63,5397.52,-12.4278,2.51637,300,0,0,42,0,0,0,0,0); + +DELETE FROM `gameobject` WHERE `guid` BETWEEN @OGUID AND @OGUID+591; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(@OGUID,195191,0,1,1,-5074.44,-782.17,495.119,4.20169,0,0,0.862781,-0.505577,300,0,1), +(@OGUID+1,195164,0,1,1,-5073.87,-782.25,496.007,3.03145,0,0,0.998484,0.0550425,300,0,1), +(@OGUID+2,195195,0,1,1,-5073.04,-783.32,496.007,2.21464,0,0,0.894503,0.447062,300,0,1), +(@OGUID+3,195192,0,1,1,-5075.63,-782.225,496.007,2.68195,0,0,0.973707,0.227804,300,0,1), +(@OGUID+4,195215,0,1,1,-5074.51,-782.057,496.007,3.29063,0,0,0.997225,-0.0744513,300,0,1), +(@OGUID+5,195198,0,1,1,-5078.52,-780.332,495.148,1.81016,0,0,0.786474,0.617624,300,0,1), +(@OGUID+6,195196,0,1,1,-5081.48,-809.468,495.127,5.09312,0,0,0.560535,-0.82813,300,0,1), +(@OGUID+7,195194,0,1,1,-5074.6,-805.472,495.127,5.17166,0,0,0.527592,-0.849498,300,0,1), +(@OGUID+8,195197,0,1,1,-5071.19,-788.535,495.001,0.561371,0,0,0.277014,0.960866,300,0,1), +(@OGUID+9,195212,0,1,1,-5071.77,-785.649,495.013,0.698816,0,0,0.342342,0.939576,300,0,1), +(@OGUID+10,195303,0,1,1,-5079.17,-811.633,495.128,4.6101,0,0,0.742332,-0.670032,300,0,1), +(@OGUID+11,195303,0,1,1,-5078.82,-811.385,495.128,1.35069,0,0,0.625168,0.78049,300,0,1), +(@OGUID+12,195303,0,1,1,-5077.27,-781.108,495.129,4.67293,0,0,0.72092,-0.693018,300,0,1), +(@OGUID+13,180353,0,1,1,-5084.4,-786.175,495.73,3.2435,0,0,0.998702,-0.0509329,300,0,1), +(@OGUID+14,180353,0,1,1,-5095.12,-790.328,495.205,3.48698,0,0,0.985126,-0.171835,300,0,1), +(@OGUID+15,180353,0,1,1,-5092.54,-808.978,495.1,6.22801,0,0,0.0275838,-0.999619,300,0,1), +(@OGUID+16,180353,0,1,1,-5076.06,-806.492,495.126,5.89029,0,0,0.195186,-0.980766,300,0,1), +(@OGUID+17,180353,0,1,1,-5085.47,-807.597,495.124,4.16634,0,0,0.871583,-0.490248,300,0,1), +(@OGUID+18,180353,0,1,1,-5076.27,-780.06,495.307,1.17397,0,0,0.553855,0.832613,300,0,1), +(@OGUID+19,180353,0,1,1,-5071.41,-783.176,494.957,0.702734,0,0,0.344182,0.938903,300,0,1), +(@OGUID+20,180353,0,1,1,-5072.26,-803.167,495.128,6.17696,0,0,0.0530896,-0.99859,300,0,1), +(@OGUID+21,180353,0,1,1,-5069.62,-790.932,495.128,6.07878,0,0,0.102024,-0.994782,300,0,1), +(@OGUID+22,195191,0,1,1,-9108.9,364.276,93.9704,2.74217,0,0,0.980124,0.198386,300,0,1), +(@OGUID+23,195164,0,1,1,-9108.9,364.276,94.8585,1.14389,0,0,0.541267,0.840851,300,0,1), +(@OGUID+24,195195,0,1,1,-9110.3,362.797,94.8585,0.814019,0,0,0.395865,0.918309,300,0,1), +(@OGUID+25,195192,0,1,1,-9108.85,365.595,94.8591,1.20672,0,0,0.567411,0.823434,300,0,1), +(@OGUID+26,195215,0,1,1,-9109.13,364.867,94.8591,1.20672,0,0,0.567411,0.823434,300,0,1), +(@OGUID+27,195200,0,1,1,-9114.88,360.066,93.5696,5.88769,0,0,0.196461,-0.980512,300,0,1), +(@OGUID+28,195198,0,1,1,-9109.01,368.778,94.0214,0.342777,0,0,0.170551,0.985349,300,0,1), +(@OGUID+29,195198,0,1,1,-9114.53,354.438,93.4013,5.24366,0,0,0.496674,-0.867937,300,0,1), +(@OGUID+30,195196,0,1,1,-9113.92,363.176,93.8391,5.46357,0,0,0.398432,-0.917198,300,0,1), +(@OGUID+31,195194,0,1,1,-9119.82,359.342,93.1893,5.08265,0,0,0.564861,-0.825186,300,0,1), +(@OGUID+32,195197,0,1,1,-9111.72,368.989,94.1376,6.2529,0,0,0.0151425,-0.999885,300,0,1), +(@OGUID+33,195197,0,1,1,-9109.75,353.516,93.3842,5.47535,0,0,0.393022,-0.919529,300,0,1), +(@OGUID+34,195199,0,1,1,-9105.29,367.059,93.0555,6.15472,0,0,0.0641869,-0.997938,300,0,1), +(@OGUID+35,195199,0,1,1,-9111.07,351.772,93.4565,2.0039,0,0,0.842522,0.538662,300,0,1), +(@OGUID+36,195199,0,1,1,-9118.75,357.285,93.2502,1.69366,0,0,0.749186,0.66236,300,0,1), +(@OGUID+37,195212,0,1,1,-9111.16,360.718,93.8337,2.31413,0,0,0.915627,0.402029,300,0,1), +(@OGUID+38,195212,0,1,1,-9111.21,356.638,93.3919,2.32591,0,0,0.917979,0.396629,300,0,1), +(@OGUID+39,195212,0,1,1,-9109.4,358.181,93.6363,2.58509,0,0,0.961537,0.274674,300,0,1), +(@OGUID+40,195212,0,1,1,-9105.45,364.199,93.3237,3.12702,0,0,0.999973,0.00728787,300,0,1), +(@OGUID+41,195212,0,1,1,-9106.28,369.586,93.3838,3.6336,0,0,0.969894,-0.243529,300,0,1), +(@OGUID+42,195303,0,1,1,-9108.46,370.797,93.9633,3.30373,0,0,0.996716,-0.0809796,300,0,1), +(@OGUID+43,195303,0,1,1,-9107.36,367.547,93.7091,3.25661,0,0,0.998347,-0.0574749,300,0,1), +(@OGUID+44,195303,0,1,1,-9111.39,362.091,93.8947,2.0628,0,0,0.858019,0.513618,300,0,1), +(@OGUID+45,180353,0,1,1,-9106.44,366.297,93.4249,5.97015,0,0,0.155878,-0.987776,300,0,1), +(@OGUID+46,180353,0,1,1,-9107.49,361.434,93.7582,4.30904,0,0,0.834417,-0.551133,300,0,1), +(@OGUID+47,180353,0,1,1,-9107.88,355.021,93.3263,2.12956,0,0,0.874682,0.484698,300,0,1), +(@OGUID+48,180353,0,1,1,-9106.72,347.759,93.3323,4.69388,0,0,0.71362,-0.700533,300,0,1), +(@OGUID+49,180353,0,1,1,-9106.8,343.546,93.5129,4.69388,0,0,0.71362,-0.700533,300,0,1), +(@OGUID+50,180353,0,1,1,-9106.46,335.828,93.6541,4.75279,0,0,0.692681,-0.721244,300,0,1), +(@OGUID+51,180353,0,1,1,-9106.32,332.317,93.5889,4.75279,0,0,0.692681,-0.721244,300,0,1), +(@OGUID+52,180353,0,1,1,-9106.95,323.154,93.3763,4.79991,0,0,0.675496,-0.737363,300,0,1), +(@OGUID+53,180353,0,1,1,-9106.67,320.002,93.4244,4.79991,0,0,0.675496,-0.737363,300,0,1), +(@OGUID+54,180353,0,1,1,-9108.21,310.725,93.7368,4.61534,0,0,0.740572,-0.671977,300,0,1), +(@OGUID+55,180353,0,1,1,-9108.5,307.8,93.8631,4.61534,0,0,0.740572,-0.671977,300,0,1), +(@OGUID+56,180353,0,1,1,-9123.38,309.698,93.1581,1.61119,0,0,0.721244,0.692681,300,0,1), +(@OGUID+57,180353,0,1,1,-9123.5,312.509,93.314,1.61119,0,0,0.721244,0.692681,300,0,1), +(@OGUID+58,180353,0,1,1,-9123.81,320.224,93.4622,1.61119,0,0,0.721244,0.692681,300,0,1), +(@OGUID+59,180353,0,1,1,-9123.96,324.078,93.4462,1.61119,0,0,0.721244,0.692681,300,0,1), +(@OGUID+60,180353,0,1,1,-9123.28,332.133,93.3779,1.4816,0,0,0.674879,0.737928,300,0,1), +(@OGUID+61,180353,0,1,1,-9122.97,335.626,93.6704,1.4816,0,0,0.674879,0.737928,300,0,1), +(@OGUID+62,180353,0,1,1,-9122.03,343.65,94.1882,1.4816,0,0,0.674879,0.737928,300,0,1), +(@OGUID+63,180353,0,1,1,-9121.66,347.84,94.0413,1.4816,0,0,0.674879,0.737928,300,0,1), +(@OGUID+64,180353,0,1,1,-9120.34,357.919,93.1309,2.03924,0,0,0.851908,0.523692,300,0,1), +(@OGUID+65,180353,0,1,1,-9124.05,353.904,93.4149,2.01096,0,0,0.844419,0.535683,300,0,1), +(@OGUID+66,180353,0,1,1,-9129.1,350.316,93.5324,2.05966,0,0,0.857211,0.514966,300,0,1), +(@OGUID+67,180353,0,1,1,-9126.2,352.023,93.5502,2.16569,0,0,0.883294,0.468819,300,0,1), +(@OGUID+68,195191,1,1,1,10004.8,2226.45,1330.13,3.13414,0,0,0.999993,0.00372881,300,0,1), +(@OGUID+69,195164,1,1,1,10004.8,2226.39,1331.01,1.59868,0,0,0.716896,0.69718,300,0,1), +(@OGUID+70,195195,1,1,1,10004.7,2224.82,1331.01,1.51229,0,0,0.686121,0.727487,300,0,1), +(@OGUID+71,195192,1,1,1,10004.3,2227.59,1331.01,1.67329,0,0,0.742401,0.669956,300,0,1), +(@OGUID+72,195215,1,1,1,10004.4,2226.69,1331.01,1.67722,0,0,0.743715,0.668497,300,0,1), +(@OGUID+73,195200,1,1,1,10001.9,2221.9,1329.61,4.41433,0,0,0.804258,-0.59428,300,0,1), +(@OGUID+74,195198,1,1,1,9985.81,2241.07,1331.4,3.28336,0,0,0.997489,-0.0708247,300,0,1), +(@OGUID+75,195198,1,1,1,10003.1,2234.87,1329.32,3.79387,0,0,0.947286,-0.320388,300,0,1), +(@OGUID+76,195196,1,1,1,10002.5,2232.19,1329.84,3.7978,0,0,0.946655,-0.322247,300,0,1), +(@OGUID+77,195196,1,1,1,9988.36,2241.36,1331.18,3.12236,0,0,0.999954,0.00961857,300,0,1), +(@OGUID+78,195194,1,1,1,10001.2,2225.46,1329.96,2.88281,0,0,0.991641,0.129031,300,0,1), +(@OGUID+79,195197,1,1,1,9987.62,2239.49,1331.19,3.04774,0,0,0.998899,0.0469072,300,0,1), +(@OGUID+80,195197,1,1,1,10001.7,2234.57,1329.54,4.3358,0,0,0.826967,-0.56225,300,0,1), +(@OGUID+81,195212,1,1,1,10005.8,2231.28,1329.7,3.66821,0,0,0.965534,-0.260278,300,0,1), +(@OGUID+82,195212,1,1,1,10009.6,2230.83,1329.41,3.54648,0,0,0.979578,-0.201062,300,0,1), +(@OGUID+83,195212,1,1,1,10008.6,2228.53,1329.99,3.45616,0,0,0.987657,-0.156634,300,0,1), +(@OGUID+84,195212,1,1,1,10005.7,2221.27,1329.69,2.71788,0,0,0.977642,0.210275,300,0,1), +(@OGUID+85,195212,1,1,1,9990.62,2240.48,1330.86,3.06346,0,0,0.999237,0.0390581,300,0,1), +(@OGUID+86,195199,1,1,1,9990.57,2243.64,1330.71,3.1577,0,0,0.999968,-0.00805576,300,0,1), +(@OGUID+87,195199,1,1,1,10007,2235.34,1328.77,4.29653,0,0,0.837846,-0.545907,300,0,1), +(@OGUID+88,195199,1,1,1,10009.2,2223.82,1329.94,2.84355,0,0,0.988917,0.148472,300,0,1), +(@OGUID+89,195303,1,1,1,10005.2,2222.65,1329.86,2.71003,0,0,0.976809,0.214111,300,0,1), +(@OGUID+90,195303,1,1,1,10004.3,2229.67,1330.11,3.55041,0,0,0.979182,-0.202986,300,0,1), +(@OGUID+91,195303,1,1,1,10004,2231.16,1329.87,3.58575,0,0,0.975442,-0.220257,300,0,1), +(@OGUID+92,195303,1,1,1,9989.61,2240.32,1331.01,5.05444,0,0,0.576446,-0.817135,300,0,1), +(@OGUID+93,180353,1,1,1,9983.18,2245.02,1331.84,3.23231,0,0,0.998971,-0.0453449,300,0,1), +(@OGUID+94,180353,1,1,1,10006.4,2229.73,1329.97,4.63818,0,0,0.732852,-0.680388,300,0,1), +(@OGUID+95,180353,1,1,1,10007,2223.84,1330.01,4.69316,0,0,0.713874,-0.700274,300,0,1), +(@OGUID+96,180353,1,1,1,10002.6,2215.54,1328.7,3.11451,0,0,0.999908,0.013543,300,0,1), +(@OGUID+97,180353,1,1,1,10002.7,2212.55,1328.26,3.16163,0,0,0.99995,-0.0100193,300,0,1), +(@OGUID+98,180353,1,1,1,10002.2,2207.07,1327.79,3.14985,0,0,0.999991,-0.00412897,300,0,1), +(@OGUID+99,180353,1,1,1,10002.8,2203.31,1327.76,3.25195,0,0,0.998478,-0.0551519,300,0,1), +(@OGUID+100,180353,1,1,1,9996.26,2194.43,1327.7,3.25588,0,0,0.998368,-0.0571123,300,0,1), +(@OGUID+101,180353,1,1,1,9992.76,2194.03,1327.82,3.25588,0,0,0.998368,-0.0571123,300,0,1), +(@OGUID+102,180353,1,1,1,9985.05,2193.15,1328.59,3.25588,0,0,0.998368,-0.0571123,300,0,1), +(@OGUID+103,180353,1,1,1,9982.1,2192.81,1328.84,3.25588,0,0,0.998368,-0.0571123,300,0,1), +(@OGUID+104,180353,1,1,1,9975.17,2197.07,1328.93,1.54371,0,0,0.697466,0.716617,300,0,1), +(@OGUID+105,180353,1,1,1,9975.25,2200.06,1328.91,1.54371,0,0,0.697466,0.716617,300,0,1), +(@OGUID+106,180353,1,1,1,9973.8,2207.95,1329.23,1.61832,0,0,0.723709,0.690105,300,0,1), +(@OGUID+107,180353,1,1,1,9973.67,2210.56,1329.33,1.62225,0,0,0.725063,0.688683,300,0,1), +(@OGUID+108,180353,1,1,1,9976.81,2216.66,1329.18,0.122141,0,0,0.0610327,0.998136,300,0,1), +(@OGUID+109,180353,1,1,1,9980.82,2217.15,1328.8,0.122141,0,0,0.0610327,0.998136,300,0,1), +(@OGUID+110,180353,1,1,1,9990.4,2218.56,1328.55,0.0553825,0,0,0.0276877,0.999617,300,0,1), +(@OGUID+111,180353,1,1,1,9993.38,2218.72,1328.65,0.0553825,0,0,0.0276877,0.999617,300,0,1), +(@OGUID+112,195191,530,1,1,-3955.34,-11863.2,0.830986,3.63028,0,0,0.970296,-0.24192,300,0,1), +(@OGUID+113,195164,530,1,1,-3955.34,-11863.2,1.71971,3.52818,0,0,0.981377,-0.192092,300,0,1), +(@OGUID+114,195195,530,1,1,-3954.82,-11864.6,1.71971,1.88277,0,0,0.808374,0.588669,300,0,1), +(@OGUID+115,195192,530,1,1,-3956.34,-11862.3,1.71989,2.16551,0,0,0.883254,0.468896,300,0,1), +(@OGUID+116,195215,530,1,1,-3955.13,-11864.2,1.97205,2.12624,0,0,0.873877,0.486147,300,0,1), +(@OGUID+117,195200,530,1,1,-3951.67,-11868.6,0.949688,3.61065,0,0,0.972624,-0.232383,300,0,1), +(@OGUID+118,195198,530,1,1,-3955.82,-11857.2,0.764875,3.7206,0,0,0.958385,-0.285478,300,0,1), +(@OGUID+119,195196,530,1,1,-3959.87,-11860,0.710028,3.96408,0,0,0.916625,-0.399748,300,0,1), +(@OGUID+120,195194,530,1,1,-3957.05,-11866.4,0.827674,3.32397,0,0,0.995845,-0.0910648,300,0,1), +(@OGUID+121,195197,530,1,1,-3954.63,-11867.9,0.891499,3.11192,0,0,0.99989,0.0148376,300,0,1), +(@OGUID+122,195212,530,1,1,-3953.94,-11866.2,0.8877,3.1237,0,0,0.99996,0.00894757,300,0,1), +(@OGUID+123,195212,530,1,1,-3953.9,-11859.5,0.824961,3.48498,0,0,0.985297,-0.170852,300,0,1), +(@OGUID+124,195212,530,1,1,-3956.95,-11858.9,0.758281,3.66955,0,0,0.96536,-0.260923,300,0,1), +(@OGUID+125,195212,530,1,1,-3959,-11857.7,0.705579,3.79521,0,0,0.947071,-0.321024,300,0,1), +(@OGUID+126,195303,530,1,1,-3958.59,-11860.3,1.02229,4.30965,0,0,0.834249,-0.551388,300,0,1), +(@OGUID+127,195303,530,1,1,-3957.48,-11861.1,0.769591,4.15257,0,0,0.874938,-0.484235,300,0,1), +(@OGUID+128,180353,530,1,1,-3954.67,-11860.3,0.817822,3.70882,0,0,0.960051,-0.279826,300,0,1), +(@OGUID+129,180353,530,1,1,-3952.77,-11864.2,0.892707,3.59886,0,0,0.973977,-0.226648,300,0,1), +(@OGUID+130,180353,530,1,1,-3978.55,-11860.6,0.446388,3.98763,0,0,0.911853,-0.410517,300,0,1), +(@OGUID+131,180353,530,1,1,-3980.7,-11859.3,0.420101,4.24681,0,0,0.851157,-0.524911,300,0,1), +(@OGUID+132,180353,530,1,1,-3976.57,-11861.8,0.465867,4.09759,0,0,0.887918,-0.460003,300,0,1), +(@OGUID+133,180353,530,1,1,-3974.81,-11863.1,0.483395,6.25743,0,0,0.0128756,-0.999917,300,0,1), +(@OGUID+134,180353,530,1,1,-3970.8,-11863.2,0.532856,6.25743,0,0,0.0128756,-0.999917,300,0,1), +(@OGUID+135,180353,530,1,1,-3965.14,-11863.3,0.639776,6.25743,0,0,0.0128756,-0.999917,300,0,1), +(@OGUID+136,180353,530,1,1,-3958.77,-11871.5,0.842487,4.22718,0,0,0.856269,-0.516529,300,0,1), +(@OGUID+137,180353,530,1,1,-3961.29,-11876.7,0.829859,4.26252,0,0,0.847008,-0.53158,300,0,1), +(@OGUID+138,180353,530,1,1,-3963.99,-11882.9,0.794779,4.0701,0,0,0.894156,-0.447755,300,0,1), +(@OGUID+139,180353,530,1,1,-3969.7,-11887.5,0.697352,2.84095,0,0,0.988723,0.149756,300,0,1), +(@OGUID+140,180353,530,1,1,-3972.96,-11886.6,0.632589,2.86059,0,0,0.990146,0.140042,300,0,1), +(@OGUID+141,180353,530,1,1,-3977.27,-11885.7,0.550238,2.99803,0,0,0.997425,0.0717196,300,0,1), +(@OGUID+142,180353,530,1,1,-3982.69,-11880.4,0.446558,1.34869,0,0,0.624387,0.781115,300,0,1), +(@OGUID+143,180353,530,1,1,-3981.39,-11874.6,0.447613,1.34869,0,0,0.624387,0.781115,300,0,1), +(@OGUID+144,180353,530,1,1,-3981.4,-11869.1,0.40929,1.43509,0,0,0.657536,0.753423,300,0,1), +(@OGUID+145,195191,1,1,1,1302.52,-4410.94,26.5561,3.19832,0,0,0.999598,-0.0283608,300,0,1), +(@OGUID+146,195195,1,1,1,1302,-4412.47,27.4441,1.11702,0,0,0.529922,0.848046,300,0,1), +(@OGUID+147,195192,1,1,1,1302.1,-4409.68,27.444,1.65109,0,0,0.734917,0.678157,300,0,1), +(@OGUID+148,195215,1,1,1,1303.2,-4410.26,27.444,1.65501,0,0,0.736247,0.676713,300,0,1), +(@OGUID+149,195200,1,1,1,1300.88,-4415.43,26.6914,0.150977,0,0,0.0754169,0.997152,300,0,1), +(@OGUID+150,179968,1,1,1,1297.44,-4418.41,26.6135,5.58986,0,0,0.339761,-0.940512,300,0,1), +(@OGUID+151,179968,1,1,1,1296.58,-4417.67,26.6345,5.57808,0,0,0.345295,-0.938494,300,0,1), +(@OGUID+152,179968,1,1,1,1296.53,-4419.34,26.6187,5.66447,0,0,0.304446,-0.95253,300,0,1), +(@OGUID+153,179968,1,1,1,1295.43,-4418.55,26.6254,5.65662,0,0,0.308184,-0.951327,300,0,1), +(@OGUID+154,179968,1,1,1,1295.64,-4420.43,26.6132,5.64091,0,0,0.315646,-0.948877,300,0,1), +(@OGUID+155,179968,1,1,1,1294.66,-4419.7,26.5909,5.64091,0,0,0.315646,-0.948877,300,0,1), +(@OGUID+156,179968,1,1,1,1295.12,-4402.44,26.3123,1.1288,0,0,0.534908,0.84491,300,0,1), +(@OGUID+157,179968,1,1,1,1294.65,-4403.47,26.3195,1.14843,0,0,0.543177,0.839618,300,0,1), +(@OGUID+158,179968,1,1,1,1295.94,-4404.05,26.3415,1.14843,0,0,0.543177,0.839618,300,0,1), +(@OGUID+159,179968,1,1,1,1296.37,-4403.09,26.3204,1.14843,0,0,0.543177,0.839618,300,0,1), +(@OGUID+160,179968,1,1,1,1296.37,-4403.09,27.026,1.14843,0,0,0.543177,0.839618,300,0,1), +(@OGUID+161,179968,1,1,1,1302.51,-4406.17,26.4073,0.339473,0,0,0.168922,0.985629,300,0,1), +(@OGUID+162,179968,1,1,1,1302.51,-4406.17,27.1129,0.292349,0,0,0.145654,0.989336,300,0,1), +(@OGUID+163,179968,1,1,1,1301.68,-4406.42,26.4589,0.292349,0,0,0.145654,0.989336,300,0,1), +(@OGUID+164,179968,1,1,1,1301.09,-4405.5,26.478,0.245226,0,0,0.122306,0.992492,300,0,1), +(@OGUID+165,179968,1,1,1,1302.34,-4407.39,26.4339,0.260935,0,0,0.130097,0.991501,300,0,1), +(@OGUID+166,195198,1,1,1,1303.12,-4403.25,26.295,3.58788,0,0,0.975207,-0.221295,300,0,1), +(@OGUID+167,195196,1,1,1,1304.8,-4406.37,26.1649,3.24623,0,0,0.998632,-0.0522942,300,0,1), +(@OGUID+168,195194,1,1,1,1299.46,-4405.2,26.4748,3.85491,0,0,0.937068,-0.349146,300,0,1), +(@OGUID+169,195197,1,1,1,1301.52,-4403.95,26.3724,3.72139,0,0,0.958272,-0.285857,300,0,1), +(@OGUID+170,195197,1,1,1,1297.9,-4420.87,26.6368,2.72394,0,0,0.978275,0.207313,300,0,1), +(@OGUID+171,195212,1,1,1,1304.73,-4408.7,26.2159,2.90065,0,0,0.992752,0.120178,300,0,1), +(@OGUID+172,195212,1,1,1,1306.55,-4410.74,25.8364,2.8496,0,0,0.989362,0.145477,300,0,1), +(@OGUID+173,195303,1,1,1,1305.29,-4413.29,26.1647,2.67289,0,0,0.972665,0.232213,300,0,1), +(@OGUID+174,195303,1,1,1,1298.76,-4419.4,26.6275,1.69507,0,0,0.74965,0.661834,300,0,1), +(@OGUID+175,180353,1,1,1,1280.23,-4413.12,26.4446,3.85884,0,0,0.93638,-0.350988,300,0,1), +(@OGUID+176,180353,1,1,1,1275.71,-4417.02,26.4,3.85884,0,0,0.93638,-0.350988,300,0,1), +(@OGUID+177,180353,1,1,1,1270.68,-4421.41,26.2863,3.85492,0,0,0.937067,-0.349148,300,0,1), +(@OGUID+178,180353,1,1,1,1268.6,-4429.59,26.6604,5.32754,0,0,0.459849,-0.887997,300,0,1), +(@OGUID+179,180353,1,1,1,1271.09,-4433.14,26.7162,5.32361,0,0,0.461591,-0.887093,300,0,1), +(@OGUID+180,180353,1,1,1,1275.02,-4438.74,26.9386,5.32361,0,0,0.461591,-0.887093,300,0,1), +(@OGUID+181,180353,1,1,1,1284.69,-4438.29,27.5673,0.528753,0,0,0.261308,0.965256,300,0,1), +(@OGUID+182,180353,1,1,1,1289.41,-4435.53,27.3442,0.528753,0,0,0.261308,0.965256,300,0,1), +(@OGUID+183,180353,1,1,1,1296.54,-4430.96,26.9027,0.697614,0,0,0.341777,0.939781,300,0,1), +(@OGUID+184,180353,1,1,1,1304.26,-4412.35,26.4077,1.50657,0,0,0.68404,0.729444,300,0,1), +(@OGUID+185,180353,1,1,1,1304.41,-4408.99,26.2925,1.52621,0,0,0.691168,0.722694,300,0,1), +(@OGUID+186,180353,1,1,1,1295.63,-4406.77,26.4567,4.16907,0,0,0.870912,-0.491439,300,0,1), +(@OGUID+187,180353,1,1,1,1290.06,-4404.73,26.3184,4.42826,0,0,0.800101,-0.599865,300,0,1), +(@OGUID+188,179968,1,1,1,1281.13,-4412.77,26.4501,5.42178,0,0,0.417509,-0.908673,300,0,1), +(@OGUID+189,179968,1,1,1,1279.71,-4413.85,26.4523,5.50817,0,0,0.37788,-0.925855,300,0,1), +(@OGUID+190,179968,1,1,1,1276.3,-4416.39,26.4036,5.32361,0,0,0.461593,-0.887092,300,0,1), +(@OGUID+191,179968,1,1,1,1274.84,-4417.44,26.3812,5.3511,0,0,0.449356,-0.893353,300,0,1), +(@OGUID+192,179968,1,1,1,1271.26,-4420.47,26.2395,5.9048,0,0,0.188066,-0.982156,300,0,1), +(@OGUID+193,179968,1,1,1,1270.17,-4422.24,26.376,5.87731,0,0,0.201547,-0.979479,300,0,1), +(@OGUID+194,179968,1,1,1,1267.92,-4428.64,26.6532,0.520896,0,0,0.257513,0.966275,300,0,1), +(@OGUID+195,179968,1,1,1,1268.77,-4430.44,26.6577,0.591582,0,0,0.291496,0.956572,300,0,1), +(@OGUID+196,179968,1,1,1,1270.65,-4432.46,26.7018,0.842909,0,0,0.409088,0.912495,300,0,1), +(@OGUID+197,179968,1,1,1,1271.64,-4433.71,26.7426,0.897887,0,0,0.434014,0.900906,300,0,1), +(@OGUID+198,179968,1,1,1,1274.36,-4437.81,26.8996,0.752588,0,0,0.367476,0.930033,300,0,1), +(@OGUID+199,179968,1,1,1,1275.57,-4439.37,26.9804,0.741593,0,0,0.362358,0.932039,300,0,1), +(@OGUID+200,179968,1,1,1,1283.83,-4438.68,27.54,2.0807,0,0,0.862581,0.505919,300,0,1), +(@OGUID+201,179968,1,1,1,1285.38,-4437.76,27.534,2.10426,0,0,0.868481,0.495723,300,0,1), +(@OGUID+202,179968,1,1,1,1288.37,-4435.9,27.3867,2.11604,0,0,0.871386,0.490598,300,0,1), +(@OGUID+203,179968,1,1,1,1289.92,-4435.09,27.3016,2.15138,0,0,0.879919,0.475124,300,0,1), +(@OGUID+204,179968,1,1,1,1295.79,-4431.59,26.952,2.24563,0,0,0.901324,0.433146,300,0,1), +(@OGUID+205,179968,1,1,1,1297.16,-4430.09,26.8497,2.30061,0,0,0.912888,0.408209,300,0,1), +(@OGUID+206,195164,1,1,1,1297.52,-4430.13,27.5555,2.40664,0,0,0.933237,0.359262,300,0,1), +(@OGUID+207,195164,1,1,1,1295.88,-4431.63,27.6582,2.21029,0,0,0.893529,0.449006,300,0,1), +(@OGUID+208,195164,1,1,1,1290.11,-4435.29,28.0071,2.10033,0,0,0.867506,0.497427,300,0,1), +(@OGUID+209,195164,1,1,1,1288.56,-4436.14,28.0923,1.99823,0,0,0.840993,0.541047,300,0,1), +(@OGUID+210,195164,1,1,1,1285.61,-4437.76,28.2396,2.19065,0,0,0.889078,0.457756,300,0,1), +(@OGUID+211,195164,1,1,1,1284.02,-4438.77,28.2456,2.09248,0,0,0.865546,0.50083,300,0,1), +(@OGUID+212,195164,1,1,1,1275.56,-4439.34,27.6864,0.753374,0,0,0.367842,0.929888,300,0,1), +(@OGUID+213,195164,1,1,1,1274.15,-4437.9,27.605,0.741593,0,0,0.362358,0.932039,300,0,1), +(@OGUID+214,195164,1,1,1,1271.66,-4433.78,27.4488,0.906527,0,0,0.437902,0.899023,300,0,1), +(@OGUID+215,195164,1,1,1,1270.69,-4432.51,27.4082,0.835841,0,0,0.405861,0.913935,300,0,1), +(@OGUID+216,195164,1,1,1,1268.61,-4430.38,27.3632,0.563308,0,0,0.277945,0.960597,300,0,1), +(@OGUID+217,195164,1,1,1,1267.88,-4428.73,27.3586,0.606505,0,0,0.298626,0.95437,300,0,1), +(@OGUID+218,195164,1,1,1,1270.24,-4422.24,27.0815,5.81762,0,0,0.230685,-0.973029,300,0,1), +(@OGUID+219,195164,1,1,1,1271.25,-4420.36,26.9449,5.87653,0,0,0.20193,-0.9794,300,0,1), +(@OGUID+220,195164,1,1,1,1274.69,-4417.34,27.0869,5.35424,0,0,0.447952,-0.894058,300,0,1), +(@OGUID+221,195164,1,1,1,1276.21,-4416.05,27.1098,5.34638,0,0,0.45146,-0.892292,300,0,1), +(@OGUID+222,195164,1,1,1,1279.75,-4413.7,27.158,5.26392,0,0,0.487858,-0.872923,300,0,1), +(@OGUID+223,195164,1,1,1,1280.97,-4412.84,27.1556,5.51917,0,0,0.372785,-0.927918,300,0,1), +(@OGUID+224,195164,1,1,1,1296.35,-4419.28,27.3242,5.7705,0,0,0.253547,-0.967323,300,0,1), +(@OGUID+225,195164,1,1,1,1301.94,-4411.23,27.444,0.311978,0,0,0.155357,0.987858,300,0,1), +(@OGUID+226,195164,1,1,1,1296.44,-4403.09,27.7315,1.25681,0,0,0.587856,0.808965,300,0,1), +(@OGUID+227,195164,1,1,1,1301.82,-4406.53,27.2368,5.4744,0,0,0.39346,-0.919342,300,0,1), +(@OGUID+228,179968,530,1,1,-3981.01,-11861.1,0.416226,4.16906,0,0,0.870916,-0.491432,300,0,1), +(@OGUID+229,179968,530,1,1,-3980.44,-11860.2,0.423322,4.16513,0,0,0.871879,-0.489721,300,0,1), +(@OGUID+230,179968,530,1,1,-3980.04,-11861.9,0.426034,4.23975,0,0,0.853007,-0.5219,300,0,1), +(@OGUID+231,179968,530,1,1,-3979.42,-11860.7,0.432217,4.23975,0,0,0.853007,-0.5219,300,0,1), +(@OGUID+232,179968,530,1,1,-3962.22,-11859.2,0.655255,4.65994,0,0,0.725406,-0.688321,300,0,1), +(@OGUID+233,179968,530,1,1,-3962.17,-11858.3,0.647246,4.65994,0,0,0.725406,-0.688321,300,0,1), +(@OGUID+234,179968,530,1,1,-3962.17,-11858.3,1.35331,4.65994,0,0,0.725406,-0.688321,300,0,1), +(@OGUID+235,179968,530,1,1,-3963.3,-11858,0.622251,4.49893,0,0,0.778409,-0.627758,300,0,1), +(@OGUID+236,179968,530,1,1,-3963.57,-11858.9,0.625538,4.59711,0,0,0.746669,-0.665196,300,0,1), +(@OGUID+237,179968,1,1,1,9982.13,2246.34,1332.02,3.13021,0,0,0.999984,0.0056905,300,0,1), +(@OGUID+238,179968,1,1,1,9982.08,2243.54,1331.84,3.02026,0,0,0.99816,0.0606312,300,0,1), +(@OGUID+239,179968,1,1,1,9999.55,2234.41,1329.88,4.31224,0,0,0.833534,-0.552467,300,0,1), +(@OGUID+240,179968,1,1,1,9999.9,2235.24,1329.73,4.31224,0,0,0.833534,-0.552467,300,0,1), +(@OGUID+241,179968,1,1,1,9999.9,2235.24,1330.44,4.31224,0,0,0.833534,-0.552467,300,0,1), +(@OGUID+242,179968,1,1,1,9998.76,2235.77,1329.83,4.28475,0,0,0.841048,-0.54096,300,0,1), +(@OGUID+243,179968,1,1,1,10002.5,2216.51,1328.84,3.28336,0,0,0.997489,-0.0708264,300,0,1), +(@OGUID+244,179968,1,1,1,10002.9,2213.91,1328.47,3.31085,0,0,0.996421,-0.0845292,300,0,1), +(@OGUID+245,179968,1,1,1,10003.2,2210.99,1328.12,3.17734,0,0,0.99984,-0.0178704,300,0,1), +(@OGUID+246,179968,1,1,1,10003.1,2207.82,1327.83,3.33441,0,0,0.995356,-0.0962619,300,0,1), +(@OGUID+247,179968,1,1,1,10003.3,2205.14,1327.77,3.22776,0,0,0.999072,-0.0430718,300,0,1), +(@OGUID+248,179968,1,1,1,10003.9,2201.66,1327.86,3.21205,0,0,0.999379,-0.0352239,300,0,1), +(@OGUID+249,179968,1,1,1,9997.22,2194.31,1327.73,1.54701,0,0,0.698647,0.715466,300,0,1), +(@OGUID+250,179968,1,1,1,9994.37,2194.29,1327.74,1.48811,0,0,0.677275,0.73573,300,0,1), +(@OGUID+251,179968,1,1,1,9991.63,2194.14,1327.89,1.41742,0,0,0.650855,0.759202,300,0,1), +(@OGUID+252,179968,1,1,1,9986.12,2193.36,1328.47,1.60199,0,0,0.718048,0.695993,300,0,1), +(@OGUID+253,179968,1,1,1,9983.56,2193.02,1328.73,1.55879,0,0,0.70285,0.711338,300,0,1), +(@OGUID+254,179968,1,1,1,9980.77,2192.63,1328.9,1.51167,0,0,0.685896,0.7277,300,0,1), +(@OGUID+255,179968,1,1,1,9974.98,2195.81,1328.95,0.0233379,0,0,0.0116687,0.999932,300,0,1), +(@OGUID+256,179968,1,1,1,9975.06,2198.89,1328.92,6.25155,0,0,0.0158186,-0.999875,300,0,1), +(@OGUID+257,179968,1,1,1,9975.13,2201.37,1328.94,6.1573,0,0,0.0629013,-0.99802,300,0,1), +(@OGUID+258,179968,1,1,1,9974.23,2207.13,1329.15,0.0508296,0,0,0.0254121,0.999677,300,0,1), +(@OGUID+259,179968,1,1,1,9973.79,2209.18,1329.29,0.0311947,0,0,0.0155967,0.999878,300,0,1), +(@OGUID+260,179968,1,1,1,9973.39,2211.61,1329.39,0.156859,0,0,0.0783489,0.996926,300,0,1), +(@OGUID+261,179968,1,1,1,9979.24,2216.92,1328.91,4.88889,0,0,0.642035,-0.766675,300,0,1), +(@OGUID+262,179968,1,1,1,9975.86,2216.51,1329.29,4.82998,0,0,0.664334,-0.747436,300,0,1), +(@OGUID+263,179968,1,1,1,9981.93,2217.48,1328.73,4.84961,0,0,0.656965,-0.753921,300,0,1), +(@OGUID+264,179968,1,1,1,9988.83,2218.95,1328.58,4.75929,0,0,0.69033,-0.723494,300,0,1), +(@OGUID+265,179968,1,1,1,9991.92,2218.84,1328.61,4.82213,0,0,0.667264,-0.744821,300,0,1), +(@OGUID+266,179968,1,1,1,9994.95,2218.91,1328.77,4.66897,0,0,0.722289,-0.691592,300,0,1), +(@OGUID+267,195164,1,1,1,9999.51,2234.51,1330.59,1.43313,0,0,0.6568,0.754065,300,0,1), +(@OGUID+268,195164,1,1,1,9994.93,2219.04,1329.48,4.65326,0,0,0.727698,-0.685897,300,0,1), +(@OGUID+269,195164,1,1,1,9991.99,2219.15,1329.31,4.66897,0,0,0.722289,-0.691591,300,0,1), +(@OGUID+270,195164,1,1,1,9989.01,2219.09,1329.28,4.64148,0,0,0.731726,-0.681599,300,0,1), +(@OGUID+271,195164,1,1,1,9981.98,2217.51,1329.43,4.68468,0,0,0.716835,-0.697243,300,0,1), +(@OGUID+272,195164,1,1,1,9979.05,2217.06,1329.61,4.82212,0,0,0.667265,-0.74482,300,0,1), +(@OGUID+273,195164,1,1,1,9975.8,2216.83,1330,4.82369,0,0,0.66668,-0.745344,300,0,1), +(@OGUID+274,195164,1,1,1,9973.21,2211.7,1330.09,0.0877428,0,0,0.0438573,0.999038,300,0,1), +(@OGUID+275,195164,1,1,1,9973.8,2209.13,1329.99,0.0846007,0,0,0.0422877,0.999105,300,0,1), +(@OGUID+276,195164,1,1,1,9974.41,2207.01,1329.86,0.0610387,0,0,0.0305146,0.999534,300,0,1), +(@OGUID+277,195164,1,1,1,9974.75,2201.51,1329.62,6.06541,0,0,0.108673,-0.994078,300,0,1), +(@OGUID+278,195164,1,1,1,9975.09,2198.93,1329.62,0.0217681,0,0,0.0108838,0.999941,300,0,1), +(@OGUID+279,195164,1,1,1,9974.65,2196.08,1329.65,0.00213314,0,0,0.00106657,0.999999,300,0,1), +(@OGUID+280,195164,1,1,1,9980.82,2192.39,1329.6,1.42763,0,0,0.654723,0.755869,300,0,1), +(@OGUID+281,195164,1,1,1,9983.48,2192.95,1329.43,1.40407,0,0,0.645773,0.76353,300,0,1), +(@OGUID+282,195164,1,1,1,9986.32,2193.11,1329.18,1.48339,0,0,0.67554,0.737323,300,0,1), +(@OGUID+283,195164,1,1,1,9991.7,2193.93,1328.59,1.71116,0,0,0.754951,0.655781,300,0,1), +(@OGUID+284,195164,1,1,1,9994.25,2194.27,1328.45,1.45591,0,0,0.665343,0.746538,300,0,1), +(@OGUID+285,195164,1,1,1,9997.38,2194.07,1328.44,1.45591,0,0,0.665343,0.746538,300,0,1), +(@OGUID+286,195164,1,1,1,10004,2201.64,1328.57,3.10917,0,0,0.999869,0.0162108,300,0,1), +(@OGUID+287,195164,1,1,1,10003.4,2205.32,1328.47,3.14059,0,0,1,0.000503496,300,0,1), +(@OGUID+288,195164,1,1,1,10003.1,2207.89,1328.54,3.28196,0,0,0.997538,-0.0701248,300,0,1), +(@OGUID+289,195164,1,1,1,10003.1,2210.9,1328.82,3.01492,0,0,0.997995,0.063293,300,0,1), +(@OGUID+290,195164,1,1,1,10002.7,2213.92,1329.17,3.20342,0,0,0.999522,-0.0309075,300,0,1), +(@OGUID+291,195164,1,1,1,10002.5,2216.61,1329.55,3.16415,0,0,0.999936,-0.0112772,300,0,1), +(@OGUID+292,179968,0,1,1,-9125.02,352.824,93.5288,2.1217,0,0,0.872771,0.488131,300,0,1), +(@OGUID+293,179968,0,1,1,-9127.56,351.404,93.5273,2.13741,0,0,0.876577,0.481261,300,0,1), +(@OGUID+294,179968,0,1,1,-9121.57,348.944,93.9659,6.15864,0,0,0.0622308,-0.998062,300,0,1), +(@OGUID+295,179968,0,1,1,-9122.27,346.012,94.1675,6.20969,0,0,0.0367379,-0.999325,300,0,1), +(@OGUID+296,179968,0,1,1,-9122.08,342.306,94.1731,0.0325353,0,0,0.0162669,0.999868,300,0,1), +(@OGUID+297,179968,0,1,1,-9122.38,336.465,93.7437,6.15864,0,0,0.0622322,-0.998062,300,0,1), +(@OGUID+298,179968,0,1,1,-9122.77,333.542,93.4547,6.10759,0,0,0.0876855,-0.996148,300,0,1), +(@OGUID+299,179968,0,1,1,-9123.52,331.044,93.3352,6.06832,0,0,0.107227,-0.994235,300,0,1), +(@OGUID+300,179968,0,1,1,-9124.3,325.218,93.4123,6.25681,0,0,0.0131848,-0.999913,300,0,1), +(@OGUID+301,179968,0,1,1,-9124.62,322.257,93.4678,6.26074,0,0,0.0112225,-0.999937,300,0,1), +(@OGUID+302,179968,0,1,1,-9124,318.81,93.4679,0.0796561,0,0,0.0398175,0.999207,300,0,1), +(@OGUID+303,179968,0,1,1,-9123.73,313.696,93.4004,0.00504303,0,0,0.00252151,0.999997,300,0,1), +(@OGUID+304,179968,0,1,1,-9123.56,311.213,93.2591,0.00504327,0,0,0.00252163,0.999997,300,0,1), +(@OGUID+305,179968,0,1,1,-9123.45,308.836,93.1538,0.0128972,0,0,0.00644858,0.999979,300,0,1), +(@OGUID+306,179968,0,1,1,-9108.65,306.666,93.8969,2.91887,0,0,0.993806,0.111131,300,0,1), +(@OGUID+307,179968,0,1,1,-9108.12,309.489,93.8183,3.13486,0,0,0.999994,0.00336869,300,0,1), +(@OGUID+308,179968,0,1,1,-9108.47,311.573,93.6563,3.00919,0,0,0.99781,0.0661522,300,0,1), +(@OGUID+309,179968,0,1,1,-9106.75,319.206,93.4457,3.18591,0,0,0.999755,-0.0221551,300,0,1), +(@OGUID+310,179968,0,1,1,-9106.91,321.71,93.3826,3.26366,0,0,0.998138,-0.0609962,300,0,1), +(@OGUID+311,179968,0,1,1,-9106.96,324.388,93.3783,3.26366,0,0,0.998138,-0.0609962,300,0,1), +(@OGUID+312,179968,0,1,1,-9106,331.289,93.583,3.2833,0,0,0.997491,-0.0707923,300,0,1), +(@OGUID+313,179968,0,1,1,-9106.34,333.725,93.6275,3.2401,0,0,0.998787,-0.0492332,300,0,1), +(@OGUID+314,179968,0,1,1,-9106.58,336.794,93.6628,3.26759,0,0,0.998016,-0.062956,300,0,1), +(@OGUID+315,179968,0,1,1,-9106.71,342.403,93.5723,3.20083,0,0,0.999561,-0.0296139,300,0,1), +(@OGUID+316,179968,0,1,1,-9106.88,345.568,93.432,3.18669,0,0,0.999746,-0.0225476,300,0,1), +(@OGUID+317,179968,0,1,1,-9107.08,348.925,93.3381,3.25345,0,0,0.998436,-0.0558998,300,0,1), +(@OGUID+318,179968,0,1,1,-9105.76,361.675,93.4297,2.58586,0,0,0.961643,0.274304,300,0,1), +(@OGUID+319,179968,0,1,1,-9105,361.2,93.4297,2.58586,0,0,0.961643,0.274304,300,0,1), +(@OGUID+320,179968,0,1,1,-9105,361.2,94.1356,2.58586,0,0,0.961643,0.274304,300,0,1), +(@OGUID+321,179968,0,1,1,-9104.09,360.604,93.0295,2.61335,0,0,0.965322,0.261061,300,0,1), +(@OGUID+322,179968,0,1,1,-9104.09,360.604,93.7354,2.61335,0,0,0.965322,0.261061,300,0,1), +(@OGUID+323,179968,0,1,1,-9104.09,360.604,94.441,2.61335,0,0,0.965322,0.261061,300,0,1), +(@OGUID+324,179968,0,1,1,-9106.57,360.255,93.5506,2.58194,0,0,0.961103,0.276191,300,0,1), +(@OGUID+325,179968,0,1,1,-9105.81,359.775,93.5506,2.48376,0,0,0.946393,0.323017,300,0,1), +(@OGUID+326,179968,0,1,1,-9105.81,359.775,94.2564,2.55445,0,0,0.957216,0.289374,300,0,1), +(@OGUID+327,179968,0,1,1,-9104.89,359.163,93.1483,2.55445,0,0,0.957216,0.289374,300,0,1), +(@OGUID+328,179968,0,1,1,-9104.89,359.163,93.854,2.55445,0,0,0.957216,0.289374,300,0,1), +(@OGUID+329,179968,0,1,1,-9105.53,358.184,93.17,2.49947,0,0,0.948901,0.315575,300,0,1), +(@OGUID+330,195164,0,1,1,-9106.82,348.979,94.044,3.21811,0,0,0.999268,-0.0382483,300,0,1), +(@OGUID+331,195164,0,1,1,-9106.61,345.589,94.1377,3.09637,0,0,0.999744,0.0226088,300,0,1), +(@OGUID+332,195164,0,1,1,-9106.66,342.347,94.2784,3.10423,0,0,0.999825,0.0186827,300,0,1), +(@OGUID+333,195164,0,1,1,-9106.7,336.98,94.3685,3.23774,0,0,0.998845,-0.0480566,300,0,1), +(@OGUID+334,195164,0,1,1,-9106.44,333.544,94.3332,3.13564,0,0,0.999996,0.00297577,300,0,1), +(@OGUID+335,195164,0,1,1,-9106.12,331.509,94.2891,3.13957,0,0,0.999999,0.00101228,300,0,1), +(@OGUID+336,195164,0,1,1,-9106.91,324.458,94.084,3.17491,0,0,0.999861,-0.0166584,300,0,1), +(@OGUID+337,195164,0,1,1,-9106.92,321.9,94.0888,3.17098,0,0,0.999892,-0.0146952,300,0,1), +(@OGUID+338,195164,0,1,1,-9106.6,319.258,94.1514,3.21418,0,0,0.999341,-0.0362862,300,0,1), +(@OGUID+339,195164,0,1,1,-9108.34,311.514,94.3619,3.04532,0,0,0.998842,0.0481176,300,0,1), +(@OGUID+340,195164,0,1,1,-9108,309.563,94.524,3.16706,0,0,0.999919,-0.0127318,300,0,1), +(@OGUID+341,195164,0,1,1,-9108.7,306.836,94.6029,2.92201,0,0,0.993979,0.109569,300,0,1), +(@OGUID+342,195164,0,1,1,-9123.52,308.78,93.8595,0.0435288,0,0,0.0217627,0.999763,300,0,1), +(@OGUID+343,195164,0,1,1,-9123.57,311.178,93.9648,6.25838,0,0,0.0124007,-0.999923,300,0,1), +(@OGUID+344,195164,0,1,1,-9123.84,313.691,94.1064,6.19477,0,0,0.0441957,-0.999023,300,0,1), +(@OGUID+345,195164,0,1,1,-9124.06,318.765,94.1735,6.26388,0,0,0.00965214,-0.999953,300,0,1), +(@OGUID+346,195164,0,1,1,-9124.86,322.295,94.1734,6.20576,0,0,0.0387035,-0.999251,300,0,1), +(@OGUID+347,195164,0,1,1,-9124.07,325.098,94.118,6.2678,0,0,0.0076905,-0.99997,300,0,1), +(@OGUID+348,195164,0,1,1,-9123.43,331.097,94.041,6.01255,0,0,0.134905,-0.990859,300,0,1), +(@OGUID+349,195164,0,1,1,-9122.56,333.536,94.1602,6.00077,0,0,0.140739,-0.990047,300,0,1), +(@OGUID+350,195164,0,1,1,-9122.21,336.358,94.4494,6.06753,0,0,0.10762,-0.994192,300,0,1), +(@OGUID+351,195164,0,1,1,-9122.17,342.507,94.8786,6.08323,0,0,0.0998095,-0.995007,300,0,1), +(@OGUID+352,195164,0,1,1,-9122.66,346.034,94.8427,6.24031,0,0,0.0214347,-0.99977,300,0,1), +(@OGUID+353,195164,0,1,1,-9121.72,348.977,94.6714,6.2246,0,0,0.0292862,-0.999571,300,0,1), +(@OGUID+354,179968,0,1,1,-5084.24,-808.46,495.127,0.96978,0,0,0.466111,0.884726,300,0,1), +(@OGUID+355,179968,0,1,1,-5079.31,-809.352,495.128,1.52349,0,0,0.690184,0.723634,300,0,1), +(@OGUID+356,179968,0,1,1,-5076.66,-808.073,495.127,1.98294,0,0,0.836833,0.547459,300,0,1), +(@OGUID+357,179968,0,1,1,-5070,-786.548,494.868,3.54589,0,0,0.979638,-0.200773,300,0,1), +(@OGUID+358,179968,0,1,1,-5069.18,-786.172,494.83,3.57338,0,0,0.976786,-0.214218,300,0,1), +(@OGUID+359,179968,0,1,1,-5069.18,-786.172,495.537,3.57338,0,0,0.976786,-0.214218,300,0,1), +(@OGUID+360,179968,0,1,1,-5068.53,-787.239,494.916,3.63621,0,0,0.969575,-0.244794,300,0,1), +(@OGUID+361,195191,1,1,1,-1312.7,205.607,58.866,6.27839,0,0,0.0023953,-0.999997,300,0,1), +(@OGUID+362,195164,1,1,1,-1312.7,205.607,59.7541,6.27447,0,0,0.00435867,-0.999991,300,0,1), +(@OGUID+363,195195,1,1,1,-1313.19,203.883,59.7541,1.3618,0,0,0.629493,0.777006,300,0,1), +(@OGUID+364,195192,1,1,1,-1313.04,206.69,59.754,1.49925,0,0,0.681363,0.731945,300,0,1), +(@OGUID+365,195215,1,1,1,-1313.14,204.888,59.754,1.51888,0,0,0.688516,0.725221,300,0,1), +(@OGUID+366,195200,1,1,1,-1313.53,201.289,58.8654,5.48121,0,0,0.390326,-0.920677,300,0,1), +(@OGUID+367,179968,1,1,1,-1311.94,192.52,59.1312,2.59095,0,0,0.962338,0.271855,300,0,1), +(@OGUID+368,179968,1,1,1,-1313.24,190.02,59.2281,2.57524,0,0,0.960173,0.279405,300,0,1), +(@OGUID+369,179968,1,1,1,-1314.58,187.54,59.418,2.54383,0,0,0.955666,0.294452,300,0,1), +(@OGUID+370,179968,1,1,1,-1310.59,194.635,59.0592,2.70876,0,0,0.976673,0.21473,300,0,1), +(@OGUID+371,195198,1,1,1,-1316.18,210.677,58.8661,1.71916,0,0,0.757568,0.652756,300,0,1), +(@OGUID+372,195196,1,1,1,-1314.67,209.519,58.8661,3.94969,0,0,0.919477,-0.393144,300,0,1), +(@OGUID+373,195194,1,1,1,-1315.17,204.322,58.8654,5.38304,0,0,0.435031,-0.900415,300,0,1), +(@OGUID+374,195197,1,1,1,-1317.97,210.447,58.8648,5.32807,0,0,0.459614,-0.888119,300,0,1), +(@OGUID+375,195197,1,1,1,-1317.79,185.104,59.7552,4.73116,0,0,0.700438,-0.713713,300,0,1), +(@OGUID+376,195197,1,1,1,-1312.5,187.357,59.3122,1.54245,0,0,0.697013,0.717058,300,0,1), +(@OGUID+377,195212,1,1,1,-1314.91,183.793,59.5933,2.07652,0,0,0.861522,0.507721,300,0,1), +(@OGUID+378,195212,1,1,1,-1311.93,209.505,58.8648,3.53343,0,0,0.980869,-0.194669,300,0,1), +(@OGUID+379,195212,1,1,1,-1309.82,205.756,58.8648,2.88548,0,0,0.991812,0.127707,300,0,1), +(@OGUID+380,195303,1,1,1,-1313.19,208.798,58.8649,3.89079,0,0,0.930655,-0.365898,300,0,1), +(@OGUID+381,195303,1,1,1,-1315.66,184.701,59.5959,1.69952,0,0,0.751123,0.660162,300,0,1), +(@OGUID+382,180353,1,1,1,-1310.87,193.496,59.0985,2.40246,0,0,0.932483,0.361213,300,0,1), +(@OGUID+383,180353,1,1,1,-1312.52,191.397,59.1709,2.68127,0,0,0.97363,0.228134,300,0,1), +(@OGUID+384,180353,1,1,1,-1314.19,188.785,59.3004,2.63022,0,0,0.96749,0.252909,300,0,1), +(@OGUID+385,180353,1,1,1,-1310.79,203.753,58.8658,1.51888,0,0,0.688516,0.725221,300,0,1), +(@OGUID+386,180353,1,1,1,-1310.8,207.802,58.8649,1.57386,0,0,0.708189,0.706023,300,0,1), +(@OGUID+387,180353,1,1,1,-1326.04,203.805,59.0962,3.37635,0,0,0.993119,-0.117109,300,0,1), +(@OGUID+388,180353,1,1,1,-1333.43,201.997,59.5005,3.39598,0,0,0.991921,-0.126853,300,0,1), +(@OGUID+389,180353,1,1,1,-1337.23,195.937,60.5344,4.95108,0,0,0.617889,-0.786265,300,0,1), +(@OGUID+390,180353,1,1,1,-1334.99,186.726,60.4348,4.95108,0,0,0.617889,-0.786265,300,0,1), +(@OGUID+391,180353,1,1,1,-1317.57,198.279,58.9668,1.782,0,0,0.7777,0.628636,300,0,1), +(@OGUID+392,179968,1,1,1,-1317.25,197.073,58.992,3.47846,0,0,0.985849,-0.167636,300,0,1), +(@OGUID+393,179968,1,1,1,-1317.89,199.355,58.9472,3.51773,0,0,0.982368,-0.18696,300,0,1), +(@OGUID+394,179968,1,1,1,-1310.51,202.173,58.8655,2.74018,0,0,0.979926,0.199361,300,0,1), +(@OGUID+395,179968,1,1,1,-1309.49,201.749,58.875,2.74803,0,0,0.980701,0.195512,300,0,1), +(@OGUID+396,179968,1,1,1,-1309.49,201.749,59.5804,2.74803,0,0,0.980701,0.195512,300,0,1), +(@OGUID+397,179968,1,1,1,-1308.66,202.545,59.6401,2.74803,0,0,0.980701,0.195512,300,0,1), +(@OGUID+398,179968,1,1,1,-1310.23,200.817,58.8769,2.77552,0,0,0.983296,0.182014,300,0,1), +(@OGUID+399,179968,1,1,1,-1309.39,203.087,58.8651,5.99173,0,0,0.145214,-0.9894,300,0,1), +(@OGUID+400,179968,1,1,1,-1307.76,202.375,58.8758,2.74018,0,0,0.979926,0.199362,300,0,1), +(@OGUID+401,179968,1,1,1,-1308.25,203.731,58.8678,4.49554,0,0,0.779471,-0.626439,300,0,1), +(@OGUID+402,179968,1,1,1,-1325.17,203.847,59.0586,4.95893,0,0,0.614796,-0.788686,300,0,1), +(@OGUID+403,179968,1,1,1,-1326.97,203.733,59.1374,5.02176,0,0,0.58972,-0.807608,300,0,1), +(@OGUID+404,179968,1,1,1,-1332.88,202.025,59.4843,5.00213,0,0,0.59762,-0.801779,300,0,1), +(@OGUID+405,179968,1,1,1,-1334.27,201.832,59.5742,4.9982,0,0,0.599193,-0.800605,300,0,1), +(@OGUID+406,179968,1,1,1,-1337.15,196.971,60.3714,0.199416,0,0,0.0995429,0.995033,300,0,1), +(@OGUID+407,179968,1,1,1,-1337.12,195.238,60.6238,0.187635,0,0,0.0936799,0.995602,300,0,1), +(@OGUID+408,179968,1,1,1,-1335.37,187.803,60.5692,0.329007,0,0,0.163763,0.9865,300,0,1), +(@OGUID+409,179968,1,1,1,-1334.83,185.873,60.319,0.348642,0,0,0.17344,0.984845,300,0,1), +(@OGUID+410,195164,1,1,1,-1334.83,185.873,61.0245,0.348642,0,0,0.17344,0.984845,300,0,1), +(@OGUID+411,195164,1,1,1,-1335.26,187.819,61.2746,0.152293,0,0,0.0760728,0.997102,300,0,1), +(@OGUID+412,195164,1,1,1,-1337.35,195.259,61.3292,0.171928,0,0,0.0858581,0.996307,300,0,1), +(@OGUID+413,195164,1,1,1,-1337.46,196.912,61.0769,0.120877,0,0,0.0604015,0.998174,300,0,1), +(@OGUID+414,195164,1,1,1,-1334.29,201.632,60.2797,0.332934,0,0,0.165699,0.986176,300,0,1), +(@OGUID+415,195164,1,1,1,-1332.57,201.932,60.1899,4.97071,0,0,0.610139,-0.792294,300,0,1), +(@OGUID+416,195164,1,1,1,-1327.13,203.723,59.8431,5.04532,0,0,0.580165,-0.814499,300,0,1), +(@OGUID+417,195164,1,1,1,-1325.23,204.052,59.7642,4.75473,0,0,0.691981,-0.721916,300,0,1), +(@OGUID+418,195164,1,1,1,-1310.25,202.407,59.5709,6.03493,0,0,0.123811,-0.992306,300,0,1), +(@OGUID+419,195164,1,1,1,-1309.5,203.196,59.5706,5.45373,0,0,0.402939,-0.915227,300,0,1), +(@OGUID+420,195164,1,1,1,-1308.14,203.883,59.5734,4.30313,0,0,0.836042,-0.548665,300,0,1), +(@OGUID+421,195164,1,1,1,-1317.92,199.34,59.6527,3.40777,0,0,0.991157,-0.132697,300,0,1), +(@OGUID+422,195164,1,1,1,-1317.29,197.153,59.6975,3.52558,0,0,0.981626,-0.190817,300,0,1), +(@OGUID+423,195164,1,1,1,-1310.59,194.661,59.7653,5.88963,0,0,0.195511,-0.980701,300,0,1), +(@OGUID+424,195164,1,1,1,-1314.3,187.375,60.1235,2.71662,0,0,0.977509,0.210891,300,0,1), +(@OGUID+425,195191,0,1,1,1822.65,268.486,60.1895,4.68401,0,0,0.717067,-0.697004,300,0,1), +(@OGUID+426,195164,0,1,1,1822.65,268.486,61.0773,3.01112,0,0,0.997873,0.0651913,300,0,1), +(@OGUID+427,195195,0,1,1,1824.44,268.244,61.0773,3.00719,0,0,0.997743,0.0671505,300,0,1), +(@OGUID+428,195192,0,1,1,1821.87,267.983,61.0774,3.23496,0,0,0.998911,-0.0466647,300,0,1), +(@OGUID+429,195215,0,1,1,1821.85,269.152,61.0774,3.13678,0,0,0.999997,0.00240572,300,0,1), +(@OGUID+430,195200,0,1,1,1827.23,267.982,60.0917,6.10166,0,0,0.0906389,-0.995884,300,0,1), +(@OGUID+431,179968,0,1,1,1811.88,256.913,59.9234,4.88429,0,0,0.643794,-0.765198,300,0,1), +(@OGUID+432,179968,0,1,1,1814.57,257.68,59.9798,4.93927,0,0,0.62252,-0.782604,300,0,1), +(@OGUID+433,179968,0,1,1,1817.01,258.573,60.0155,4.94319,0,0,0.620982,-0.783825,300,0,1), +(@OGUID+434,195198,0,1,1,1817.06,270.329,60.2343,5.35552,0,0,0.447378,-0.894345,300,0,1), +(@OGUID+435,195196,0,1,1,1818.48,267.871,60.1517,5.31233,0,0,0.466589,-0.884474,300,0,1), +(@OGUID+436,195194,0,1,1,1822.93,266.659,60.1207,0.144402,0,0,0.0721385,0.997395,300,0,1), +(@OGUID+437,195197,0,1,1,1828.05,264.454,59.8784,5.85425,0,0,0.212827,-0.97709,300,0,1), +(@OGUID+438,195197,0,1,1,1819.25,266.187,59.9856,2.08434,0,0,0.8635,0.504348,300,0,1), +(@OGUID+439,195212,0,1,1,1819.78,271.369,60.1539,4.83323,0,0,0.663117,-0.748515,300,0,1), +(@OGUID+440,195212,0,1,1,1823.45,271.665,60.2191,4.73506,0,0,0.699046,-0.715077,300,0,1), +(@OGUID+441,195199,0,1,1,1818.4,269.984,60.1338,5.27305,0,0,0.483865,-0.875142,300,0,1), +(@OGUID+442,195199,0,1,1,1825.5,270.99,60.189,0.678472,0,0,0.332767,0.943009,300,0,1), +(@OGUID+443,195303,0,1,1,1825.46,268.729,60.3853,4.50336,0,0,0.777016,-0.62948,300,0,1), +(@OGUID+444,195303,0,1,1,1819.84,268.611,60.1151,5.10419,0,0,0.555944,-0.83122,300,0,1), +(@OGUID+445,180353,0,1,1,1824.92,270.391,60.2257,3.20353,0,0,0.999521,-0.0309616,300,0,1), +(@OGUID+446,180353,0,1,1,1821.17,270.063,60.1725,3.23101,0,0,0.999001,-0.0446961,300,0,1), +(@OGUID+447,180353,0,1,1,1813.1,257.35,59.9493,4.88428,0,0,0.6438,-0.765193,300,0,1), +(@OGUID+448,180353,0,1,1,1815.67,258.419,60.0141,4.9314,0,0,0.625595,-0.780148,300,0,1), +(@OGUID+449,180353,0,1,1,1823.87,262.408,59.9219,6.00347,0,0,0.139404,-0.990236,300,0,1), +(@OGUID+450,180353,0,1,1,1829.26,260.862,59.6116,6.00347,0,0,0.139404,-0.990236,300,0,1), +(@OGUID+451,180353,0,1,1,1835.55,259.054,59.7994,6.00347,0,0,0.139404,-0.990236,300,0,1), +(@OGUID+452,180353,0,1,1,1833.15,248.323,59.8227,2.89722,0,0,0.992544,0.121883,300,0,1), +(@OGUID+453,180353,0,1,1,1822.7,250.93,60.0502,2.89722,0,0,0.992544,0.121883,300,0,1), +(@OGUID+454,180353,0,1,1,1825.45,228.409,60.0708,6.12128,0,0,0.0808658,-0.996725,300,0,1), +(@OGUID+455,180353,0,1,1,1835.52,226.764,60.2553,6.12128,0,0,0.0808658,-0.996725,300,0,1), +(@OGUID+456,180353,0,1,1,1834.41,213.818,60.216,3.02289,0,0,0.998239,0.0593187,300,0,1), +(@OGUID+457,180353,0,1,1,1828.95,214.53,60.503,3.0111,0,0,0.997872,0.0651978,300,0,1), +(@OGUID+458,180353,0,1,1,1823.25,215.279,60.2116,3.0111,0,0,0.997872,0.0651978,300,0,1), +(@OGUID+459,179968,0,1,1,1822.69,215.403,60.1776,1.39318,0,0,0.641607,0.767034,300,0,1), +(@OGUID+460,179968,0,1,1,1823.8,214.992,60.2217,1.40104,0,0,0.644614,0.764508,300,0,1), +(@OGUID+461,179968,0,1,1,1828.2,214.485,60.4552,1.51492,0,0,0.687078,0.726584,300,0,1), +(@OGUID+462,179968,0,1,1,1829.91,214.581,60.4197,1.56676,0,0,0.705677,0.708534,300,0,1), +(@OGUID+463,179968,0,1,1,1833.54,214.099,60.2353,1.51963,0,0,0.688788,0.724963,300,0,1), +(@OGUID+464,179968,0,1,1,1835.43,214.118,60.2106,1.59424,0,0,0.715348,0.698768,300,0,1), +(@OGUID+465,179968,0,1,1,1836.62,226.776,60.2415,1.5,0,0,0.681638,0.73169,300,0,1), +(@OGUID+466,179968,0,1,1,1834.29,226.723,60.3708,1.33114,0,0,0.617506,0.786566,300,0,1), +(@OGUID+467,179968,0,1,1,1826.45,228.143,60.1295,1.44109,0,0,0.659795,0.751446,300,0,1), +(@OGUID+468,179968,0,1,1,1824.26,228.134,60.0401,1.36255,0,0,0.629785,0.77677,300,0,1), +(@OGUID+469,179968,0,1,1,1834.21,247.981,59.8394,1.55105,0,0,0.70009,0.714054,300,0,1), +(@OGUID+470,179968,0,1,1,1832.03,247.781,59.8763,1.60603,0,0,0.719452,0.694542,300,0,1), +(@OGUID+471,179968,0,1,1,1823.6,250.277,60.0631,1.31936,0,0,0.612862,0.79019,300,0,1), +(@OGUID+472,179968,0,1,1,1821.45,250.783,60.0482,1.22511,0,0,0.574959,0.818182,300,0,1), +(@OGUID+473,179968,0,1,1,1822.89,262.578,59.9009,1.3115,0,0,0.609754,0.79259,300,0,1), +(@OGUID+474,179968,0,1,1,1824.7,262.186,59.8891,1.37041,0,0,0.63283,0.774291,300,0,1), +(@OGUID+475,179968,0,1,1,1828.37,261.229,59.6733,1.41753,0,0,0.650897,0.759166,300,0,1), +(@OGUID+476,179968,0,1,1,1830.13,261.054,59.5981,1.33899,0,0,0.62059,0.784135,300,0,1), +(@OGUID+477,179968,0,1,1,1834.58,258.927,59.7548,1.2526,0,0,0.58615,0.810203,300,0,1), +(@OGUID+478,179968,0,1,1,1836.16,258.179,59.8198,1.14264,0,0,0.540743,0.841188,300,0,1), +(@OGUID+479,179968,0,1,1,1815.95,271.259,60.2131,5.37594,0,0,0.438226,-0.898865,300,0,1), +(@OGUID+480,179968,0,1,1,1815.39,271.969,60.2347,5.37986,0,0,0.43646,-0.899724,300,0,1), +(@OGUID+481,179968,0,1,1,1815.39,271.969,60.9403,5.37986,0,0,0.43646,-0.899724,300,0,1), +(@OGUID+482,179968,0,1,1,1816.72,272.957,60.2132,5.44584,0,0,0.406548,-0.913629,300,0,1), +(@OGUID+483,179968,0,1,1,1817.36,272.251,60.1876,5.44584,0,0,0.406548,-0.913629,300,0,1), +(@OGUID+484,195164,0,1,1,1817.36,272.251,60.8931,5.44584,0,0,0.406548,-0.913629,300,0,1), +(@OGUID+485,195164,0,1,1,1822.88,262.575,60.6064,4.39341,0,0,0.810431,-0.585834,300,0,1), +(@OGUID+486,195164,0,1,1,1824.72,262.287,60.5945,4.60154,0,0,0.745191,-0.666851,300,0,1), +(@OGUID+487,195164,0,1,1,1828.41,261.179,60.3789,4.55834,0,0,0.75942,-0.650601,300,0,1), +(@OGUID+488,195164,0,1,1,1830.29,260.989,60.3037,4.40519,0,0,0.806966,-0.590599,300,0,1), +(@OGUID+489,195164,0,1,1,1834.49,259.129,60.4603,4.47588,0,0,0.785592,-0.618744,300,0,1), +(@OGUID+490,195164,0,1,1,1836.31,258.493,60.5252,4.12245,0,0,0.882131,-0.471004,300,0,1), +(@OGUID+491,195164,0,1,1,1821.67,250.916,60.7537,4.36199,0,0,0.819533,-0.573032,300,0,1), +(@OGUID+492,195164,0,1,1,1823.47,250.206,60.7687,4.52222,0,0,0.771047,-0.636778,300,0,1), +(@OGUID+493,195164,0,1,1,1832,248.018,60.582,4.7594,0,0,0.69029,-0.723532,300,0,1), +(@OGUID+494,195164,0,1,1,1834.14,247.916,60.545,4.74212,0,0,0.696516,-0.717541,300,0,1), +(@OGUID+495,195164,0,1,1,1836.37,227.114,60.9472,4.59683,0,0,0.746761,-0.665092,300,0,1), +(@OGUID+496,195164,0,1,1,1834.26,226.399,61.0765,4.39891,0,0,0.808818,-0.588059,300,0,1), +(@OGUID+497,195164,0,1,1,1826.36,228.105,60.835,4.52064,0,0,0.771549,-0.63617,300,0,1), +(@OGUID+498,195164,0,1,1,1824.26,228.147,60.7457,4.61018,0,0,0.742306,-0.670061,300,0,1), +(@OGUID+499,195164,0,1,1,1822.35,215.198,60.8831,4.55912,0,0,0.759166,-0.650897,300,0,1), +(@OGUID+500,195164,0,1,1,1824,215.095,60.9274,4.51986,0,0,0.771799,-0.635867,300,0,1), +(@OGUID+501,195164,0,1,1,1828.14,214.635,61.1607,4.56698,0,0,0.756604,-0.653874,300,0,1), +(@OGUID+502,195164,0,1,1,1829.93,214.463,61.1252,4.60389,0,0,0.744407,-0.667726,300,0,1), +(@OGUID+503,195164,0,1,1,1833.41,214.108,60.941,4.6196,0,0,0.73914,-0.673552,300,0,1), +(@OGUID+504,195164,0,1,1,1835.64,214.253,60.9162,4.61567,0,0,0.740461,-0.672099,300,0,1), +(@OGUID+505,179968,530,1,1,9305.97,-7211.26,15.9125,5.77224,0,0,0.252701,-0.967544,300,0,1), +(@OGUID+506,179968,530,1,1,9305.18,-7213.52,15.9982,6.0864,0,0,0.0982337,-0.995163,300,0,1), +(@OGUID+507,179968,530,1,1,9307.05,-7209.16,15.8791,5.57197,0,0,0.348162,-0.937434,300,0,1), +(@OGUID+508,195191,530,1,1,9281.03,-7204.93,16.7354,5.63479,0,0,0.318548,-0.947907,300,0,1), +(@OGUID+509,195164,530,1,1,9281.03,-7204.93,17.6235,4.91223,0,0,0.633045,-0.774115,300,0,1), +(@OGUID+510,195195,530,1,1,9282.63,-7203.82,17.6235,3.74591,0,0,0.954697,-0.297581,300,0,1), +(@OGUID+511,195192,530,1,1,9280.84,-7205.99,17.6245,4.04436,0,0,0.899845,-0.436211,300,0,1), +(@OGUID+512,195215,530,1,1,9280.06,-7205.31,17.623,4.23678,0,0,0.85378,-0.520635,300,0,1), +(@OGUID+513,195200,530,1,1,9284.67,-7200.88,17.2278,5.11643,0,0,0.550848,-0.834605,300,0,1), +(@OGUID+514,195198,530,1,1,9277.36,-7207.52,16.424,6.09424,0,0,0.0943323,-0.995541,300,0,1), +(@OGUID+515,195196,530,1,1,9279.56,-7209.09,16.4021,6.25525,0,0,0.0139694,-0.999902,300,0,1), +(@OGUID+516,195194,530,1,1,9283.41,-7205.43,16.7583,1.28368,0,0,0.598669,0.800997,300,0,1), +(@OGUID+517,195197,530,1,1,9286.75,-7200.71,17.2161,1.58213,0,0,0.711101,0.703089,300,0,1), +(@OGUID+518,195197,530,1,1,9277.64,-7209.89,16.2857,2.34789,0,0,0.922283,0.386516,300,0,1), +(@OGUID+519,195212,530,1,1,9276.6,-7204.24,16.638,5.61908,0,0,0.325986,-0.945375,300,0,1), +(@OGUID+520,195212,530,1,1,9278.68,-7200.5,17.0822,5.58766,0,0,0.340795,-0.940138,300,0,1), +(@OGUID+521,195212,530,1,1,9277.92,-7202.53,16.8511,5.67405,0,0,0.299879,-0.953977,300,0,1), +(@OGUID+522,195199,530,1,1,9275.5,-7205.98,16.4592,5.67013,0,0,0.301752,-0.953387,300,0,1), +(@OGUID+523,195199,530,1,1,9280.95,-7200.67,17.17,1.21299,0,0,0.569991,0.821651,300,0,1), +(@OGUID+524,195303,530,1,1,9282.95,-7202.64,17.0309,5.42273,0,0,0.417079,-0.90887,300,0,1), +(@OGUID+525,195303,530,1,1,9279.83,-7207.33,16.9276,6.00392,0,0,0.139179,-0.990267,300,0,1), +(@OGUID+526,180353,530,1,1,9278.21,-7205.61,16.6083,0.957736,0,0,0.460775,0.887517,300,0,1), +(@OGUID+527,180353,530,1,1,9280.55,-7202.27,16.9974,0.957736,0,0,0.460775,0.887517,300,0,1), +(@OGUID+528,180353,530,1,1,9306.54,-7210.01,16.0835,5.78401,0,0,0.247004,-0.969014,300,0,1), +(@OGUID+529,180353,530,1,1,9305.3,-7212.38,15.9549,6.14922,0,0,0.0669331,-0.997757,300,0,1), +(@OGUID+530,180353,530,1,1,9302.77,-7211.58,16.0804,3.41211,0,0,0.990867,-0.134845,300,0,1), +(@OGUID+531,180353,530,1,1,9303.11,-7223.44,16.4783,4.7355,0,0,0.698888,-0.715231,300,0,1), +(@OGUID+532,180353,530,1,1,9299.34,-7229.96,16.5578,3.149,0,0,0.999993,-0.00370244,300,0,1), +(@OGUID+533,180353,530,1,1,9293.58,-7230.07,16.8357,3.16078,0,0,0.999954,-0.00959279,300,0,1), +(@OGUID+534,180353,530,1,1,9288.71,-7230.16,16.7451,3.16078,0,0,0.999954,-0.00959279,300,0,1), +(@OGUID+535,180353,530,1,1,9283.86,-7225.95,16.2737,1.83346,0,0,0.793615,0.60842,300,0,1), +(@OGUID+536,180353,530,1,1,9282.67,-7221.53,16.1109,1.83346,0,0,0.793615,0.60842,300,0,1), +(@OGUID+537,180353,530,1,1,9281.12,-7215.74,16.1288,1.83346,0,0,0.793615,0.60842,300,0,1), +(@OGUID+538,180353,530,1,1,9286.53,-7207.75,16.5461,0.117361,0,0,0.0586467,0.998279,300,0,1), +(@OGUID+539,180353,530,1,1,9292.12,-7207.09,16.4871,0.117361,0,0,0.0586467,0.998279,300,0,1), +(@OGUID+540,180353,530,1,1,9297.13,-7206.5,16.3099,0.117361,0,0,0.0586467,0.998279,300,0,1), +(@OGUID+541,179968,530,1,1,9275.02,-7207.7,16.313,0.160557,0,0,0.0801923,0.996779,300,0,1), +(@OGUID+542,179968,530,1,1,9274.35,-7207.81,16.313,0.160557,0,0,0.0801923,0.996779,300,0,1), +(@OGUID+543,179968,530,1,1,9274.35,-7207.81,17.0197,0.160557,0,0,0.0801923,0.996779,300,0,1), +(@OGUID+544,179968,530,1,1,9274.96,-7208.85,16.233,3.30608,0,0,0.99662,-0.0821494,300,0,1), +(@OGUID+545,179968,530,1,1,9280.72,-7215.14,16.1388,0.368687,0,0,0.183301,0.983057,300,0,1), +(@OGUID+546,179968,530,1,1,9281.43,-7216.52,16.1099,0.490423,0,0,0.242762,0.970086,300,0,1), +(@OGUID+547,179968,530,1,1,9282.59,-7220.71,16.0999,0.309781,0,0,0.154272,0.988028,300,0,1), +(@OGUID+548,179968,530,1,1,9282.9,-7222.09,16.1318,0.352978,0,0,0.175574,0.984466,300,0,1), +(@OGUID+549,179968,530,1,1,9283.53,-7225.25,16.2282,0.553255,0,0,0.273113,0.961982,300,0,1), +(@OGUID+550,179968,530,1,1,9284.43,-7226.71,16.3315,0.404029,0,0,0.200643,0.979664,300,0,1), +(@OGUID+551,179968,530,1,1,9287.94,-7231.05,16.794,1.66459,0,0,0.739479,0.673179,300,0,1), +(@OGUID+552,179968,530,1,1,9289.7,-7230.64,16.8237,1.73528,0,0,0.762805,0.646629,300,0,1), +(@OGUID+553,179968,530,1,1,9292.94,-7230.5,16.8598,1.6214,0,0,0.724769,0.688993,300,0,1), +(@OGUID+554,179968,530,1,1,9294.52,-7230.09,16.842,1.77455,0,0,0.775353,0.631527,300,0,1), +(@OGUID+555,179968,530,1,1,9298.32,-7229.79,16.6317,1.53108,0,0,0.692925,0.72101,300,0,1), +(@OGUID+556,179968,530,1,1,9300.41,-7229.9,16.4162,1.64103,0,0,0.731498,0.681844,300,0,1), +(@OGUID+557,179968,530,1,1,9302.88,-7224.19,16.4577,2.9173,0,0,0.993718,0.11191,300,0,1), +(@OGUID+558,179968,530,1,1,9303.3,-7222.68,16.4909,2.99977,0,0,0.997487,0.0708516,300,0,1), +(@OGUID+559,179968,530,1,1,9302.54,-7210.81,16.0667,3.32964,0,0,0.995583,-0.0938842,300,0,1), +(@OGUID+560,179968,530,1,1,9302.88,-7212.35,16.1022,3.40818,0,0,0.99113,-0.132898,300,0,1), +(@OGUID+561,179968,530,1,1,9298.13,-7206.27,16.2716,4.76692,0,0,0.687567,-0.726121,300,0,1), +(@OGUID+562,179968,530,1,1,9296.25,-7206.56,16.3527,4.85331,0,0,0.65557,-0.755135,300,0,1), +(@OGUID+563,179968,530,1,1,9293.1,-7206.86,16.4519,4.85331,0,0,0.65557,-0.755135,300,0,1), +(@OGUID+564,179968,530,1,1,9291.38,-7207.12,16.5108,4.84703,0,0,0.657939,-0.753071,300,0,1), +(@OGUID+565,179968,530,1,1,9287.17,-7207.68,16.5565,4.91379,0,0,0.63244,-0.77461,300,0,1), +(@OGUID+566,179968,530,1,1,9285.93,-7208.03,16.53,4.83132,0,0,0.663832,-0.747882,300,0,1), +(@OGUID+567,195164,530,1,1,9275.34,-7208.59,16.8732,2.23558,0,0,0.899136,0.437669,300,0,1), +(@OGUID+568,195164,530,1,1,9280.83,-7214.95,16.8446,0.287796,0,0,0.143402,0.989665,300,0,1), +(@OGUID+569,195164,530,1,1,9281.47,-7216.43,16.8154,0.653006,0,0,0.320733,0.94717,300,0,1), +(@OGUID+570,195164,530,1,1,9282.72,-7220.66,16.8067,0.169986,0,0,0.0848909,0.99639,300,0,1), +(@OGUID+571,195164,530,1,1,9282.76,-7222.2,16.8376,0.307431,0,0,0.153111,0.988209,300,0,1), +(@OGUID+572,195164,530,1,1,9283.49,-7225.2,16.934,0.668714,0,0,0.328162,0.944621,300,0,1), +(@OGUID+573,195164,530,1,1,9284.4,-7226.69,17.0374,0.495927,0,0,0.24543,0.969414,300,0,1), +(@OGUID+574,195164,530,1,1,9287.91,-7231.42,17.4998,1.74471,0,0,0.765845,0.643025,300,0,1), +(@OGUID+575,195164,530,1,1,9289.82,-7230.78,17.5293,1.8154,0,0,0.788089,0.615562,300,0,1), +(@OGUID+576,195164,530,1,1,9292.8,-7230.59,17.5657,1.64653,0,0,0.733371,0.679829,300,0,1), +(@OGUID+577,195164,530,1,1,9294.49,-7230.15,17.5487,1.61119,0,0,0.721244,0.692681,300,0,1), +(@OGUID+578,195164,530,1,1,9298.31,-7229.87,17.3376,1.67402,0,0,0.742645,0.669685,300,0,1), +(@OGUID+579,195164,530,1,1,9300.33,-7229.86,17.1223,1.54051,0,0,0.696317,0.717734,300,0,1), +(@OGUID+580,195164,530,1,1,9302.9,-7224.07,17.1636,3.09952,0,0,0.999779,0.0210337,300,0,1), +(@OGUID+581,195164,530,1,1,9303.32,-7222.57,17.197,3.05633,0,0,0.999091,0.0426208,300,0,1), +(@OGUID+582,195164,530,1,1,9305.22,-7213.43,16.7041,2.90317,0,0,0.992903,0.118928,300,0,1), +(@OGUID+583,195164,530,1,1,9307.03,-7209.21,16.5859,2.57331,0,0,0.959902,0.280336,300,0,1), +(@OGUID+584,195164,530,1,1,9302.46,-7210.65,16.7734,3.27231,0,0,0.997865,-0.065312,300,0,1), +(@OGUID+585,195164,530,1,1,9302.7,-7212.36,16.8081,3.26838,0,0,0.997991,-0.0633526,300,0,1), +(@OGUID+586,195164,530,1,1,9298.14,-7206.38,16.9784,4.81562,0,0,0.669685,-0.742645,300,0,1), +(@OGUID+587,195164,530,1,1,9296.39,-7206.61,17.0586,4.77242,0,0,0.685567,-0.728009,300,0,1), +(@OGUID+588,195164,530,1,1,9293.13,-7206.97,17.1583,4.741,0,0,0.696919,-0.71715,300,0,1), +(@OGUID+589,195164,530,1,1,9291.36,-7207.04,17.2164,4.88237,0,0,0.644529,-0.76458,300,0,1), +(@OGUID+590,195164,530,1,1,9287.29,-7207.67,17.2622,4.92164,0,0,0.629394,-0.777087,300,0,1), +(@OGUID+591,195164,530,1,1,9285.87,-7208.02,17.2357,4.89415,0,0,0.640014,-0.768363,300,0,1); +-- Link Creatures to event +DELETE FROM `game_event_creature` WHERE `eventEntry`=@Event AND `guid` BETWEEN @CGUID AND @CGUID+3998; +INSERT INTO game_event_creature SELECT @Event, creature.guid FROM `creature` WHERE creature.guid BETWEEN @CGUID AND @CGUID+3998; +-- Link Objects to event +DELETE FROM `game_event_gameobject` WHERE `eventEntry`=@Event AND `guid` BETWEEN @OGUID AND @OGUID+591; +INSERT INTO `game_event_gameobject` SELECT @Event, gameobject.guid FROM `gameobject` WHERE gameobject.guid BETWEEN @OGUID AND @OGUID+591; +-- ------------------ +-- -- Event Quests -- +-- ------------------ +-- Sets the chains from the event: "Pilgrim's Bounty" for Horde. +UPDATE `quest_template` SET `RequiredRaces`=690 WHERE `Id` IN (14037,14040,14041,14043,14044,14047); +-- Sets the chains from the event: "Pilgrim's Bounty" for Alliance. +UPDATE `quest_template` SET `RequiredRaces`=1101 WHERE `Id` IN (14023,14024,14028,14030,14033,14035); +-- Sets the dailys from the event: "Pilgrim's Bounty" for Horde. +UPDATE `quest_template` SET `RequiredRaces`=690 WHERE `Id` IN (14059,14061,14062,14060,14058); +-- Sets the dailys from the event: "Pilgrim's Bounty" for Alliance. +UPDATE `quest_template` SET `RequiredRaces`=1101 WHERE `Id` IN (14053,14048,14051,14055,14054); +-- Sets Quest "Sharing a Bountiful Feast" from the event: "Pilgrim's Bounty" for Horde. +UPDATE `quest_template` SET `RequiredRaces`=690 WHERE `Id` =14065; +-- Sets Quest "Sharing a Bountiful Feast" from the event: "Pilgrim's Bounty" for Alliance. +UPDATE `quest_template` SET `RequiredRaces`=1101 WHERE `Id` =14064; +-- Sets the quests in chain. +-- Alliance +UPDATE `quest_template` SET `PrevQuestId`=14023 WHERE `Id`=14024; -- Spice Bread Stuffing completed before starting Pumpkin Pie +UPDATE `quest_template` SET `PrevQuestId`=14024 WHERE `Id`=14028; -- Pumpkin Pie completed before starting Cranberry Chutney +UPDATE `quest_template` SET `PrevQuestId`=14028 WHERE `Id`=14030; -- Chanberry Chutney completed before starting They're Ravenous in Darnassus +UPDATE `quest_template` SET `PrevQuestId`=14030 WHERE `Id`=14033; -- They're Ravenous in Darnassus completed before starting Candied Sweet Potatoes +UPDATE `quest_template` SET `PrevQuestId`=14033 WHERE `Id`=14035; -- Candied Sweet Potatoes completed before starting Slow-roasted Turkey +-- Horde +UPDATE `quest_template` SET `PrevQuestId`=14037 WHERE `Id`=14040; -- Spice Bread Stuffing completed before starting Pumpkin Pie +UPDATE `quest_template` SET `PrevQuestId`=14040 WHERE `Id`=14041; -- Pumpkin Pie completed before starting Cranberry Chutney +UPDATE `quest_template` SET `PrevQuestId`=14041 WHERE `Id`=14043; -- Cranberry Chutney completed before starting Candied Sweet Potatoes +UPDATE `quest_template` SET `PrevQuestId`=14043 WHERE `Id`=14044; -- Candied Sweet Potatoes completed before starting Undersupplied in the Undercity +UPDATE `quest_template` SET `PrevQuestId`=14044 WHERE `Id`=14047; -- Undersupplied in the Undercity completed before starting Slow-roasted Turkey +-- Adds the creature involved for the Chain Quests of the event: "Pilgrim's Bounty". +DELETE FROM `creature_involvedrelation` WHERE `quest` IN (14022,14023,14024,14028,14030,14033,14035,14048,14051,14053,14054,14055,14036,14037,14040,14041,14043,14044,14047,14058,14059,14060,14061,14062); +INSERT INTO `creature_involvedrelation` (`id`,`quest`) VALUES +-- Alliance +(34675,14022), -- Finish Pilgrim's Bounty on Gregory Tabor +(34744,14023), -- Finish Spice Bread Stuffing on Jasper Moore +(34644,14024), -- Finish Pumpkin Pie on Edward Winslow +(34744,14028), -- Finish Cranberry Chutney on Jasper Moore +(34676,14030), -- Finish They're Ravenous In Darnassus on Isaac Allerton +(34675,14033), -- Finish Candied Sweet Potatoes on Gregory Tabor +(34676,14035), -- Finish Slow-roasted Turkey on Isaac Allerton +-- Alliance Daily +(34708,14048), -- Finish Can't Get Enough Turkey on Caitrin Ironkettle +(34708,14051), -- Finish Don't Forget The Stuffing on Caitrin Ironkettle +(34710,14053), -- Finish We're Out of Cranberry Chutney Again? on Ellen Moore +(34711,14054), -- Finish Easy as Pie on Mary Allerton +(34744,14055), -- Finish She Says Potato on Jasper Moore +-- Horde +(34677,14036), -- Finish Pilgrim's Bounty on Miles Standish +(34768,14037), -- Finish Spice Bread Stuffing on William Mullins +(34679,14040), -- Finish Pumpkin Pie on Francis Eaton +(34678,14041), -- Finish Cranberry Chutney on Dokin Farplain +(34679,14043), -- Finish Candied Sweet Potatoes on Francis Eaton +(34677,14044), -- Finish Undersupplied in the Undercity on Miles Standish +(34679,14047), -- Finish Slow-roasted Turkey on Francis Eaton +-- Horde Daily +(34768,14058), -- Finish She Says Potato on William Mullins +(34712,14059), -- Finish We're Out of Cranberry Chutney Again? on Roberta Carter +(34714,14060), -- Finish Easy as Pie on Mahara Goldwheat +(34713,14061), -- Finish Can't Get Enough Turkey on Ondani Greatmill +(34713,14062); -- Finish Don't Forget The Stuffing on Ondani Greatmill +-- Set the quest on creatures that are available outside of eventtime as well +DELETE FROM `game_event_creature_quest` WHERE `quest` IN (14022,14036); +INSERT INTO `game_event_creature_quest` (`eventEntry`,`id`,`quest`) VALUES +(@Event,18927,14022), -- Start Pilgrim's Bounty on Human Commoner +(@Event,20102,14022), -- Start Pilgrim's Bounty on Goblin Commoner +(@Event,19169,14036), -- Start Pilgrim's Bounty on Blood Elf Commoner +(@Event,19175,14036), -- Start Pilgrim's Bounty on Orc Commoner +(@Event,20102,14036); -- Start Pilgrim's Bounty on Goblin Commoner +-- Insert the quest relations on npc'sthat are only available during the event +DELETE FROM `creature_questrelation` WHERE `quest` IN (14023,14024,14028,14030,14033,14035,14037,14040,14041,14043,14044,14047,14048,14051,14054,14055,14053,14061,14062,14060,14058,14059); +INSERT INTO `creature_questrelation` (`id`,`quest`) VALUES +-- Alliance +(34675,14023), -- Start Spice Bread Stuffing on Gregory Tabor +(34744,14024), -- Start Pumpkin Pie on Jasper Moore +(34644,14028), -- Start Cranberry Chutney on Edward Winslow +(34744,14030), -- Start They're Ravemous In Darnassus on Jasper Moore +(34676,14033), -- Start Candied Sweet Potatoes on Isaac Allerton +(34675,14035), -- Start Slow-roasted Turkey on Gregory Tabor +-- Horde +(34768,14037), -- Start Spice Bread Stuffing on Miles Standish +(34768,14040), -- Start Pumpkin Pie on William Mullins +(34679,14041), -- Start Cranberry Chutney on Francis Eaton +(34678,14043), -- Start Candied Sweet Potatoes on Dokin Farplain +(34679,14044), -- Start Undersupplied in the Undercity on Francis Eaton +(34677,14047), -- Start Slow-roasted Turkey on Miles Standish +-- Alliance Daily +(34708,14048), -- Start Can't Get Enough Turkey on Caitrin Ironkettle +(34708,14051), -- Start Don't Forget The Stuffing on Caitrin Ironkettle +(34711,14054), -- Start Easy as Pie on Mary Allerton +(34744,14055), -- Start She Says Potato on Jasper Moore +(34710,14053), -- Start We're Out of Cranberry Chutney Again? on Ellen Moore +-- Horde Daily +(34713,14061), -- Start Can't Get Enough Turkey on Ondani Greatmill +(34713,14062), -- Start Don't Forget The Stuffing on Ondani Greatmill +(34714,14060), -- Start Easy as Pie on Mahara Goldwheat +(34768,14058), -- Start She Says Potato on William Mullins +(34712,14059); -- Start We're Out of Cranberry Chutney Again? on Roberta Carter +-- ----------------- +-- -- Event Loots -- +-- ----------------- +-- Sets Wild Turkey and Lonely Turkey neutral. +UPDATE `creature_template` SET `faction_A`=31,`faction_H`=31 WHERE `entry` IN (32820,32956); +-- Adds the loot to those turkeys. +SET @turkey:=32820; -- Wild Turkey +SET @turkey2:=32956; -- Lonely Turkey +DELETE FROM `creature_loot_template` WHERE `entry` IN (32820,32956); +INSERT INTO `creature_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES +(@turkey,44834,100,1,0,1,1), +(@turkey2,44834,100,1,0,1,1); +-- Sets loot id for those turkeys. +UPDATE `creature_template` SET `lootid`=32820 WHERE `entry`=32820; +UPDATE `creature_template` SET `lootid`=32956 WHERE `entry`=32956; +-- Fix loot for cooking book +DELETE FROM `item_loot_template` WHERE `entry` IN (46809,46810); +INSERT INTO `item_loot_template` (`entry`,`item`,`ChanceOrQuestChance`,`lootmode`,`groupid`,`mincountOrRef`,`maxcount`) VALUES +-- Alliance book +(46809,44861,100,0,0,1,1), -- Recipe: Slow-Roasted Turkey +(46809,44859,100,0,0,1,1), -- Recipe: Candied Sweet Potato +(46809,44858,100,0,0,1,1), -- Recipe: Cranberry Chutney +(46809,44862,100,0,0,1,1), -- Recipe: Pumpkin Pie +(46809,44860,100,0,0,1,1), -- Recipe: Spice Bread Stuffing +-- Horde book +(46810,46806,100,0,0,1,1), -- Recipe: Slow-Roasted Turkey +(46810,46805,100,0,0,1,1), -- Recipe: Candied Sweet Potato +(46810,46804,100,0,0,1,1), -- Recipe: Cranberry Chutney +(46810,46807,100,0,0,1,1), -- Recipe: Pumpkin Pie +(46810,46803,100,0,0,1,1); -- Recipe: Spice Bread Stuffing diff --git a/sql/updates/world/2012_11_19_02_world_misc.sql b/sql/updates/world/2012_11_19_02_world_misc.sql new file mode 100644 index 00000000000..1f792b8da41 --- /dev/null +++ b/sql/updates/world/2012_11_19_02_world_misc.sql @@ -0,0 +1,6 @@ +SET @Event = 26; -- game_event.entry - Set by TDB +DELETE FROM `game_event` WHERE `eventEntry`=@Event; +INSERT INTO `game_event` (`eventEntry`,`start_time`,`end_time`,`occurence`,`length`,`holiday`,`description`,`world_event`) VALUES +(@Event,'2012-11-18 01:00:00','2020-12-31 05:00:00',525600,10020,404, 'Pilgrim''s Bounty',0); +-- undo hack, reset to sniffed values +UPDATE `gameobject_template` SET `data10`=37639,`data5`=0 WHERE `entry`=184867; diff --git a/sql/updates/world/2012_11_19_03_world_ysera.sql b/sql/updates/world/2012_11_19_03_world_ysera.sql new file mode 100644 index 00000000000..24a729f96dd --- /dev/null +++ b/sql/updates/world/2012_11_19_03_world_ysera.sql @@ -0,0 +1,71 @@ +-- Dragonblight (Emerald Dragonshrine) +-- Ysera should be laying down +DELETE FROM `creature_addon` WHERE `guid`=108844; +INSERT INTO `creature_addon` (`guid`,`bytes1`) VALUES +(108844,3); +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Grizzly Hills (Bloodmoon Isle) +-- Adding teleport +DELETE FROM `game_tele` WHERE `id`=1422; +INSERT INTO `game_tele` (`id`,`position_x`,`position_y`,`position_z`,`orientation`,`map`,`name`) VALUES +(1422,4682.07,-5569.67,53.61,3.85,571,"BloodmoonIsle"); -- Teleport location (roughly): http://www.wowhead.com/maps?data=394:844258 +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Bloodmoon worgen +UPDATE `creature` SET `spawndist`=2.5,`movementType`=1 WHERE `guid` IN (108834,108799,108829); +UPDATE `creature` SET `spawndist`=5,`movementType`=1 WHERE `guid` IN (108830,108828,108784); +UPDATE `creature` SET `spawndist`=6,`movementType`=1 WHERE `guid`=108784; +-- Bloodmoon Cultists +UPDATE `creature` SET `position_x`=4599.94,`position_y`=-5706.74,`position_z`=184.50,`orientation`=3.72,`spawndist`=5 WHERE `guid`=109406; +DELETE FROM `creature_addon` WHERE `guid` IN (109406,109407,109383,109412,109334,109385,109168,109147,109239,109240,109410,109411,109146,109169,109403,113585,109405,109408,109404); +INSERT INTO `creature_addon` (`guid`,`path_id`,`bytes1`) VALUES +(109406,0,8),(109407,0,8),(109383,0,8), +(109412,0,1),(109334,0,1),(109168,0,1), +(109147,0,1),(109240,0,1),(109239,0,1), +(109411,0,1),(109410,0,1),(109169,0,1), +(109146,0,1),(109403,0,8),(113585,0,8), +(109405,0,8),(109408,0,8),(109404,1094040,0), +(109385,1093850,0); +DELETE FROM `creature` WHERE `guid` IN (113585,109404,109385); +INSERT INTO `creature` (`guid`,`id`,`map`,`position_x`,`position_y`,`position_z`,`orientation`,`spawntimesecs`,`spawndist`,`curhealth`,`curmana`,`MovementType`) VALUES +(109404,27024,571,4676.16,-5575.82,53.61,0.85,120,6,9940,0,2), +(109385,26935,571,4550.15,-5493.45,2.19,0.85,120,6,9940,0,2); +-- Pathing Bloodmoon Cultist 1/2 +DELETE FROM `waypoint_data` WHERE `id` IN (1093850,1094040); +INSERT INTO `waypoint_data` (`id`,`point`,`position_x`,`position_y`,`position_z`,`delay`) VALUES +(1093850,1,4550.159180,-5493.454102,2.198123,0), +(1093850,2,4560.156250,-5505.391113,2.247392,0), +(1093850,3,4568.288574,-5540.102051,2.325547,0), +(1093850,4,4570.309570,-5555.015625,3.725862,0), +(1093850,5,4593.584473,-5583.147461,17.485140,0), +(1093850,6,4640.961426,-5587.870117,43.030090,0), +(1093850,7,4663.515625,-5596.525391,51.983559,0), +(1093850,8,4666.571777,-5585.750488,53.366554,0), +(1093850,9,4679.179199,-5572.404297,53.618946,0), +(1093850,10,4659.498047,-5593.301270,50.779484,0), +(1093850,11,4633.121582,-5588.121582,38.891140,0), +(1093850,12,4607.767090,-5586.987793,24.787226,0), +(1093850,13,4588.015625,-5577.846680,13.770270,0), +(1093850,14,4570.691895,-5554.702148,3.706614,0), +(1093850,15,4564.821289,-5511.260742,2.249003,0), +-- Pathing Bloodmoon Cultist 2/2 +(1094040,1,4676.167969,-5575.823730,53.619122,3000), +(1094040,2,4665.977051,-5586.124512,53.232887,0), +(1094040,3,4668.571289,-5599.335938,53.233620,0), +(1094040,4,4678.922363,-5609.084961,58.034130,0), +(1094040,5,4691.944336,-5631.230469,74.489761,0), +(1094040,6,4692.178711,-5648.943359,79.715866,0), +(1094040,7,4675.570313,-5656.392090,85.288292,0), +(1094040,8,4643.766113,-5657.881836,105.69108,0), +(1094040,9,4630.772461,-5652.050293,110.18435,0), +(1094040,10,4647.054688,-5657.352539,103.57666,0), +(1094040,11,4674.222656,-5656.737793,85.933739,0), +(1094040,12,4692.171387,-5649.309082,79.797195,0), +(1094040,13,4692.635254,-5633.777832,75.973076,0), +(1094040,14,4677.485352,-5607.687500,57.116299,0), +(1094040,15,4665.121094,-5596.857910,52.347866,0), +(1094040,16,4666.613770,-5585.797363,53.372700,0); +-- ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- +-- Varlam +UPDATE `creature` SET `position_x`=4700.48,`position_y`=-5568.50,`position_z`=53.61,`orientation`=3.39 WHERE `guid`=113673; +-- Shade of Arugal +UPDATE `creature` SET `position_x`=4590.02,`position_y`=-5712.43,`position_z`=184.50,`orientation`=1.01 WHERE `guid`=108492; diff --git a/sql/updates/world/2012_11_20_00_world_creature_text.sql b/sql/updates/world/2012_11_20_00_world_creature_text.sql new file mode 100644 index 00000000000..5b89db507d8 --- /dev/null +++ b/sql/updates/world/2012_11_20_00_world_creature_text.sql @@ -0,0 +1,427 @@ +-- Undercity +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000197 AND -1000196; +DELETE FROM `creature_text` WHERE `entry`=10181; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`probability`,`comment`) VALUES +(10181,0,'%s kneels down and pick up the amulet.',16,100,'npc_lady_sylvanas_windrunner EMOTE_LAMENT_END'), +(10181,1,'Belore...',14,100,'npc_lady_sylvanas_windrunner SAY_LAMENT_END'); + +-- Ironaya +DELETE FROM `script_texts` WHERE `entry`=-1070000; +DELETE FROM `creature_text` WHERE `entry`=7228; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(7228,0,'None may steal the secrets of the makers!',14,5851,100,'ironaya SAY_AGGRO'); + +-- Opera +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532028 AND -1532025; +DELETE FROM `creature_text` WHERE `entry`=17535; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(17535,0,'Oh at last, at last. I can go home.',14,9190,100,'dorothee SAY_DOROTHEE_DEATH'), +(17535,1,"Don't let them hurt us, Tito! Oh, you won't, will you?",14,9191,100,'dorothee SAY_DOROTHEE_SUMMON'), +(17535,2,'Tito, oh Tito, no!',14,9192,100,'dorothee SAY_DOROTHEE_TITO_DEATH'), +(17535,3,'Oh dear, we simply must find a way home! The old wizard could be our only hope! Strawman, Roar, Tinhead, will you... wait! Oh golly, look! We have visitors!',14,9195,100,'dorothee SAY_DOROTHEE_AGGRO'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532031 AND -1532029; +DELETE FROM `creature_text` WHERE `entry`=17546; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(17546,0,"Wanna fight? Huh? Do ya? C'mon, I'll fight you with both claws behind my back!",14,9227,100,'roar SAY_ROAR_AGGRO'), +(17546,1,"You didn't have to go and do that.",14,9229,100,'roar SAY_ROAR_DEATH'), +(17546,2,"I think I'm going to go take fourty winks.",14,9230,100,'roar SAY_ROAR_SLAY'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532034 AND -1532032; +DELETE FROM `creature_text` WHERE `entry`=17543; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(17543,0,"Now what should I do with you? I simply can't make up my mind.",14,9254,100,'strawman SAY_STRAWMAN_AGGRO'), +(17543,1,"Don't let them make a mattress... out of me.",14,9256,100,'strawman SAY_STRAWMAN_DEATH'), +(17543,2,"I guess I'm not a failure after all.",14,9257,100,'strawman SAY_STRAWMAN_SLAY'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532038 AND -1532035; +DELETE FROM `creature_text` WHERE `entry`=17547; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(17547,0,"I could really use a heart. Say, can I have yours?",14,9268,100,'tinhead SAY_TINHEAD_AGGRO'), +(17547,1,"Back to being an old rustbucket.",14,9270,100,'tinhead SAY_TINHEAD_DEATH'), +(17547,2,"Guess I'm not so rusty, after all.",14,9271,100,'tinhead SAY_TINHEAD_SLAY'), +(17547,3,"%s begins to rust.",16,0,100,'tinhead EMOTE_RUST'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532042 AND -1532039; +DELETE FROM `creature_text` WHERE `entry`=18168; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(18168,0,0,"Woe to each and every one of you my pretties! <cackles>",14,9179,100,'crone SAY_CRONE_AGGRO'), +(18168,0,1,"It will all be over soon! <cackles>",14,9307,100,'crone SAY_CRONE_AGGRO2'), +(18168,1,0,"How could you? What a cruel, cruel world!",14,9178,100,'crone SAY_CRONE_DEATH'), +(18168,2,0,"Fixed you, didn't I? <cackles>",14,9180,100,'crone SAY_CRONE_SLAY'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532045 AND -1532043; +DELETE FROM `creature_text` WHERE `entry`=17521; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(17521,0,"All the better to own you with!",14,9276,100,'wolf SAY_WOLF_AGGRO'), +(17521,1,"Mmmm... delicious.",14,9277,100,'SAY_WOLF_SLAY'), +(17521,2,"Run away little girl, run away!",14,9278,100,'SAY_WOLF_HOOD'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532051 AND -1532046; +DELETE FROM `creature_text` WHERE `entry`=17534; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(17534,0,"What devil art thou, that dost torment me thus?",14,9196,100,'julianne SAY_JULIANNE_AGGRO'), +(17534,1,"Where is my lord? Where is my Romulo?",14,9199,100,'julianne SAY_JULIANNE_ENTER'), +(17534,2,"Romulo, I come! Oh... this do I drink to thee!",14,9199,100,'julianne SAY_JULIANNE_DEATH01'), +(17534,3,"Where is my Lord? Where is my Romulo? Ohh, happy dagger! This is thy sheath! There rust, and let me die!",14,9310,100,'julianne SAY_JULIANNE_DEATH02'), +(17534,4,"Come, gentle night; and give me back my Romulo!",14,9200,100,'julianne SAY_JULIANNE_RESURRECT'), +(17534,5,"Parting is such sweet sorrow.",14,9201,100,'julianne SAY_JULIANNE_SLAY'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532056 AND -1532052; +DELETE FROM `creature_text` WHERE `entry`=17533; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(17533,0,"Wilt thou provoke me? Then have at thee, boy!",14,9233,100,'romulo SAY_ROMULO_AGGRO'), +(17533,1,"Thou smilest... upon the stroke that... murders me.",14,9235,100,'romulo SAY_ROMULO_DEATH'), +(17533,2,"This day's black fate on more days doth depend. This but begins the woe. Others must end.",14,9236,100,'romulo SAY_ROMULO_ENTER'), +(17533,3,"Thou detestable maw, thou womb of death; I enforce thy rotten jaws to open!",14,9237,100,'romulo SAY_ROMULO_RESURRECT'), +(17533,4,"How well my comfort is revived by this!",14,9238,100,'romulo SAY_ROMULO_SLAY'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532114 AND -1532103; +DELETE FROM `creature_text` WHERE `entry`=16812; +INSERT INTO `creature_text`(`entry`,`groupid`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(16812,0,"Welcome Ladies and Gentlemen, to this evening's presentation!",14,9174,100,'barnes OZ1'), +(16812,1,"Tonight we plumb the depths of the human soul as we join a lost, lonely girl trying desperately -- with the help of her loyal companions -- to find her way home!",14,9338,100,'barnes OZ2'), +(16812,2,"But she is pursued... by a wicked malevolent crone!",14,9339,100,'barnes OZ3'), +(16812,3,"Will she survive? Will she prevail? Only time will tell. And now ... on with the show!",14,9340,100,'barnes OZ4'), +(16812,4,"Good evening, Ladies and Gentlemen! Welcome to this evening's presentation!",14,9175,100,'barnes HOOD1'), +(16812,5,"Tonight, things are not what they seem. For tonight, your eyes may not be trusted",14,9335,100,'barnes HOOD2'), +(16812,6,"Take for instance, this quiet, elderly woman, waiting for a visit from her granddaughter. Surely there is nothing to fear from this sweet, grey-haired, old lady.",14,9336,100,'barnes HOOD3'), +(16812,7,"But don't let me pull the wool over your eyes. See for yourself what lies beneath those covers! And now... on with the show!",14,9337,100,'barnes HOOD4'), +(16812,8,"Welcome, Ladies and Gentlemen, to this evening's presentation!",14,9176,100,'barnes RAJ1'), +(16812,9,"Tonight, we explore a tale of forbidden love!",14,9341,100,'barnes RAJ2'), +(16812,10,"But beware, for not all love stories end happily, as you may find out. Sometimes, love pricks like a thorn.",14,9342,100,'barnes RAJ3'), +(16812,11,"But don't take it from me, see for yourself what tragedy lies ahead when the paths of star-crossed lovers meet. And now...on with the show!",14,9343,100,'barnes RAJ4'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532102 AND -1532091; +DELETE FROM `creature_text` WHERE `entry`=15690; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(15690,0,0,"Madness has brought you here to me. I shall be your undoing!",14,9218,100,'malchezaar SAY_AGGRO'), +(15690,1,0,"Simple fools! Time is the fire in which you'll burn!",14,9220,100,'malchezaar SAY_AXE_TOSS1'), +(15690,2,0,"I see the subtlety of conception is beyond primitives such as you.",14,9317,100,'malchezaar SAY_AXE_TOSS2'), +(15690,3,0,"Who knows what secrets hide in the dark.",14,9223,100,'malchezaar SAY_SPECIAL1'), +(15690,4,0,"The cerestial forces are mine to manipulate.",14,9320,100,'malchezaar SAY_SPECIAL2'), +(15690,5,0,"How can you hope to withstand against such overwhelming power?",14,9321,100,'malchezaar SAY_SPECIAL3'), +(15690,6,0,"Surely you did not think you could win.",14,9222,100,'malchezaar SAY_SLAY1'), +(15690,6,1,"Your greed, your foolishness has brought you to this end.",14,9318,100,'malchezaar SAY_SLAY2'), +(15690,6,2,"You are, but a plaything, unfit even to amuse.",14,9319,100,'malchezaar SAY_SLAY3'), +(15690,7,0,"All realities, all dimensions are open to me!",14,9224,100,'malchezaar SAY_SUMMON1'), +(15690,7,1,"You face not Malchezaar alone, but the legions I command!",14,9322,100,'malchezaar SAY_SUMMON2'), +(15690,8,0,"I refuse to concede defeat. I am a prince of the Eredar! I am...",14,9221,100,'malchezaar SAY_DEATH'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532088 AND -1532073; +DELETE FROM `creature_text` WHERE `entry`=16524; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(16524,0,0,"Please, no more. My son... he's gone mad!",14,9241,100,'aran SAY_AGGRO1'), +(16524,0,1,"I'll not be tortured again!",14,9323,100,'aran SAY_AGGRO2'), +(16524,0,2,"Who are you? What do you want? Stay away from me!",14,9324,100,'aran SAY_AGGRO3'), +(16524,1,0,"I'll show you this beaten dog still has some teeth!",14,9245,100,'aran SAY_FLAMEWREATH1'), +(16524,1,1,"Burn you hellish fiends!",14,9326,100,'aran SAY_FLAMEWREATH2'), +(16524,2,0,"I'll freeze you all!",14,9246,100,'aran SAY_BLIZZARD1'), +(16524,2,1,"Back to the cold dark with you!",14,9327,100,'aran SAY_BLIZZARD2'), +(16524,3,0,"Yes, yes, my son is quite powerful... but I have powers of my own!",14,9242,100,'aran SAY_EXPLOSION1'), +(16524,3,1,"I am not some simple jester! I am Nielas Aran!",14,9325,100,'aran SAY_EXPLOSION2'), +(16524,4,0,"Surely you would not deny an old man a replenishing drink? No, no I thought not.",14,9248,100,'aran SAY_DRINK'), +(16524,5,0,"I'm not finished yet! No, I have a few more tricks up me sleeve.",14,9251,100,'aran SAY_ELEMENTALS'), +(16524,6,0,"I want this nightmare to be over!",14,9250,100,'aran SAY_KILL1'), +(16524,6,1,"Torment me no more!",14,9328,100,'aran SAY_KILL2'), +(16524,7,0,"You've wasted enough of my time. Let these games be finished!",14,9247,100,'aran SAY_TIMEOVER'), +(16524,8,0,"At last... The nightmare is.. over...",14,9244,100,'aran SAY_DEATH'), +(16524,9,0,"Where did you get that?! Did HE send you?!",14,9249,100,'aran SAY_ATIESH'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532072 AND -1532065; +DELETE FROM `creature_text` WHERE `entry`=15688; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(15688,0,0,"Your blood will anoint my circle.",14,9264,100,'terestian SAY_SLAY1'), +(15688,0,1,"The great one will be pleased.",14,9329,100,'terestian SAY_SLAY2'), +(15688,1,0,"My life, is yours. Oh great one.",14,9262,100,'terestian SAY_DEATH'), +(15688,2,0,"Ah, you're just in time. The rituals are about to begin.",14,9260,100,'terestian SAY_AGGRO'), +(15688,3,0,"Please, accept this humble offering, oh great one.",14,9263,100,'terestian SAY_SACRIFICE1'), +(15688,3,1,"Let the sacrifice serve his testament to my fealty.",14,9330,100,'terestian SAY_SACRIFICE2'), +(15688,4,0,"Come, you dwellers in the dark. Rally to my call!",14,9265,100,'terestian SAY_SUMMON1'), +(15688,4,1,"Gather, my pets. There is plenty for all.",14,9331,100,'terestian SAY_SUMMON2'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532017 AND -1532011; +DELETE FROM `creature_text` WHERE `entry`=15687; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(15687,0,0,"Hmm, unannounced visitors? Preparations must be made.",14,9211,100,'moroes SAY_AGGRO'), +(15687,1,0,"Now, where was I? Oh yes...",14,9215,100,'moroes SAY_SPECIAL_1'), +(15687,1,1,"You rang?",14,9316,100,'moroes SAY_SPECIAL_2'), +(15687,2,0,"One more for dinner this evening.",14,9214,100,'moroes SAY_KILL_1'), +(15687,2,1,"Time... Never enough time.",14,9314,100,'moroes SAY_KILL_2'), +(15687,2,2,"I've gone and made a mess.",14,9315,100,'moroes SAY_KILL_3'), +(15687,3,0,"How terribly clumsy of me...",14,9213,100,'moroes SAY_DEATH'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532064 AND -1532057; +DELETE FROM `creature_text` WHERE `entry`=15691; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(15691,0,0,"The Menagerie is for guests only.",14,9183,100,'curator SAY_AGGRO'), +(15691,1,0,"Gallery rules will be strictly enforced.",14,9188,100,'curator SAY_SUMMON1'), +(15691,1,1,"This curator is equipped for gallery protection.",14,9309,100,'curator SAY_SUMMON2'), +(15691,2,0,"Your request cannot be processed.",14,9186,100,'curator SAY_EVOCATE'), +(15691,3,0,"Failure to comply will result in offensive action.",14,9185,100,'curator SAY_ENRAGE'), +(15691,4,0,"Do not touch the displays.",14,9187,100,'curator SAY_KILL1'), +(15691,4,1,"You are not a guest.",14,9308,100,'curator SAY_KILL2'), +(15691,5,0,"This Curator is no longer op... er... ation... al.",14,9184,100,'curator SAY_DEATH'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532010 AND -1532000; +DELETE FROM `creature_text` WHERE `entry`=16151; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(16151,0,0,"Well done Midnight!",14,9173,100,'attumen SAY_MIDNIGHT_KILL'), +(16151,1,0,"Cowards! Wretches!",14,9167,100,'attumen SAY_APPEAR1'), +(16151,1,1,"Who dares attack the steed of the Huntsman?",14,9298,100,'attumen SAY_APPEAR2'), +(16151,1,2,"Perhaps you would rather test yourselves against a more formidable opponent?!",14,9299,100,'attumen SAY_APPEAR3'), +(16151,2,0,"Come, Midnight, let's disperse this petty rabble!",14,9168,100,'attumen SAY_MOUNT'), +(16151,3,0,"It was... inevitable.",14,9169,100,'attumen SAY_KILL1'), +(16151,3,1,"Another trophy to add to my collection!",14,9300,100,'attumen SAY_KILL2'), +(16151,4,0,"Weapons are merely a convenience for a warrior of my skill!",14,9166,100,'attumen SAY_DISARMED'), +(16151,5,0,"I always knew... someday I would become... the hunted.",14,9165,100,'attumen SAY_DEATH'), +(16151,6,0,"Such easy sport.",14,9170,100,'attumen SAY_RANDOM1'), +(16151,6,1,"Amateurs! Do not think you can best me! I kill for a living.",14,9304,100,'attumen SAY_RANDOM2'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1532024 AND -1532018; +DELETE FROM `creature_text` WHERE `entry`=16457; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(16457,0,0,"Your behavior will not be tolerated!",14,9204,100,'maiden SAY_AGGRO'), +(16457,1,0,"Ah ah ah...",14,9207,100,'maiden SAY_SLAY1'), +(16457,1,1,"This is for the best.",14,9312,100,'maiden SAY_SLAY2'), +(16457,1,2,"Impure thoughts lead to profane actions.",14,9311,100,'maiden SAY_SLAY3'), +(16457,2,0,"Cast out your corrupt thoughts.",14,9313,100,'maiden SAY_REPENTANCE1'), +(16457,2,1,"Your impurity must be cleansed.",14,9208,100,'maiden SAY_REPENTANCE2'), +(16457,3,0,"Death comes. Will your conscience be clear?",14,9206,100,'maiden SAY_DEATH'); + +DELETE FROM `script_texts` WHERE `entry`=-1189021; +DELETE FROM `creature_text` WHERE `entry`=3974; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(3974,0,0,"Release the hounds!",14,5841,100,'loksey SAY_AGGRO'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1189007 AND -1189001; +DELETE FROM `creature_text` WHERE `entry` IN (23682,23775); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(23775,0,0,"Hah, is that all?",14,5831,100,'headless horseman SAY_LOST_HEAD'), +(23775,1,0,"Unworthy!",14,5836,100,'headless horseman SAY_PLAYER_DEATH'), +(23682,0,0,"Blades of Light!",14,5832,100,'headless horseman SAY_ENTRANCE'), +(23682,1,0,"Light, give me strength!",14,5833,100,'headless horseman SAY_REJOINED'), +(23682,2,0,"%s becomes enraged!",16,0,100,'headless horseman SAY_CONFLAGRATION'), +(23682,3,0,"Infidels! They must be purified!",14,5835,100,'headless horseman SAY_SPROUTING_PUMPKINS'), +(23682,4,0,"At your side, milady!",14,5837,100,'headless horseman SAY_DEATH'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1189004 AND -1189000; +DELETE FROM `creature_text` WHERE `entry`=3975; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(3975,0,0,"Ah, I have been waiting for a real challenge!",14,5830,100,'herod SAY_AGGRO'), +(3975,1,0,"Blades of Light!",14,5832,100,'herod SAY_WHIRLWIND'), +(3975,2,0,"Light, give me strength!",14,5833,100,'herod SAY_ENRAGE'), +(3975,3,0,"Hah, is that all?",14,5831,100,'herod SAY_KILL'), +(3975,4,0,"%s becomes enraged!",16,0,100,'herod EMOTE_ENRAGE'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1189020 AND -1189019; +DELETE FROM `creature_text` WHERE `entry`=6487; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(6487,0,0,"You will not defile these mysteries!",14,5842,100,'doan SAY_AGGRO'), +(6487,1,0,"Burn in righteous fire!",14,5843,100,'doan SAY_SPECIALAE'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1189007 AND -1189005; +DELETE FROM `creature_text` WHERE `entry`=3976; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(3976,0,0,"Infidels! They must be purified!",14,5835,100,'mograine SAY_MO_AGGRO'), +(3976,1,0,"Unworthy!",14,5836,100,'mograine SAY_MO_KILL'), +(3976,2,0,"At your side, milady!",14,5837,100,'mograine SAY_MO_RESSURECTED'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1189010 AND -1189008; +DELETE FROM `creature_text` WHERE `entry`=3977; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(3977,0,0,"What, Mograine has fallen? You shall pay for this treachery!",14,5838,100,'whitemane SAY_WH_INTRO'), +(3977,1,0,"The Light has spoken!",14,5839,100,'whitemane SAY_WH_KILL'), +(3977,2,0,"Arise, my champion!",14,5840,100,'whitemane SAY_WH_RESSURECT'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1189018 AND -1189016; +DELETE FROM `creature_text` WHERE `entry`=4543; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(4543,0,0,"We hunger for vengeance.",14,5844,100,'thalnos SAY_AGGRO'), +(4543,1,0,"No rest, for the angry dead.",14,5846,100,'thalnos SAY_HEALTH'), +(4543,2,0,"More... More souls.",14,5845,100,'thalnos SAY_KILL'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1189015 AND -1189011; +DELETE FROM `creature_text` WHERE `entry` IN (3983,3981); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(3983,0,0,"Tell me... tell me everything!",14,5847,100,'vishas SAY_AGGRO'), +(3983,1,0,"Naughty secrets!",14,5849,100,'vishas SAY_HEALTH1'), +(3983,2,0,"I'll rip the secrets from your flesh!",14,5850,100,'vishas SAY_HEALTH2'), +(3983,3,0,"Purged by pain!",14,5848,100,'vishas SAY_KILL'), +(3981,0,0,"The monster got what he deserved.",12,0,100,'vishas SAY_TRIGGER_VORREL'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1033009 AND -1033007; +DELETE FROM `creature_text` WHERE `entry` IN (3849,3850,4275); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`language`,`emote`,`comment`) VALUES +(3849,0,0,"About time someone killed the wretch.",12,0,100,1,1,'prisoner adamant SAY_BOSS_DIE_AD'), +(3850,0,0,"For once I agree with you... scum.",12,0,100,7,1,'prisoner ashcrombe SAY_BOSS_DIE_AS'), +(4275,0,0,"Who dares interfere with the Sons of Arugal?",14,0,100,0,0,''); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1033006 AND -1033000; +DELETE FROM `creature_text` WHERE `entry` IN (3849,3850); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`language`,`emote`,`comment`) VALUES +(3850,0,0,"Follow me and I'll open the courtyard door for you.",14,0,100,7,1,'prisoner ashcrombe SAY_FREE_AS'), +(3850,1,0,"I have just the spell to get this door open. Too bad the cell doors weren't locked so haphazardly.",14,0,100,7,1,'prisoner ashcrombe SAY_OPEN_DOOR_AS'), +(3850,2,0,"There it is! Wide open. Good luck to you conquering what lies beyond. I must report back to the Kirin Tor at once!",14,0,100,7,1,'prisoner ashcrombe SAY_POST_DOOR_AS'), +(3849,0,0,"Free from this wretched cell at last! Let me show you to the courtyard....",14,0,100,1,1,'prisoner adamant SAY_FREE_AD'), +(3849,1,0,"You are indeed courageous for wanting to brave the horrors that lie beyond this door.",14,0,100,1,1,'prisoner adamant SAY_OPEN_DOOR_AD'), +(3849,2,0,"There we go!",14,0,100,1,1,'prisoner adamant SAY_POST1_DOOR_AD'), +(3849,3,0,"Good luck with Arugal. I must hurry back to Hadrec now.",14,0,100,1,1,'prisoner adamant SAY_POST2_DOOR_AD'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1580016 AND -1580000; +DELETE FROM `creature_text` WHERE `entry` IN (24892,24850,24891); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(24892,0,0,"There will be no reprieve. My work here is nearly finished.",14,12451,100,'sathrovarr SAY_SATH_AGGRO'), +(24892,1,0,"Pitious mortal!",14,12455,100,'sathrovarr SAY_SATH_SLAY1'), +(24892,1,1,"Haven't you heard? I always win!",14,12456,100,'sathrovarr SAY_SATH_SLAY2'), +(24892,2,0,"I'm... never on... the losing... side...",14,12452,100,'sathrovarr SAY_SATH_DEATH'), +(24892,3,0,"Your misery is my delight!",14,12453,100,'sathrovarr SAY_SATH_SPELL1'), +(24892,4,0,"I will watch you bleed!",14,12454,100,'sathrovarr SAY_SATH_SPELL2'), +(24850,0,0,"Aggh! No longer will I be a slave to Malygos! Challenge me and you will be destroyed!",14,12422,100,'kalecgos SAY_EVIL_AGGRO'), +(24850,1,0,"In the name of Kil'jaeden!",14,12425,100,'kalecgos SAY_EVIL_SLAY1'), +(24850,1,1,"You were warned!",14,12426,100,'kalecgos SAY_EVIL_SLAY2'), +(24850,2,0,"I am forever in your debt. Once we have triumphed over Kil'jaeden, this entire world will be in your debt as well.",14,12431,100,'kalecgos SAY_GOOD_PLRWIN'), +(24850,3,0,"My awakening is complete! You shall all perish!",14,12427,100,'kalecgos SAY_EVIL_ENRAGE'), +(24891,0,0,"I need... your help... Cannot... resist him... much longer...",14,12428,100,'kalecgos SAY_GOOD_AGGRO'), +(24891,1,0,"Aaahhh! Help me, before I lose my mind!",14,12429,100,'kalecgos SAY_GOOD_NEAR_DEATH'), +(24891,2,0,"Hurry! There is not much of me left!",14,12430,100,'kalecgos SAY_GOOD_NEAR_DEATH2'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1580065 AND -1580044; +DELETE FROM `creature_text` WHERE `entry` IN (24882,24895); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`text`,`type`,`sound`,`probability`,`comment`) VALUES +(24882,0,0,"Puny lizard! Death is the only answer you'll find here!",14,12458,100,'brutallus YELL_INTRO'), +(24882,1,0,"Grah! Your magic is weak!",14,12459,100,'brutallus YELL_INTRO_BREAK_ICE'), +(24882,2,0,"I will crush you!",14,12460,100,'brutallus YELL_INTRO_CHARGE'), +(24882,3,0,"That was fun.",14,12461,100,'brutallus YELL_INTRO_KILL_MADRIGOSA'), +(24882,4,0,"Come, try your luck!",14,12462,100,'brutallus YELL_INTRO_TAUNT'), +(24882,5,0,"Ahh! More lambs to the slaughter!",14,12463,100,'brutallus YELL_AGGRO'), +(24882,6,0,"Perish, insect!",14,12464,100,'brutallus YELL_KILL1'), +(24882,6,1,"You are meat!",14,12465,100,'brutallus YELL_KILL2'), +(24882,6,2,"Too easy!",14,12466,100,'brutallus YELL_KILL3'), +(24882,7,0,"Bring the fight to me!",14,12467,100,'brutallus YELL_LOVE1'), +(24882,7,1,"Another day, another glorious battle!",14,12468,100,'brutallus YELL_LOVE2'), +(24882,7,2,"I live for this!",14,12469,100,'brutallus YELL_LOVE3'), +(24882,8,0,"So much for a real challenge... Die!",14,12470,100,'brutallus YELL_BERSERK'), +(24882,9,0,"Gah! Well done... Now... this gets... interesting...",14,12471,100,'brutallus YELL_DEATH'), +(24895,0,0,"Hold, friends! There is information to be had before this devil meets his fate!",14,12472,100,'madrigosa YELL_MADR_ICE_BARRIER'), +(24895,1,0,"Where is Anveena, demon? What has become of Kalec?",14,12473,100,'madrigosa YELL_MADR_INTRO'), +(24895,2,0,"You will tell me where they are!",14,12474,100,'madrigosa YELL_MADR_ICE_BLOCK'), +(24895,3,0,"Speak, I grow weary of asking!",14,12475,100,'madrigosa YELL_MADR_TRAP'), +(24895,4,0,"Malygos, my lord! I did my best!",14,12476,100,'madrigosa YELL_MADR_DEATH'); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1580065 AND -1580044; +DELETE FROM `creature_text` WHERE `entry` IN (25166,25165); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(25165,0,0,14,12484,100,"eredar - YELL_INTRO_SAC_1","Misery..."), +(25165,1,0,14,0,100,"eredar - YELL_INTRO_SAC_3","Confusion..."), +(25165,2,0,14,0,100,"eredar - YELL_INTRO_SAC_5","Mistrust..."), +(25165,3,0,14,0,100,"eredar - YELL_INTRO_SAC_7","These are the hallmarks..."), +(25165,4,0,14,0,100,"eredar - YELL_SAC_DEAD","I... fade."), +(25165,5,0,41,0,100,"eredar - EMOTE_SHADOW_NOVA","%s directs Shadow Nova at $N"), +(25165,6,0,14,0,100,"eredar - YELL_ENRAGE","Time is a luxury you no longer possess!"), +(25165,7,0,14,12488,100,"eredar - YELL_SISTER_ALYTHESS_DEAD","Alythess! Your fire burns within me!"), +(25165,8,0,14,12486,100,"eredar - YELL_SAC_KILL_1","Shadow engulf."), +(25165,8,1,14,12487,100,"eredar - YELL_SAC_KILL_2","Ee-nok Kryul!"), +(25165,9,0,14,12485,100,"eredar - YELL_SHADOW_NOVA","Shadow to the aid of fire!"), +(25166,0,0,14,0,100,"eredar - YELL_INTRO_ALY_2","Depravity..."), +(25166,1,0,14,0,100,"eredar - YELL_INTRO_ALY_4","Hatred..."), +(25166,2,0,14,0,100,"eredar - YELL_INTRO_ALY_6","Chaos..."), +(25166,3,0,14,0,100,"eredar - YELL_INTRO_ALY_8","These are the pillars..."), +(25166,4,0,41,0,100,"eredar - EMOTE_CONFLAGRATION","%s directs Conflagration at $N"), +(25166,5,0,14,12490,100,"eredar - YELL_ALY_KILL_1","Fire consume."), +(25166,5,1,14,12491,100,"eredar - YELL_ALY_KILL_2","Ed-ir Halach!"), +(25166,6,0,14,12494,100,"eredar - YELL_ALY_DEAD","De-ek Anur!"), +(25166,7,0,14,12492,100,"eredar - YELL_SISTER_SACROLASH_DEAD","Sacrolash!"), +(25166,8,0,14,12489,100,"eredar - YELL_CANFLAGRATION","Fire to the aid of shadow!"), +(25166,9,0,14,12493,100,"eredar - YELL_BERSERK","Your luck has run its curse!"); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1580098 AND -1580066; +DELETE FROM `creature_text` WHERE `entry` IN (25608,25319,25315,26046); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(25608,0,0,14,12495,100,"KJ - SAY_KJ_OFFCOMBAT1","All my plans have led to this!"), +(25608,0,1,14,12496,100,"KJ - SAY_KJ_OFFCOMBAT2","Stay on task! Do not waste time!"), +(25608,0,2,14,12497,100,"KJ - SAY_KJ_OFFCOMBAT3","I have waited long enough!"), +(25608,0,3,14,12498,100,"KJ - SAY_KJ_OFFCOMBAT4","Fail me and suffer for eternity!"), +(25608,0,4,14,12499,100,"KJ - SAY_KJ_OFFCOMBAT5","Drain the girl! Drain her power until there is nothing but a vacant shell!"), +(25319,0,0,14,12449,100,"KJ - SAY_KALECGOS_ENCOURAGE","Strike now, heroes, while he is weakened! Vanquish the Deceiver!"), +(25319,1,0,14,12440,100,"KJ - SAY_KALECGOS_READY1","I will channel my power into the orbs, be ready!"), +(25319,2,0,14,12441,100,"KJ - SAY_KALECGOS_READY2","I have empowered another orb! Use it quickly!"), +(25319,3,0,14,12442,100,"KJ - SAY_KALECGOS_READY3","Another orb is ready! Make haste!"), +(25319,4,0,14,12443,100,"KJ - SAY_KALECGOS_READY4","I have channeled all I can! The power is in your hands!"), +(25319,5,0,14,12445,100,"KJ - SAY_KALECGOS_AWAKEN","Anveena, you must awaken, this world needs you!"), +(25319,6,0,14,12446,100,"KJ - SAY_KALECGOS_LETGO","You must let go! You must become what you were always meant to be! The time is now, Anveena!"), +(25319,7,0,14,12447,100,"KJ - SAY_KALECGOS_FOCUS","Anveena, I love you! Focus on my voice, come back for me now! Only you can cleanse the Sunwell!"), +(25319,8,0,14,12448,100,"KJ - SAY_KALECGOS_FATE","Yes, Anveena! Let fate embrace you now!"), +(25319,9,0,14,12450,100,"KJ - SAY_KALECGOS_GOODBYE","Goodbye, Anveena, my love. Few will remember your name, yet this day you change the course of destiny. What was once corrupt is now pure. Heroes, do not let her sacrifice be in vain."), +(25319,10,0,14,12438,100,"KJ - SAY_KALECGOS_JOIN","You are not alone. The Blue Dragonflight shall help you vanquish the Deceiver."), +(25315,0,0,14,12527,100,"KJ - SAY_KJ_DEATH","Nooooooooooooo!"), +(25315,1,0,14,12501,100,"KJ - SAY_KJ_SLAY1","Another step towards destruction!"), +(25315,1,1,14,12502,100,"KJ - SAY_KJ_SLAY2","Anak-ky'ri!"), +(25315,2,0,14,12503,100,"KJ - SAY_KJ_REFLECTION1","Who can you trust?"), +(25315,2,1,14,12504,100,"KJ - SAY_KJ_REFLECTION2","The enemy is among you."), +(25315,3,0,14,12500,100,"KJ - SAY_KJ_EMERGE","The expendible have perished... So be it! Now I shall succeed where Sargeras could not! I will bleed this wretched world and secure my place as the true master of the Burning Legion. The end has come! Let the unraveling of this world commence!"), +(25315,4,0,14,12505,100,"KJ - SAY_KJ_DARKNESS1","Chaos!"), +(25315,4,1,14,12506,100,"KJ - SAY_KJ_DARKNESS2","Destruction!"), +(25315,4,2,14,12507,100,"KJ - SAY_KJ_DARKNESS3","Oblivion!"), +(25315,5,0,14,12508,100,"KJ - SAY_KJ_PHASE3","I will not be denied! This world shall fall!"), +(25315,6,0,14,12509,100,"KJ - SAY_KJ_PHASE4","Do not harbor false hope. You cannot win!"), +(25315,7,0,14,12510,100,"KJ - SAY_KJ_PHASE5","Aggghh! The powers of the Sunwell... turned... against me! What have you done? WHAT HAVE YOU DONE?"), +(25315,8,0,41,0,100,"KJ - EMOTE_KJ_DARKNESS","%s begins to channel dark energy"), +(26046,0,0,14,12511,100,"KJ - SAY_ANVEENA_IMPRISONED","I serve only the Master now."), +(26046,1,0,14,12512,100,"KJ - SAY_ANVEENA_LOST","But I'm... lost... I cannot find my way back!"), +(26046,2,0,14,12513,100,"KJ - SAY_ANVEENA_KALEC","Kalec... Kalec?"), +(26046,3,0,14,12514,100,"KJ - SAY_ANVEENA_GOODBYE","The nightmare is over, the spell is broken! Goodbye, Kalec, my love!"); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1580043 AND -1580036; +DELETE FROM `creature_text` WHERE `entry`=25038; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(25038,0,0,14,12477,100,"felmyst - YELL_BIRTH","Glory to Kil'jaeden! Death to all who oppose!"), +(25038,1,0,14,12480,100,"felmyst - YELL_KILL1","I kill for the master!"), +(25038,1,1,14,12481,100,"felmyst - YELL_KILL2","The end has come!"), +(25038,2,0,14,12478,100,"felmyst - YELL_BREATH","Choke on your final breath!"), +(25038,3,0,14,12479,100,"felmyst - YELL_TAKEOFF","I am stronger than ever before!"), +(25038,4,0,14,12482,100,"felmyst - YELL_BERSERK","No more hesitation! Your fates are written!"), +(25038,5,0,14,12483,100,"felmyst - YELL_DEATH","Kil'jaeden... will... prevail..."), +(25038,6,0,14,12439,100,"felmyst - YELL_KALECGOS","Madrigosa deserved a far better fate. You did what had to be done, but this battle is far from over."); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000292 AND -1000287; +DELETE FROM `creature_text` WHERE `entry`=7806; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(7806,0,0,12,0,100,"oox SAY_OOX_START","Emergency power activated! Initializing ambulanory motor! CLUCK!"), +(7806,1,0,12,0,100,"oox SAY_OOX_AGGRO1","Physical threat detected! Evasive action! CLUCK!"), +(7806,1,1,12,0,100,"oox SAY_OOX_AGGRO2","Thread analyzed! Activating combat plan beta! CLUCK!"), +(7806,2,0,12,0,100,"oox SAY_OOX_AMBUSH","CLUCK! Sensors detect spatial anomaly - danger imminent! CLUCK!"), +(7806,3,0,12,0,100,"oox SAY_OOX_AMBUSH_REPLY","No one challanges the Wastewander nomads - not even robotic chickens! ATTACK!"), +(7806,4,0,12,0,100,"oox SAY_OOX_END","Cloaking systems online! CLUCK! Engaging cloak for transport to Booty Bay!"); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000409 AND -1000403; +DELETE FROM `creature_text` WHERE `entry` IN (2691,7780); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(2691,0,0,12,0,100,"SAY_RIN_BY_OUTRUNNER","Attack my sisters! The troll must not escape!"), +(7780,0,0,12,0,100,"SAY_RIN_FREE","Rin'ji is free!"), +(7780,1,0,12,0,100,"SAY_RIN_HELP_1","Rin'ji needs help!"), +(7780,1,1,12,0,100,"SAY_RIN_HELP_2","Rin'ji is being attacked!"), +(7780,2,0,12,0,100,"SAY_RIN_COMPLETE","Rin'ji can see road now, $n. Rin'ji knows the way home."), +(7780,3,0,12,0,100,"SAY_RIN_PROGRESS_1","Rin'ji will tell you secret now... $n, should go to the Overlook Cliffs. Rin'ji hid something on island there"), +(7780,4,0,12,0,100,"SAY_RIN_PROGRESS_2","You find it, you keep it! Don't tell no one that Rin'ji talked to you!"); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1568009 AND -1568000; +DELETE FROM `creature_text` WHERE `entry`=23578; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(23578,0,0,14,12031,100,"janalai SAY_AGGRO","Spirits of da wind be your doom!"), +(23578,1,0,14,12032,100,"janalai SAY_FIRE_BOMBS","I burn ya now!"), +(23578,2,0,14,12033,100,"janalai SAY_SUMMON_HATCHER","Where ma hatcha? Get to work on dem eggs!"), +(23578,3,0,14,12034,100,"janalai SAY_ALL_EGGS","I show you strength... in numbers."), +(23578,4,0,14,12035,100,"janalai SAY_BERSERK","You done run outta time!"), +(23578,5,0,14,12036,100,"janalai SAY_SLAY_1","It all be over now, mon!"), +(23578,5,1,14,12037,100,"janalai SAY_SLAY_2","Tazaga-choo!"), +(23578,6,0,14,12038,100,"janalai SAY_DEATH","Zul'jin... got a surprise for you..."), +(23578,7,0,14,12039,100,"janalai SAY_EVENT_STRANGERS","Come, strangers. The spirit of the dragonhawk hot be hungry for worthy souls."), +(23578,8,0,14,12040,100,"janalai SAY_EVENT_FRIENDS","Come, friends. Your bodies gonna feed ma hatchlings, and your souls are going to feed me with power!"); + +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1469006 AND -1469004; +DELETE FROM `creature_text` WHERE `entry`=10162; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(10162,0,0,12,0,100,"victor_nefarius SAY_GAMESBEGIN_1","In this world where time is your enemy, it is my greatest ally. This grand game of life that you think you play in fact plays you. To that I say..."), +(10162,1,0,14,8280,100,"victor_nefarius SAY_GAMESBEGIN_2","Let the games begin!"), +(10162,2,0,14,8279,100,"victor_nefarius SAY_VAEL_INTRO","Ah, the heroes. You are persistent, aren't you. Your allied attempted to match his power against mine, and had to pay the price. Now he shall serve me, by slaughtering you. Get up little red wyrm and destroy them!"); diff --git a/sql/updates/world/2012_11_21_00_world_sai.sql b/sql/updates/world/2012_11_21_00_world_sai.sql new file mode 100644 index 00000000000..9cdd314bb8f --- /dev/null +++ b/sql/updates/world/2012_11_21_00_world_sai.sql @@ -0,0 +1,169 @@ +SET @GOGUID := 380; -- need 1 set by TDB +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=66 WHERE `item`=38303 AND `entry`=26620; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=67 WHERE `item`=38303 AND `entry`=26639; +UPDATE `creature_loot_template` SET `ChanceOrQuestChance`=15 WHERE `item`=38303 AND `entry`=27431; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=47110; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=15 AND `SourceGroup`=9615 AND `SourceEntry`=1; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,47110,0,0,31,0,3,26498,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 01'), +(13,1,47110,0,1,31,0,3,26559,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 02'), +(13,1,47110,0,2,31,0,3,26700,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 03'), +(13,1,47110,0,3,31,0,3,26789,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 04'), +(13,1,47110,0,4,31,0,3,28015,0,0,0,'','Spell Summon Drakuru''s Image targets Drakuru''s Bunny 05'), +(15,9615,1,0,0,8,0,11990,0,0,0,0,'','Drakuru - Show gossip option if player has rewarded quest 11990'), +(15,9615,1,0,0,8,0,12238,0,0,1,0,'','Drakuru - Show gossip option if player has not rewarded quest 12238'), +(15,9615,1,0,0,2,0,35797,1,1,1,0,'','Drakuru - Show gossip option if player has not item Drakuru''s Elixir'); +DELETE FROM `smart_scripts` WHERE `entryorguid`=26423 AND `source_type`=0 AND `id` IN (2,3); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (26498,26559,26700,26789) AND `source_type`=0; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(26423,0,2,3,62,0,100,0,9615,1,0,0,85,50021,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru - On gossip option select - Invoker spellcast Replace Drakuru''s Elixir'), +(26423,0,3,0,61,0,100,0,0,0,0,0,72,0,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru - On gossip option select - Close gossip'), +(26498,0,0,0,8,0,100,0,47110,0,0,0,11,47117,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 01 - On spellhit - Spellcast Script Cast Summon Image of Drakuru'), +(26559,0,0,0,8,0,100,0,47110,0,0,0,11,47149,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 02 - On spellhit - Spellcast Script Cast Summon Image of Drakuru 02'), +(26700,0,0,0,8,0,100,0,47110,0,0,0,11,47316,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 03 - On spellhit - Spellcast Script Cast Summon Image of Drakuru 03'), +(26789,0,0,0,8,0,100,0,47110,0,0,0,11,47405,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 04 - On spellhit - Spellcast Script Cast Summon Image of Drakuru 04'); +DELETE FROM `creature` WHERE `guid` IN (43494,43496,43498,43501); -- double spawned +DELETE FROM `gameobject` WHERE `guid`=364; -- double spawned +-- Creature Template update from sniff +UPDATE `creature_template` SET `faction_A`=14, `faction_H`=14, `speed_walk`=2, `speed_run`=0.992062, `unit_flags`=768, `equipment_id`=2481 WHERE `entry`=28498; +UPDATE `creature_template` SET `gossip_menu_id`=9707, `faction_A`=190, `faction_H`=190, `speed_walk`=2, `npcflag`=`npcflag`|1, `unit_flags`=33024 WHERE `entry`=28016; +UPDATE `creature_template` SET `AIName`='SmartAI' WHERE `entry` IN (28015,28016,28492,28498); +-- Gossip Menu insert from sniff +DELETE FROM `gossip_menu` WHERE `entry`=9707 AND `text_id`=13265; +INSERT INTO `gossip_menu` (`entry`,`text_id`) VALUES +(9707,13265); +DELETE FROM `creature_equip_template` WHERE `entry`=2481; +INSERT INTO `creature_equip_template` (`entry`,`itemEntry1`,`itemEntry2`,`itemEntry3`) VALUES +(2481,33475,0,0); +UPDATE `creature_model_info` SET `bounding_radius`=2.5, `combat_reach`=2.5 WHERE `modelid`=28122; +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=51825; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`SourceId`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionTarget`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(13,1,51825,0,0,31,0,3,28016,0,0,0,'','Spell Arthas Scourge Drakuru targets Drakuru'); +-- Creature text insert from sniff +DELETE FROM `creature_text` WHERE `entry` IN (28016,28498); +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(28016,0,0,'Ahh, Back in Drak''Tharon at last!',12,0,100,71,0,14006,'Drakuru'), +(28016,1,0,'Drakuru casts his gaze down on Drak''Tharon Keep.',16,0,100,0,0,0,'Drakuru'), +(28016,2,0,'Ya done well, mon....',12,0,100,0,0,14007,'Drakuru'), +(28016,3,0,'Ya surpassed my greatest hopes.',12,0,100,0,0,14008,'Drakuru'), +(28016,4,0,'For your efforts, you be gettin'' da greatest of rewards....',12,0,100,0,0,14009,'Drakuru'), +(28016,5,0,'Revelation!',12,0,100,5,0,14010,'Drakuru'), +(28016,6,0,'Be still, friend, and behold da truth of things!',12,0,100,0,0,14011,'Drakuru'), +(28016,7,0,'Master, my mission be complete.',12,0,100,0,0,14012,'Drakuru'), +(28016,8,0,'With da help of these mortals, dis region been cleansed of all who oppose us.',12,0,100,0,0,14013,'Drakuru'), +(28016,9,0,'As you wish, master.',12,0,100,396,0,14014,'Drakuru'), +(28016,10,0,'Forgive my deception, mon. It all been for your own good.',12,0,100,396,0,14015,'Drakuru'), +(28016,11,0,'Ya needed ta prove yer worthiness....',12,0,100,396,0,14016,'Drakuru'), +(28016,12,0,'I be needin'' worthy underlings in Zul''Drak, mon. Ones ready to wield real power.',12,0,100,396,0,14017,'Drakuru'), +(28016,13,0,'You see for yourself now. Da Lich King be generous to dem who obey.',12,0,100,396,0,14018,'Drakuru'), +(28016,14,0,'Follow dis path, mon, and soon you be tastin'' immortality!',12,0,100,396,0,14019,'Drakuru'), +(28498,0,0,'You have done well, Drakuru.',12,0,100,396,0,14749,'The Lich King'), +(28498,1,0,'Your betrayal of the Drakkari Empire has borne me a new army.',12,0,100,396,0,14750,'The Lich King'), +(28498,2,0,'Your army....',12,0,100,0,0,14751,'The Lich King'), +(28498,3,0,'Arise, and accept my gift.',12,0,100,396,0,14752,'The Lich King'), +(28498,4,0,'I charge you now with the cleansing of Zul''Drak, Drakuru.',12,0,100,397,0,14753,'The Lich King'), +(28498,5,0,'Fail me and it shall be your undoing...',12,0,100,396,0,14754,'The Lich King'), +(28498,6,0,'Succeed, and even greater power shall be yours!',12,0,100,396,0,14755,'The Lich King'); +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28015,28016,28498,-127497,-127496,-127495,-127493) AND `source_type`=0; +DELETE FROM `smart_scripts` WHERE `entryorguid` IN (28492*100,28016*100,28016*100+1,28498*100) AND `source_type`=9; +INSERT INTO `smart_scripts` (`entryorguid`,`source_type`,`id`,`link`,`event_type`,`event_phase_mask`,`event_chance`,`event_flags`,`event_param1`,`event_param2`,`event_param3`,`event_param4`,`action_type`,`action_param1`,`action_param2`,`action_param3`,`action_param4`,`action_param5`,`action_param6`,`target_type`,`target_param1`,`target_param2`,`target_param3`,`target_x`,`target_y`,`target_z`,`target_o`,`comment`) VALUES +(28015,0,0,0,8,0,100,0,47110,0,0,0,11,50439,0,0,0,0,0,7,0,0,0,0,0,0,0,'Drakuru''s Bunny 05 - On spellhit - Spellcast Script Cast Summon Image of Drakuru 05'), +(28016,0,0,0,54,0,100,0,0,0,0,0,80,28016*100+1,2,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On update - Run script'), +(28016,0,1,2,40,0,100,0,1,0,0,0,54,2000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 1 - Pause movement 2 seconds'), +(28016,0,2,0,61,0,100,0,0,0,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru - On WP 1 - Say line'), +(28016,0,3,4,40,0,100,0,5,0,0,0,54,8000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 5 - Pause movement 8 seconds'), +(28016,0,4,5,61,0,100,0,0,0,0,0,1,1,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru - On WP 5 - Say line'), +(28016,0,5,0,61,0,100,0,0,0,0,0,80,28016*100,2,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 5 - Run script'), +(28016,0,6,7,40,0,100,0,8,0,0,0,54,4000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 8 - Pause movement 4 seconds'), +(28016,0,7,8,61,0,100,0,0,0,0,0,1,3,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru - On WP 8 - Say line'), +(28016,0,8,0,61,0,100,0,0,0,0,0,90,8,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 8 - Set unit_field_bytes1'), +(28016,0,9,10,40,0,100,0,9,0,0,0,54,4000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 9 - Pause movement 4 seconds'), +(28016,0,10,0,61,0,100,0,0,0,0,0,90,8,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 9 - Set unit_field_bytes1'), +(28016,0,11,12,40,0,100,0,10,0,0,0,54,3000,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 10 - Pause movement 3 seconds'), +(28016,0,12,13,61,0,100,0,0,0,0,0,1,4,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru - On WP 10 - Say line'), +(28016,0,13,0,61,0,100,0,0,0,0,0,90,8,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 10 - Set unit_field_bytes1'), +(28016,0,14,15,40,0,100,0,12,0,0,0,55,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On WP 12 - Stop movement'), +(28016,0,15,16,61,0,100,0,0,0,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,4.694936,'Drakuru - On WP 12 - Set orientation'), +(28016,0,16,0,61,0,100,0,0,0,0,0,1,5,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru - On WP 12 - Say line'), +(28016,0,18,0,8,0,100,0,51825,0,0,0,11,51834,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru - On spellhit Arthas Scourge Drakuru - Spellcast Drakuru Transform'), +(28498,0,0,0,54,0,100,0,0,0,0,0,53,0,28498,0,0,0,0,1,0,0,0,0,0,0,0,'The Lich King - Just summoned - Start WP movement'), +(28498,0,1,2,40,0,100,0,2,0,0,0,54,83000,0,0,0,0,0,1,0,0,0,0,0,0,0,'The Lich King - On WP 2 - Pause movement 83 seconds'), +(28498,0,2,0,61,0,100,0,0,0,0,0,80,28498*100,2,0,0,0,0,1,0,0,0,0,0,0,0,'The Lich King - On WP 2 - Run script'), +(28498,0,3,4,40,0,100,0,3,0,0,0,45,0,2,0,0,0,0,10,127495,0,0,0,0,0,0,'The Lich King - On WP 3 - Despawn'), +(28498,0,4,0,61,0,100,0,0,0,0,0,41,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'The Lich King - On WP 3 - Despawn'), +(-127497,0,0,1,38,0,100,0,0,1,0,0,11,51802,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 1 - Spellcast Red Lightning Bolt'), +(-127497,0,1,0,61,0,100,0,0,0,0,0,45,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 1 - Set data 0 0'), +(-127496,0,0,1,38,0,100,0,0,1,0,0,11,51802,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 1 - Spellcast Red Lightning Bolt'), +(-127496,0,1,0,61,0,100,0,0,0,0,0,45,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 1 - Set data 0 0'), +(-127493,0,0,1,38,0,100,0,0,1,0,0,11,51802,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 1 - Spellcast Red Lightning Bolt'), +(-127493,0,1,0,61,0,100,0,0,0,0,0,45,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 1 - Set data 0 0'), +(-127495,0,0,0,38,0,100,0,0,1,0,0,11,51807,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 1 - Spellcast Arthas Portal'), +(-127495,0,1,2,38,0,100,0,0,2,0,0,80,28492*100,2,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 2 set - Start script'), +(-127495,0,2,0,61,0,100,0,0,0,0,0,45,0,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 - On data 0 2 set - Set data 0 0'), +(28016*100,9,0,0,0,0,100,0,6000,6000,0,0,5,21,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Play emote applaud'), +(28016*100,9,1,0,0,0,100,0,2000,2000,0,0,1,2,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,2,0,0,0,100,0,6500,6500,0,0,50,190597,22.5,0,0,0,0,8,0,0,0,-241.5434,-675.4514,132.2164,-1.029743,'Drakuru script - Summon gameobject'), +(28016*100,9,3,0,0,0,100,0,6000,6000,0,0,50,190596,15.5,0,0,0,0,8,0,0,0,-235.8484,-680.4561,131.885,-2.792518,'Drakuru script - Summon gameobject'), +(28016*100,9,4,0,0,0,100,0,5000,5000,0,0,50,190595,11,0,0,0,0,8,0,0,0,-233.977,-673.1368,132.0999,0.7853968,'Drakuru script - Summon gameobject'), +(28016*100,9,5,0,0,0,100,0,6000,6000,0,0,11,51795,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Spellcast Shadow Channelling (10 sec)'), +(28016*100,9,6,0,0,0,100,0,5000,5000,0,0,45,0,1,0,0,0,0,10,127497,0,0,0,0,0,0,'Drakuru script - Set data 0 1'), +(28016*100,9,7,0,0,0,100,0,0,0,0,0,45,0,1,0,0,0,0,10,127496,0,0,0,0,0,0,'Drakuru script - Set data 0 1'), +(28016*100,9,8,0,0,0,100,0,0,0,0,0,45,0,1,0,0,0,0,10,127493,0,0,0,0,0,0,'Drakuru script - Set data 0 1'), +(28016*100,9,9,0,0,0,100,0,4000,4000,0,0,45,0,1,0,0,0,0,10,127495,0,0,0,0,0,0,'Drakuru script - Set data 0 1'), +(28016*100,9,10,0,0,0,100,0,1000,1000,0,0,1,6,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,11,0,0,0,100,0,5000,5000,0,0,12,28498,8,0,0,0,0,8,0,0,0,-237.1671,-702.1379,128.8857,1.570796,'Drakuru script - Summon Lich King'), +(28016*100,9,12,0,0,0,100,0,4000,4000,0,0,90,8,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Set unit_field_bytes1'), +(28016*100,9,13,0,0,0,100,0,2000,2000,0,0,1,7,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,14,0,0,0,100,0,6000,6000,0,0,1,8,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,15,0,0,0,100,0,33000,33000,0,0,91,8,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Remove unit_field_bytes1'), +(28016*100,9,16,0,0,0,100,0,6000,6000,0,0,5,15,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Play emote roar'), +(28016*100,9,17,0,0,0,100,0,0,0,0,0,4,3326,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Play sound roar'), +(28016*100,9,18,0,0,0,100,0,12000,12000,0,0,1,9,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,19,0,0,0,100,0,27000,27000,0,0,66,0,0,0,0,0,0,8,0,0,0,0,0,0,2.70526,'Drakuru script - Set orientation'), +(28016*100,9,20,0,0,0,100,0,7000,7000,0,0,1,10,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,21,0,0,0,100,0,8000,8000,0,0,1,11,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,22,0,0,0,100,0,8000,8000,0,0,1,12,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,23,0,0,0,100,0,11000,11000,0,0,1,13,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,24,0,0,0,100,0,7000,7000,0,0,1,14,0,0,0,0,0,23,0,0,0,0,0,0,0,'Drakuru script - Say line'), +(28016*100,9,25,0,0,0,100,0,0,0,0,0,81,3,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Set npcflag'), +(28016*100+1,9,0,0,0,0,100,0,0,0,0,0,83,3,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Remove npcflag'), +(28016*100+1,9,1,0,0,0,100,0,3000,3000,0,0,53,0,28016,0,0,0,0,1,0,0,0,0,0,0,0,'Drakuru script - Start WP movement'), +(28492*100,9,0,0,0,0,100,0,5000,5000,0,0,28,51807,0,0,0,0,0,1,0,0,0,0,0,0,0,'Drak''Tharon - Drakuru Event Invisman 00 script - Remove aura Arthas Portal'), +(28498*100,9,0,0,0,0,100,0,15000,15000,0,0,1,0,0,0,0,0,0,23,0,0,0,0,0,0,0,'The Lich King script - Say line'), +(28498*100,9,1,0,0,0,100,0,6000,6000,0,0,1,1,0,0,0,0,0,23,0,0,0,0,0,0,0,'The Lich King script - Say line'), +(28498*100,9,2,0,0,0,100,0,10000,10000,0,0,1,2,0,0,0,0,0,23,0,0,0,0,0,0,0,'The Lich King script - Say line'), +(28498*100,9,3,0,0,0,100,0,6000,6000,0,0,1,3,0,0,0,0,0,23,0,0,0,0,0,0,0,'The Lich King script - Say line'), +(28498*100,9,4,0,0,0,100,0,5000,5000,0,0,11,51825,0,0,0,0,0,9,28016,0,10,0,0,0,0,'The Lich King script - Spellcast Arthas Scourge Drakuru'), +(28498*100,9,5,0,0,0,100,0,8000,8000,0,0,1,4,0,0,0,0,0,23,0,0,0,0,0,0,0,'The Lich King script - Say line'), +(28498*100,9,6,0,0,0,100,0,16000,16000,0,0,1,5,0,0,0,0,0,23,0,0,0,0,0,0,0,'The Lich King script - Say line'), +(28498*100,9,7,0,0,0,100,0,6000,6000,0,0,1,6,0,0,0,0,0,23,0,0,0,0,0,0,0,'The Lich King script - Say line'); +DELETE FROM `creature_template_addon` WHERE `entry` IN (28016,28498); +INSERT INTO `creature_template_addon` (`entry`,`path_id`,`mount`,`bytes1`,`bytes2`,`emote`,`auras`) VALUES +(28016,0,0,0,1,0,''), +(28498,0,0,0,1,0,''); +DELETE FROM `spell_scripts` WHERE `id`=50439; +INSERT INTO `spell_scripts` (`id`,`effIndex`,`delay`,`command`,`datalong`,`datalong2`,`dataint`,`x`,`y`,`z`,`o`) VALUES +(50439,0,0,15,50440,2,0,0,0,0,0); -- Script Cast Summon Image of Drakuru - Spellcast Envision Drakuru +DELETE FROM `spell_linked_spell` WHERE `spell_trigger`=50440; +INSERT INTO `spell_linked_spell` (`spell_trigger`,`spell_effect`,`type`,`comment`) VALUES +(50440,50446,1,'On Envision Drakuru - Spellcast Summon Drakuru'); +DELETE FROM `waypoints` WHERE `entry` IN (28016,28498); +INSERT INTO `waypoints` (`entry`,`pointid`,`position_x`,`position_y`,`position_z`,`point_comment`) VALUES +(28016, 1,-240.1569,-630.3474,116.4973,'pause and text'), +(28016, 2,-237.9522,-652.9613,131.131,''), +(28016, 3,-252.4211,-663.5404,131.2025,''), +(28016, 4,-261.2747,-667.5787,131.1916,''), +(28016, 5,-264.9144,-667.5964,131.1769,'pause and text'), +(28016, 6,-258.2646,-669.388,131.1983,''), +(28016, 7,-248.6646,-674.2229,132.1737,''), +(28016, 8,-243.7752,-674.9374,131.8365,'pause'), +(28016, 9,-236.3793,-678.6719,131.8578,'pause'), +(28016,10,-235.4743,-674.3039,131.8569,'pause'), +(28016,11,-234.869,-674.1355,131.8544,''), +(28016,12,-237.0977,-676.1853,131.8683,''), +(28498,1,-237.4704,-689.8357,129.5296,''), +(28498,2,-237.2737,-686.5334,132.1735,'pause'), +(28498,3,-237.0624,-700.3822,130.4357,''); +DELETE FROM `gameobject` WHERE `guid`=@GOGUID; +INSERT INTO `gameobject` (`guid`,`id`,`map`,`spawnMask`,`phaseMask`,`position_x`,`position_y`,`position_z`,`orientation`,`rotation0`,`rotation1`,`rotation2`,`rotation3`,`spawntimesecs`,`animprogress`,`state`) VALUES +(@GOGUID,300188,600,3,1,-236.766,-614.774,116.487,1.5708,0,0,0,1,180,0,1); diff --git a/sql/updates/world/2012_11_24_00_world_creature_text.sql b/sql/updates/world/2012_11_24_00_world_creature_text.sql new file mode 100644 index 00000000000..60e0f9c3aa1 --- /dev/null +++ b/sql/updates/world/2012_11_24_00_world_creature_text.sql @@ -0,0 +1,969 @@ +-- ---------------------------------- +-- Creature text conversion part 2 -- +-- ---------------------------------- +-- razorgore +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1469025 AND -1469022; +DELETE FROM `creature_text` WHERE `entry`=12435; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(12435,0,0,14,8275,100,"razorgore SAY_EGGS_BROKEN1","You'll pay for forcing me to do this."), +(12435,1,0,14,8276,100,"razorgore SAY_EGGS_BROKEN2","Fools! These eggs are more precious than you know."), +(12435,2,0,14,8277,100,"razorgore SAY_EGGS_BROKEN3","No! Not another one! I'll have your heads for this atrocity."), +(12435,3,0,14,8278,100,"razorgore SAY_DEATH","If I fall into the abyss I'll take all of you mortals with me..."); + +-- nefarian +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1469021 AND -1469007; +DELETE FROM `creature_text` WHERE `entry`=11583; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(11583,0,0,14,8288,100,"nefarian SAY_AGGRO","Well done, my minions. The mortals' courage begins to wane! Now, let's see how they contend with the true Lord of Blackrock Spire!"), +(11583,0,1,14,8289,100,"nefarian SAY_XHEALTH","Enough! Now you vermin shall feel the force of my birthright, the fury of the earth itself."), +(11583,0,2,14,8290,100,"nefarian SAY_SHADOWFLAME","Burn, you wretches! Burn!"), +(11583,1,0,14,8291,100,"nefarian SAY_RAISE_SKELETONS","Impossible! Rise my minions! Serve your master once more!"), +(11583,2,0,14,8293,100,"nefarian SAY_SLAY","Worthless $N! Your friends will join you soon enough!"), +(11583,3,0,14,8292,100,"nefarian SAY_DEATH","This cannot be! I am the Master here! You mortals are nothing to my kind! DO YOU HEAR? NOTHING!"), +(11583,4,0,14,0,100,"nefarian SAY_MAGE","Mages too? You should be more careful when you play with magic..."), +(11583,5,0,14,0,100,"nefarian SAY_WARRIOR","Warriors, I know you can hit harder than that! Let's see it!"), +(11583,6,0,14,0,100,"nefarian SAY_DRUID","Druids and your silly shapeshifting. Let's see it in action!"), +(11583,7,0,14,0,100,"nefarian SAY_PRIEST","Priests! If you're going to keep healing like that, we might as well make it a little more interesting!"), +(11583,8,0,14,0,100,"nefarian SAY_PALADIN","Paladins, I've heard you have many lives. Show me."), +(11583,9,0,14,0,100,"nefarian SAY_SHAMAN","Shamans, show me what your totems can do!"), +(11583,10,0,14,0,100,"nefarian SAY_WARLOCK","Warlocks, you shouldn't be playing with magic you don't understand. See what happens?"), +(11583,11,0,14,0,100,"nefarian SAY_HUNTER","Hunters and your annoying pea-shooters!"), +(11583,12,0,14,0,100,"nefarian SAY_ROGUE","Rogues? Stop hiding and face me!"); + +-- broodlord +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1469001 AND -1469000; +DELETE FROM `creature_text` WHERE `entry`=12017; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(12017,0,0,14,8286,100,"broodlord SAY_AGGRO","None of your kind should be here! You've doomed only yourselves!"), +(12017,1,0,14,8287,100,"broodlord SAY_LEASH","Clever Mortals but I am not so easily lured away from my sanctum!"); + +-- flamegor +DELETE FROM `script_texts` WHERE `entry`=-1469031; +DELETE FROM `creature_text` WHERE `entry`=11981; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(11981,0,0,16,0,100,"flamegor EMOTE_FRENZY","%s goes into a frenzy!"); + +-- chromaggus +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1469003 AND -1469002; +DELETE FROM `creature_text` WHERE `entry`=14020; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(14020,0,0,16,0,100,"chromaggus EMOTE_FRENZY","goes into a killing frenzy!"), +(14020,1,0,16,0,100,"chromaggus EMOTE_SHIMMER","flinches as its skin shimmers."); + +-- vaelastrasz +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1469030 AND -1469026; +DELETE FROM `creature_text` WHERE `entry`=13020; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(13020,0,0,14,8281,100,"vaelastrasz SAY_LINE1","Too late...friends. Nefarius' corruption has taken hold. I cannot...control myself."), +(13020,1,0,14,8282,100,"vaelastrasz SAY_LINE2","I beg you Mortals, flee! Flee before I lose all control. The Black Fire rages within my heart. I must release it!"), +(13020,2,0,14,8283,100,"vaelastrasz SAY_LINE3","FLAME! DEATH! DESTRUCTION! COWER MORTALS BEFORE THE WRATH OF LORD....NO! I MUST FIGHT THIS!"), +(13020,3,0,14,8285,100,"vaelastrasz SAY_HALFLIFE","Nefarius' hate has made me stronger than ever before. You should have fled, while you could, mortals! The fury of Blackrock courses through my veins!"), +(13020,4,0,14,8284,100,"vaelastrasz SAY_KILLTARGET","Forgive me $N, your death only adds to my failure."); + +-- doctor theolen krastinov +-- No delete query here, it's a generic script text for frenzy emotes. +DELETE FROM `creature_text` WHERE `entry`=11261; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(11261,0,0,16,0,100,"doctor theolen krastinov EMOTE_FRENZY_KILL","%s goes into a killing frenzy!"); + +-- vectus +-- No delete query here, it's a generic script text for frenzy emotes. +DELETE FROM `creature_text` WHERE `entry`=10432; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(10432,0,0,16,0,100,"vectus EMOTE_FRENZY_KILL","%s goes into a killing frenzy!"); + +-- galen +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000506 AND -1000500; +DELETE FROM `creature_text` WHERE `entry`=5391; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(5391,0,0,12,0,100,"galen SAY_PERIODIC","Help! Please, You must help me!"), +(5391,1,0,12,0,100,"galen SAY_QUEST_ACCEPTED","Let us leave this place."), +(5391,2,0,12,0,100,"galen SAY_ATTACKED_1","Look out! The $c attacks!"), +(5391,2,1,12,0,100,"galen SAY_ATTACKED_2","Help! I'm under attack!"), +(5391,3,0,12,0,100,"galen SAY_QUEST_COMPLETE","Thank you $N. I will remember you always. You can find my strongbox in my camp, north of Stonard."), +(5391,4,0,16,0,100,"galen EMOTE_WHISPER","%s whispers to $N the secret to opening his strongbox."), +(5391,5,0,16,0,100,"galen EMOTE_DISAPPEAR","%s disappears into the swamp."); + +-- smite +DELETE FROM `script_texts` WHERE `entry`=-1036001; +DELETE FROM `creature_text` WHERE `entry`=646; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(646,0,0,14,5777,100,"smite SAY_AGGRO","We're under attack! A vast, ye swabs! Repel the invaders!"); + +-- crusader +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1609519 AND -1609501; +DELETE FROM `creature_text` WHERE `entry` IN (28939,28610,28940); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +-- Scarlet Preacher +(28939,1,0,12,0,100,"crusader SAY_CRUSADER1","You'll be hanging in the gallows shortly, Scourge fiend!"), +(28939,1,1,12,0,100,"crusader SAY_CRUSADER2","You'll have to kill me, monster! I will tell you NOTHING!"), +(28939,1,2,12,0,100,"crusader SAY_CRUSADER3","You hit like a girl. Honestly. Is that the best you can do?"), +(28939,1,3,12,0,100,"crusader SAY_CRUSADER4","ARGH! You burned my last good tabard!"), +(28939,1,4,12,0,100,"crusader SAY_CRUSADER5","Argh... The pain... The pain is almost as unbearable as the lashings I received in grammar school when I was but a child."), +(28939,1,5,12,0,100,"crusader SAY_CRUSADER6","I used to work for Grand Inquisitor Isillien! Your idea of pain is a normal mid-afternoon for me!"), +(28939,2,0,12,0,100,"break crusader SAY_PERSUADED1","I'll tell you everything! STOP! PLEASE!"), +(28939,3,0,12,0,100,"break crusader SAY_PERSUADED2","We... We have only been told that the \"Crimson Dawn\" is an awakening. You see, the Light speaks to the High General. It is the Light..."), +(28939,4,0,12,0,100,"break crusader SAY_PERSUADED3","The Light that guides us. The movement was set in motion before you came... We... We do as we are told. It is what must be done."), +(28939,5,0,12,0,100,"break crusader SAY_PERSUADED4","I know very little else... The High General chooses who may go and who must stay behind. There's nothing else... You must believe me!"), +(28939,6,0,12,0,100,"break crusader SAY_PERSUADED6","NO! PLEASE! There is one more thing that I forgot to mention... A courier comes soon... From Hearthglen. It..."), +-- Scarlet Crusader +(28940,1,0,12,0,100,"crusader SAY_CRUSADER1","You'll be hanging in the gallows shortly, Scourge fiend!"), +(28940,1,1,12,0,100,"crusader SAY_CRUSADER2","You'll have to kill me, monster! I will tell you NOTHING!"), +(28940,1,2,12,0,100,"crusader SAY_CRUSADER3","You hit like a girl. Honestly. Is that the best you can do?"), +(28940,1,3,12,0,100,"crusader SAY_CRUSADER4","ARGH! You burned my last good tabard!"), +(28940,1,4,12,0,100,"crusader SAY_CRUSADER5","Argh... The pain... The pain is almost as unbearable as the lashings I received in grammar school when I was but a child."), +(28940,1,5,12,0,100,"crusader SAY_CRUSADER6","I used to work for Grand Inquisitor Isillien! Your idea of pain is a normal mid-afternoon for me!"), +(28940,2,0,12,0,100,"break crusader SAY_PERSUADED1","I'll tell you everything! STOP! PLEASE!"), +(28940,3,0,12,0,100,"break crusader SAY_PERSUADED2","We... We have only been told that the \"Crimson Dawn\" is an awakening. You see, the Light speaks to the High General. It is the Light..."), +(28940,4,0,12,0,100,"break crusader SAY_PERSUADED3","The Light that guides us. The movement was set in motion before you came... We... We do as we are told. It is what must be done."), +(28940,5,0,12,0,100,"break crusader SAY_PERSUADED4","I know very little else... The High General chooses who may go and who must stay behind. There's nothing else... You must believe me!"), +(28940,6,0,12,0,100,"break crusader SAY_PERSUADED6","NO! PLEASE! There is one more thing that I forgot to mention... A courier comes soon... From Hearthglen. It..."), +-- Scarlet Marksman +(28610,1,0,12,0,100,"crusader SAY_CRUSADER1","You'll be hanging in the gallows shortly, Scourge fiend!"), +(28610,1,1,12,0,100,"crusader SAY_CRUSADER2","You'll have to kill me, monster! I will tell you NOTHING!"), +(28610,1,2,12,0,100,"crusader SAY_CRUSADER3","You hit like a girl. Honestly. Is that the best you can do?"), +(28610,1,3,12,0,100,"crusader SAY_CRUSADER4","ARGH! You burned my last good tabard!"), +(28610,1,4,12,0,100,"crusader SAY_CRUSADER5","Argh... The pain... The pain is almost as unbearable as the lashings I received in grammar school when I was but a child."), +(28610,1,5,12,0,100,"crusader SAY_CRUSADER6","I used to work for Grand Inquisitor Isillien! Your idea of pain is a normal mid-afternoon for me!"), +(28610,2,0,12,0,100,"break crusader SAY_PERSUADED1","I'll tell you everything! STOP! PLEASE!"), +(28610,3,0,12,0,100,"break crusader SAY_PERSUADED2","We... We have only been told that the \"Crimson Dawn\" is an awakening. You see, the Light speaks to the High General. It is the Light..."), +(28610,4,0,12,0,100,"break crusader SAY_PERSUADED3","The Light that guides us. The movement was set in motion before you came... We... We do as we are told. It is what must be done."), +(28610,5,0,12,0,100,"break crusader SAY_PERSUADED4","I know very little else... The High General chooses who may go and who must stay behind. There's nothing else... You must believe me!"), +(28610,6,0,12,0,100,"break crusader SAY_PERSUADED6","NO! PLEASE! There is one more thing that I forgot to mention... A courier comes soon... From Hearthglen. It..."); + +-- koltira deathweaver +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1609570 AND -1609561; +DELETE FROM `creature_text` WHERE `entry`=28912; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(28912,0,0,12,0,100,"koltira deathweaver SAY_BREAKOUT1","I'll need to get my runeblade and armor... Just need a little more time."), +(28912,1,0,12,0,100,"koltira deathweaver SAY_BREAKOUT2","I'm still weak, but I think I can get an anti-magic barrier up. Stay inside it or you'll be destroyed by their spells."), +(28912,2,0,12,0,100,"koltira deathweaver SAY_BREAKOUT3","Maintaining this barrier will require all of my concentration. Kill them all!"), +(28912,3,0,12,0,100,"koltira deathweaver SAY_BREAKOUT4","There are more coming. Defend yourself! Don't fall out of the anti-magic field! They'll tear you apart without its protection!"), +(28912,4,0,12,0,100,"koltira deathweaver SAY_BREAKOUT5","I can't keep barrier up much longer... Where is that coward?"), +(28912,5,0,12,0,100,"koltira deathweaver SAY_BREAKOUT6","The High Inquisitor comes! Be ready, death knight! Do not let him draw you out of the protective bounds of my anti-magic field! Kill him and take his head!"), +(28912,6,0,12,0,100,"koltira deathweaver SAY_BREAKOUT7","Stay in the anti-magic field! Make them come to you!"), +(28912,7,0,12,0,100,"koltira deathweaver SAY_BREAKOUT8","The death of the High Inquisitor of New Avalon will not go unnoticed. You need to get out of here at once! Go, before more of them show up. I'll be fine on my own."), +(28912,8,0,12,0,100,"koltira deathweaver SAY_BREAKOUT9","I'll draw their fire, you make your escape behind me."), +(28912,9,0,14,0,100,"koltira deathweaver SAY_BREAKOUT10","Your High Inquisitor is nothing more than a pile of meat, Crusaders! There are none beyond the grasp of the Scourge!"); + +-- scarlet courier +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1609532 AND -1609531; +DELETE FROM `creature_text` WHERE `entry`=29076; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(29076,0,0,12,0,100,"scarlet courier SAY_TREE1","Hrm, what a strange tree. I must investigate."), +(29076,1,0,12,0,100,"scarlet courier SAY_TREE2","What's this!? This isn't a tree at all! Guards! Guards!"); + +-- high inquisitor valroth +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1609586 AND -1609581; +DELETE FROM `creature_text` WHERE `entry`=29001; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(29001,0,0,14,0,100,"high inquisitor valroth start","The Crusade will purge your kind from this world!"), +(29001,1,0,14,0,100,"high inquisitor valroth SAY_VALROTH_AGGRO","It seems that I'll need to deal with you myself. The High Inquisitor comes for you, Scourge!"), +(29001,2,0,12,0,100,"high inquisitor valroth SAY_VALROTH_RAND","You have come seeking deliverance? I have come to deliver!"), +(29001,2,1,12,0,100,"high inquisitor valroth SAY_VALROTH_RAND","LIGHT PURGE YOU!"), +(29001,2,2,12,0,100,"high inquisitor valroth SAY_VALROTH_RAND","Coward!"), +(29001,3,0,16,0,100,"high inquisitor valroth SAY_VALROTH_DEATH","High Inquisitor Valroth's remains fall to the ground."); + +-- A special surprise +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1609078 AND -1609025; +DELETE FROM `creature_text` WHERE `entry` IN (29032,29061,29065,29067,29068,29070,29074,29072,29073,29071,29053); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +-- Malar Bravehorn +(29032,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29032,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29032,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29032,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29032,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29032,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29032,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29032,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29032,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29032,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29032,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29032,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29032,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29032,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29032,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29032,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29032,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29032,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29032,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29032,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29032,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29032,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29032,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29032,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29032,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29032,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29032,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29032,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29032,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29032,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29032,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29032,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29032,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29032,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29032,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29032,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29032,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29032,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29032,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29032,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29032,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), + +(29032,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29032,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29032,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29032,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29032,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29032,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29032,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29032,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29032,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29032,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29032,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29032,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Ellen Stanbridge +(29061,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29061,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29061,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29061,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29061,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29061,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29061,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29061,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29061,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29061,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29061,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29061,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29061,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29061,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29061,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29061,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29061,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29061,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29061,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29061,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29061,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29061,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29061,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29061,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29061,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29061,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29061,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29061,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29061,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29061,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29061,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29061,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29061,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29061,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29061,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29061,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29061,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29061,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29061,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29061,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29061,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29061,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29061,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29061,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29061,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29061,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29061,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29061,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29061,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29061,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29061,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29061,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29061,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Yazmina Oakenthorn +(29065,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29065,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29065,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29065,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29065,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29065,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29065,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29065,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29065,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29065,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29065,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29065,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29065,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29065,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29065,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29065,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29065,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29065,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29065,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29065,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29065,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29065,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29065,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29065,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29065,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29065,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29065,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29065,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29065,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29065,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29065,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29065,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29065,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29065,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29065,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29065,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29065,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29065,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29065,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29065,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29065,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29065,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29065,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29065,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29065,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29065,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29065,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29065,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29065,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29065,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29065,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29065,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29065,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Donovan Pulfrost +(29067,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29067,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29067,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29067,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29067,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29067,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29067,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29067,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29067,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29067,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29067,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29067,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29067,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29067,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29067,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29067,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29067,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29067,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29067,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29067,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29067,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29067,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29067,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29067,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29067,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29067,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29067,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29067,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29067,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29067,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29067,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29067,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29067,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29067,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29067,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29067,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29067,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29067,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29067,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29067,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29067,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29067,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29067,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29067,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29067,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29067,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29067,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29067,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29067,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29067,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29067,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29067,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29067,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Goby Blastenheimer +(29068,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29068,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29068,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29068,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29068,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29068,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29068,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29068,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29068,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29068,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29068,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29068,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29068,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29068,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29068,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29068,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29068,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29068,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29068,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29068,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29068,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29068,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29068,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29068,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29068,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29068,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29068,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29068,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29068,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29068,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29068,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29068,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29068,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29068,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29068,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29068,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29068,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29068,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29068,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29068,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29068,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29068,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29068,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29068,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29068,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29068,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29068,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29068,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29068,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29068,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29068,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29068,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29068,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Valok the Righteous +(29070,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29070,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29070,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29070,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29070,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29070,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29070,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29070,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29070,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29070,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29070,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29070,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29070,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29070,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29070,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29070,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29070,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29070,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29070,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29070,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29070,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29070,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29070,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29070,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29070,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29070,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29070,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29070,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29070,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29070,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29070,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29070,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29070,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29070,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29070,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29070,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29070,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29070,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29070,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29070,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29070,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29070,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29070,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29070,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29070,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29070,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29070,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29070,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29070,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29070,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29070,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29070,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29070,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Lady Eonys +(29074,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29074,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29074,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29074,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29074,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29074,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29074,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29074,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29074,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29074,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29074,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29074,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29074,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29074,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29074,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29074,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29074,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29074,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29074,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29074,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29074,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29074,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29074,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29074,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29074,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29074,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29074,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29074,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29074,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29074,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29074,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29074,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29074,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29074,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29074,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29074,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29074,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29074,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29074,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29074,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29074,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29074,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29074,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29074,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29074,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29074,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29074,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29074,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29074,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29074,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29074,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29074,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29074,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Kug Ironjaw +(29072,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29072,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29072,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29072,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29072,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29072,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29072,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29072,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29072,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29072,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29072,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29072,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29072,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29072,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29072,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29072,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29072,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29072,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29072,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29072,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29072,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29072,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29072,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29072,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29072,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29072,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29072,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29072,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29072,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29072,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29072,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29072,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29072,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29072,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29072,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29072,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29072,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29072,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29072,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29072,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29072,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29072,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29072,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29072,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29072,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29072,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29072,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29072,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29072,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29072,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29072,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29072,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29072,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Iggy Darktusk +(29073,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29073,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29073,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29073,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29073,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29073,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29073,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29073,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29073,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29073,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29073,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29073,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29073,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29073,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29073,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29073,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29073,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29073,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29073,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29073,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29073,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29073,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29073,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29073,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29073,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29073,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29073,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29073,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29073,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29073,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29073,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29073,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29073,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29073,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29073,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29073,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29073,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29073,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29073,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29073,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29073,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29073,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29073,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29073,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29073,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29073,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29073,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29073,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29073,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29073,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29073,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29073,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29073,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Antoine Brack +(29071,0,0,12,0,100,"special_surprise SAY_EXEC_START_1","Come to finish the job, have you?"), +(29071,1,0,12,0,100,"special_surprise SAY_EXEC_START_2","Come to finish the job, have ye?"), +(29071,2,0,12,0,100,"special_surprise SAY_EXEC_START_3","Come ta finish da job, mon?"), +(29071,3,0,12,0,100,"special_surprise SAY_EXEC_PROG_1","You'll look me in the eyes when..."), +(29071,4,0,12,0,100,"special_surprise SAY_EXEC_PROG_2","Well this son o' Ironforge would like..."), +(29071,5,0,12,0,100,"special_surprise SAY_EXEC_PROG_3","Ironic, isn't it? To be killed..."), +(29071,6,0,12,0,100,"special_surprise SAY_EXEC_PROG_4","If you'd allow me just one..."), +(29071,7,0,12,0,100,"special_surprise SAY_EXEC_PROG_5","I'd like to stand for..."), +(29071,8,0,12,0,100,"special_surprise SAY_EXEC_PROG_6","I want to die like an orc..."), +(29071,9,0,12,0,100,"special_surprise SAY_EXEC_PROG_7","Dis troll gonna stand for da..."), +(29071,10,0,12,0,100,"special_surprise SAY_EXEC_NAME_1","$N?"), +(29071,11,0,12,0,100,"special_surprise SAY_EXEC_NAME_2","$N? Mon?"), +(29071,12,0,12,0,100,"special_surprise SAY_EXEC_RECOG_1","$N, I'd recognize that face anywhere... What... What have they done to you, $N?"), +(29071,13,0,12,0,100,"special_surprise SAY_EXEC_RECOG_2","$N, I'd recognize those face tentacles anywhere... What... What have they done to you, $N?"), +(29071,14,0,12,0,100,"special_surprise SAY_EXEC_RECOG_3","$N, I'd recognize that face anywhere... What... What have they done to ye, $Glad:lass;?"), +(29071,15,0,12,0,100,"special_surprise SAY_EXEC_RECOG_4","$N, I'd recognize that decay anywhere... What... What have they done to you, $N?"), +(29071,16,0,12,0,100,"special_surprise SAY_EXEC_RECOG_5","$N, I'd recognize those horns anywhere... What have they done to you, $N?"), +(29071,17,0,12,0,100,"special_surprise SAY_EXEC_RECOG_6","$N, I'd recognize dem tusks anywhere... What... What have dey done ta you, mon?"), +(29071,18,0,12,0,100,"special_surprise SAY_EXEC_NOREM_1","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a draenei!"), +(29071,19,0,12,0,100,"special_surprise SAY_EXEC_NOREM_2","Ye don't remember me, do ye? Blasted Scourge... They've tried to drain ye o' everything that made ye a righteous force o' reckoning. Every last ounce o' good... Everything that made you a $Gson:daughter; of Ironforge!"), +(29071,20,0,12,0,100,"special_surprise SAY_EXEC_NOREM_3","You don't remember me, do you? We were humans once - long, long ago - until Lordaeron fell to the Scourge. Your transformation to a Scourge zombie came shortly after my own. Not long after that, our minds were freed by the Dark Lady."), +(29071,21,0,12,0,100,"special_surprise SAY_EXEC_NOREM_4","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a pint-sized force of reckoning. Every last ounce of good... Everything that made you a gnome!"), +(29071,22,0,12,0,100,"special_surprise SAY_EXEC_NOREM_5","You don't remember me, do you? Blasted Scourge...They've tried to drain of everything that made you a righteous force of reckoning. Every last ounce of good...Everything that made you a human!"), +(29071,23,0,12,0,100,"special_surprise SAY_EXEC_NOREM_6","You don't remember me? When you were a child your mother would leave you in my care while she served at the Temple of the Moon. I held you in my arms and fed you with honey and sheep's milk to calm you until she would return. You were my little angel. Blasted Scourge... What have they done to you, $N?"), +(29071,24,0,12,0,100,"special_surprise SAY_EXEC_NOREM_7","You don't recognize me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you an orc!"), +(29071,25,0,12,0,100,"special_surprise SAY_EXEC_NOREM_8","You don't remember me, do you? Blasted Scourge... They've tried to drain you of everything that made you a righteous force of reckoning. Every last ounce of good... Everything that made you a tauren!"), +(29071,26,0,12,0,100,"special_surprise SAY_EXEC_NOREM_9","You don't remember me, mon? Damn da Scourge! Dey gone ta drain you of everytin dat made ya a mojo masta. Every last ounce of good... Everytin' dat made ya a troll hero, mon!"), +(29071,27,0,12,0,100,"special_surprise SAY_EXEC_THINK_1","A pact was made, $Gbrother:sister;! We vowed vengeance against the Lich King! For what he had done to us! We battled the Scourge as Forsaken, pushing them back into the plaguelands and freeing Tirisfal! You and I were champions of the Forsaken!"), +(29071,28,0,12,0,100,"special_surprise SAY_EXEC_THINK_2","You must remember the splendor of life, $Gbrother:sister;. You were a champion of the Kaldorei once! This isn't you!"), +(29071,29,0,12,0,100,"special_surprise SAY_EXEC_THINK_3","Think, $N. Think back. Try and remember the majestic halls of Silvermoon City, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the sin'dorei once! This isn't you."), +(29071,30,0,12,0,100,"special_surprise SAY_EXEC_THINK_4","Think, $N. Think back. Try and remember the proud mountains of Argus, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the draenei once! This isn't you."), +(29071,31,0,12,0,100,"special_surprise SAY_EXEC_THINK_5","Think, $N. Think back. Try and remember the snow capped mountains o' Dun Morogh! Ye were born there, $Glad:lass;. Remember the splendor o' life, $N! Ye were a champion o' the dwarves once! This isn't ye!"), +(29071,32,0,12,0,100,"special_surprise SAY_EXEC_THINK_6","Think, $N. Think back. Try and remember Gnomeregan before those damned troggs! Remember the feel of an [arclight spanner] $Gbrother:sister;. You were a champion of gnome-kind once! This isn't you."), +(29071,33,0,12,0,100,"special_surprise SAY_EXEC_THINK_7","Think, $N. Think back. Try and remember the hills and valleys of Elwynn, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the Alliance once! This isn't you."), +(29071,34,0,12,0,100,"special_surprise SAY_EXEC_THINK_8","Think, $N. Think back. Try and remember Durotar, $Gbrother:sister;! Remember the sacrifices our heroes made so that we could be free of the blood curse. Harken back to the Valley of Trials, where we were reborn into a world without demonic influence. We found the splendor of life, $N. Together! This isn't you. You were a champion of the Horde once!"), +(29071,35,0,12,0,100,"special_surprise SAY_EXEC_THINK_9","Think, $N. Think back. Try and remember the rolling plains of Mulgore, where you were born. Remember the splendor of life, $Gbrother:sister;. You were a champion of the tauren once! This isn't you."), +(29071,36,0,12,0,100,"special_surprise SAY_EXEC_THINK_10","TINK $N. Tink back, mon! We be Darkspear, mon! Bruddas and sistas! Remember when we fought the Zalazane and done took he head and freed da Echo Isles? MON! TINK! You was a champion of da Darkspear trolls!"), +(29071,37,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_1","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29071,38,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_2","Listen to me, $N Ye must fight against the Lich King's control. He's a monster that wants to see this world - our world - in ruin. Don't let him use ye to accomplish his goals. Ye were once a hero and ye can be again. Fight, damn ye! Fight his control!"), +(29071,39,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_3","Listen to me, $N. You must fight against the Lich King's control. He is a monster that wants to see this world - our world - in ruin. Don't let him use you to accomplish his goals AGAIN. You were once a hero and you can be again. Fight, damn you! Fight his control!"), +(29071,40,0,12,0,100,"special_surprise SAY_EXEC_LISTEN_4","Listen ta me, $Gbrudda:sista;. You must fight against da Lich King's control. He be a monstar dat want ta see dis world - our world - be ruined. Don't let he use you ta accomplish he goals. You be a hero once and you be a hero again! Fight it, mon! Fight he control!"), +(29071,42,0,12,0,100,"special_surprise SAY_EXEC_TIME_1","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Silvermoon. This world is worth saving!"), +(29071,43,0,12,0,100,"special_surprise SAY_EXEC_TIME_2","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Argus. Don't let that happen to this world."), +(29071,44,0,12,0,100,"special_surprise SAY_EXEC_TIME_3","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both $N... For KHAAAAAAAAZZZ MODAAAAAANNNNNN!!!"), +(29071,45,0,12,0,100,"special_surprise SAY_EXEC_TIME_4","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Tirisfal! This world is worth saving!"), +(29071,46,0,12,0,100,"special_surprise SAY_EXEC_TIME_5","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Gnomeregan! This world is worth saving."), +(29071,47,0,12,0,100,"special_surprise SAY_EXEC_TIME_6","There... There's no more time for me. I'm done for. FInish me off, $N. Do it or they'll kill us both. $N...Remember Elwynn. This world is worth saving."), +(29071,48,0,12,0,100,"special_surprise SAY_EXEC_TIME_7","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Teldrassil, our beloved home. This world is worth saving."), +(29071,49,0,12,0,100,"special_surprise SAY_EXEC_TIME_8","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... For the Horde! This world is worth saving."), +(29071,50,0,12,0,100,"special_surprise SAY_EXEC_TIME_9","There... There's no more time for me. I'm done for. Finish me off, $N. Do it or they'll kill us both. $N... Remember Mulgore. This world is worth saving."), +(29071,51,0,12,0,100,"special_surprise SAY_EXEC_TIME_10","Der... Der's no more time for me. I be done for. Finish me off $N. Do it or they'll kill us both. $N... Remember Sen'jin Village, mon! Dis world be worth saving!"), +(29071,52,0,12,0,100,"special_surprise SAY_EXEC_WAITING","Do it, $N! Put me out of my misery!"), +(29071,53,0,16,0,100,"special_surprise EMOTE_DIES","%s dies from his wounds."), +-- Plaguefist +(29053,41,0,14,0,100,"special_surprise SAY_PLAGUEFIST","What's going on in there? What's taking so long, $N?"); + +-- Highlord Darion Mograine +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1609286 AND -1609201; +DELETE FROM `creature_text` WHERE `entry` IN (29183,29175,29227,29228,29176,29178,29204,29173); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(29173,0,0,14,14677,100,"Highlord Darion Mograine","Soldiers of the Scourge, stand ready! You will soon be able to unleash your fury upon the Argent Dawn!"), +(29173,1,0,14,14678,100,"Highlord Darion Mograine","The sky weeps at the devastation of sister earth! Soon, tears of blood will rain down upon us!"), +(29173,2,0,14,14681,100,"Highlord Darion Mograine","Death knights of Acherus, the death march begins!"), +(29173,3,0,14,14679,100,"Highlord Darion Mograine","Soldiers of the Scourge, death knights of Acherus, minions of the darkness: hear the call of the Highlord!"), +(29173,4,0,14,14680,100,"Highlord Darion Mograine","RISE!"), +(29173,5,0,14,14682,100,"Highlord Darion Mograine","The skies turn red with the blood of the fallen! The Lich King watches over us, minions! Onward! Leave only ashes and misery in your destructive wake!"), +(29176,6,0,14,0,100,"Korfax, Champion of the Light","Scourge armies approach!"), +(29178,7,0,14,14487,100,"Lord Maxwell Tyrosus","Stand fast, brothers and sisters! The Light will prevail!"), +(29173,8,0,12,14683,100,"Highlord Darion Mograine","Kneel before the Highlord!"), +(29173,8,1,12,14684,100,"Highlord Darion Mograine","You stand no chance!"), +(29173,8,2,12,14685,100,"Highlord Darion Mograine","The Scourge will destroy this place!"), +(29173,8,3,12,14686,100,"Highlord Darion Mograine","Your life is forfeit."), +(29173,8,4,12,14687,100,"Highlord Darion Mograine","Life is meaningless without suffering."), +(29173,8,5,12,14688,100,"Highlord Darion Mograine","How much longer will your forces hold out?"), +(29173,8,6,12,14689,100,"Highlord Darion Mograine","The Argent Dawn is finished!"), +(29173,8,7,12,14690,100,"Highlord Darion Mograine","Spare no one!"), +(29173,8,8,12,14691,100,"Highlord Darion Mograine","What is this?! My... I cannot strike..."), +(29173,8,9,14,14692,100,"Highlord Darion Mograine","Obey me, blade!"), +(29173,8,10,12,14693,100,"Highlord Darion Mograine","You will do as I command! I am in control here!"), +(29173,8,11,12,14694,100,"Highlord Darion Mograine","I can not... the blade fights me."), +(29173,8,12,12,14695,100,"Highlord Darion Mograine","What is happening to me?"), +(29173,8,13,12,14696,100,"Highlord Darion Mograine","Power...wanes..."), +(29173,8,14,12,14697,100,"Highlord Darion Mograine","Ashbringer defies me..."), +(29173,8,15,12,14698,100,"Highlord Darion Mograine","Minions, come to my aid!"), +(29175,24,0,14,14584,100,"Highlord Tirion Fordring","You cannot win, Darion!"), +(29175,25,0,14,14585,100,"Highlord Tirion Fordring","Bring them before the chapel!"), +(29173,26,0,12,14699,100,"Highlord Darion Mograine","Stand down, death knights. We have lost... The Light... This place... No hope..."), +(29175,27,0,12,14586,100,"Highlord Tirion Fordring","Have you learned nothing, boy? You have become all that your father fought against! Like that coward, Arthas, you allowed yourself to be consumed by the darkness...the hate... Feeding upon the misery of those you tortured and killed!"), +(29175,28,0,12,14587,100,"Highlord Tirion Fordring","Your master knows what lies beneath the chapel. It is why he dares not show his face! He's sent you and your death knights to meet their doom, Darion."), +(29175,29,0,12,14588,100,"Highlord Tirion Fordring","What you are feeling right now is the anguish of a thousand lost souls! Souls that you and your master brought here! The Light will tear you apart, Darion!"), +(29173,30,0,12,14700,100,"Highlord Darion Mograine","Save your breath, old man. It might be the last you ever draw."), +(29227,31,0,12,14493,100,"Highlord Alexandros Mograine","My son! My dear, beautiful boy!"), +(29173,32,0,12,14701,100,"Highlord Darion Mograine","Father!"), +(29173,33,0,12,14702,100,"Highlord Darion Mograine","Argh...what...is..."), +(29228,34,0,12,14703,100,"Darion Mograine","Father, you have returned!"), +(29228,35,0,12,14704,100,"Darion Mograine","You have been gone a long time, father. I thought..."), +(29227,36,0,12,14494,100,"Highlord Alexandros Mograine","Nothing could have kept me away from here, Darion. Not from my home and family."), +(29228,37,0,12,14705,100,"Darion Mograine","Father, I wish to join you in the war against the undead. I want to fight! I can sit idle no longer!"), +(29227,38,0,12,14495,100,"Highlord Alexandros Mograine","Darion Mograine, you are barely of age to hold a sword, let alone battle the undead hordes of Lordaeron! I couldn't bear losing you. Even the thought..."), +(29228,39,0,12,14706,100,"Darion Mograine","If I die, father, I would rather it be on my feet, standing in defiance against the undead legions! If I die, father, I die with you!"), +(29227,40,0,12,14496,100,"Highlord Alexandros Mograine","My son, there will come a day when you will command the Ashbringer and, with it, mete justice across this land. I have no doubt that when that day finally comes, you will bring pride to our people and that Lordaeron will be a better place because of you. But, my son, that day is not today."), +(29227,41,0,12,14497,100,"Highlord Alexandros Mograine","Do not forget..."), +(29183,42,0,14,14803,100,"The Lich King","Touching..."), +(29173,43,0,14,14707,100,"Highlord Darion Mograine","You have've betrayed me! You betrayed us all you monster! Face the might of Mograine!"), +(29183,44,0,12,14805,100,"The Lich King","He's mine now..."), +(29183,45,0,12,14804,100,"The Lich King","Pathetic..."), +(29175,46,0,12,14589,100,"Highlord Tirion Fordring","You're a damned monster, Arthas!"), +(29183,47,0,12,14806,100,"The Lich King","You were right, Fordring. I did send them in to die. Their lives are meaningless, but yours..."), +(29183,48,0,12,14807,100,"The Lich King","How simple it was to draw the great Tirion Fordring out of hiding. You've left yourself exposed, paladin. Nothing will save you..."), +(29178,49,0,14,14488,100,"Lord Maxwell Tyrosus","ATTACK!!!"), +(29183,50,0,14,14808,100,"The Lich King","APOCALYPSE!"), +(29173,51,0,12,14708,100,"Highlord Darion Mograine","That day is not today..."), +(29173,52,0,14,14709,100,"Highlord Darion Mograine","Tirion!"), +(29175,53,0,14,14591,100,"Highlord Tirion Fordring","ARTHAS!!!!"), +(29183,54,0,14,14809,100,"The Lich King","What is this?"), +(29175,55,0,14,14592,100,"Highlord Tirion Fordring","Your end."), +(29183,56,0,14,14810,100,"The Lich King","Impossible..."), +(29183,57,0,14,14811,100,"The Lich King","This... isn't... over..."), +(29183,58,0,14,14812,100,"The Lich King","When next we meet it won't be on holy ground, paladin."), +(29175,59,0,12,14593,100,"Highlord Tirion Fordring","Rise, Darion, and listen..."), +(29175,60,0,12,14594,100,"Highlord Tirion Fordring","We have all been witness to a terrible tragedy. The blood of good men has been shed upon this soil! Honorable knights, slain defending their lives - our lives!"), +(29175,61,0,12,14595,100,"Highlord Tirion Fordring","And while such things can never be forgotten, we must remain vigilant in our cause!"), +(29175,62,0,12,14596,100,"Highlord Tirion Fordring","The Lich King must answer for what he has done and must not be allowed to cause further destruction to our world."), +(29175,63,0,12,14597,100,"Highlord Tirion Fordring","I make a promise to you now, brothers and sisters: The Lich King will be defeated! On this day, I call for a union."), +(29175,64,0,12,14598,100,"Highlord Tirion Fordring","The Argent Dawn and the Order of the Silver Hand will come together as one! We will succeed where so many before us have failed!"), +(29175,65,0,12,14599,100,"Highlord Tirion Fordring","We will take the fight to Arthas and tear down the walls of Icecrown!"), +(29175,66,0,14,14600,100,"Highlord Tirion Fordring","The Argent Crusade comes for you, Arthas!"), +(29173,67,0,12,14710,100,"Highlord Darion Mograine","So too do the Knights of the Ebon Blade... While our kind has no place in your world, we will fight to bring an end to the Lich King. This I vow!"), +(29173,68,0,16,0,100,"","Thousands of Scourge rise up at the Highlord's command."), +(29173,69,0,16,0,100,"","The army marches towards Light's Hope Chapel."), +(29173,70,0,16,0,100,"","After over a hundred Defenders of the Light fall, Highlord Tirion Fordring arrives."), +(29204,71,0,16,0,100,"Orbaz","%s flee"), +(29173,72,0,16,0,100,"Highlord Darion Mograine","%s kneels in defeat before Tirion Fordring."), +(29227,73,0,16,0,100,"Highlord Alexandros Mograine","%s arrives."), +(29173,74,0,16,0,100,"Highlord Darion Mograine","%s becomes a shade of his past, and walks up to his father."), +(29228,75,0,16,0,100,"Darion Mograine","%s hugs his father."), +(29173,76,0,16,0,100,"Alexandros","%s disappears, and the Lich King appears."), +(29173,77,0,16,0,100,"Highlord Darion Mograine","%s becomes himself again...and is now angry."), +(29183,78,0,16,0,100,"The Lich King","%s casts a spell on Tirion."), +(29175,79,0,16,0,100,"Highlord Tirion Fordring","%s gasps for air."), +(29183,80,0,16,0,100,"The Lich King","%s casts a powerful spell, killing the Defenders and knocking back the others."), +(29173,81,0,16,0,100,"Highlord Darion Mograine","%s throws the Corrupted Ashbringer to Tirion, who catches it. Tirion becomes awash with Light, and the Ashbringer is cleansed."), +(29173,82,0,16,0,100,"Highlord Darion Mograine","%s collapses."), +(29175,83,0,16,0,100,"Highlord Tirion Fordring","%s charges towards the Lich King, Ashbringer in hand and strikes the Lich King."), +(29183,84,0,16,0,100,"The Lich King","%s disappears. Tirion walks over to where Darion lay"), +(29173,85,0,16,0,100,"","Light washes over the chapel ? the Light of Dawn is uncovered."); + +-- grimstone +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1230008 AND -1230003; +DELETE FROM `creature_text` WHERE `entry`=10096; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(10096,0,0,14,0,100,"grimstone SCRIPT_TEXT1","You have been sentenced to death for crimes against the Dark Iron nation!"), +(10096,1,0,14,0,100,"grimstone SCRIPT_TEXT2","The Sons of Thaurissan shall watch you perish in the Ring of the Law!"), +(10096,2,0,14,0,100,"grimstone SCRIPT_TEXT3","Unleash the fury and let it be done!"), +(10096,3,0,14,0,100,"grimstone SCRIPT_TEXT4","Haha! I bet you thought you were done!"), +(10096,4,0,14,0,100,"grimstone SCRIPT_TEXT5","But your real punishment lies ahead."), +(10096,5,0,14,0,100,"grimstone SCRIPT_TEXT6","Good riddance!"); + +-- rocknot +DELETE FROM `script_texts` WHERE `entry`=-1230000; +DELETE FROM `creature_text` WHERE `entry`=9503; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(9503,0,0,12,0,100,"rocknot SAY_GOT_BEER","Ah, hits the spot!"); + +-- doctor theolen krastinov +-- No delete query here, it's a generic script text for frenzy emotes. +DELETE FROM `creature_text` WHERE `entry`=9028; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(9028,0,0,16,0,100,"grizzle EMOTE_FRENZY_KILL","%s goes into a killing frenzy!"); + +-- dagran +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1230002 AND -1230001; +DELETE FROM `creature_text` WHERE `entry`=9019; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(9019,0,0,14,0,100,"dagran SAY_AGGRO","Come to aid the Throne!"), +(9019,1,0,14,0,100,"dagran SAY_SLAY","Hail to the king, baby!"); + +-- lilatha +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000146 AND -1000140; +DELETE FROM `creature_text` WHERE `entry` IN (16295,16220); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(16295,0,0,12,0,100,"lilatha SAY_START","Let's go."), +(16295,1,0,12,0,100,"lilatha SAY_PROGRESS1","$N, let's use the antechamber to the right."), +(16295,2,0,12,0,100,"lilatha SAY_PROGRESS2","I can see the light at the end of the tunnel!"), +(16295,3,0,12,0,100,"lilatha SAY_PROGRESS3","There's Farstrider Enclave now, $C. Not far to go... Look out! Troll ambush!!"), +(16295,4,0,12,0,100,"lilatha SAY_END1","Thank you for saving my life and bringing me back to safety, $N"), +(16295,5,0,12,0,100,"lilatha SAY_END2","Captain Helios, I've been rescued from the Amani Catacombs. Reporting for duty, sir!"), +(16220,0,0,12,0,100,"lilatha CAPTAIN_ANSWER","Liatha, get someone to look at those injuries. Thank you for bringing her back safely."); + +-- stillblade +DELETE FROM `script_texts` WHERE `entry`=-1000193; +DELETE FROM `creature_text` WHERE `entry`=17768; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(17768,0,0,12,0,100,"stillblade SAY_HEAL","Thank you, dear $C, you just saved my life."); + +-- stilwell +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000297 AND -1000293; +DELETE FROM `creature_text` WHERE `entry`=6182; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(6182,0,0,12,0,100,"stilwell SAY_DS_START","To the house! Stay close to me, no matter what! I have my gun and ammo there!"), +(6182,1,0,12,0,100,"stilwell SAY_DS_DOWN_1","We showed that one!"), +(6182,2,0,12,0,100,"stilwell SAY_DS_DOWN_2","One more down!"), +(6182,3,0,12,0,100,"stilwell SAY_DS_DOWN_3","We've done it! We won!"), +(6182,4,0,12,0,100,"stilwell SAY_DS_PROLOGUE","Meet me down by the orchard-- I just need to put my gun away."); + +-- defias traitor +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000105 AND -1000101; +DELETE FROM `creature_text` WHERE `entry`=467; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(467,0,0,12,0,100,"defias traitor SAY_START","Follow me, $N. I'll take you to the Defias hideout. But you better protect me or I am as good as dead."), +(467,1,0,12,0,100,"defias traitor SAY_PROGRESS","The entrance is hidden here in Moonbrook. Keep your eyes peeled for thieves. They want me dead."), +(467,2,0,12,0,100,"defias traitor SAY_END","You can go tell Stoutmantle this is where the Defias Gang is holed up, $N."), +(467,3,0,12,0,100,"defias traitor SAY_AGGRO_1","%s coming in fast! Prepare to fight!"), +(467,3,1,12,0,100,"defias traitor SAY_AGGRO_2","Help!"); + +-- vexallus +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1585011 AND -1585007; +DELETE FROM `creature_text` WHERE `entry`=24744; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(24744,0,0,14,12389,100,"vexallus SAY_AGGRO","Drain...life!"), +(24744,1,0,14,12392,100,"vexallus SAY_ENERGY","Un...con...tainable."), +(24744,2,0,14,12390,100,"vexallus SAY_OVERLOAD","Un...leash..."), +(24744,3,0,14,12393,100,"vexallus SAY_KILL","Con...sume."), +(24744,4,0,41,0,100,"vexallus EMOTE_DISCHARGE_ENERGY","%s discharges pure energy!"); + +-- kaelthas +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1585029 AND -1585023; +DELETE FROM `creature_text` WHERE `entry`=24664; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(24664,0,0,14,12413,100,"kaelthas MT SAY_AGGRO","Don't look so smug! I know what you're thinking, but Tempest Keep was merely a set back. Did you honestly believe I would trust the future to some blind, half-night elf mongrel? Oh no, he was merely an instrument, a stepping stone to a much larger plan! It has all led to this, and this time, you will not interfere!"), +(24664,1,0,14,12415,100,"kaelthas MT SAY_PHOENIX","Vengeance burns!"), +(24664,2,0,14,12417,100,"kaelthas MT SAY_FLAMESTRIKE","Felomin ashal!"), +(24664,3,0,14,12418,100,"kaelthas MT SAY_GRAVITY_LAPSE","I'll turn your world... upside... down..."), +(24664,4,0,14,12419,100,"kaelthas MT SAY_TIRED","Master... grant me strength."), +(24664,5,0,14,12420,100,"kaelthas MT SAY_RECAST_GRAVITY","Do not... get too comfortable."), +(24664,6,0,14,12421,100,"kaelthas MT SAY_DEATH","My demise accomplishes nothing! The Master will have you! You will drown in your own blood! This world shall burn! Aaaghh!"); + +-- selin +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1585006 AND -1585000; +DELETE FROM `creature_text` WHERE `entry`=24723; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(24723,0,0,14,12378,100,"selin SAY_AGGRO","You only waste my time!"), +(24723,1,0,14,12381,100,"selin SAY_ENERGY","My hunger knows no bounds!"), +(24723,2,0,14,12382,100,"selin SAY_EMPOWERED","Yes! I am a god!"), +(24723,3,0,14,12388,100,"selin SAY_KILL_1","Enough distractions!"), +(24723,3,1,14,12385,100,"selin SAY_KILL_2","I am invincible!"), +(24723,4,0,14,12383,100,"selin SAY_DEATH","No! More... I must have more!"), +(24723,5,0,41,0,100,"selin EMOTE_CRYSTAL","%s begins to channel from the nearby Fel Crystal..."); + +-- delrissa +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1585022 AND -1585012; +DELETE FROM `creature_text` WHERE `entry`=24560; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(24560,0,0,14,12395,100,"delrissa SAY_AGGRO","Annihilate them!"), +(24560,1,0,14,12398,100,"delrissa LackeyDeath1","Oh, the horror."), +(24560,2,0,14,12400,100,"delrissa LackeyDeath2","Well, aren't you lucky?"), +(24560,3,0,14,12401,100,"delrissa LackeyDeath3","Now I'm getting annoyed."), +(24560,4,0,14,12403,100,"delrissa LackeyDeath4","Lackies be damned! I'll finish you myself!"), +(24560,5,0,14,12405,100,"delrissa PlayerDeath1","I call that a good start."), +(24560,6,0,14,12407,100,"delrissa PlayerDeath2","I could have sworn there were more of you."), +(24560,7,0,14,12409,100,"delrissa PlayerDeath3","Not really much of a group, anymore, is it?"), +(24560,8,0,14,12410,100,"delrissa PlayerDeath4","One is such a lonely number."), +(24560,9,0,14,12411,100,"delrissa PlayerDeath5","It's been a kick, really."), +(24560,10,0,14,12397,100,"delrissa SAY_DEATH","Not what I had... planned..."); + +-- lord gregor lescovar +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000463 AND -1000457; +DELETE FROM `creature_text` WHERE `entry` IN (1755,7766,1754,1756); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(1756,0,0,12,0,100,"lord gregor lescovar SAY_GUARD_2","Yes, sir!"), +(1754,0,0,12,0,100,"lord gregor lescovar SAY_LESCOVAR_2","It's time for my meditation, leave me."), +(1754,1,0,12,0,100,"lord gregor lescovar SAY_LESCOVAR_3","There you are. What news from Westfall?"), +(1754,2,0,12,0,100,"lord gregor lescovar SAY_LESCOVAR_4","Hmm, it could be that meddle Shaw. I will see what I can discover. Be off with you. I'll contact you again soon."), +(1755,0,0,12,0,100,"lord gregor lescovar SAY_MARZON_1","VanCleef sends word that the plans are underway. But he's hear rumors about someone snooping about."), +(1755,1,0,12,0,100,"lord gregor lescovar SAY_MARZON_2","The Defias shall succeed! No meek adventurer will stop us!"), +(7766,0,0,14,0,100,"lord gregor lescovar SAY_TYRION_2","That's it! That's what you were waiting for! KILL THEM!"); + +-- tyrion spybot +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1000456 AND -1000450 OR `entry`=-1000499; +DELETE FROM `creature_text` WHERE `entry` IN (7766,8856,1756,1754); +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(8856,0,0,12,0,100,"tyrion spybot SAY_QUEST_ACCEPT_ATTACK","By your command!"), +(8856,1,0,12,0,100,"tyrion spybot SAY_SPYBOT_1","Good day to you both. I would speak to Lord Lescovar."), +(8856,2,0,12,0,100,"tyrion spybot SAY_SPYBOT_2","Thank you. The Light be with you both."), +(8856,3,0,12,0,100,"tyrion spybot SAY_SPYBOT_3","Milord, your guest has arrived. He awaits your presence."), +(8856,4,0,12,0,100,"tyrion spybot SAY_SPYBOT_4","I shall use the time wisely, milord. Thank you."), +(7766,0,0,12,0,100,"tyrion spybot SAY_TYRION_1","Wait here. Spybot will make Lescovar come out as soon as possible. Be ready! Attack only after you've overheard their conversation."), +(1756,0,0,12,0,100,"tyrion spybot SAY_GUARD_1","Of course. He awaits you in the library."), +(1754,0,0,12,0,100,"tyrion spybot SAY_LESCOVAR_1","Ah, thank you kindly. I will leave you to the library while I tend to this small matter."); + +-- rager +DELETE FROM `script_texts` WHERE `entry`=-1409002; +DELETE FROM `creature_text` WHERE `entry`=11988; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(11988,0,0,16,0,100,"core rager EMOTE_LOWHP","%s refuses to die while its master is in trouble."); + +-- ragnaros +DELETE FROM `script_texts` WHERE `entry` BETWEEN -1409018 AND -1409008; +DELETE FROM `creature_text` WHERE `entry`=11502; +INSERT INTO `creature_text`(`entry`,`groupid`,`id`,`type`,`sound`,`probability`,`comment`,`text`) VALUES +(11502,0,0,14,8040,100,"ragnaros SAY_SUMMON_MAJ","Behold Ragnaros, the Firelord! He who was ancient when this world was young! Bow before him, mortals! Bow before your ending!"), +(11502,1,0,14,8043,100,"ragnaros SAY_ARRIVAL1_RAG","TOO SOON! YOU HAVE AWAKENED ME TOO SOON, EXECUTUS! WHAT IS THE MEANING OF THIS INTRUSION?"), +(11502,2,0,14,8041,100,"ragnaros SAY_ARRIVAL2_MAJ","These mortal infidels, my lord! They have invaded your sanctum, and seek to steal your secrets!"), +(11502,3,0,14,8044,100,"ragnaros SAY_ARRIVAL3_RAG","FOOL! YOU ALLOWED THESE INSECTS TO RUN RAMPANT THROUGH THE HALLOWED CORE, AND NOW YOU LEAD THEM TO MY VERY LAIR? YOU HAVE FAILED ME, EXECUTUS! JUSTICE SHALL BE MET, INDEED!"), +(11502,4,0,14,8045,100,"ragnaros SAY_ARRIVAL5_RAG","NOW FOR YOU, INSECTS. BOLDLY YOU SAUGHT THE POWER OF RAGNAROS NOW YOU SHALL SEE IT FIRST HAND."), +(11502,5,0,14,8049,100,"ragnaros SAY_REINFORCEMENTS1","COME FORTH, MY SERVANTS! DEFEND YOUR MASTER!"), +(11502,6,0,14,8050,100,"ragnaros SAY_REINFORCEMENTS2","YOU CANNOT DEFEAT THE LIVING FLAME! COME YOU MINIONS OF FIRE! COME FORTH YOU CREATURES OF HATE! YOUR MASTER CALLS!"), +(11502,7,0,14,8046,100,"ragnaros SAY_HAND","BY FIRE BE PURGED!"), +(11502,8,0,14,8047,100,"ragnaros SAY_WRATH","TASTE THE FLAMES OF SULFURON!"), +(11502,9,0,14,8051,100,"ragnaros SAY_KILL","DIE INSECT!"), +(11502,10,0,14,8048,100,"ragnaros SAY_MAGMABURST","MY PATIENCE IS DWINDLING! COME, GNATS, TO YOUR DEATH!"); |
