DROP TABLE IF EXISTS `gw2_maps`;
CREATE TABLE IF NOT EXISTS `gw2_maps` (
  `map_id` int(5) unsigned NOT NULL,
  `continent_id` int(5) unsigned NOT NULL,
  `floor_id` int(4) NOT NULL,
  `map_rect` varchar(50) COLLATE utf8_bin NOT NULL,
  `continent_rect` varchar(50) COLLATE utf8_bin NOT NULL,
  `min_level` int(2) unsigned NOT NULL,
  `max_level` int(2) unsigned NOT NULL,
  `name_de` varchar(40) COLLATE utf8_bin NOT NULL,
  `name_en` varchar(40) COLLATE utf8_bin NOT NULL,
  `name_es` varchar(40) COLLATE utf8_bin NOT NULL,
  `name_fr` varchar(40) COLLATE utf8_bin NOT NULL,
  PRIMARY KEY (`map_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

INSERT INTO `gw2_maps` (`map_id`, `continent_id`, `floor_id`, `map_rect`, `continent_rect`, `min_level`, `max_level`, `name_de`, `name_en`, `name_es`, `name_fr`) VALUES
(15, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 1, 17, 'Königintal', 'Queensdale', 'Valle de la Reina', 'La Vallée de la reine'),
(17, 1, 1, '[["-36864","-33792"],["39936","33792"]]', '[["13440","9472"],["16640","12288"]]', 35, 45, 'Harathi-Hinterland', 'Harathi Hinterlands', 'Interior Harathi', 'Hinterlands harathis'),
(18, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 0, 80, 'Götterfels', 'Divinity''s Reach', 'Linde de la Divinidad', 'Le Promontoire divin'),
(19, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 1, 15, 'Ebenen von Aschfurt', 'Plains of Ashford', 'Llanuras de Ashford', 'Plaines d''Ashford'),
(20, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["29184","12160"],["31232","16256"]]', 40, 50, 'Flammenkamm-Steppe', 'Blazeridge Steppes', 'Estepas Crestafulgurante', 'Les Steppes de la Strie flamboyante'),
(21, 1, 1, '[["-36864","-36864"],["36864","36864"]]', '[["28672","16256"],["31744","19328"]]', 30, 40, 'Felder der Verwüstung', 'Fields of Ruin', 'Campos de la Ruina', 'Champs de Ruine'),
(22, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["23808","8448"],["27136","11264"]]', 60, 70, 'Feuerherzhügel', 'Fireheart Rise', 'Colina del Corazón de fuego', 'Montée de Flambecœur'),
(23, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 15, 25, 'Kessex-Hügel', 'Kessex Hills', 'Colinas Kessex', 'Collines de Kesse'),
(24, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 25, 35, 'Gendarran-Felder', 'Gendarran Fields', 'Campos de Gendarran', 'Champs de Gendarran'),
(25, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["27136","9472"],["29184","13568"]]', 50, 60, 'Eisensümpfe', 'Iron Marches', 'Fronteras de Hierro', 'Marais de fer'),
(26, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 40, 50, 'Schauflerschreck-Klippen', 'Dredgehaunt Cliffs', 'Acantilados de Guaridadraga', 'Falaises de Hantedraguerre'),
(27, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 25, 40, 'Lornars Pass', 'Lornar''s Pass', 'Paso de Lornar', 'Passage de Lornar'),
(28, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 1, 15, 'Wanderer-Hügel', 'Wayfarer Foothills', 'Colinas del Caminante', 'Contreforts du Voyageur'),
(29, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["18944","18176"],["21248","21376"]]', 50, 60, 'Baumgrenzen-Fälle', 'Timberline Falls', 'Cataratas de Linarbórea', 'Chutes de la Canopée'),
(30, 1, 1, '[["-36864","-36864"],["36864","36864"]]', '[["20736","8192"],["23808","11264"]]', 70, 80, 'Eisklamm-Sund', 'Frostgorge Sound', 'Estrecho de Forjaescarcha', 'Détroit des gorges glacées'),
(31, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 15, 25, 'Schneekuhlenhöhen', 'Snowden Drifts', 'Cúmulos de Guaridanieve', 'Congères d''Antreneige'),
(32, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 15, 25, 'Diessa-Plateau', 'Diessa Plateau', 'Meseta de Diessa', 'Plateau de Diessa'),
(33, 1, -2, '[["-15360","-12288"],["15360","12288"]]', '[["27648","13056"],["28928","14080"]]', 30, 30, 'Geister von Ascalon', 'Ascalonian Catacombs', 'Catacumbas Ascalonianas', 'Catacombes d''Ascalon'),
(34, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 1, 15, 'Caledon-Wald', 'Caledon Forest', 'Bosque de Caledon', 'Forêt de Caledon'),
(35, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 1, 15, 'Provinz Metrica', 'Metrica Province', 'Provincia de Métrica', 'Province de Metrica'),
(36, 1, -2, '[["-15360","-12288"],["15360","12288"]]', '[["27648","13056"],["28928","14080"]]', 35, 35, 'Katakomben von Ascalon', 'Ascalonian Catacombs', 'Catacumbas Ascalonianas', 'Catacombes d''Ascalon'),
(37, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 8, 8, 'Brandanschlag aufs Waisenhaus', 'Arson at the Orphanage', 'Incendio provocado en el orfanato', 'Incendie criminel à l''orphelinat'),
(38, 2, 1, '[["-36864","-36864"],["36864","36864"]]', '[["8958","12798"],["12030","15870"]]', 80, 80, 'Ewige Schlachtfelder', 'Eternal Battlegrounds', 'Campos de Batalla Eternos', 'Champs de bataille éternels'),
(39, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 60, 70, 'Mahlstromgipfel', 'Mount Maelstrom', 'Monte Vorágine', 'Mont Maelström'),
(50, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 0, 80, 'Löwenstein', 'Lion''s Arch', 'Arco del León', 'L''Arche du Lion'),
(51, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 70, 75, 'Meerenge der Verwüstung', 'Straits of Devastation', 'Estrechos de la Devastación', 'Détroit de la Dévastation'),
(53, 1, 1, '[["-30720","-39936"],["30720","39936"]]', '[["15232","19072"],["17792","22400"]]', 55, 65, 'Funkenschwärmersumpf', 'Sparkfly Fen', 'Pantano de las Centellas', 'Marais de Lumillule'),
(54, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 15, 25, 'Brisban-Wildnis', 'Brisban Wildlands', 'Selvas Brisbanas', 'Terres sauvages de Brisban'),
(55, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 8, 8, 'Gefahr für das Hospital', 'The Hospital in Jeopardy', 'El hospital en peligro', 'Hôpital en péril'),
(61, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 6, 6, 'In die Höhle des Löwen', 'Infiltration', 'Infiltración', 'Infiltration'),
(62, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["10112","25216"],["12160","29312"]]', 80, 80, 'Fluchküste', 'Cursed Shore', 'Ribera Maldita', 'Rivage maudit'),
(63, 1, -7, '[["-18432","-18432"],["18432","18432"]]', '[["19328","17408"],["20864","18944"]]', 60, 60, 'Umarmung der Betrübnis', 'Sorrow''s Embrace', 'Abrazo del Pesar', 'Etreinte des Lamentations'),
(64, 1, -7, '[["-18432","-18432"],["18432","18432"]]', '[["19328","17408"],["20864","18944"]]', 65, 65, 'Umarmung der Betrübnis', 'Sorrow''s Embrace', 'Abrazo del Pesar', 'Etreinte des Lamentations'),
(65, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["10368","23168"],["14464","25216"]]', 75, 80, 'Malchors Sprung', 'Malchor''s Leap', 'Salto de Malchor', 'Saut de Malchor'),
(66, 1, -10, '[["-15360","-15360"],["15360","15360"]]', '[["26624","7680"],["27904","8960"]]', 70, 70, 'Flammenzitadelle', 'Citadel of Flame', 'Ciudadela de la Llama', 'Citadelle de la Flamme'),
(67, 1, -6, '[["-15360","-12288"],["15360","12288"]]', '[["8704","16000"],["9984","17024"]]', 55, 55, 'Zwielichtgarten', 'Twilight Arbor', 'Pérgola del Crepúsculo', 'Tonnelle du crépuscule'),
(68, 1, -5, '[["-15360","-12288"],["15360","12288"]]', '[["8704","16000"],["9984","17024"]]', 50, 50, 'Zwielichtgarten', 'Twilight Arbor', 'Pérgola del Crepúsculo', 'Tonnelle du crépuscule'),
(69, 1, -10, '[["-15360","-15360"],["15360","15360"]]', '[["26624","7680"],["27904","8960"]]', 75, 75, 'Flammenzitadelle', 'Citadel of Flame', 'Ciudadela de la Llama', 'Citadelle de la Flamme'),
(70, 1, 6, '[["-15360","-12288"],["15360","15360"]]', '[["21760","8064"],["23040","9216"]]', 76, 76, 'Zierde der Wogen', 'Honor of the Waves', 'Honor de las Olas', 'Honneur des vagues'),
(71, 1, 6, '[["-15360","-12288"],["15360","15360"]]', '[["21760","8064"],["23040","9216"]]', 80, 80, 'Zierde der Wogen', 'Honor of the Waves', 'Honor de las Olas', 'Honneur des vagues'),
(73, 1, 1, '[["-27648","-36864"],["30720","39936"]]', '[["15232","15872"],["17664","19072"]]', 45, 55, 'Blutstrom-Küste', 'Bloodtide Coast', 'Costa Mareasangrienta', 'Côte de la marée sanglante'),
(75, 1, 4, '[["-12288","-12288"],["12288","12288"]]', '[["12416","11392"],["13440","12416"]]', 40, 40, 'Caudecus'' Anwesen', 'Caudecus''s Manor', 'Mansión de Caudecus', 'Manoir de Caudecus'),
(76, 1, 4, '[["-12288","-12288"],["12288","12288"]]', '[["12416","11392"],["13440","12416"]]', 45, 45, 'Caudecus'' Anwesen', 'Caudecus''s Manor', 'Mansión de Caudecus', 'Manoir de Caudecus'),
(77, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 8, 8, 'Der Einbruch', 'Search the Premises', 'La búsqueda de las premisas', 'Cambriolage'),
(79, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 6, 6, 'Der Handelsposten', 'The Informant', 'El informante', 'L''informateur'),
(80, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 8, 8, 'Eine vornehme Gruppe', 'A Society Function', 'Una reunión social', 'La fête du ministre'),
(81, 1, -11, '[["-12288","-15360"],["12288","15360"]]', '[["20416","21312"],["21440","22592"]]', 78, 78, 'Schmelztiegel der Ewigkeit', 'Crucible of Eternity', 'Crisol de la Eternidad', 'Creuset de l''éternité'),
(82, 1, -11, '[["-12288","-15360"],["12288","15360"]]', '[["20416","21312"],["21440","22592"]]', 80, 80, 'Schmelztiegel der Ewigkeit', 'Crucible of Eternity', 'Crisol de la eternidad', 'Creuset de l''éternité'),
(89, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 4, 4, 'Banditen-Entführer', 'Chasing the Culprits', 'En busca de los culpables', 'Bandits geôliers'),
(91, 1, 1, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 0, 80, 'Der Hain', 'The Grove', 'La Arboleda', 'Le Bosquet'),
(92, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 10, 10, 'Der Prozess von Julius Zamon', 'The Trial of Julius Zamon', 'El juicio de Julius Zamon', 'Le procès de Julius Zamon'),
(94, 2, 1, '[["-30720","-43008"],["30720","43008"]]', '[["9214","8958"],["11774","12542"]]', 80, 80, ' Grenzlande', ' Borderlands', 'Tierras fronterizas de ', 'Territoires frontaliers ()'),
(95, 2, 1, '[["-30720","-43008"],["30720","43008"]]', '[["5630","11518"],["8190","15102"]]', 80, 80, ' Grenzlande', ' Borderlands', 'Tierras fronterizas de ', 'Territoires frontaliers ()'),
(96, 2, 1, '[["-30720","-43008"],["30720","43008"]]', '[["12798","10878"],["15358","14462"]]', 80, 80, ' Grenzlande', ' Borderlands', 'Tierras fronterizas de ', 'Territoires frontaliers ( )'),
(97, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 6, 6, 'In die Höhle des Löwen', 'Infiltration', 'Infiltración', 'Infiltration'),
(110, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 3, 3, 'Freundschaft mit Risiko', 'The Perils of Friendship', 'Los peligros de la amistad', 'Les risques d''une amitié'),
(111, 1, 10, '[["-39936","-33792"],["39936","33792"]]', '[["12160","27136"],["15488","29952"]]', 80, 80, 'Die Ruinenstadt Arah', 'The Ruined City of Arah', 'La ciudad en ruinas de Arah', 'La cité en ruine d''Arah'),
(112, 1, 9, '[["-24576","-24576"],["24576","24576"]]', '[["12160","26496"],["14208","28544"]]', 80, 80, 'Die Ruinenstadt Arah', 'The Ruined City of Arah', 'La ciudad en ruinas de Arah', 'La cité en ruine d''Arah'),
(113, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 4, 4, 'Gestohlene Vorräte', 'Desperate Medicine', 'Medicina desesperada', 'Fournitures volées'),
(120, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 10, 10, 'Der Befehlshaber', 'The Commander', 'El Comandante', 'Serentine'),
(138, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 1, 1, 'Die Verteidigung von Shaemoor', 'Defense of Shaemoor', 'Defensa de Shaemoor', 'Protéger Shaemoor'),
(139, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 0, 80, 'Rata Sum', 'Rata Sum', 'Rata Sum', 'Rata Sum'),
(140, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 4, 4, 'Die Arzneikundlerin', 'The Apothecary', 'La botica', 'L''apothicaire'),
(142, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 6, 6, 'Verdeckt arbeiten', 'Going Undercover', 'De incógnito', 'Infiltration'),
(143, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 6, 6, 'Verdeckt arbeiten', 'Going Undercover', 'De incógnito', 'Infiltration'),
(144, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 8, 8, 'Feinde', 'The Greater Good', 'El bien común', 'Le bien public'),
(145, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 8, 8, 'Die Rettung', 'The Rescue', 'El rescate', 'Le sauvetage'),
(147, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 10, 10, 'Gift hat seinen Preis', 'Breaking the Blade', 'Partiendo filos', 'Le prix du poison'),
(148, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 11, 11, 'Der Untergang der Falken-Kompanie', 'The Fall of Falcon Company', 'La caída de la Compañía del Halcón', 'La chute de la Compagnie des Faucons'),
(149, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 11, 11, 'Der Untergang der Falken-Kompanie', 'The Fall of Falcon Company', 'La caída de la Compañía del Halcón', 'La chute de la Compagnie des Faucons'),
(152, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 14, 14, 'Stellt Euch Hauptmann Tervelan', 'Confronting Captain Tervelan', 'Enfrentarse al capitán Tervelan', 'Confrontation avec le capitaine Tervelan'),
(153, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 14, 14, 'Ersucht Logans Hilfe', 'Seek Logan''s Aid', 'En busca de la ayuda de Logan', 'Aide de Logan'),
(154, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 14, 14, 'Ersucht Logans Hilfe', 'Seek Logan''s Aid', 'En busca de la ayuda de Logan', 'Aide de Logan'),
(157, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 16, 16, 'Anschuldigung', 'Accusation', 'Acusación', 'Accusation'),
(159, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 16, 16, 'Anschuldigung', 'Accusation', 'Acusación', 'Accusation'),
(161, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 19, 19, 'Befreiung', 'Liberation', 'Liberación', 'Libération'),
(162, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 11, 11, 'Stimmen der Vergangenheit', 'Voices From the Past', 'Voces del pasado', 'Voix du passé'),
(163, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 11, 11, 'Stimmen der Vergangenheit', 'Voices From the Past', 'Voces del pasado', 'Voix du passé'),
(171, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 14, 14, 'Die Teilung des Mantels', 'Rending the Mantle', 'El Manto desgarrado.', 'Le Manteau rapiécé'),
(172, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 14, 14, 'Die Teilung des Mantels', 'Rending the Mantle', 'Desgarrar el Manto', 'Le Manteau rapiécé'),
(178, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 11, 11, 'Der schwebende Ratzkreisel', 'The Floating Grizwhirl', 'El hipnomolino flotante', 'Le tourbilion flottant'),
(179, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 11, 11, 'Der schwebende Ratzkreisel', 'The Floating Grizwhirl', 'El hipnomolino flotante', 'Le tourbilion flottant'),
(180, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 11, 11, 'Der schwebende Ratzkreisel', 'The Floating Grizwhirl', 'El hipnomolino flotante', 'Le tourbilion flottant'),
(182, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 14, 14, 'Spaßmacherkolleg', 'Clown College', 'Escuela de payasos', 'Collège de pitres'),
(184, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 16, 16, 'Das Künstleratelier', 'The Artist''s Workshop', 'El taller del artista', 'L''atelier de l''artiste'),
(185, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 16, 16, 'Auf in den Wald', 'Into the Woods', 'En el bosque', 'Dans les bois'),
(186, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 19, 19, 'Der Zirkusdirektor', 'The Ringmaster', 'El maestro de ceremonias', 'Monsieur Loyal'),
(190, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 21, 21, 'Die Orden von Tyria', 'The Orders of Tyria', 'Las órdenes de Tyria', 'Les ordres de la Tyrie'),
(191, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 21, 21, 'Die Orden von Tyria', 'The Orders of Tyria', 'Las órdenes de Tyria', 'Les ordres de la Tyrie'),
(192, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 22, 22, 'Rohe Gewalt', 'Brute Force', 'Fuerza bruta', 'Force brute'),
(193, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 22, 22, 'Mortus Virge', 'Mortus Virge', 'Mortus Virge', 'Mortus Virge'),
(195, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 24, 24, 'Triskell-Kai', 'Triskell Quay', 'Muelle de Triskell', 'Quai de Triskel'),
(196, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 24, 24, 'Die Spur des Seraphen', 'Track the Seraph', 'El rastro del serafín', 'Pister le Séraphin'),
(198, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 26, 26, 'Sprecher der Toten', 'Speaker of the Dead', 'El portavoz de los muertos', 'L''orateur des morts'),
(199, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 26, 26, 'Die traurige Geschichte der "Raffgier"', 'The Sad Tale of the "Ravenous"', 'La triste historia del "Voraz"', 'Le triste sort du "Vorace"'),
(201, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 28, 28, 'Königliches Blut', 'Royal Blood', 'Sangre real', 'Sang royal'),
(202, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 28, 28, 'Die Gerechtigkeit der Königin', 'The Queen''s Justice', 'La justicia de la reina', 'La justice de la Reine'),
(203, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 28, 28, 'Die Falle', 'The Trap', 'La trampa', 'Le piège'),
(211, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 3, 3, 'Geniale Pläne', 'Best Laid Plans', 'Los mejores planes', 'Des plans sans accroc'),
(212, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 3, 3, 'Willkommen zu Hause', 'Welcome Home', 'De vuelta en casa', 'Bienvenue à la maison'),
(215, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 3, 3, 'Der Ruf des Tribuns', 'The Tribune''s Call', 'La Llamada del Tribuno', 'L''Appel du tribun'),
(216, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 3, 3, 'Der Ruf des Tribuns', 'The Tribune''s Call', 'La Llamada del Tribuno', 'L''Appel du tribun'),
(217, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 3, 3, 'Der Ruf des Tribuns', 'The Tribune''s Call', 'La Llamada del Tribuno', 'L''Appel du tribun'),
(218, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 0, 80, 'Schwarze Zitadelle', 'Black Citadel', 'Ciudadela Negra', 'La Citadelle noire'),
(222, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 4, 4, 'Einen Spion für einen Spion', 'A Spy for a Spy', 'Espía por espía', 'Espion contre espion'),
(224, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 4, 4, 'Schrottplatzstreuner', 'Scrapyard Dogs', 'Perros de chatarrería', 'Chiens d''épaves'),
(225, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 4, 4, 'Einen Spion für einen Spion', 'A Spy for a Spy', 'Espía por espía', 'Espion contre espion'),
(226, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 3, 3, 'Auf dem Wege der Besserung', 'On the Mend', 'Convalenciente', 'En voie de guérison'),
(232, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 6, 6, 'Vergossenes Blut', 'Spilled Blood', 'Sangre derramada', 'Du sang versé'),
(234, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 6, 6, 'Geisterlaufmuskete', 'Ghostbore Musket', 'Mosquete perforafantasmas', 'Mousquet Percefantôme'),
(237, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 6, 6, 'Im eisernen Griff der Legion', 'Iron Grip of the Legion', 'La empuñadura de hierro de la legión', 'La poigne de fer de la Légion'),
(238, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 8, 8, 'Der Anmarsch der Flamme', 'The Flame Advances', 'La Llama avanza', 'Les flammes progressent'),
(239, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 8, 8, 'Der Anmarsch der Flamme', 'The Flame Advances', 'La Llama avanza', 'Les flammes progressent'),
(242, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 8, 8, 'Prüft Euer Metall', 'Test Your Metal', 'Prueba tu metal', 'Test du métal'),
(244, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 10, 10, 'Geschwind und leise', 'Quick and Quiet', 'Rápido y en silencio', 'Rapidité et discrétion'),
(248, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 0, 15, 'Salma-Viertel (Heimatort)', 'Salma District (Home)', 'Distrito de Salma (Hogar)', 'Quartier salma (maison)'),
(249, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 11, 11, 'Eine ungewöhnliche Erbschaft', 'An Unusual Inheritance', 'Una herencia inusual', 'Un héritage insolite'),
(250, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 11, 11, 'Windfels-Labyrinth', 'Windrock Maze', 'Laberinto Rocaviento', 'Labyrinthe de Rochevent'),
(251, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 14, 14, 'Tief im Schlamm', 'Mired Deep', 'Enfangados', 'En plein bourbier'),
(252, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 14, 14, 'Tief im Schlamm', 'Mired Deep', 'Enfangados', 'En plein bourbier'),
(254, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 10, 10, 'Tödliche Gewalt', 'Deadly Force', 'Fuerza mortal', 'Force létale'),
(255, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 10, 10, 'Geisterlauf-Artillerie', 'Ghostbore Artillery', 'Artillería perforafantasmas', 'Artillerie percefantôme'),
(256, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 16, 16, 'Keine Verhandlungen', 'No Negotiations', 'Sin negociación', 'Pas de négociations'),
(257, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 16, 16, 'Wiederverwertung von Schrott', 'A Modest Proposal', 'Una propuesta modesta', 'Une proposition modeste'),
(258, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 16, 16, 'Wiederverwertung von Schrott', 'A Modest Proposal', 'Una propuesta modesta', 'Une proposition modeste'),
(259, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 19, 19, 'In die Ruinen', 'Into the Ruins', 'En las ruinas', 'Dans les ruines'),
(260, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 19, 19, 'In den Ruinen', 'Into the Ruins', 'En las ruinas', 'Dans les ruines'),
(262, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 3, 3, 'Befehlskette', 'Chain of Command', 'Cadena de mando', 'Chaîne de commandement'),
(263, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 3, 3, 'Befehlskette', 'Chain of Command', 'Cadena de mando', 'Chaîne de commandement'),
(264, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 4, 4, 'Zeit für eine Beförderung', 'Time for a Promotion', 'Hora de un ascenso', 'Promotion dans l''air'),
(267, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 6, 6, 'Die Endstation', 'The End of the Line', 'El final del trayecto', 'Fin de la ligne'),
(269, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 6, 6, 'Magische Benutzer', 'Magic Users', 'Usuarios de la magia', 'Utilisateurs de magie'),
(271, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 8, 8, 'Die Faust in der Tasche', 'Rage Suppression', 'Contención de la rabia', 'Rage supprimée'),
(272, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 8, 8, 'Die Faust in der Tasche', 'Rage Suppression', 'Contención de la rabia', 'Rage supprimée'),
(274, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 10, 10, 'Operation Bollwerk', 'Operation: Bulwark', 'Operación: Baluarte', 'Opération : Rempart'),
(275, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 11, 11, 'Fahnenflüchtig', 'AWOL', 'Deserción', 'Désertion'),
(276, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 11, 11, 'Fahnenflüchtig', 'Human''s Lament', 'Lamento de Humano', 'Gouffre des lamentations'),
(282, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 16, 16, 'Die Rückkehr des Banners', 'Misplaced Faith', 'Fe equivocada', 'Une confiance mal placée'),
(283, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 19, 19, 'Dicker als Wasser', 'Thicker Than Water', 'Más espeso que el agua', 'Plus épais que l''eau'),
(284, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 19, 19, 'Unehrenhafte Entlassung', 'Dishonorable Discharge', 'Baja por conducta deshonrosa', 'Renvoi honorable'),
(287, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 11, 11, 'An vorderster Front', 'Front and Center', 'Frente y centro', 'Places d''honneur'),
(288, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 11, 11, 'Anzünden des Leuchtfeuers', 'Lighting the Beacons', 'El encendido de las balizas', 'Allumage des fanaux'),
(290, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 14, 14, 'Das Feuer schüren', 'Stoking the Flame', 'Avivando la Llama', 'Alimenter la flamme'),
(294, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 16, 16, 'Der Weg gabelt sich', 'A Fork in the Road', 'Una encrucijada en el camino', 'La croisée du chemin'),
(326, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 0, 80, 'Hoelbrak', 'Hoelbrak', 'Hoelbrak', 'Hoelbrak'),
(327, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 4, 4, 'Gestohlene Vorräte', 'Desperate Medicine', 'Medicina desesperada', 'Fournitures volées'),
(330, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 0, 15, 'Seraphen-Hauptquartier', 'Seraph Headquarters', 'Cuartel general de los Serafines', 'Quartier général des Séraphins'),
(334, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 0, 0, 'Fasskeilerei', 'Keg Brawl', 'Pelea de barricas', 'Bagarre de barils'),
(336, 1, -3, '[["-12288","-12288"],["12288","12288"]]', '[["16000","16000"],["17024","17024"]]', 45, 55, 'Die Heilige Halle der Geheimnisse', 'Chantry of Secrets', 'Capellanía de los Secretos', 'Chapelle des Secrets'),
(350, 2, 1, '[["-21504","-21504"],["21504","21504"]]', '[["4865","6398"],["6657","8190"]]', 0, 80, 'Herz der Nebel', 'Heart of the Mists', 'Corazón de la Niebla', 'Cœur des Brumes'),
(363, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 16, 16, 'Der Stachel', 'The Sting', 'La infiltración', 'L''aiguillon'),
(364, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 16, 16, 'Den Kult hervorlocken', 'Drawing Out the Cult', 'Sacar al culto', 'Débusquer la secte'),
(365, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 19, 19, 'Die Asche meiner Vergangenheit', 'Ashes of the Past', 'Cenizas del pasado', 'Les cendres du passé'),
(371, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 0, 0, 'Heldenbezirk', 'Hero''s Canton', 'Cantón del Héroe', 'Canton du héros'),
(372, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 0, 0, 'Bluttribun-Quartier', 'Blood Tribune Quarters', 'Alojamientos de los Tribunos de Sangre', 'Quartiers du Tribun de la Légion Sanglan'),
(373, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 0, 0, 'Der Imperator-Kern', 'The Command Core', 'El Centro de mando', 'Le Centre de commandement'),
(374, 1, 2, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 0, 0, 'Knut Weißbärs Speicher', 'Knut Whitebear''s Loft', 'Desván de Knut Osoblanco', 'Planque de Knut Ours Blanc'),
(375, 1, 2, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 0, 0, 'Des Jägers Feuerstelle (Heimatort)', 'Hunter''s Hearth (Home)', 'Hogar del Cazador (Hogar)', 'Logis du chasseur'),
(376, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 0, 0, 'Steinmacher-Gehöft', 'Stonewright''s Steading', 'Finca del Cantero', 'Maison de Sculpteroche'),
(378, 1, 2, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 0, 15, 'Thronsaal der Königin', 'Queen''s Throne Room', 'Sala del Trono de la Reina', 'Salle du trône de la Reine'),
(379, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 1, 1, 'Die Große Jagd', 'The Great Hunt', 'La Gran Caza', 'La Grande traque'),
(380, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 3, 3, 'Eine Waffe der Legenden', 'A Weapon of Legend', 'Un arma de leyenda', 'Une arme de légende'),
(381, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 10, 10, 'Der Letzte der Riesen-Könige', 'The Last of the Giant-Kings', 'El último de los reyes gigantes', 'Le dernier des Rois-Géants'),
(382, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 4, 4, 'Jünger des Drachens', 'Disciples of the Dragon', 'Los discípulos del Dragón', 'Les disciples du dragon'),
(385, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 3, 3, 'Eine Waffe der Legenden', 'A Weapon of Legend', 'Un arma de leyenda', 'Une arme de légende'),
(386, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 6, 6, 'Echos vergangener Zeiten', 'Echoes of Ages Past', 'Ecos del pasado', 'Echos du passé'),
(387, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 3, 3, 'Wilde Geister', 'Wild Spirits', 'Espíritus salvajes', 'Esprits farouches'),
(388, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 8, 8, 'Aus den Himmeln', 'Out of the Skies', 'Desde los cielos', 'Hors des cieux'),
(389, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 6, 6, 'Echos vergangener Zeiten', 'Echoes of Ages Past', 'Ecos del pasado', 'Echos du passé'),
(390, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 8, 8, 'Zwielicht des Wolfes', 'Twilight of the Wolf', 'El crepúsculo del lobo', 'Crépuscule du Loup'),
(391, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 4, 4, 'Rage der Minotauren', 'Rage of the Minotaurs', 'La rabia de los minotauros', 'Le Courroux des minotaures'),
(392, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 3, 3, 'Die Krankheit des Lehrlings', 'A Pup''s Illness', 'Un cachorro enfermo', 'La maladie d''un chiot'),
(393, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 4, 4, 'Den Schleier lüften', 'Through the Veil', 'A través del Velo', 'Par-delà du voile'),
(394, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 6, 6, 'Falle vereitelt', 'A Trap Foiled', 'Una trampa frustrada', 'Un piège déjoué'),
(396, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 6, 6, 'Verehrter Rabe', 'Raven''s Revered', 'La reverencia del Cuervo', 'Vénération de Corbeau'),
(397, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 8, 8, 'Ein guter Schluck verlangt nach einem we', 'One Good Drink Deserves Another', 'Un buen trago se merece otro', 'Une bonne tournée en appelle une autre'),
(399, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 8, 8, 'Die Form des Geistes', 'Shape of the Spirit', 'La forma del espíritu', 'Forme de l''esprit'),
(400, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 8, 8, 'Hinein in die Nebel', 'Into the Mists', 'En la Niebla', 'Dans les Brumes'),
(401, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 4, 4, 'Den Schleier lüften', 'Through the Veil', 'A través del Velo', 'Par-delà du voile'),
(405, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 6, 6, 'Der Segen der Bärin', 'Blessed of Bear', 'Bendecido por la Osa', 'L''élu de l''Ourse'),
(407, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 10, 10, 'Das Tor schließen', 'The Wolf Havroun', 'El havroun del lobo', 'Le havroun du Loup'),
(410, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 10, 10, 'Ungezügelte Minotauren', 'Minotaur Rampant', 'Minotauro desenfrenado', 'Minotaure déchaîné'),
(411, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 10, 10, 'Ungezügelte Minotauren', 'Minotaur Rampant', 'Minotauro desenfrenado', 'Minotaure déchaîné'),
(412, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 11, 11, 'Unerwartete Besucher', 'Unexpected Visitors', 'Visitantes inesperados', 'Des visiteurs inattendus'),
(413, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 11, 11, 'Man munkelt von Trubel', 'Rumors of Trouble', 'Problemas a la vista', 'Rumeurs de troubles'),
(414, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 11, 11, 'Ein neuer Herausforderer', 'A New Challenger', 'Un nuevo rival', 'Un nouveau concurrent'),
(415, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 11, 11, 'Unerwartete Besucher', 'Unexpected Visitors', 'Visitantes inesperados', 'Des visiteurs inattendus'),
(416, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 16, 16, 'Straßensperre', 'Roadblock', 'Barricada', 'Barrage routier'),
(417, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 16, 16, 'Angriff auf Mauldau', 'Assault on Moledavia', 'Ataque a Topovia', 'A l''assaut de la Taupidavie'),
(418, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 14, 14, 'Räum das Spielzeug weg', 'Don''t Leave Your Toys Out', 'No dejes tirados tus juguetes', 'Ne pas laisser traîner les jouets'),
(419, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 11, 11, 'Ein neuer Herausforderer', 'A New Challenger', 'Un nuevo rival', 'Un nouveau concurrent'),
(420, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 14, 14, 'Erster Angriff', 'First Attack', 'Primer ataque', 'Première attaque'),
(421, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 14, 14, 'Der Todesstoß', 'The Finishing Blow', 'El golpe de gracia', 'Le coup de grâce'),
(422, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 16, 16, 'Das Halbfinale', 'The Semifinals', 'Las semifinales', 'Les demi-finales'),
(423, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 19, 19, 'Der Meisterkampf', 'The Championship Fight', 'La lucha del campeonato', 'Le combat du championnat'),
(424, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 19, 19, 'Der Meisterkampf', 'The Championship Fight', 'La lucha del campeonato', 'Le combat du championnat'),
(425, 1, 1, '[["-43008","-27648"],["43008","27648"]]', '[["23552","11264"],["27136","13568"]]', 19, 19, 'Maschine in Aktion', 'The Machine in Action', 'La máquina en acción', 'La machine en action'),
(427, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 14, 14, 'Unter Kodan', 'Among the Kodan', 'Entre los kodan', 'Parmi les Kodans'),
(428, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 11, 11, 'Man munkelt von Trubel', 'Rumors of Trouble', 'Problemas a la vista', 'Rumeurs de troubles'),
(429, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 4, 4, 'Rage der Minotauren', 'Rage of the Minotaurs', 'La rabia de los minotauros', 'Le Courroux des minotaures'),
(430, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 16, 16, 'Dunkelheit in Drakentelt', 'Darkness at Drakentelt', 'Oscuridad en Drakentelt', 'Les ténèbres de Drakentelt'),
(432, 1, -15, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 1, 1, 'Bekämpft den Albtraum', 'Fighting the Nightmare', 'Lucha contra la Pesadilla', 'Face au cauchemar'),
(434, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 19, 19, 'Der Erhalt des Gleichgewichts', 'Preserving the Balance', 'Mantener el equilibrio', 'Préservation d''équilibre'),
(435, 1, 2, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 19, 19, 'Mittel zum Zweck', 'Means to an End', 'El fin justifica los medios', 'La fin et les moyens'),
(436, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 21, 21, 'Schaufler-Technologie', 'Dredge Technology', 'Tecnología draga', 'Technologie draguerre'),
(439, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 22, 22, 'Gelehrter des Untergrunds', 'Underground Scholar', 'Erudito subterráneo', 'Erudit souterrain'),
(440, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 24, 24, 'Angriff der Schaufler', 'Dredge Assault', 'Asalto draga', 'Assaut draguerre'),
(441, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 24, 24, 'Das Versteck der Schaufler', 'The Dredge Hideout', 'El escondite draga', 'La cachette draguerre'),
(444, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 26, 26, 'Sabotage', 'Sabotage', 'Sabotaje', 'Sabotage'),
(447, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 26, 26, 'Code-Brecher', 'Codebreaker', 'Descifrador', 'Décodage'),
(449, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 22, 22, 'Wettrüsten', 'Armaments', 'Armamento', 'Armements'),
(453, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 28, 28, 'Angriff auf den Hügel', 'Assault the Hill', 'Asalta la colina', 'Assaut sur la colline'),
(454, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 28, 28, 'Lautlose Kriegsführung', 'Silent Warfare', 'Guerra silenciosa', 'Guerre silencieuse'),
(455, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 28, 28, 'Der Kopf muss ab', 'Sever the Head', 'Cortar la cabeza', 'Décapitation'),
(458, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 1, 1, 'Zorn der Toten', 'Fury of the Dead', 'La furia de los muertos', 'Furie des morts'),
(459, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 16, 16, 'Der Weg gabelt sich', 'A Fork in the Road', 'Una encrucijada en el camino', 'La croisée du chemin'),
(460, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 0, 0, 'Zitadellenpalisade', 'Citadel Stockade', 'Calabozo de la Ciudadela', 'Prison de la Citadelle'),
(464, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 19, 19, 'Bildnisse der Tribune', 'Tribunes in Effigy', 'Efigies de tribunos', 'Des tribuns en effigie'),
(465, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 19, 19, 'Die Sünden des Vaters', 'Sins of the Father', 'Los pecados del padre', 'Les péchés du père'),
(466, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 16, 16, 'Die Rückkehr des Banners', 'Misplaced Faith', 'Fe equivocada', 'Une confiance mal placée'),
(470, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 21, 21, 'Friedhofornamente', 'Graveyard Ornaments', 'Adornos de cementerio', 'Décorations funéraires'),
(471, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 22, 22, 'Untotenbefall', 'Undead Infestation', 'Plaga de muertos vivientes', 'Infestation cadavérique'),
(474, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 22, 22, 'Geflüster im Dunkeln', 'Whispers in the Dark', 'Susurros en la oscuridad', 'Des murmures dans la nuit'),
(476, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 24, 24, 'Gefährliche Forschung', 'Dangerous Research', 'Investigación peligrosa', 'Dangereuses recherches'),
(477, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["17664","11264"],["21760","13312"]]', 24, 24, 'Graben nach Antworten', 'Digging Up Answers', 'En busca de respuestas', 'Extraction d''informations'),
(480, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 26, 26, 'Verteidigung der Feste', 'Defending the Keep', 'Defendiendo la fortaleza', 'Défendre le fort'),
(481, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 26, 26, 'Aufspüren der Untoten', 'Undead Detection', 'Detección de muertos vivientes', 'Détection de morts-vivants'),
(483, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 28, 28, 'Immer wachsam', 'Ever Vigilant', 'Siempre alerta', 'Vigilance éternelle'),
(485, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 28, 28, 'Untersuchen und zerstören', 'Research and Destroy', 'Investigar y destruir', 'Recherche et destruction'),
(487, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 28, 28, 'Rachegeflüster', 'Whispers of Vengeance', 'Susurros de venganza', 'Murmures de vengeance'),
(488, 1, 1, '[["-36864","-36864"],["36864","36864"]]', '[["28672","16256"],["31744","19328"]]', 33, 33, 'Killerinstinkt', 'Killer Instinct', 'Instinto asesino', 'Instinct de tueur'),
(489, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 30, 30, 'Meinen Mentor treffen', 'Meeting my Mentor', 'Reunión con mi mentor', 'Rencontre avec mon mentor'),
(490, 1, 1, '[["-36864","-36864"],["36864","36864"]]', '[["28672","16256"],["31744","19328"]]', 30, 30, 'Ein instabiler Frieden', 'A Fragile Peace', 'Una frágil paz', 'Une paix fragile'),
(492, 1, 1, '[["-36864","-36864"],["36864","36864"]]', '[["28672","16256"],["31744","19328"]]', 36, 36, 'Überbringer schlechter Nachrichten', 'Don''t Shoot the Messenger', 'No matéis al mensajero', 'Le messager n''y est pour rien'),
(496, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 30, 30, 'Meinen Mentor treffen', 'Meeting my Mentor', 'Reunión con mi mentor', 'Rencontre avec mon mentor'),
(497, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 30, 30, 'Die Vergangenheit ausgraben', 'Dredging Up the Past', 'Dragar el pasado', 'Remuer le passé'),
(498, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 30, 30, 'Die Vergangenheit ausgraben', 'Dredging Up the Past', 'Dragar el pasado', 'Remuer le passé'),
(499, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 4, 4, 'Schrottplatzstreuner', 'Scrapyard Dogs', 'Perros de chatarrería', 'Chiens d''épaves'),
(502, 1, 1, '[["-36864","-36864"],["36864","36864"]]', '[["28672","16256"],["31744","19328"]]', 39, 39, 'Quästors Belagerung', 'Quaestor''s Siege', 'Asedio del Cuestor', 'Siège du questeur'),
(503, 1, 1, '[["-36864","-36864"],["36864","36864"]]', '[["28672","16256"],["31744","19328"]]', 39, 39, 'Des Ministers Verteidigung', 'Minister''s Defense', 'Defensa del Ministro', 'Défense du ministre'),
(504, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 3, 3, 'Der Ruf der Pflicht', 'Prayer of Protection', 'Oración de protección', 'Prière de protection'),
(505, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 3, 3, 'Der Ruf der Pflicht', 'Prayer of Protection', 'Oración de protección', 'Prière de protection'),
(507, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 3, 3, 'Dem Tod zum Trotz', 'Mockery of Death', 'La burla de la muerte', 'Parodie de mort'),
(509, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 6, 6, 'Entmantelung der Dunkelheit', 'Discovering Darkness', 'El descubrimiento de la oscuridad', 'Découverte des ténèbres'),
(511, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 4, 4, 'Hunde und Gejagte', 'Hounds and the Hunted', 'Sabuesos y presas', 'Traqueurs et traqués'),
(512, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 4, 4, 'Hunde und Gejagte', 'Hounds and the Hunted', 'Sabuesos y presas', 'Traqueurs et traqués'),
(513, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 4, 4, 'Verliebt und verloren', 'Loved and Lost', 'Amor perdido', 'Amours égarées'),
(514, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 8, 8, 'Rettet den Hirsch', 'Saving the Stag', 'Salvar al Ciervo', 'A la rescousse du cerf'),
(515, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 8, 8, 'Verborgen in der Dunkelheit', 'Hidden in Darkness', 'Oculto en la oscuridad', 'Tapi dans les ténèbres'),
(516, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 6, 6, 'Alle Mühen umsonst', 'Good Work Spoiled', 'Un buen trabajo echado a perder', 'Un bon travail gâché'),
(517, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 10, 10, 'Schwarze Nacht, Weißer Hirsch', 'Black Night, White Stag', 'Caballero negro, Ciervo blanco', 'Chevalier noir, Cerf blanc'),
(518, 1, 2, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 10, 10, 'Die Omphalos-Kammer', 'The Omphalos Chamber', 'La Cámara de Omphalos', 'La Chambre d''Omphalos'),
(519, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 8, 8, 'Die Schwäche des Herzens', 'Weakness of the Heart', 'Debilidad de corazón', 'Le cœur a ses raisons'),
(520, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 3, 3, 'Erwachen', 'Awakening', 'Despertar', 'Eveil'),
(521, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 4, 4, 'Der Kampf gegen die Finsternis', 'Holding Back the Darkness', 'Contra la oscuridad', 'Lutte contre l''obscurité'),
(522, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 6, 6, 'Ein schlauer Trick', 'A Sly Trick', 'Un truco ingenioso', 'Ruse machiavélique'),
(523, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 8, 8, 'Verworrene Wurzeln', 'Deep Tangled Roots', 'Raíces profundas enredadas', 'Des racines profondes');
INSERT INTO `gw2_maps` (`map_id`, `continent_id`, `floor_id`, `map_rect`, `continent_rect`, `min_level`, `max_level`, `name_de`, `name_en`, `name_es`, `name_fr`) VALUES
(524, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 10, 10, 'Das Albtraumherz', 'The Heart of Nightmare', 'El corazón de la Pesadilla', 'Le cœur du cauchemar'),
(525, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 10, 10, 'Der Mond scheint kalt', 'Beneath a Cold Moon', 'Bajo la fría luna', 'Sous une froide Lune'),
(527, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 10, 10, 'Das Ritterduell', 'The Knight''s Duel', 'El duelo del Caballero', 'Le duel du chevalier'),
(528, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 8, 8, 'Hammer und Stahl', 'Hammer and Steel', 'Martillo y acero', 'Le marteau et l''acier'),
(529, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 11, 11, 'Wie das Leben so spielt', 'Where Life Goes', 'Allá donde va la vida', 'Où mène la vie'),
(532, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 11, 11, 'Nach dem Sturm', 'After the Storm', 'Después de la tormenta', 'Après la tempête'),
(533, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 11, 11, 'Nach dem Sturm', 'After the Storm', 'Después de la tormenta', 'Après la tempête'),
(534, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 14, 14, 'Unter den Wellen', 'Beneath the Waves', 'Bajo las olas', 'Sous les vagues'),
(535, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 16, 16, 'Spieglein, Spieglein', 'Mirror, Mirror', 'Dime, espejito mágico', 'Miroir, miroir'),
(536, 1, 2, '[["-33792","-24576"],["33792","24576"]]', '[["8320","20096"],["11136","22144"]]', 19, 19, 'Vision der Finsternis', 'A Vision of Darkness', 'Una visión de la oscuridad', 'Une vision des ténèbres'),
(537, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 19, 19, 'Gebrochenes Licht', 'Shattered Light', 'Luz quebrada', 'Lumière étouffée'),
(538, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 14, 14, 'Eine unbekannte Seele', 'An Unknown Soul', 'Un alma desconocida', 'Une âme inconnue'),
(539, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 14, 14, 'Eine unbekannte Seele', 'An Unknown Soul', 'Un alma desconocida', 'Une âme inconnue'),
(540, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 11, 11, 'Wie das Leben so spielt', 'Where Life Goes', 'Allá donde va la vida', 'Où mène la vie'),
(542, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 16, 16, 'Quelle der Angelegenheit', 'Source of the Issue', 'La raíz del problema', 'La source du problème'),
(543, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 11, 11, 'Wildwuchs', 'Wild Growth', 'Crecimiento salvaje', 'Pousse sauvage'),
(544, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 11, 11, 'Wildwuchs', 'Wild Growth', 'Crecimiento salvaje', 'Pousse sauvage'),
(545, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 14, 14, 'Auf der Suche nach dem Zalisco', 'Seeking the Zalisco', 'En busca del zalisco', 'A la recherche de l''extrait de zalisco'),
(546, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 16, 16, 'Frontalangriff', 'The Direct Approach', 'El enfoque directo', 'L''approche directe'),
(547, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 16, 16, 'Wer überlistet wen?', 'Trading Trickery', 'Argucia comercial', 'Sur tous les plans'),
(548, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 19, 19, 'Auge der Sonne', 'Eye of the Sun', 'El Ojo del sol', 'L''Œil du Soleil'),
(549, 2, 1, '[["-9216","-9216"],["9216","9216"]]', '[["3326","5374"],["4094","6142"]]', 0, 0, 'Die Schlacht von Kyhlo', 'Battle of Kyhlo', 'La batalla de Kyhlo', 'Bataille de Kyhlo'),
(552, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 14, 14, 'Auf der Suche nach dem Zalisco', 'Seeking the Zalisco', 'En busca del zalisco', 'A la recherche de l''extrait de zalisco'),
(554, 2, 1, '[["-12288","-6144"],["12288","9216"]]', '[["7038","4860"],["8062","5500"]]', 0, 0, 'Der Wald von Niflhel', 'Forest of Niflhel', 'Bosque de Niflhel', 'Forêt de Niflhel'),
(556, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 16, 16, 'Ein anderer Traum', 'A Different Dream', 'Un sueño diferente', 'Un Rêve différent'),
(557, 1, 3, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 21, 21, 'Ein Splitter im Fleisch', 'A Splinter in the Flesh', 'Una astilla clavada', 'Une écharde douloureuse'),
(558, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 19, 19, 'Erstickende Glut', 'Shadow of the Tree', 'La sombra de la Planta', 'L''ombre de l''arbre'),
(559, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 19, 19, 'Auge der Sonne', 'Eye of the Sun', 'El Ojo del sol', 'L''Œil du Soleil'),
(560, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 22, 22, 'Geschärfte Dornen', 'Sharpened Thorns', 'Espinas afiladas', 'Epines aiguisées'),
(561, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 22, 22, 'Dornen-Mauern', 'Bramble Walls', 'Muros de zarzas', 'Murs de ronces'),
(563, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 24, 24, 'Geheimnisse in der Erde', 'Secrets in the Earth', 'Secretos en la tierra', 'Secrets souterrains'),
(564, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 24, 24, 'Die Blüte der Jugend', 'The Blossom of Youth', 'La flor de la juventud', 'La fleur de l''âge'),
(567, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 26, 26, 'Schwierigkeiten an der Wurzel', 'Trouble at the Roots', 'Problema de raíz', 'Problèmes de racines'),
(569, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 28, 28, 'Blume des Todes', 'Flower of Death', 'La flor de la muerte', 'Fleur de mort'),
(570, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 28, 28, 'In der Tiefe des Winters', 'Dead of Winter', 'En medio del invierno', 'Au cœur de l''hiver'),
(571, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 28, 28, 'Im Gestrüpp', 'A Tangle of Weeds', 'Maleza enredada', 'Broussailles impénétrables'),
(573, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 1, 1, 'Explosiver Intellekt', 'Explosive Intellect', 'Intelecto explosivo', 'Intellect explosif'),
(574, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 3, 3, 'In Snaffs Fußstapfen', 'In Snaff''s Footsteps', 'Tras los pasos de Snaff', 'Sur les traces de Snaff'),
(575, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 4, 4, 'Golem-Positionierungssystem', 'Golem Positioning System', 'Sistema de posicionamiento gólem', 'Golem de Positionnement Spatial'),
(576, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 8, 8, 'Schraubstock', 'Monkey Wrench', 'Llave inglesa', 'Clé à molette'),
(577, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 10, 10, 'Das Problem entschärfen', 'Defusing the Problem', 'Desactivando el problema', 'Désamorçage du problème'),
(578, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 10, 10, 'Liebesbeweise', 'The Things We Do For Love', 'Lo que hacemos por amor', 'Ce qu''on fait par amour'),
(579, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 3, 3, 'Der Snaff-Preis', 'The Snaff Prize', 'El Premio Snaff', 'Le Prix Snaff'),
(581, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 6, 6, 'Eine funkelnde Rettung', 'A Sparkling Rescue', 'Un rescate chispeante', 'Un brillant sauvetage'),
(582, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 6, 6, 'Hoher Wartungsaufwand', 'High Maintenance', 'Alto mantenimiento', 'Maintenance supérieure'),
(583, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 3, 3, 'Snaff wäre stolz', 'Snaff Would Be Proud', 'Snaff estaría orgulloso', 'Snaff serait fier'),
(584, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 4, 4, 'Die Lorbeeren zurückholen', 'Taking Credit Back', 'Recuperación de crédito', 'Les bons comptes font les bons amis'),
(586, 1, 2, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 8, 8, 'Politischer Mord', 'Political Homicide', 'Homicidio político', 'Homicide politique'),
(587, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 10, 10, 'Da und dort und überall', 'Here, There, Everywhere', 'Aquí, allá, en todas partes', 'Ici, là-bas, partout'),
(588, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 4, 4, 'Teil-Verhandlungen', 'Piece Negotiations', 'Negociaciones de fragmentos', 'Relique à relier'),
(589, 1, 0, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 6, 6, 'Ansteigende Messwerte', 'Readings On the Rise', 'Lecturas en aumento', 'Relevés en hausse'),
(590, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 3, 3, 'Snaff wäre stolz', 'Snaff Would Be Proud', 'Snaff estaría orgulloso', 'Snaff serait fier'),
(591, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 6, 6, 'Ansteigende Messwerte', 'Readings On the Rise', 'Lecturas en aumento', 'Relevés en hausse'),
(592, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 8, 8, 'Außerplanmäßige Verzögerung', 'Unscheduled Delay', 'Retraso no previsto', 'Retard pour impondérable'),
(594, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 8, 8, 'Haltet zu Eurer Kru', 'Stand By Your Krewe', 'Quédate con tu sociedad', 'Soutenir votre coterie'),
(595, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 8, 8, 'Unwillkommene Besucher', 'Unwelcome Visitors', 'Visitantes no bienvenidos', 'Visiteurs indésirables'),
(596, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 11, 11, 'Wem Anerkennung gebührt', 'Where Credit Is Due', 'Donde corresponde', 'A tout seigneur tout honneur'),
(597, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 11, 11, 'Wem Anerkennung gebührt', 'Where Credit Is Due', 'Donde corresponde', 'A tout seigneur tout honneur'),
(598, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 14, 14, 'Kurze Lunte', 'Short Fuse', 'Mecha corta', 'Mèche courte'),
(599, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 14, 14, 'Kurze Lunte', 'Short Fuse', 'Mecha corta', 'Mèche courte'),
(606, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 14, 14, 'Salz in der Wunde', 'Salt in the Wound', 'Sal en la herida', 'Le couteau dans la plaie'),
(607, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 16, 16, 'Freier Lauf', 'Free Rein', 'Rienda suelta', 'En roue libre'),
(608, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 11, 11, 'Unruhe stiften', 'Serving Up Trouble', 'Creando problemas', 'Ennuis en perspective'),
(609, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 11, 11, 'Unruhe stiften', 'Serving Up Trouble', 'Creando problemas', 'Ennuis en perspective'),
(610, 1, 2, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 19, 19, 'Sturzflut', 'Flash Flood', 'Riada', 'Inondation éclair'),
(611, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 16, 16, 'Es riecht nach Verrat', 'I Smell a Rat', 'Huelo una rata', 'Anguille sous roche'),
(613, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 19, 19, 'Magnum Opus', 'Magnum Opus', 'Obra maestra', 'Oeuvre maîtresse'),
(614, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 19, 19, 'Magnum Opus', 'Magnum Opus', 'Obra maestra', 'Oeuvre maîtresse'),
(617, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 16, 16, 'Schlechtes Geschäft', 'Bad Business', 'Mal asunto', 'Mauvaises affaires'),
(618, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 14, 14, 'Beta-Test', 'Beta Test', 'Prueba beta', 'Beta test'),
(620, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 11, 11, 'Jede hinreichend fortschrittliche Wissen', 'Any Sufficiently Advanced Science', 'Cualquier ciencia lo suficientemente ava', 'Une science suffisamment avancée'),
(621, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 11, 11, 'Jede hinreichend fortschrittliche Wissen', 'Any Sufficiently Advanced Science', 'Cualquier ciencia lo suficientemente ava', 'Une science suffisamment avancée'),
(622, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 16, 16, 'Schlechte Aussichten', 'Bad Forecast', 'Mala previsión', 'Mauvais temps'),
(623, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 16, 16, 'Industriespionage', 'Industrial Espionage', 'Espionaje industrial', 'Espionnage industriel'),
(624, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 19, 19, 'Sekundenbruchteil', 'Split Second', 'Una fracción de segundo', 'En moins de deux'),
(625, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 16, 16, 'Tragt einen großen Stock', 'Carry a Big Stick', 'Lleva un buen garrote.', 'Coup de crosse'),
(627, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 30, 30, 'Meinen Mentor treffen', 'Meeting my Mentor', 'Reunión con mi mentor', 'Rencontre avec mon mentor'),
(628, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 30, 30, 'Geheimnis stehlen', 'Stealing Secrets', 'Robo de secretos', 'Vol de secrets'),
(629, 1, 3, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 21, 21, 'Eine gewagte neue Theorie', 'A Bold New Theory', 'Una teoría nueva y atrevida', 'Une nouvelle théorie audacieuse'),
(630, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 22, 22, 'Legale Fälschung', 'Forging Permission', 'Falsificación de permisos', 'Falsification autorisée'),
(631, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 22, 22, 'Legale Fälschung', 'Forging Permission', 'Falsificación de permisos', 'Falsification autorisée'),
(633, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 30, 30, 'Die Vergangenheit ausgraben', 'With a Single Step', 'Con un solo paso', 'D''un pas d''un seul'),
(634, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 36, 36, 'Eindämmung', 'Containment', 'Contención', 'Confinement'),
(635, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 36, 36, 'Eindämmung', 'Containment', 'Contención', 'Confinement'),
(636, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 22, 22, 'Gefährliche Umgebung', 'Hazardous Environment', 'Entorno peligroso', 'Environnement périlleux'),
(638, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 33, 33, 'Durch die Luke', 'Down the Hatch', 'Arriba, abajo, al centro y... ¡pa dentro', 'À la vôtre'),
(639, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 33, 33, 'Durch die Luke', 'Down the Hatch', 'Arriba, abajo, al centro y... ¡pa dentro', 'À la vôtre'),
(642, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 36, 36, 'Die Steinhülle', 'The Stone Sheath', 'La vaina de piedra', 'La Gaine de pierre'),
(643, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 33, 33, 'Böses Blut', 'Bad Blood', 'Mala sangre', 'Rancune'),
(644, 1, 1, '[["-39936","-30720"],["43008","33792"]]', '[["5888","14464"],["9344","17152"]]', 26, 26, 'Versuchsobjekt', 'Test Subject', 'Sujeto de prueba', 'Sujet d''expérience'),
(645, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 26, 26, 'Feldversuch', 'Field Test', 'Prueba de campo', 'Expérience sur le terrain'),
(648, 1, 2, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 0, 0, 'Die Omphalos-Kammer', 'The Omphalos Chamber', 'La Cámara de Omphalos', 'La chambre d''Omphalos'),
(649, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 0, 0, 'Snaff-Gedenk-Labor', 'Snaff Memorial Lab', 'Laboratorio Conmemorativo de Snaff', 'Labo mémoriel de Snaff'),
(650, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 0, 0, 'Labor für Angewandte Entwicklung (Heim)', 'Applied Development Lab (Home)', 'Laboratorio de Desarrollos Aplicados (Ho', 'Labo de développement appliqué (maison)'),
(651, 1, 2, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 0, 0, 'Rat-Ebene', 'Council Level', 'Nivel del Consejo', 'Niveau du conseil'),
(652, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 28, 28, 'Ein Treffen der Gleichgesinnten', 'A Meeting of the Minds', 'Una reunión de mentes', 'Quand les grands esprits se rencontrent'),
(653, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 39, 39, 'Mächtiger als das Schwert', 'Mightier than the Sword', 'Más poderoso que la espada', 'Plus fort que l''épée'),
(654, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 36, 36, 'Sie sind da lang!', 'They Went Thataway', 'Se fueron por ahí', 'Ils sont partis par là !'),
(655, 1, 3, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 28, 28, 'Kommunikationswege', 'Lines of Communication', 'Vías de comunicación', 'Lignes de communication'),
(656, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["29184","12160"],["31232","16256"]]', 42, 42, 'Ungezähmte Wildnis', 'Untamed Wilds', 'Selvas Indomables', 'Contrées sauvages'),
(657, 1, 1, '[["-27648","-36864"],["30720","39936"]]', '[["15232","15872"],["17664","19072"]]', 39, 39, 'Jeden Tag einen Apfel', 'An Apple a Day', 'Una manzana al día', 'Une pomme par jour'),
(658, 1, -3, '[["-12288","-12288"],["12288","12288"]]', '[["16000","16000"],["17024","17024"]]', 39, 39, 'Operationsbasis', 'Base of Operations', 'Base de operaciones', 'Base opérationnelle'),
(659, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["29184","12160"],["31232","16256"]]', 47, 47, 'Die Rückkehr des verlorenen Häuptlings', 'The Lost Chieftain''s Return', 'El regreso del cabecilla perdido', 'Le retour du chef disparu'),
(660, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 36, 36, 'Kalt erwischt', 'Thrown Off Guard', 'Guardia desperdiciada', 'Pris au dépourvu'),
(662, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["29184","12160"],["31232","16256"]]', 45, 45, 'Zähmlinge und Mauern stärken den Kral.', 'Pets and Walls Make Stronger Kraals', 'Con mascotas y murallas los corrales dan', 'Les familiers et les murs rendent le Kra'),
(663, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 42, 42, 'Zweifel', 'Doubt', 'Duda', 'Doute'),
(664, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 45, 45, 'Die Höhle der falschen Gottheit', 'The False God''s Lair', 'La guarida del falso dios', 'La tanière du faux dieu'),
(666, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 42, 42, 'Böses Eis', 'Bad Ice', 'Hielo malvado', 'Briser la glace'),
(667, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 42, 42, 'Böses Eis', 'Bad Ice', 'Hielo malvado', 'Briser la glace'),
(668, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["29184","12160"],["31232","16256"]]', 45, 45, 'Zähmlinge und Mauern stärken den Kral.', 'Pets and Walls Make Stronger Kraals', 'Con mascotas y murallas los corrales dan', 'Les familiers et les murs rendent le Kra'),
(669, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 47, 47, 'Versuchter Gottesmord', 'Attempted Deicide', 'Intento de deicidio', 'Tentative de déicide'),
(670, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 42, 42, 'Zweifel', 'Doubt', 'Duda', 'Doute'),
(672, 1, 1, '[["-36864","-33792"],["39936","33792"]]', '[["13440","9472"],["16640","12288"]]', 42, 42, 'Rat-Tastrophe', 'Rat-Tastrophe', 'Ratástrofe', 'Rat-Tastrophe'),
(673, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 45, 45, 'Erlösung durch Ketzerei', 'Salvation Through Heresy', 'La salvación mediante la herejía', 'Hérésie salvatrice'),
(674, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 45, 45, 'Aufgebracht und unbeschämt', 'Enraged and Unashamed', 'Furibundo y desvergonzado', 'Enragé et fier de l''être'),
(675, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 45, 45, 'Hüter der Vergangenheit', 'Pastkeeper', 'Celador del pasado', 'Gardienne du passé'),
(676, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 24, 24, 'Zu viel protestieren', 'Protest Too Much', 'Protesta demasiado', 'Fortes protestations'),
(677, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["9344","14080"],["13440","16128"]]', 24, 24, 'Das Auge öffnen', 'Prying the Eye Open', 'Abriendo el ojo con palanca', 'L''ouverture de l''œil'),
(678, 1, 1, '[["-36864","-33792"],["39936","33792"]]', '[["13440","9472"],["16640","12288"]]', 45, 45, 'Die Brutstätte', 'The Hatchery', 'El vivero', 'Le Couvoir'),
(680, 1, 1, '[["-27648","-36864"],["30720","39936"]]', '[["15232","15872"],["17664","19072"]]', 45, 45, 'Vom Glauben abfallen', 'Convincing the Faithful', 'Convenciendo a los fieles', 'Convaincre des convaincus'),
(681, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["19456","14976"],["21760","18176"]]', 47, 47, 'Evakuierung', 'Evacuation', 'Evacuación', 'Evacuation'),
(682, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["29184","12160"],["31232","16256"]]', 42, 42, 'Ungezähmte Wildnis', 'Untamed Wilds', 'Selvas Indomables', 'Contrées sauvages'),
(683, 1, 1, '[["-27648","-36864"],["30720","39936"]]', '[["15232","15872"],["17664","19072"]]', 42, 42, 'Das Opfer des Champion', 'Champion''s Sacrifice', 'Sacrificio de campeón', 'Le sacrifice du champion'),
(684, 1, 1, '[["-36864","-33792"],["39936","33792"]]', '[["13440","9472"],["16640","12288"]]', 45, 45, 'Von Räuber rauben', 'Thieving from Thieves', 'Quien roba a un ladrón', 'Voler les voleurs'),
(685, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 39, 39, 'Rückkehr der Recken', 'Crusader''s Return', 'Retorno del Cruzado', 'Le retour du croisé'),
(686, 1, 1, '[["-27648","-36864"],["30720","39936"]]', '[["15232","15872"],["17664","19072"]]', 47, 47, 'Unheilige Erde', 'Unholy Grounds', 'Territorios impíos', 'Terres impies'),
(687, 1, 1, '[["-27648","-36864"],["30720","39936"]]', '[["15232","15872"],["17664","19072"]]', 45, 45, 'Von der Sonne auserwählt', 'Chosen of the Sun', 'Los elegidos del sol', 'L''élu du soleil'),
(691, 1, 1, '[["-36864","-33792"],["39936","33792"]]', '[["13440","9472"],["16640","12288"]]', 47, 47, 'Bereit zum Sprengen', 'Set to Blow', 'Lista para explotar', 'Explosion imminente'),
(692, 1, 1, '[["-24576","-39936"],["27648","39936"]]', '[["7168","17152"],["9344","20480"]]', 10, 10, 'Gadds letztes Gerät', 'Gadd''s Last Gizmo', 'El último artilugio de Gadd', 'La dernière invention de Gadd'),
(693, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 39, 39, 'Bibliothekswissenschaft', 'Library Science', 'Ciencia de biblioteca', 'Science livresque'),
(694, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 28, 28, 'Rakt und Ruin', 'Rakt and Ruin', 'Rakt y ruina', 'Rakt et la ruine'),
(695, 1, -3, '[["-12288","-12288"],["12288","12288"]]', '[["16000","16000"],["17024","17024"]]', 48, 48, 'Verdächtige Aktivitäten', 'Suspicious Activity', 'Actividad sospechosa', 'Activité suspecte'),
(696, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 51, 51, 'Erkundung', 'Reconnaissance', 'Reconocimiento', 'Reconnaissance'),
(697, 1, -3, '[["-12288","-12288"],["12288","12288"]]', '[["16000","16000"],["17024","17024"]]', 57, 57, 'Kritischer Rückschlag', 'Critical Blowback', 'Contratiempo crítico', 'Critique retour de bâton'),
(698, 1, 1, '[["-18432","-18432"],["18432","18432"]]', '[["13952","15872"],["15488","17408"]]', 50, 50, 'Schlacht auf der Klaueninsel', 'The Battle of Claw Island', 'La batalla de Isla Garra', 'La bataille de l''Ile de la Griffe'),
(699, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 48, 48, 'Verdächtige Aktivitäten', 'Suspicious Activity', 'Actividad sospechosa', 'Activité suspecte'),
(700, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 48, 48, 'Bibliothek der Abtei', 'Priory Library', 'Biblioteca del Priorato', 'La Bibliothèque du Prieuré'),
(701, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 48, 48, 'Alarmstufe Rot', 'On Red Alert', 'En alerta roja', 'Alerte rouge'),
(702, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 48, 48, 'Gefahr erkannt, Gefahr gebannt', 'Forewarned is Forearmed', 'Más vale prevenir que curar', 'Un homme averti en vaut deux'),
(703, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 48, 48, 'Redekunst', 'The Oratory', 'La oratoria', 'L''oratoire'),
(704, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 51, 51, 'Die Killing Fields', 'Killing Fields', 'Campos de muerte', 'Champ de bataille'),
(705, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 51, 51, 'Der Geisterritus', 'The Ghost Rite', 'El rito del fantasma', 'Le rite fantôme'),
(706, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["18944","18176"],["21248","21376"]]', 53, 53, 'Kampf fürs Gute', 'The Good Fight', 'La buena pelea', 'La bonne cause'),
(707, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["27136","9472"],["29184","13568"]]', 53, 53, 'Verteidigungsabkommen', 'Defense Contract', 'Contrato de defensa', 'Contrat de défense'),
(708, 1, 1, '[["-27648","-36864"],["30720","39936"]]', '[["15232","15872"],["17664","19072"]]', 53, 53, 'Scherben von Orr', 'Shards of Orr', 'Esquirlas de Orr', 'Fragments d''Orr'),
(709, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["18944","18176"],["21248","21376"]]', 53, 53, 'Der Klang der Psi-Lanze', 'The Sound of Psi-Lance', 'El sonido de la lanza Psi', 'Le bruit d''une psi-lance'),
(710, 1, 1, '[["-43008","-27648"],["43008","30720"]]', '[["9856","11648"],["13440","14080"]]', 53, 53, 'Vorzeitig entlassen', 'Early Parole', 'Pronta libertad', 'Libération anticipée'),
(711, 1, 1, '[["-30720","-30720"],["30720","30720"]]', '[["4608","19648"],["7168","22208"]]', 53, 53, 'Magie nervt', 'Magic Sucks', 'La magia apesta', 'La magie, c''est pourri'),
(712, 1, 2, '[["-33792","-24576"],["33792","24576"]]', '[["8320","20096"],["11136","22144"]]', 55, 55, 'Ein Licht im Dunkeln', 'A Light in the Darkness', 'Una luz en la oscuridad', 'Une lueur dans les ténèbres'),
(713, 1, 1, '[["-21504","-58368"],["21504","58368"]]', '[["17664","13312"],["19456","18176"]]', 57, 57, 'Sturm auf die Abtei', 'The Priory Assailed', 'Asedio al Priorato', 'Le Prieuré assailli'),
(714, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 57, 57, 'Belagert', 'Under Siege', 'Bajo asedio', 'Assiégé'),
(715, 1, 1, '[["-18432","-18432"],["18432","18432"]]', '[["13952","15872"],["15488","17408"]]', 59, 59, 'Vergeltung', 'Retribution', 'Retribución', 'Punition'),
(716, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 59, 59, 'Vereint stehen wir!', 'United We Stand', 'Unidos resistiremos', 'Unis, nous résisterons'),
(719, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["18944","18176"],["21248","21376"]]', 53, 53, 'Der Klang der Psi-Lanze', 'The Sound of Psi-Lance', 'El sonido de la lanza Psi', 'Le bruit d''une psi-lance'),
(726, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 66, 66, 'Feuchte Arbeit', 'Wet Work', 'Trabajo húmedo', 'Un travail bien humide'),
(727, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 64, 64, 'Kriegsneurose', 'Shell Shock', 'Trauma de combate', 'Traumatisme'),
(728, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 66, 66, 'Vulkanische Extraktion', 'Volcanic Extraction', 'Extracción volcánica', 'L''extraction du volcan'),
(729, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 66, 66, 'Munitionserwerb', 'Munition Acquisition', 'Adquisición de munición', 'Acquisition de munitions'),
(730, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 66, 66, 'Durch und durch', 'To the Core', 'Hasta el núcleo', 'Au cœur du problème'),
(731, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 70, 70, 'Die Schlacht um das Fort der Dreifaltigk', 'The Battle of Fort Trinity', 'La batalla de Fuerte Trinidad', 'La bataille de Fort Trinité'),
(732, 1, 1, '[["-30720","-39936"],["30720","39936"]]', '[["15232","19072"],["17792","22400"]]', 64, 64, 'Turm gefallen', 'Tower Down', 'Torre abajo', 'La chute de la tour'),
(733, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["18944","18176"],["21248","21376"]]', 62, 62, 'Der Pakt wird geschmiedet', 'Forging the Pact', 'La forja del Pacto', 'Réunion du Pacte'),
(735, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 68, 68, 'Willige Gefangene', 'Willing Captives', 'Cautivos dispuestos', 'Captifs volontaires'),
(736, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 68, 68, 'Überbringer der Wahrheit', 'Marshaling the Truth', 'Reuniendo la verdad', 'Faire éclater la vérité'),
(737, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 68, 68, 'Zerstörung des Knochenschiffs', 'Breaking the Bone Ship', 'Rompiendo el barco de hueso', 'Destruction du navire osseux'),
(738, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 71, 71, 'Apatias Befreiung', 'Liberating Apatia', 'Liberando a Apatia', 'Libérer Apatia'),
(739, 1, 1, '[["-27648","-18432"],["27648","21504"]]', '[["19456","13312"],["21760","14976"]]', 71, 71, 'Apatias Befreiung', 'Liberating Apatia', 'Liberando a Apatia', 'Libérer Apatia'),
(741, 2, 1, '[["-9216","-9216"],["9216","9216"]]', '[["8574","6910"],["9342","7678"]]', 0, 0, 'Überfall auf die "Steinbock"', 'Raid on the Capricorn', 'Asalto al Capricornio', 'Assaut du Capricorne'),
(743, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["23808","8448"],["27136","11264"]]', 66, 66, 'Schuldzuweisung', 'Fixing Blame', 'Buscando culpables', 'Déjouer les accusations'),
(744, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 71, 71, 'Eine traurige Pflicht', 'A Sad Duty', 'Una misión triste', 'Un bien triste devoir'),
(745, 1, 1, '[["-27648","-36864"],["27648","39936"]]', '[["18944","18176"],["21248","21376"]]', 64, 64, 'Abwerfen der Ketten', 'Striking off the Chains', 'Rompiendo las cadenas', 'Briser les chaînes'),
(746, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 71, 71, 'Überbringer der Gerechtigkeit', 'Delivering Justice', 'Haciendo justicia', 'Appliquer la justice'),
(747, 1, 1, '[["-46080","-27648"],["46080","30720"]]', '[["17792","21376"],["21632","23808"]]', 68, 68, 'Abfangen der Kugel', 'Intercepting the Orb', 'Interceptando el orbe', 'Intercepter l''orbe'),
(750, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 73, 73, 'Das Auge schließen', 'Close the Eye', 'Cierra el ojo', 'Fermer l''œil'),
(751, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 73, 73, 'Durch den Spiegel', 'Through the Looking Glass', 'A través del espejo', 'Au delà du miroir'),
(758, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["10112","25216"],["12160","29312"]]', 80, 80, 'Die Kathedrale der Stille', 'The Cathedral of Silence', 'Catedral del Silencio', 'La Cathédrale du silence'),
(760, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["10368","23168"],["14464","25216"]]', 75, 75, 'Die Bestie aushungern.', 'Starving the Beast', 'Matando de hambre a la bestia', 'Affamer la bête'),
(761, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["10368","23168"],["14464","25216"]]', 78, 78, 'Gestohlenes Licht', 'Stealing Light', 'Robando luz', 'Vol de lumière'),
(762, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["10368","23168"],["14464","25216"]]', 78, 78, 'Jäger und Gejagte', 'Hunters and Prey', 'Cazadores y presa', 'Chasseurs et proie'),
(763, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["10112","25216"],["12160","29312"]]', 80, 80, 'Romkes letzte Reise', 'Romke''s Final Voyage', 'La última travesía de Romke', 'L''ultime voyage de Romke'),
(767, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["10368","23168"],["14464","25216"]]', 75, 75, 'Haus der Verwesung', 'Estate of Decay', 'Estado de descomposición', 'Le domaine de la putrescence'),
(768, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 74, 74, 'Im Auge des Betrachters', 'What the Eye Beholds', 'Lo que el ojo sí ve', 'Ce que voit l''œil'),
(769, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["10368","23168"],["14464","25216"]]', 79, 79, 'Die Kaperung der toten Schiffe', 'Conscript the Dead Ships', 'Recluta los Barcos Muertos', 'Réquisition des navires morts-vivants'),
(772, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["10368","23168"],["14464","25216"]]', 76, 76, 'Ossarium der Unruhigen Toten', 'Ossuary of Unquiet Dead', 'Osario de muertos inquietos', 'L''ossuaire du défunt tourmenté'),
(775, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 72, 72, 'Der Tempel des vergessenen Gottes', 'Temple of the Forgotten God', 'El templo del dios olvidado', 'Temple du Dieu oublié'),
(776, 1, -8, '[["-6144","-6144"],["9216","9216"]]', '[["15232","22528"],["15872","23168"]]', 72, 72, 'Der Tempel des vergessenen Gottes', 'Temple of the Forgotten God', 'El templo del dios olvidado', 'Temple du Dieu oublié'),
(777, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 72, 72, 'Der Tempel des vergessenen Gottes', 'Temple of the Forgotten God', 'El templo del dios olvidado', 'Temple du Dieu oublié'),
(778, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 75, 75, 'Durch den Spiegel', 'Through the Looking Glass', 'A través del espejo', 'Au delà du miroir'),
(779, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 75, 75, 'Die Bestie aushungern.', 'Starving the Beast', 'Matando de hambre a la bestia', 'Affamer la bête'),
(781, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["10112","25216"],["12160","29312"]]', 80, 80, 'Die Quelle von Orr', 'The Source of Orr', 'La fuente de Orr', 'La source d''Orr'),
(783, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["10112","25216"],["12160","29312"]]', 80, 80, 'Echo der Vergangenheit', 'Blast from the Past', 'Relámpagos del pasado', 'Retour dans le passé'),
(784, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["10112","25216"],["12160","29312"]]', 80, 80, 'Die Flut aus Stahl', 'The Steel Tide', 'La marea de acero', 'La vague d''acier'),
(785, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["10368","23168"],["14464","25216"]]', 77, 77, 'Vorstoß ins Herz Orrs', 'Further Into Orr', 'Adentrándose en Orr', 'Au tréfonds d''Orr'),
(786, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["10112","25216"],["12160","29312"]]', 80, 80, 'Linienschiffe', 'Ships of the Line', 'Navíos de línea', 'La ligne de vaisseaux'),
(787, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 80, 80, 'Quelle von Orr', 'Source of Orr', 'La fuente de Orr', 'La source d''Orr'),
(788, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 80, 80, 'Sieg oder Tod', 'Victory or Death', 'Victoria o muerte', 'La victoire ou la mort'),
(790, 1, 1, '[["-24576","-49152"],["24576","49152"]]', '[["10112","25216"],["12160","29312"]]', 80, 80, 'Echo der Vergangenheit', 'Blast from the Past', 'Relámpagos del pasado', 'Retour dans le passé'),
(792, 1, 1, '[["-21504","-55296"],["21504","55296"]]', '[["21760","11264"],["23552","15872"]]', 3, 3, 'Die Krankheit des Lehrlings', 'A Pup''s Illness', 'Un cachorro enfermo', 'La maladie d''un chiot'),
(793, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 79, 79, 'Jäger und Gejagte', 'Hunters and Prey', 'Cazadores y presa', 'Chasseurs et proie'),
(795, 2, 1, '[["-9216","-12288"],["12288","15360"]]', '[["2558","8190"],["3454","9342"]]', 0, 0, 'Vermächtnis des Feindfeuers', 'Legacy of the Foefire', 'El legado del Fuego Enemigo', 'Héritage du Feu belligérant'),
(797, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 11, 11, 'Zeugenaussage eines Verräters', 'A Traitor''s Testimony', 'Testimonio de un traidor', 'Le témoignage d''un traître'),
(799, 1, 1, '[["-49152","-24576"],["49152","24576"]]', '[["25088","13568"],["29184","15616"]]', 14, 14, 'Eine heiße Spur', 'Follow the Trail', 'Sigue el rastro', 'Suivre la piste'),
(806, 1, 1, '[["-21504","-46080"],["24576","49152"]]', '[["9344","16128"],["11264","20096"]]', 3, 3, 'Erwachen', 'Awakening', 'Despertar', 'Eveil'),
(807, 1, 1, '[["-15360","-15360"],["15360","15360"]]', '[["24576","4864"],["25856","6144"]]', 0, 0, 'Auge des Nordens', 'Eye of the North', 'Ojo del Norte', 'Œil du Nord'),
(820, 1, 2, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 10, 10, 'Die Omphalos-Kammer', 'The Omphalos Chamber', 'La Cámara de Omphalos', 'La Chambre d''Omphalos'),
(821, 1, 2, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 10, 10, 'Die Omphalos-Kammer', 'The Omphalos Chamber', 'La Cámara de Omphalos', 'La Chambre d''Omphalos'),
(825, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 26, 26, 'Code-Brecher', 'Codebreaker', 'Descifrador', 'Décodage'),
(827, 1, 1, '[["-39936","-33792"],["39936","33792"]]', '[["14464","22400"],["17792","25216"]]', 70, 70, 'Kastell Aval', 'Caer Aval', 'Aval de Caer', 'Caer Aval'),
(830, 1, 1, '[["-49152","-24576"],["52224","24576"]]', '[["13440","12288"],["17664","14336"]]', 0, 0, 'Hauptquartier der Wachsamen', 'Vigil Headquarters', 'Cuartel general de la Vigilia', 'Quartier général des Veilleurs'),
(833, 1, 1, '[["-18432","-24576"],["18432","24576"]]', '[["23552","13568"],["25088","15616"]]', 0, 0, 'Aschetribun-Viertel', 'Ash Tribune Quarters', 'Alojamientos de los Tribunos de Ceniza', 'Quartiers du tribun de la Légion des Cen'),
(834, 2, 1, '[["-21504","-21504"],["21504","21504"]]', '[["4865","6398"],["6657","8190"]]', 0, 0, 'Herz der Nebel', 'Heart of the Mists', 'Corazón de la Niebla', 'Cœur des Brumes'),
(845, 1, 2, '[["-15360","-24576"],["18432","24576"]]', '[["9728","20096"],["11136","22144"]]', 19, 19, 'Gebrochenes Licht', 'Shattered Light', 'Luz quebrada', 'Lumière étouffée'),
(865, 2, -27, '[["-9216","-9216"],["9216","9216"]]', '[["1408","12544"],["2176","13312"]]', 0, 0, 'Uhrturm des Verrückten Königs', 'Mad King\\''s Clock Tower', 'La Torre del Reloj del Rey Loco', 'Clocher du Roi Dément'),
(866, 2, -27, '[["-9216","-9216"],["9216","9216"]]', '[["1792","13696"],["2560","14464"]]', 80, 80, 'Labyrinth des Verrückten Königs', 'Mad King\\''s Labyrinth', 'Laberinto del Rey Loco', 'Labyrinthe du Roi Dément'),
(872, 2, 1, '[["-36864","-36864"],["36864","36864"]]', '[["10880","3328"],["13952","6400"]]', 80, 80, 'Fraktale der Nebel', 'Fractals of the Mists', 'Fractales de la Niebla', 'Fractales des Brumes'),
(873, 1, 1, '[["-30720","-21504"],["33792","21504"]]', '[["11520","18944"],["14208","20736"]]', 80, 80, 'Südlicht-Bucht', 'Southsun Cove', 'Cala del Sol Austral', 'Crique de Sud-Soleil'),
(875, 2, 1, '[["-12288","-6144"],["12288","9216"]]', '[["4096","9344"],["5120","9984"]]', 0, 0, 'Tempel des stillen Sturms', 'Temple of the Silent Storm', 'Templo de la Tormenta Silenciosa', 'Temple de la Tempête silencieuse'),
(882, 1, 16, '[["-9216","-9216"],["9216","9216"]]', '[["14592","15616"],["15360","16384"]]', 0, 0, 'Winterwunderland', 'Winter Wonderland', 'País de las Maravillas Invernal', 'Pays des merveilles d''hiver'),
(894, 2, 1, '[["-12288","-12288"],["12288","12288"]]', '[["1408","8192"],["2432","9216"]]', 0, 0, 'Geisterwacht', 'Spirit Watch', 'Vigilancia del Espíritu', 'Observatoire des Esprits'),
(899, 2, 3, '[["-36864","-36864"],["36864","36864"]]', '[["8958","12798"],["12030","15870"]]', 80, 80, 'Obsidianrefugium', 'Obsidian Sanctum', 'Sagrario de Obsidiana', 'Sanctuaire d\\''obsidienne'),
(911, 1, 26, '[["-12288","-12288"],["12288","12288"]]', '[["15744","14208"],["16768","15232"]]', 0, 0, 'Drachenball-Arena', 'Dragon Ball Arena', 'Arena de la dragonbola', 'Arène de dragonball'),
(912, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 1, 80, 'Denkmäler auf dem Scheiterhaufen', 'Memorials on the Pyre', 'Memorias en la pira', 'Souvenirs sur le bûcher'),
(913, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 1, 80, 'Der Ort des Verbrechens', 'The Scene of the Crime', 'El lugar de los hechos', 'Scène du crime'),
(914, 1, 1, '[["-21504","-21504"],["24576","21504"]]', '[["10240","9856"],["12160","11648"]]', 1, 80, 'Die Sackgasse', 'The Dead End', 'Comienzo del Fin', 'Le Cul-de-sac'),
(915, 1, 27, '[["-6144","-9216"],["6144","9216"]]', '[["15104","15232"],["15616","16000"]]', 80, 80, 'Ätherklingen-Zuflucht', 'Aetherblade Retreat', 'Refugio de los Filoetéreos', 'Refuge étherlame'),
(917, 1, 1, '[["-27648","-18432"],["30720","18432"]]', '[["15232","14336"],["17664","15872"]]', 1, 80, 'Der Ort des Verbrechens', 'The Scene of the Crime', 'El lugar de los hechos', 'Scène du crime');
