-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.sql
1622 lines (1555 loc) · 67.6 KB
/
database.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 3.4.9
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Erstellungszeit: 28. Mrz 2017 um 11:17
-- Server Version: 5.6.34
-- PHP-Version: 5.6.30-he.0
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Datenbank: `guild.gerritalex.de`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_api`
--
CREATE TABLE IF NOT EXISTS `ovw_api` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`wow_key` varchar(32) COLLATE latin1_german2_ci NOT NULL,
`wlogs_key` varchar(32) COLLATE latin1_german2_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=2 ;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_classes`
--
CREATE TABLE IF NOT EXISTS `ovw_classes` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`class` text COLLATE latin1_german2_ci NOT NULL,
`color` varchar(25) COLLATE latin1_german2_ci NOT NULL,
`colorhex` varchar(7) COLLATE latin1_german2_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=13 ;
--
-- Daten für Tabelle `ovw_classes`
--
INSERT INTO `ovw_classes` (`id`, `class`, `color`, `colorhex`) VALUES
(1, 'Warrior', 'rgba(199, 156, 110, 0.6)', '#C79C6E'),
(2, 'Paladin', 'rgba(245, 140, 186, 0.6)', '#F58CBA'),
(3, 'Hunter', 'rgba(102, 160, 77, 0.6)', '#ABD473'),
(4, 'Rogue', 'rgba(255, 245, 105, 0.6)', '#FFF569'),
(5, 'Priest', 'rgba(255, 255, 255, 0.6)', '#FFFFFF'),
(6, 'Death Knight', 'rgba(196, 31, 59, 0.6)', '#C41F3B'),
(7, 'Shaman', 'rgba(0, 112, 222, 0.6)', '#0070DE'),
(8, 'Mage', 'rgba(105, 204, 240, 0.6)', '#69CCF0'),
(9, 'Warlock', 'rgba(148, 130, 201, 0.6)', '#9482C9'),
(10, 'Monk', 'rgba(0, 255, 150, 0.6)', '#00FF96'),
(11, 'Druid', 'rgba(255, 125, 10, 0.6)', '#FF7D0A'),
(12, 'Demon Hunter', 'rgba(163, 48, 201, 0.6)', '#A330C9');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_dungeons`
--
CREATE TABLE IF NOT EXISTS `ovw_dungeons` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text COLLATE latin1_german2_ci NOT NULL,
`short` text COLLATE latin1_german2_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=14 ;
--
-- Daten für Tabelle `ovw_dungeons`
--
INSERT INTO `ovw_dungeons` (`id`, `name`, `short`) VALUES
(1, 'Black Rook Hold', 'brh'),
(2, 'Cathedral of Eternal Night', 'cen'),
(3, 'Court of Stars', 'cos'),
(4, 'Darkheart Thicket', 'dht'),
(5, 'Eye of Azshara', 'eoa'),
(6, 'Halls of Valor', 'hov'),
(7, 'Lower Karazhan', 'lkz'),
(8, 'Maw of Souls', 'mos'),
(9, 'Neltharion''s Lair', 'nel'),
(10, 'The Arcway', 'arc'),
(12, 'Upper Karazhan', 'ukz'),
(13, 'Vault of the Wardens', 'votw'),
(11, 'The Violet Hold', 'vh');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_enchants`
--
CREATE TABLE IF NOT EXISTS `ovw_enchants` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`enchant_id` smallint(6) NOT NULL,
`wowhead_id` mediumint(6) NOT NULL,
`name` varchar(50) COLLATE latin1_german2_ci NOT NULL,
`slot` tinyint(2) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=34 ;
--
-- Daten für Tabelle `ovw_enchants`
--
INSERT INTO `ovw_enchants` (`id`, `enchant_id`, `wowhead_id`, `name`, `slot`) VALUES
(1, 5437, 128551, 'Enchant Neck - Mark of the Claw', 2),
(2, 5439, 128553, 'Enchant Neck - Mark of the Hidden Satyr', 2),
(3, 5883, 140219, 'Boon of the Bloodhunter', 3),
(4, 5889, 141908, 'Enchant Neck - Mark of the Heavy Hide', 2),
(5, 5890, 141909, 'Enchant Neck - Mark of the Trained Soldier', 2),
(6, 5891, 141910, 'Enchant Neck - Mark of the Ancient Priestess', 2),
(7, 5431, 128545, 'Enchant Cloak - Word of Strength', 4),
(8, 5432, 128546, 'Enchant Cloak - Word of Agility', 4),
(9, 5433, 128547, 'Enchant Cloak - Word of Intellect', 4),
(10, 5434, 128548, 'Enchant Cloak - Binding of Strength', 4),
(11, 5435, 128549, 'Enchant Cloak - Binding of Agility', 4),
(12, 5436, 128550, 'Enchant Cloak - Binding of Intellect', 4),
(13, 5423, 128537, 'Enchant Ring - Word of Critical Strike', 11),
(14, 5424, 128538, 'Enchant Ring - Word of Haste', 11),
(15, 5425, 128539, 'Enchant Ring - Word of Mastery', 11),
(16, 5426, 128540, 'Enchant Ring - Word of Versatility', 11),
(17, 5427, 128541, 'Enchant Ring - Binding of Critical Strike', 11),
(18, 5428, 128542, 'Enchant Ring - Binding of Haste', 11),
(19, 5429, 128543, 'Enchant Ring - Binding of Mastery', 11),
(20, 5430, 128544, 'Enchant Ring - Binding of Versatility', 11),
(21, 5442, 140214, 'Boon of the Harvester', 3),
(22, 5882, 140218, 'Boon of the Manaseeker', 3),
(23, 5440, 128554, 'Boon of the Scavenger', 3),
(24, 5441, 140213, 'Boon of the Gemfinder', 3),
(25, 5443, 140215, 'Boon of the Butcher', 3),
(26, 5881, 140217, 'Boon of the Salvager', 3),
(27, 5899, 144328, 'Boon of the Builder', 3),
(28, 5438, 128552, 'Enchant Neck - Mark of the Distant Army', 2),
(29, 5895, 144304, 'Enchant Neck - Mark of the Master', 2),
(30, 5896, 144305, 'Enchant Neck - Mark of Versatile', 2),
(31, 5897, 144306, 'Enchant Neck - Mark of the Quick', 2),
(32, 5898, 144307, 'Enchant Neck - Mark of the Deadly', 2),
(33, 5888, 141861, 'Boon of the Nether', 3);
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_eq`
--
CREATE TABLE IF NOT EXISTS `ovw_eq` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`m2_5` float NOT NULL,
`m5_10` float NOT NULL,
`m10_15` float NOT NULL,
`m15p` float NOT NULL,
`en_lfr` float NOT NULL,
`en_n` float NOT NULL,
`en_hc` float NOT NULL,
`en_m` float NOT NULL,
`tov_lfr` float NOT NULL,
`tov_n` float NOT NULL,
`tov_hc` float NOT NULL,
`tov_m` float NOT NULL,
`nh_lfr` float NOT NULL,
`nh_n` float NOT NULL,
`nh_hc` float NOT NULL,
`nh_m` float NOT NULL,
`tos_lfr` float NOT NULL,
`tos_n` float NOT NULL,
`tos_hc` float NOT NULL,
`tos_m` float NOT NULL,
`itemlevel` float NOT NULL,
`m0` float NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=2 ;
--
-- Daten für Tabelle `ovw_eq`
--
INSERT INTO `ovw_eq` (`id`, `m2_5`, `m5_10`, `m10_15`, `m15p`, `en_lfr`, `en_n`, `en_hc`, `en_m`, `tov_lfr`, `tov_n`, `tov_hc`, `tov_m`, `nh_lfr`, `nh_n`, `nh_hc`, `nh_m`, `tos_lfr`, `tos_n`, `tos_hc`, `tos_m`, `itemlevel`, `m0`) VALUES
(1, 8.70666, 9.12, 9.54, 9.94666, 4.2857, 8.5714, 17.1429, 42.8571, 10, 20, 40, 100, 3, 6, 12, 30, 3.3333, 6.6666, 13.3333, 33.3333, 51.7467, 8.29333);
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_equip`
--
CREATE TABLE IF NOT EXISTS `ovw_equip` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`slot` varchar(9) COLLATE latin1_german2_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=15 ;
--
-- Daten für Tabelle `ovw_equip`
--
INSERT INTO `ovw_equip` (`id`, `slot`) VALUES
(1, 'head'),
(2, 'neck'),
(3, 'shoulders'),
(4, 'back'),
(5, 'chest'),
(6, 'wrists'),
(7, 'hands'),
(8, 'waist'),
(9, 'legs'),
(10, 'feet'),
(11, 'finger1'),
(12, 'finger2'),
(13, 'trinket1'),
(14, 'trinket2');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_gems`
--
CREATE TABLE IF NOT EXISTS `ovw_gems` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`gem_id` int(11) NOT NULL,
`name` varchar(32) COLLATE latin1_german2_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=12 ;
--
-- Daten für Tabelle `ovw_gems`
--
INSERT INTO `ovw_gems` (`id`, `gem_id`, `name`) VALUES
(1, 130218, 'Masterful Queen''s Opal'),
(2, 130221, 'Versatile Maelstrom Sapphire'),
(3, 130220, 'Quick Dawnlight'),
(4, 130216, 'Quick Azsunite'),
(5, 130246, 'Saber''s Eye of Strength'),
(6, 130222, 'Masterful Shadowruby'),
(7, 130219, 'Deadly Eye of Prophecy'),
(8, 130248, 'Saber''s Eye of Intellect'),
(9, 130247, 'Saber''s Eye of Agility'),
(10, 130215, 'Deadly Deep Amber'),
(11, 130217, 'Versatile Skystone');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_guilds`
--
CREATE TABLE IF NOT EXISTS `ovw_guilds` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`guild_name` varchar(24) CHARACTER SET utf8 NOT NULL,
`region` text COLLATE latin1_german2_ci NOT NULL,
`realm` smallint(4) NOT NULL,
`shortlink` varchar(32) COLLATE latin1_german2_ci NOT NULL,
`registered` int(10) NOT NULL,
`password` varchar(32) COLLATE latin1_german2_ci NOT NULL,
`last_login` int(10) NOT NULL,
`tracked_chars` smallint(4) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=12 ;
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_legendaries`
--
CREATE TABLE IF NOT EXISTS `ovw_legendaries` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) COLLATE latin1_german2_ci NOT NULL,
`item_id` int(6) NOT NULL,
`class` varchar(19) COLLATE latin1_german2_ci NOT NULL,
UNIQUE KEY `id` (`id`),
UNIQUE KEY `item_id` (`item_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=200 ;
--
-- Daten für Tabelle `ovw_legendaries`
--
INSERT INTO `ovw_legendaries` (`id`, `name`, `item_id`, `class`) VALUES
(2, 'Shackles of Bryndaor', 132365, '6'),
(3, 'Koltira''s Newfound Will', 132366, '6'),
(4, 'Service of Gorefiend', 132367, '6'),
(5, 'Acherus Drapes', 132376, '6'),
(6, 'Draugr, Girdle of the Everlasting King', 132441, '6'),
(7, 'Aggramar''s Stride', 132443, '6, 2, 1'),
(8, 'Prydaz, Xavaric''s Magnum Opus', 132444, '0'),
(9, 'The Instructor''s Fourth Lesson', 132448, '6'),
(10, 'Sephuz''s Secret', 132452, '0'),
(11, 'Rattlegore Bone Legplates', 132453, '6'),
(12, 'Toravon''s Whiteout Bindings', 132458, '6'),
(13, 'Perseverance of the Ebon Martyr', 132459, '6'),
(14, 'Lana''thel''s Lament', 133974, '6'),
(15, 'Uvanimor, the Unbeautiful', 137037, '6'),
(16, 'Tak''theritrix''s Shoulderpads', 137075, '6'),
(17, 'Seal of Necrofantasia', 137223, '6'),
(18, 'Archimonde''s Hatred Reborn', 144249, '1, 2, 6, 10, 11, 12'),
(19, 'Velen''s Future Sight', 144258, '2, 5, 7, 10, 11'),
(20, 'Kil''jaeden''s Burning Wish', 144259, '0'),
(21, 'Death March', 144280, '6'),
(22, 'Skullflower''s Haemostasis', 144281, '6'),
(23, 'Consort''s Cold Core', 144293, '6'),
(24, 'Cinidaria, the Symbiote', 133976, '12, 11, 10, 4'),
(25, 'Achor, the Eternal Hunger', 137014, '12'),
(26, 'Loramus Thalipedes'' Sacrifice', 137022, '12'),
(27, 'Anger of the Half-Giants', 137038, '12'),
(28, 'Raddon''s Cascading Eyes', 137061, '12'),
(29, 'Cloak of Fel Flames', 137066, '12'),
(30, 'Runemaster''s Pauldrons', 137071, '12'),
(31, 'Mo''arg Bionic Stabilizers', 137090, '12'),
(32, 'The Defiler''s Lost Vambraces', 137091, '12'),
(33, 'Fragment of the Betrayer''s Prison', 138854, '12'),
(34, 'Kirel Narak', 138949, '12'),
(35, 'Delusions of Grandeur', 144279, '12'),
(36, 'Spirit of the Darkness Flame', 144292, '12'),
(37, 'Ekowraith, Creator of Worlds', 137015, '11'),
(38, 'Promise of Elune, the Moon Goddess', 137023, '11'),
(39, 'Ailuro Pouncers', 137024, '11'),
(40, 'Skysec''s Hold', 137025, '11'),
(41, 'Essence of Infusion', 137026, '11'),
(42, 'Impeccable Fel Essence', 137039, '11'),
(43, 'Chatoyant Signet', 137040, '11'),
(44, 'Dual Determination', 137041, '11'),
(45, 'Tearstone of Elune', 137042, '11'),
(46, 'Luffa Wrappings', 137056, '11'),
(47, 'The Emerald Dreamcatcher', 137062, '11'),
(48, 'Elize''s Everlasting Encasement', 137067, '11'),
(49, 'Aman''Thul''s Wisdom', 137072, '11'),
(50, 'The Dark Titan''s Advice', 137078, '11'),
(51, 'Oneth''s Intuition', 137092, '11'),
(52, 'The Wildshaper''s Clutch', 137094, '11'),
(53, 'Edraith, Bonds of Aglaya', 137095, '11'),
(54, 'X''oni''s Caress', 144242, '11'),
(55, 'Lady and the Child', 144295, '11'),
(56, 'Fiery Red Maimers', 144354, '11'),
(57, 'Oakheart''s Puny Quods', 144432, '11'),
(58, 'Roots of Shaladrassil', 132466, '7, 3'),
(59, 'Ullr''s Feather Snowshoes', 137033, '3'),
(60, 'Nesingwary''s Trapping Treads', 137034, '3'),
(61, 'Frizzo''s Fingertrap', 137043, '3'),
(62, 'Zevrim''s Hunger', 137055, '3'),
(63, 'The Shadow Hunter''s Voodoo Mask', 137064, '3'),
(64, 'Roar of the Seven Lions', 137080, '3'),
(65, 'War Belt of the Sentinel Army', 137081, '3'),
(66, 'Helbrine, Rope of the Mist Marauder', 137082, '3'),
(67, 'Call of the Wild', 137101, '3'),
(68, 'Qa''pla, Eredun War Order', 137227, '3'),
(69, 'The Apex Predator''s Claw', 137382, '3'),
(70, 'Magnetized Blasting Cap Launcher', 141353, '3'),
(71, 'MKII Gyroscopic Stabilizer', 144303, '3'),
(72, 'The Mantle of Command', 144326, '3'),
(73, 'Butcher''s Bone Apron', 144361, '3'),
(74, 'Marquee Bindings of the Sun King', 132406, '8'),
(75, 'Shard of the Exodar', 132410, '8'),
(76, 'Lady Vashj''s Grasp', 132411, '8'),
(77, 'Rhonin''s Assaulting Armwraps', 132413, '8'),
(78, 'Cord of Infinity', 132442, '8'),
(79, 'Mystic Kilt of the Rune Master', 132451, '8'),
(80, 'Koralon''s Burning Touch', 132454, '8'),
(81, 'Norgannon''s Foresight', 132455, '8, 5, 9'),
(82, 'Darckli''s Dragonfire Diadem', 132863, '8'),
(83, 'Zann''esu Journey', 133970, '8'),
(84, 'Belo''vir''s Final Stand', 133977, '8'),
(85, 'Magtheridon''s Banished Bracers', 138140, '8'),
(86, 'Ice Time', 144260, '8'),
(87, 'Gravity Spiral', 144274, '8'),
(88, 'Pyrotex Ignition Cloth', 144355, '8'),
(89, 'Sal''salabim''s Lost Tunic', 137016, '10'),
(90, 'Cenedril, Reflector of Hatred', 137019, '10'),
(91, 'Firestone Walkers', 137027, '10'),
(92, 'Ei''thas, Lunar Glides of Eramas', 137028, '10'),
(93, 'Katsuo''s Eclipse', 137029, '10'),
(94, 'Jewel of the Lost Abbey', 137044, '10'),
(95, 'Eye of Collidus the Warp-Watcher', 137045, '10'),
(96, 'Hidden Master''s Forbidden Touch', 137057, '10'),
(97, 'Fundamental Observation', 137063, '10'),
(98, 'Leggings of The Black Flame', 137068, '10'),
(99, 'Unison Spaulders', 137073, '10'),
(100, 'Gai Plin''s Soothing Sash', 137079, '10'),
(101, 'Petrichor Lagniappe', 137096, '10'),
(102, 'Drinking Horn Cover', 137097, '10'),
(103, 'March of the Legion', 137220, '10'),
(104, 'Ovyd''s Winter Wrap', 138879, '10'),
(105, 'The Emperor''s Capacitor', 144239, '10'),
(106, 'Anvil-Hardened Wristwraps', 144277, '10'),
(107, 'Shelter of Rin', 144340, '10'),
(108, 'Breastplate of the Golden Val''kyr', 137017, '2'),
(109, 'Whisper of the Nathrezim', 137020, '2'),
(110, 'Ilterendi, Crown Jewel of Silvermoon', 137046, '2'),
(111, 'Heathcliff''s Immortality', 137047, '2'),
(112, 'Liadrin''s Fury Unleashed', 137048, '2'),
(113, 'Tyr''s Hand of Faith', 137059, '2'),
(114, 'Justice Gaze', 137065, '2'),
(115, 'Tyelca, Ferren Marcus''s Stature', 137070, '2'),
(116, 'Obsidian Stone Spaulders', 137076, '2'),
(117, 'Chain of Thrayn', 137086, '2'),
(118, 'Uther''s Guard', 137105, '2'),
(119, 'Aegisjalmur, the Armguards of Awe', 140846, '2'),
(120, 'Maraad''s Dying Breath', 144273, '2'),
(121, 'Saruan''s Resolve', 144275, '2'),
(122, 'Ashes to Dust', 144358, '2'),
(123, 'Anund''s Seared Shackles', 132409, '5'),
(124, 'Skjoldr, Sanctuary of Ivagont', 132436, '5'),
(125, 'Mother Shahraz''s Seduction', 132437, '5'),
(126, 'Al''maiesh, the Cord of Hope', 132445, '5'),
(127, 'Entrancing Trousers of An''juna', 132447, '5'),
(128, 'Phyrix''s Embrace', 132449, '5'),
(129, 'Muze''s Unwavering Will', 132450, '5'),
(130, 'Xalan the Feared''s Clench', 132461, '5'),
(131, 'Estel, Dejahna''s Inspiration', 132861, '5'),
(132, 'Mangaza''s Madness', 132864, '5'),
(133, 'Cord of Maiev, Priestess of the Moon', 133800, '5'),
(134, 'Zenk''aram, Iridi''s Anadem', 133971, '5'),
(135, 'The Twins'' Painful Touch', 133973, '5'),
(136, 'X''anshi, Shroud of Archbishop Benedictus', 137109, '5'),
(137, 'N''ero, Band of Promises', 137276, '5'),
(138, 'Kam Xi''raff', 144244, '5'),
(139, 'Rammal''s Ulterior Motive', 144247, '5'),
(140, 'Zeks Exterminatus', 144438, '5'),
(141, 'The Dreadlord''s Deceit', 137021, '4'),
(142, 'Duskwalker''s Footpads', 137030, '4'),
(143, 'Thraxi''s Tricksy Treads', 137031, '4'),
(144, 'Shadow Satyr''s Walk', 137032, '4'),
(145, 'Insignia of Ravenholdt', 137049, '4'),
(146, 'Will of Valeera', 137069, '4'),
(147, 'Zoldyck Family Training Shackles', 137098, '4'),
(148, 'Greenskin''s Waterlogged Wristcuffs', 137099, '4'),
(149, 'Denial of the Half-Giants', 137100, '4'),
(150, 'Shivarran Symmetry', 141321, '4'),
(151, 'Mantle of the Master Assassin', 144236, '4'),
(152, 'The Deceiver''s Blood Pact', 137035, '7'),
(153, 'Elemental Rebalancers', 137036, '7'),
(154, 'Eye of the Twisting Nether', 137050, '7'),
(155, 'Focuser of Jonat, the Elder', 137051, '7'),
(156, 'Praetorian''s Tidecallers', 137058, '7'),
(157, 'Echoes of the Great Sundering', 137074, '7'),
(158, 'Pristine Proto-Scale Girdle', 137083, '7'),
(159, 'Akainu''s Absolute Justice', 137084, '7'),
(160, 'Intact Nazjatar Molting', 137085, '7'),
(161, 'Al''Akir''s Acrimony', 137102, '7'),
(162, 'Storm Tempests', 137103, '7'),
(163, 'Nobundo''s Redemption', 137104, '7'),
(164, 'Emalon''s Charged Core', 137616, '7'),
(165, 'Spiritual Journey', 138117, '7'),
(166, 'Uncertain Reminder', 143732, '7'),
(167, 'Pillars of the Dark Portal', 132357, '9'),
(168, 'Wilfred''s Sigil of Superior Summoning', 132369, '9'),
(169, 'Kazzak''s Final Curse', 132374, '9'),
(170, 'Odr, Shawl of the Ymirjar', 132375, '9'),
(171, 'Sacrolash''s Dark Strike', 132378, '9'),
(172, 'Sin''dorei Spite', 132379, '9'),
(173, 'Streten''s Sleepless Shackles', 132381, '9'),
(174, 'Recurrent Ritual', 132393, '9'),
(175, 'Hood of Eternal Disdain', 132394, '9'),
(176, 'Magistrike Restraints', 132407, '9'),
(177, 'Feretory of Souls', 132456, '9'),
(178, 'Power Cord of Lethtendris', 132457, '9'),
(179, 'Alythess''s Pyrogenics', 132460, '9'),
(180, 'Reap and Sow', 144364, '9'),
(181, 'Lessons of Space-Time', 144369, '9'),
(182, 'Wakener''s Loyalty', 144385, '9'),
(183, 'Destiny Driver', 137018, '1'),
(184, 'Ayala''s Stone Heart', 137052, '1'),
(185, 'Kazzalax, Fujieda''s Fury', 137053, '1'),
(186, 'The Walls Fell', 137054, '1'),
(187, 'Archavon''s Heavy Hand', 137060, '1'),
(188, 'Weight of the Earth', 137077, '1'),
(189, 'Naj''entus''s Vertebrae', 137087, '1'),
(190, 'Ceann-Ar Charger', 137088, '1'),
(191, 'Thundergod''s Vigor', 137089, '1'),
(192, 'Mannoroth''s Bloodletting Manacles', 137107, '1'),
(193, 'Kakushan''s Stormscale Gauntlets', 137108, '1'),
(194, 'Timeless Stratagem', 143728, '1'),
(195, 'Kargath''s Sacrificed Hands\n', 138489, '1'),
(196, 'Celumbra, the Night''s Dichotomy', 146666, '5, 8, 9'),
(197, 'Rethu''s Incessant Courage', 146667, '1, 2, 6'),
(198, 'Vigilance Perch', 146668, '3, 7'),
(199, 'The Sentinel''s Eternal Refuge', 146669, '4, 10, 11, 12');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_raids`
--
CREATE TABLE IF NOT EXISTS `ovw_raids` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` text COLLATE latin1_german2_ci NOT NULL,
`short` text COLLATE latin1_german2_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_german2_ci AUTO_INCREMENT=5 ;
--
-- Daten für Tabelle `ovw_raids`
--
INSERT INTO `ovw_raids` (`id`, `name`, `short`) VALUES
(1, 'Emerald Nightmare', 'en'),
(2, 'Trial of Valor', 'tov'),
(3, 'The Nighthold', 'nh'),
(4, 'Tomb of Sargeras', 'tos');
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `ovw_realms`
--
CREATE TABLE IF NOT EXISTS `ovw_realms` (
`id` smallint(5) unsigned NOT NULL,
`region` enum('US','EU','CN','TW','KR') COLLATE utf8_unicode_ci NOT NULL,
`short` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `realmset` (`region`,`short`),
UNIQUE KEY `region` (`region`,`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Daten für Tabelle `ovw_realms`
--
INSERT INTO `ovw_realms` (`id`, `region`, `short`, `name`) VALUES
(0, 'EU', 'Ревущий-фьорд', 'Ревущий фьорд'),
(1, 'US', 'aegwynn', 'Aegwynn'),
(2, 'US', 'aerie-peak', 'Aerie Peak'),
(3, 'US', 'agamaggan', 'Agamaggan'),
(4, 'US', 'aggramar', 'Aggramar'),
(5, 'US', 'akama', 'Akama'),
(6, 'US', 'alexstrasza', 'Alexstrasza'),
(7, 'US', 'alleria', 'Alleria'),
(8, 'US', 'altar-of-storms', 'Altar of Storms'),
(9, 'US', 'alterac-mountains', 'Alterac Mountains'),
(10, 'US', 'amanthul', 'Aman''Thul'),
(11, 'US', 'andorhal', 'Andorhal'),
(12, 'US', 'anetheron', 'Anetheron'),
(13, 'US', 'antonidas', 'Antonidas'),
(14, 'US', 'anubarak', 'Anub''arak'),
(15, 'US', 'arathor', 'Arathor'),
(16, 'US', 'archimonde', 'Archimonde'),
(17, 'US', 'area-52', 'Area 52'),
(18, 'US', 'argent-dawn', 'Argent Dawn'),
(19, 'US', 'arthas', 'Arthas'),
(20, 'US', 'arygos', 'Arygos'),
(21, 'US', 'auchindoun', 'Auchindoun'),
(22, 'US', 'azgalor', 'Azgalor'),
(23, 'US', 'azjolnerub', 'Azjol-Nerub'),
(24, 'US', 'azralon', 'Azralon'),
(25, 'US', 'azshara', 'Azshara'),
(26, 'US', 'azuremyst', 'Azuremyst'),
(27, 'US', 'baelgun', 'Baelgun'),
(28, 'US', 'balnazzar', 'Balnazzar'),
(29, 'US', 'barthilas', 'Barthilas'),
(30, 'US', 'black-dragonflight', 'Black Dragonflight'),
(31, 'US', 'blackhand', 'Blackhand'),
(32, 'US', 'blackrock', 'Blackrock'),
(33, 'US', 'blackwater-raiders', 'Blackwater Raiders'),
(34, 'US', 'blackwing-lair', 'Blackwing Lair'),
(35, 'US', 'blades-edge', 'Blade''s Edge'),
(36, 'US', 'bladefist', 'Bladefist'),
(37, 'US', 'bleeding-hollow', 'Bleeding Hollow'),
(38, 'US', 'blood-furnace', 'Blood Furnace'),
(39, 'US', 'bloodhoof', 'Bloodhoof'),
(40, 'US', 'bloodscalp', 'Bloodscalp'),
(41, 'US', 'bonechewer', 'Bonechewer'),
(42, 'US', 'borean-tundra', 'Borean Tundra'),
(43, 'US', 'boulderfist', 'Boulderfist'),
(44, 'US', 'bronzebeard', 'Bronzebeard'),
(45, 'US', 'burning-blade', 'Burning Blade'),
(46, 'US', 'burning-legion', 'Burning Legion'),
(47, 'US', 'caelestrasz', 'Caelestrasz'),
(48, 'US', 'cairne', 'Cairne'),
(49, 'US', 'cenarion-circle', 'Cenarion Circle'),
(50, 'US', 'cenarius', 'Cenarius'),
(51, 'US', 'chogall', 'Cho''gall'),
(52, 'US', 'chromaggus', 'Chromaggus'),
(53, 'US', 'coilfang', 'Coilfang'),
(54, 'US', 'crushridge', 'Crushridge'),
(55, 'US', 'daggerspine', 'Daggerspine'),
(56, 'US', 'dalaran', 'Dalaran'),
(57, 'US', 'dalvengyr', 'Dalvengyr'),
(58, 'US', 'dark-iron', 'Dark Iron'),
(59, 'US', 'darkspear', 'Darkspear'),
(60, 'US', 'darrowmere', 'Darrowmere'),
(61, 'US', 'dathremar', 'Dath''Remar'),
(62, 'US', 'dawnbringer', 'Dawnbringer'),
(63, 'US', 'deathwing', 'Deathwing'),
(64, 'US', 'demon-soul', 'Demon Soul'),
(65, 'US', 'dentarg', 'Dentarg'),
(66, 'US', 'destromath', 'Destromath'),
(67, 'US', 'dethecus', 'Dethecus'),
(68, 'US', 'detheroc', 'Detheroc'),
(69, 'US', 'doomhammer', 'Doomhammer'),
(70, 'US', 'draenor', 'Draenor'),
(71, 'US', 'dragonblight', 'Dragonblight'),
(72, 'US', 'dragonmaw', 'Dragonmaw'),
(73, 'US', 'draktharon', 'Drak''Tharon'),
(74, 'US', 'drakthul', 'Drak''thul'),
(75, 'US', 'draka', 'Draka'),
(76, 'US', 'drakkari', 'Drakkari'),
(77, 'US', 'dreadmaul', 'Dreadmaul'),
(78, 'US', 'drenden', 'Drenden'),
(79, 'US', 'dunemaul', 'Dunemaul'),
(80, 'US', 'durotan', 'Durotan'),
(81, 'US', 'duskwood', 'Duskwood'),
(82, 'US', 'earthen-ring', 'Earthen Ring'),
(83, 'US', 'echo-isles', 'Echo Isles'),
(84, 'US', 'eitrigg', 'Eitrigg'),
(85, 'US', 'eldrethalas', 'Eldre''Thalas'),
(86, 'US', 'elune', 'Elune'),
(87, 'US', 'emerald-dream', 'Emerald Dream'),
(88, 'US', 'eonar', 'Eonar'),
(89, 'US', 'eredar', 'Eredar'),
(90, 'US', 'executus', 'Executus'),
(91, 'US', 'exodar', 'Exodar'),
(92, 'US', 'farstriders', 'Farstriders'),
(93, 'US', 'feathermoon', 'Feathermoon'),
(94, 'US', 'fenris', 'Fenris'),
(95, 'US', 'firetree', 'Firetree'),
(96, 'US', 'fizzcrank', 'Fizzcrank'),
(97, 'US', 'frostmane', 'Frostmane'),
(98, 'US', 'frostmourne', 'Frostmourne'),
(99, 'US', 'frostwolf', 'Frostwolf'),
(100, 'US', 'galakrond', 'Galakrond'),
(101, 'US', 'gallywix', 'Gallywix'),
(102, 'US', 'garithos', 'Garithos'),
(103, 'US', 'garona', 'Garona'),
(104, 'US', 'garrosh', 'Garrosh'),
(105, 'US', 'ghostlands', 'Ghostlands'),
(106, 'US', 'gilneas', 'Gilneas'),
(107, 'US', 'gnomeregan', 'Gnomeregan'),
(108, 'US', 'goldrinn', 'Goldrinn'),
(109, 'US', 'gorefiend', 'Gorefiend'),
(110, 'US', 'gorgonnash', 'Gorgonnash'),
(111, 'US', 'greymane', 'Greymane'),
(112, 'US', 'grizzly-hills', 'Grizzly Hills'),
(113, 'US', 'guldan', 'Gul''dan'),
(114, 'US', 'gundrak', 'Gundrak'),
(115, 'US', 'gurubashi', 'Gurubashi'),
(116, 'US', 'hakkar', 'Hakkar'),
(117, 'US', 'haomarush', 'Haomarush'),
(118, 'US', 'hellscream', 'Hellscream'),
(119, 'US', 'hydraxis', 'Hydraxis'),
(120, 'US', 'hyjal', 'Hyjal'),
(121, 'US', 'icecrown', 'Icecrown'),
(122, 'US', 'illidan', 'Illidan'),
(123, 'US', 'jaedenar', 'Jaedenar'),
(124, 'US', 'jubeithos', 'Jubei''Thos'),
(125, 'US', 'kaelthas', 'Kael''thas'),
(126, 'US', 'kalecgos', 'Kalecgos'),
(127, 'US', 'kargath', 'Kargath'),
(128, 'US', 'kelthuzad', 'Kel''Thuzad'),
(129, 'US', 'khadgar', 'Khadgar'),
(130, 'US', 'khaz-modan', 'Khaz Modan'),
(131, 'US', 'khazgoroth', 'Khaz''goroth'),
(132, 'US', 'kiljaeden', 'Kil''jaeden'),
(133, 'US', 'kilrogg', 'Kilrogg'),
(134, 'US', 'kirin-tor', 'Kirin Tor'),
(135, 'US', 'korgath', 'Korgath'),
(136, 'US', 'korialstrasz', 'Korialstrasz'),
(137, 'US', 'kul-tiras', 'Kul Tiras'),
(138, 'US', 'laughing-skull', 'Laughing Skull'),
(139, 'US', 'lethon', 'Lethon'),
(140, 'US', 'lightbringer', 'Lightbringer'),
(141, 'US', 'lightnings-blade', 'Lightning''s Blade'),
(142, 'US', 'lightninghoof', 'Lightninghoof'),
(143, 'US', 'llane', 'Llane'),
(144, 'US', 'lothar', 'Lothar'),
(145, 'US', 'madoran', 'Madoran'),
(146, 'US', 'maelstrom', 'Maelstrom'),
(147, 'US', 'magtheridon', 'Magtheridon'),
(148, 'US', 'maiev', 'Maiev'),
(149, 'US', 'malganis', 'Mal''Ganis'),
(150, 'US', 'malfurion', 'Malfurion'),
(151, 'US', 'malorne', 'Malorne'),
(152, 'US', 'malygos', 'Malygos'),
(153, 'US', 'mannoroth', 'Mannoroth'),
(154, 'US', 'medivh', 'Medivh'),
(155, 'US', 'misha', 'Misha'),
(156, 'US', 'moknathal', 'Mok''Nathal'),
(157, 'US', 'moon-guard', 'Moon Guard'),
(158, 'US', 'moonrunner', 'Moonrunner'),
(159, 'US', 'mugthol', 'Mug''thol'),
(160, 'US', 'muradin', 'Muradin'),
(161, 'US', 'nagrand', 'Nagrand'),
(162, 'US', 'nathrezim', 'Nathrezim'),
(163, 'US', 'nazgrel', 'Nazgrel'),
(164, 'US', 'nazjatar', 'Nazjatar'),
(165, 'US', 'nemesis', 'Nemesis'),
(166, 'US', 'nerzhul', 'Ner''zhul'),
(167, 'US', 'nesingwary', 'Nesingwary'),
(168, 'US', 'nordrassil', 'Nordrassil'),
(169, 'US', 'norgannon', 'Norgannon'),
(170, 'US', 'onyxia', 'Onyxia'),
(171, 'US', 'perenolde', 'Perenolde'),
(172, 'US', 'proudmoore', 'Proudmoore'),
(173, 'US', 'quelthalas', 'Quel''Thalas'),
(174, 'US', 'queldorei', 'Quel''dorei'),
(175, 'US', 'ragnaros', 'Ragnaros'),
(176, 'US', 'ravencrest', 'Ravencrest'),
(177, 'US', 'ravenholdt', 'Ravenholdt'),
(178, 'US', 'rexxar', 'Rexxar'),
(179, 'US', 'rivendare', 'Rivendare'),
(180, 'US', 'runetotem', 'Runetotem'),
(181, 'US', 'sargeras', 'Sargeras'),
(182, 'US', 'saurfang', 'Saurfang'),
(183, 'US', 'scarlet-crusade', 'Scarlet Crusade'),
(184, 'US', 'scilla', 'Scilla'),
(185, 'US', 'senjin', 'Sen''jin'),
(186, 'US', 'sentinels', 'Sentinels'),
(187, 'US', 'shadow-council', 'Shadow Council'),
(188, 'US', 'shadowmoon', 'Shadowmoon'),
(189, 'US', 'shadowsong', 'Shadowsong'),
(190, 'US', 'shandris', 'Shandris'),
(191, 'US', 'shattered-halls', 'Shattered Halls'),
(192, 'US', 'shattered-hand', 'Shattered Hand'),
(193, 'US', 'shuhalo', 'Shu''halo'),
(194, 'US', 'silver-hand', 'Silver Hand'),
(195, 'US', 'silvermoon', 'Silvermoon'),
(196, 'US', 'sisters-of-elune', 'Sisters of Elune'),
(197, 'US', 'skullcrusher', 'Skullcrusher'),
(198, 'US', 'skywall', 'Skywall'),
(199, 'US', 'smolderthorn', 'Smolderthorn'),
(200, 'US', 'spinebreaker', 'Spinebreaker'),
(201, 'US', 'spirestone', 'Spirestone'),
(202, 'US', 'staghelm', 'Staghelm'),
(203, 'US', 'steamwheedle-cartel', 'Steamwheedle Cartel'),
(204, 'US', 'stonemaul', 'Stonemaul'),
(205, 'US', 'stormrage', 'Stormrage'),
(206, 'US', 'stormreaver', 'Stormreaver'),
(207, 'US', 'stormscale', 'Stormscale'),
(208, 'US', 'suramar', 'Suramar'),
(209, 'US', 'tanaris', 'Tanaris'),
(210, 'US', 'terenas', 'Terenas'),
(211, 'US', 'terokkar', 'Terokkar'),
(212, 'US', 'thaurissan', 'Thaurissan'),
(213, 'US', 'the-forgotten-coast', 'The Forgotten Coast'),
(214, 'US', 'the-scryers', 'The Scryers'),
(215, 'US', 'the-underbog', 'The Underbog'),
(216, 'US', 'the-venture-co', 'The Venture Co'),
(217, 'US', 'thorium-brotherhood', 'Thorium Brotherhood'),
(218, 'US', 'thrall', 'Thrall'),
(219, 'US', 'thunderhorn', 'Thunderhorn'),
(220, 'US', 'thunderlord', 'Thunderlord'),
(221, 'US', 'tichondrius', 'Tichondrius'),
(222, 'US', 'tol-barad', 'Tol Barad'),
(223, 'US', 'tortheldrin', 'Tortheldrin'),
(224, 'US', 'trollbane', 'Trollbane'),
(225, 'US', 'turalyon', 'Turalyon'),
(226, 'US', 'twisting-nether', 'Twisting Nether'),
(227, 'US', 'uldaman', 'Uldaman'),
(228, 'US', 'uldum', 'Uldum'),
(229, 'US', 'undermine', 'Undermine'),
(230, 'US', 'ursin', 'Ursin'),
(231, 'US', 'uther', 'Uther'),
(232, 'US', 'vashj', 'Vashj'),
(233, 'US', 'veknilash', 'Vek''nilash'),
(234, 'US', 'velen', 'Velen'),
(235, 'US', 'warsong', 'Warsong'),
(236, 'US', 'whisperwind', 'Whisperwind'),
(237, 'US', 'wildhammer', 'Wildhammer'),
(238, 'US', 'windrunner', 'Windrunner'),
(239, 'US', 'winterhoof', 'Winterhoof'),
(240, 'US', 'wyrmrest-accord', 'Wyrmrest Accord'),
(241, 'US', 'xavius', 'Xavius'),
(242, 'US', 'ysera', 'Ysera'),
(243, 'US', 'ysondre', 'Ysondre'),
(244, 'US', 'zangarmarsh', 'Zangarmarsh'),
(245, 'US', 'zuljin', 'Zul''jin'),
(246, 'US', 'zuluhed', 'Zuluhed'),
(247, 'EU', 'aegwynn', 'Aegwynn'),
(248, 'EU', 'aerie-peak', 'Aerie Peak'),
(249, 'EU', 'agamaggan', 'Agamaggan'),
(250, 'EU', 'aggra-portugues', 'Aggra (Português)'),
(251, 'EU', 'aggramar', 'Aggramar'),
(252, 'EU', 'ahnqiraj', 'Ahn''Qiraj'),
(253, 'EU', 'alakir', 'Al''Akir'),
(254, 'EU', 'alexstrasza', 'Alexstrasza'),
(255, 'EU', 'alleria', 'Alleria'),
(256, 'EU', 'alonsus', 'Alonsus'),
(257, 'EU', 'amanthul', 'Aman''Thul'),
(258, 'EU', 'ambossar', 'Ambossar'),
(259, 'EU', 'anachronos', 'Anachronos'),
(260, 'EU', 'anetheron', 'Anetheron'),
(261, 'EU', 'antonidas', 'Antonidas'),
(262, 'EU', 'anubarak', 'Anub''arak'),
(263, 'EU', 'arakarahm', 'Arak-arahm'),
(264, 'EU', 'arathi', 'Arathi'),
(265, 'EU', 'arathor', 'Arathor'),
(266, 'EU', 'archimonde', 'Archimonde'),
(267, 'EU', 'area-52', 'Area 52'),
(268, 'EU', 'argent-dawn', 'Argent Dawn'),
(269, 'EU', 'arthas', 'Arthas'),
(270, 'EU', 'arygos', 'Arygos'),
(271, 'EU', 'ashenvale', 'Ashenvale'),
(272, 'EU', 'aszune', 'Aszune'),
(273, 'EU', 'auchindoun', 'Auchindoun'),
(274, 'EU', 'azjolnerub', 'Azjol-Nerub'),
(275, 'EU', 'azshara', 'Azshara'),
(276, 'EU', 'azuregos', 'Azuregos'),
(277, 'EU', 'azuremyst', 'Azuremyst'),
(278, 'EU', 'baelgun', 'Baelgun'),
(279, 'EU', 'balnazzar', 'Balnazzar'),
(280, 'EU', 'blackhand', 'Blackhand'),
(281, 'EU', 'blackmoore', 'Blackmoore'),
(282, 'EU', 'blackrock', 'Blackrock'),
(283, 'EU', 'blackscar', 'Blackscar'),
(284, 'EU', 'blades-edge', 'Blade''s Edge'),
(285, 'EU', 'bladefist', 'Bladefist'),
(286, 'EU', 'bloodfeather', 'Bloodfeather'),
(287, 'EU', 'bloodhoof', 'Bloodhoof'),
(288, 'EU', 'bloodscalp', 'Bloodscalp'),
(289, 'EU', 'blutkessel', 'Blutkessel'),
(290, 'EU', 'booty-bay', 'Booty Bay'),
(291, 'EU', 'borean-tundra', 'Borean Tundra'),
(292, 'EU', 'boulderfist', 'Boulderfist'),
(293, 'EU', 'bronze-dragonflight', 'Bronze Dragonflight'),
(294, 'EU', 'bronzebeard', 'Bronzebeard'),
(295, 'EU', 'burning-blade', 'Burning Blade'),
(296, 'EU', 'burning-steppes', 'Burning Steppes'),
(297, 'EU', 'cthun', 'C''Thun'),
(298, 'EU', 'chamber-of-aspects', 'Chamber of Aspects'),
(299, 'EU', 'chants-eternels', 'Chants éternels'),
(300, 'EU', 'chogall', 'Cho''gall'),
(301, 'EU', 'chromaggus', 'Chromaggus'),
(302, 'EU', 'colinas-pardas', 'Colinas Pardas'),
(303, 'EU', 'confrerie-du-thorium', 'Confrérie du Thorium'),
(304, 'EU', 'conseil-des-ombres', 'Conseil des Ombres'),
(305, 'EU', 'crushridge', 'Crushridge'),
(306, 'EU', 'culte-de-la-rive-noire', 'Culte de la Rive noire'),
(307, 'EU', 'daggerspine', 'Daggerspine'),
(308, 'EU', 'dalaran', 'Dalaran'),
(309, 'EU', 'dalvengyr', 'Dalvengyr'),
(310, 'EU', 'darkmoon-faire', 'Darkmoon Faire'),
(311, 'EU', 'darksorrow', 'Darksorrow'),
(312, 'EU', 'darkspear', 'Darkspear'),
(313, 'EU', 'das-konsortium', 'Das Konsortium'),
(314, 'EU', 'das-syndikat', 'Das Syndikat'),
(315, 'EU', 'deathguard', 'Deathguard'),
(316, 'EU', 'deathweaver', 'Deathweaver'),
(317, 'EU', 'deathwing', 'Deathwing'),
(318, 'EU', 'deepholm', 'Deepholm'),
(319, 'EU', 'defias-brotherhood', 'Defias Brotherhood'),
(320, 'EU', 'dentarg', 'Dentarg'),
(321, 'EU', 'der-mithrilorden', 'Der Mithrilorden'),
(322, 'EU', 'der-rat-von-dalaran', 'Der Rat von Dalaran'),
(323, 'EU', 'der-abyssische-rat', 'Der abyssische Rat'),
(324, 'EU', 'destromath', 'Destromath'),
(325, 'EU', 'dethecus', 'Dethecus'),
(326, 'EU', 'die-aldor', 'Die Aldor'),
(327, 'EU', 'die-arguswacht', 'Die Arguswacht'),
(328, 'EU', 'die-nachtwache', 'Die Nachtwache'),
(329, 'EU', 'die-silberne-hand', 'Die Silberne Hand'),
(330, 'EU', 'die-todeskrallen', 'Die Todeskrallen'),
(331, 'EU', 'die-ewige-wacht', 'Die ewige Wacht'),
(332, 'EU', 'doomhammer', 'Doomhammer'),
(333, 'EU', 'draenor', 'Draenor'),
(334, 'EU', 'dragonblight', 'Dragonblight'),
(335, 'EU', 'dragonmaw', 'Dragonmaw'),
(336, 'EU', 'drakthul', 'Drak''thul'),
(337, 'EU', 'drekthar', 'Drek''Thar'),
(338, 'EU', 'dun-modr', 'Dun Modr'),
(339, 'EU', 'dun-morogh', 'Dun Morogh'),
(340, 'EU', 'dunemaul', 'Dunemaul'),
(341, 'EU', 'durotan', 'Durotan'),
(342, 'EU', 'earthen-ring', 'Earthen Ring'),
(343, 'EU', 'echsenkessel', 'Echsenkessel'),
(344, 'EU', 'eitrigg', 'Eitrigg'),
(345, 'EU', 'eldrethalas', 'Eldre''Thalas'),
(346, 'EU', 'elune', 'Elune'),
(347, 'EU', 'emerald-dream', 'Emerald Dream'),
(348, 'EU', 'emeriss', 'Emeriss'),
(349, 'EU', 'eonar', 'Eonar'),
(350, 'EU', 'eredar', 'Eredar'),
(351, 'EU', 'eversong', 'Eversong'),
(352, 'EU', 'executus', 'Executus'),
(353, 'EU', 'exodar', 'Exodar'),
(354, 'EU', 'festung-der-sturme', 'Festung der Stürme'),
(355, 'EU', 'fordragon', 'Fordragon'),
(356, 'EU', 'forscherliga', 'Forscherliga'),
(357, 'EU', 'frostmane', 'Frostmane'),
(358, 'EU', 'frostmourne', 'Frostmourne'),
(359, 'EU', 'frostwhisper', 'Frostwhisper'),
(360, 'EU', 'frostwolf', 'Frostwolf'),
(361, 'EU', 'galakrond', 'Galakrond'),
(362, 'EU', 'garona', 'Garona'),
(363, 'EU', 'garrosh', 'Garrosh'),
(364, 'EU', 'genjuros', 'Genjuros'),
(365, 'EU', 'ghostlands', 'Ghostlands'),
(366, 'EU', 'gilneas', 'Gilneas'),
(367, 'EU', 'goldrinn', 'Goldrinn'),
(368, 'EU', 'gordunni', 'Gordunni'),
(369, 'EU', 'gorgonnash', 'Gorgonnash'),
(370, 'EU', 'greymane', 'Greymane'),
(371, 'EU', 'grim-batol', 'Grim Batol'),
(372, 'EU', 'grom', 'Grom'),
(373, 'EU', 'guldan', 'Gul''dan'),
(374, 'EU', 'hakkar', 'Hakkar'),
(375, 'EU', 'haomarush', 'Haomarush'),
(376, 'EU', 'hellfire', 'Hellfire'),
(377, 'EU', 'hellscream', 'Hellscream'),
(378, 'EU', 'howling-fjord', 'Howling Fjord'),
(379, 'EU', 'hyjal', 'Hyjal'),
(380, 'EU', 'illidan', 'Illidan'),
(381, 'EU', 'jaedenar', 'Jaedenar'),
(382, 'EU', 'kaelthas', 'Kael''thas'),
(383, 'EU', 'karazhan', 'Karazhan'),
(384, 'EU', 'kargath', 'Kargath'),
(385, 'EU', 'kazzak', 'Kazzak'),
(386, 'EU', 'kelthuzad', 'Kel''Thuzad'),
(387, 'EU', 'khadgar', 'Khadgar'),
(388, 'EU', 'khaz-modan', 'Khaz Modan'),
(389, 'EU', 'khazgoroth', 'Khaz''goroth'),
(390, 'EU', 'kiljaeden', 'Kil''jaeden'),
(391, 'EU', 'kilrogg', 'Kilrogg'),
(392, 'EU', 'kirin-tor', 'Kirin Tor'),
(393, 'EU', 'korgall', 'Kor''gall'),
(394, 'EU', 'kragjin', 'Krag''jin'),
(395, 'EU', 'krasus', 'Krasus'),
(396, 'EU', 'kul-tiras', 'Kul Tiras'),
(397, 'EU', 'kult-der-verdammten', 'Kult der Verdammten'),
(398, 'EU', 'la-croisade-ecarlate', 'La Croisade écarlate'),
(399, 'EU', 'laughing-skull', 'Laughing Skull'),
(400, 'EU', 'les-clairvoyants', 'Les Clairvoyants'),
(401, 'EU', 'les-sentinelles', 'Les Sentinelles'),
(402, 'EU', 'lich-king', 'Lich King'),
(403, 'EU', 'lightbringer', 'Lightbringer'),
(404, 'EU', 'lightnings-blade', 'Lightning''s Blade'),
(405, 'EU', 'lordaeron', 'Lordaeron'),
(406, 'EU', 'los-errantes', 'Los Errantes'),
(407, 'EU', 'lothar', 'Lothar'),
(408, 'EU', 'madmortem', 'Madmortem'),
(409, 'EU', 'magtheridon', 'Magtheridon'),
(410, 'EU', 'malganis', 'Mal''Ganis'),
(411, 'EU', 'malfurion', 'Malfurion'),
(412, 'EU', 'malorne', 'Malorne'),
(413, 'EU', 'malygos', 'Malygos'),
(414, 'EU', 'mannoroth', 'Mannoroth'),
(415, 'EU', 'marecage-de-zangar', 'Marécage de Zangar'),
(416, 'EU', 'mazrigos', 'Mazrigos'),
(417, 'EU', 'medivh', 'Medivh'),
(418, 'EU', 'minahonda', 'Minahonda'),
(419, 'EU', 'moonglade', 'Moonglade'),
(420, 'EU', 'mugthol', 'Mug''thol'),
(421, 'EU', 'nagrand', 'Nagrand'),
(422, 'EU', 'nathrezim', 'Nathrezim'),
(423, 'EU', 'naxxramas', 'Naxxramas'),
(424, 'EU', 'nazjatar', 'Nazjatar'),
(425, 'EU', 'nefarian', 'Nefarian'),
(426, 'EU', 'nemesis', 'Nemesis'),
(427, 'EU', 'neptulon', 'Neptulon'),
(428, 'EU', 'nerzhul', 'Ner''zhul'),
(429, 'EU', 'nerathor', 'Nera''thor'),
(430, 'EU', 'nethersturm', 'Nethersturm'),
(431, 'EU', 'nordrassil', 'Nordrassil'),
(432, 'EU', 'norgannon', 'Norgannon'),
(433, 'EU', 'nozdormu', 'Nozdormu'),
(434, 'EU', 'onyxia', 'Onyxia'),
(435, 'EU', 'outland', 'Outland'),
(436, 'EU', 'perenolde', 'Perenolde'),
(437, 'EU', 'pozzo-delleternita', 'Pozzo dell''Eternità'),
(438, 'EU', 'proudmoore', 'Proudmoore'),
(439, 'EU', 'quelthalas', 'Quel''Thalas'),
(440, 'EU', 'ragnaros', 'Ragnaros'),
(441, 'EU', 'rajaxx', 'Rajaxx'),
(442, 'EU', 'rashgarroth', 'Rashgarroth'),
(443, 'EU', 'ravencrest', 'Ravencrest'),
(444, 'EU', 'ravenholdt', 'Ravenholdt'),
(445, 'EU', 'razuvious', 'Razuvious'),
(446, 'EU', 'rexxar', 'Rexxar'),
(447, 'EU', 'runetotem', 'Runetotem'),
(448, 'EU', 'sanguino', 'Sanguino'),
(449, 'EU', 'sargeras', 'Sargeras'),
(450, 'EU', 'saurfang', 'Saurfang'),
(451, 'EU', 'scarshield-legion', 'Scarshield Legion'),
(452, 'EU', 'senjin', 'Sen''jin'),
(453, 'EU', 'shadowsong', 'Shadowsong'),
(454, 'EU', 'shattered-halls', 'Shattered Halls'),
(455, 'EU', 'shattered-hand', 'Shattered Hand'),
(456, 'EU', 'shattrath', 'Shattrath'),
(457, 'EU', 'shendralar', 'Shen''dralar'),
(458, 'EU', 'silvermoon', 'Silvermoon'),
(459, 'EU', 'sinstralis', 'Sinstralis'),
(460, 'EU', 'skullcrusher', 'Skullcrusher'),